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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
use query_core::CoreError;
use thiserror::Error;
use user_facing_errors::{KnownError, UnknownError};

#[derive(Debug, Error)]
#[allow(clippy::large_enum_variant)]
pub enum HandlerError {
    #[error("{}", _0)]
    Core(#[from] CoreError),

    #[error("{}", _0)]
    Configuration(String),

    #[error("{}", _0)]
    QueryConversion(String),

    #[error("Unsupported feature: {}. {}", feature_name, message)]
    UnsupportedFeature {
        feature_name: &'static str,
        message: String,
    },

    #[error("{}", _0)]
    ValueFitError(String),
}

impl HandlerError {
    pub fn configuration(message: impl ToString) -> Self {
        Self::Configuration(message.to_string())
    }

    pub fn query_conversion(message: impl ToString) -> Self {
        Self::Configuration(message.to_string())
    }

    pub fn unsupported_feature(feature_name: &'static str, message: impl ToString) -> Self {
        let message = message.to_string();

        Self::UnsupportedFeature { feature_name, message }
    }

    pub fn value_fit(details: impl ToString) -> Self {
        Self::ValueFitError(details.to_string())
    }
}

impl From<url::ParseError> for HandlerError {
    fn from(e: url::ParseError) -> Self {
        Self::configuration(format!("Error parsing connection string: {e}"))
    }
}

impl From<connection_string::Error> for HandlerError {
    fn from(e: connection_string::Error) -> Self {
        Self::configuration(format!("Error parsing connection string: {e}"))
    }
}

#[cfg(feature = "graphql-protocol")]
impl From<graphql_parser::query::ParseError> for HandlerError {
    fn from(e: graphql_parser::query::ParseError) -> Self {
        Self::configuration(format!("Error parsing GraphQL query: {e}"))
    }
}

impl From<HandlerError> for user_facing_errors::Error {
    fn from(err: HandlerError) -> Self {
        match err {
            HandlerError::Core(ce) => user_facing_errors::Error::from(ce),

            HandlerError::ValueFitError(details) => {
                KnownError::new(user_facing_errors::query_engine::ValueFitError { details }).into()
            }

            _ => UnknownError::new(&err).into(),
        }
    }
}

impl From<query_core::ConnectorError> for HandlerError {
    fn from(value: query_core::ConnectorError) -> Self {
        HandlerError::Core(value.into())
    }
}