sqlness_runner/
protocol_interceptor.rsuse sqlness::interceptor::{Interceptor, InterceptorFactory, InterceptorRef};
use sqlness::SqlnessError;
pub const PROTOCOL_KEY: &str = "protocol";
pub const POSTGRES: &str = "postgres";
pub const MYSQL: &str = "mysql";
pub const PREFIX: &str = "PROTOCOL";
pub struct ProtocolInterceptor {
protocol: String,
}
impl Interceptor for ProtocolInterceptor {
fn before_execute(&self, _: &mut Vec<String>, context: &mut sqlness::QueryContext) {
context
.context
.insert(PROTOCOL_KEY.to_string(), self.protocol.clone());
}
}
pub struct ProtocolInterceptorFactory;
impl InterceptorFactory for ProtocolInterceptorFactory {
fn try_new(&self, ctx: &str) -> Result<InterceptorRef, SqlnessError> {
let protocol = ctx.to_lowercase();
match protocol.as_str() {
POSTGRES | MYSQL => Ok(Box::new(ProtocolInterceptor { protocol })),
_ => Err(SqlnessError::InvalidContext {
prefix: PREFIX.to_string(),
msg: format!("Unsupported protocol: {}", ctx),
}),
}
}
}