use crate::{QueryGraphBuilderError, QueryGraphError};
use connector::error::ConnectorError;
use query_structure::DomainError;
use std::fmt;
#[derive(Debug)]
pub enum InterpreterError {
EnvVarNotFound(String),
DomainError(DomainError),
InterpretationError(String, Option<Box<InterpreterError>>),
QueryGraphError(QueryGraphError),
QueryGraphBuilderError(QueryGraphBuilderError),
ConnectorError(ConnectorError),
Generic(String),
}
impl fmt::Display for InterpreterError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
Self::QueryGraphBuilderError(e) => write!(f, "{e:?}"),
Self::ConnectorError(ConnectorError {
user_facing_error: Some(e),
..
}) => write!(f, "{e:?}"),
_ => write!(f, "Error occurred during query execution:\n{self:?}"),
}
}
}
impl From<DomainError> for InterpreterError {
fn from(e: DomainError) -> Self {
InterpreterError::DomainError(e)
}
}
impl From<QueryGraphBuilderError> for InterpreterError {
fn from(e: QueryGraphBuilderError) -> Self {
InterpreterError::QueryGraphBuilderError(e)
}
}
impl From<QueryGraphError> for InterpreterError {
fn from(e: QueryGraphError) -> Self {
InterpreterError::QueryGraphError(e)
}
}
impl From<ConnectorError> for InterpreterError {
fn from(e: ConnectorError) -> Self {
InterpreterError::ConnectorError(e)
}
}