1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
use crate::{QueryGraphBuilderError, QueryGraphError};
use connector::error::ConnectorError;
use query_structure::DomainError;
use std::fmt;

#[derive(Debug)]
pub enum InterpreterError {
    EnvVarNotFound(String),

    DomainError(DomainError),

    /// Expresses an error that ocurred during interpretation.
    ///
    /// The second field is an optional cause for this error.
    InterpretationError(String, Option<Box<InterpreterError>>),

    QueryGraphError(QueryGraphError),

    /// Wraps errors occurring during the query graph building stage.
    QueryGraphBuilderError(QueryGraphBuilderError),

    /// Wraps errors coming from the connector during execution.
    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)
    }
}