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
use nom::error::Error as NomError;
use std::fmt::Display;
use thiserror::Error;

#[derive(Debug, Error)]
pub struct TemplatingError {
    ident: String,
    kind: TemplatingErrorKind,
}

impl Display for TemplatingError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        write!(f, "Error parsing ident `{}`: {}", self.ident, self.kind)
    }
}

impl TemplatingError {
    pub fn num_args(ident: &str, expected: usize, got: usize) -> Self {
        Self {
            ident: ident.to_owned(),
            kind: TemplatingErrorKind::NumArgsError { expected, got },
        }
    }

    pub fn unknown_ident(ident: &str) -> Self {
        Self {
            ident: ident.to_owned(),
            kind: TemplatingErrorKind::UnknownIdentError,
        }
    }

    pub fn nom_error(ident: &str, reason: String) -> Self {
        Self {
            ident: ident.to_owned(),
            kind: TemplatingErrorKind::NomError(reason),
        }
    }

    pub fn argument_error(ident: &str, reason: String) -> Self {
        Self {
            ident: ident.to_owned(),
            kind: TemplatingErrorKind::ArgumentError(reason),
        }
    }
}

#[derive(Debug, Error)]
pub enum TemplatingErrorKind {
    #[error("Unexpected number of arguments: Expected (at least) {expected}, got {got}.")]
    NumArgsError { expected: usize, got: usize },

    #[error("Unknown schema interpolation identifier.")]
    UnknownIdentError,

    #[error("Error parsing schema: {0}")]
    NomError(String),

    #[error("Argument error: {0}")]
    ArgumentError(String),
}

impl<T> From<NomError<T>> for TemplatingError
where
    T: Display,
{
    fn from(err: NomError<T>) -> Self {
        Self {
            ident: "Unknown".to_owned(),
            kind: TemplatingErrorKind::NomError(err.to_string()),
        }
    }
}