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
//! Errors from parsing prelude content.

use std::{error::Error, fmt};

use crate::error::{
    parse::variable::VariableError,
    utils::{write_line_information, MetaData},
};

#[derive(Debug)]
/// Error from parsing a line in the prelude.
pub struct PreludeError {
    /// Line that caused the error.
    pub line: String,
    /// Kind of error.
    pub kind: PreludeErrorKind,
    /// Information about the origin of the line that caused this error.
    pub meta_data: MetaData,
}

#[derive(Debug)]
/// Variant of error from parsing the prelude.
pub enum PreludeErrorKind {
    /// Variable with given name was defined multiple times.
    DuplicateVariable { name: String },
    /// Could not parse a global variable.
    InvalidVariable(VariableError),
    /// No `=` sign was find in a variable assignment line.
    NoVariableAssignment,
    /// No variable name was found in a variable assignment line.
    NoVariableName,
}

impl Error for PreludeError {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        Some(&self.kind)
    }
}

impl Error for PreludeErrorKind {
    fn source(&self) -> Option<&(dyn Error + 'static)> {
        match &self {
            PreludeErrorKind::InvalidVariable(err) => Some(err),
            _ => None,
        }
    }
}

impl_from_error![
    PreludeErrorKind;
    [InvalidVariable, VariableError]
];

impl fmt::Display for PreludeError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write_line_information(f, &self.meta_data)?;
        write!(f, "{}", self.kind)
    }
}

impl fmt::Display for PreludeErrorKind {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        use PreludeErrorKind::*;

        match &self {
            DuplicateVariable { name } => {
                write!(f, "found second definition of global variable '{}'", name)
            }
            InvalidVariable(err) => write!(f, "could not parse variable: {}", err),
            NoVariableAssignment => write!(f, "no variable assignment ('=') in line"),
            NoVariableName => write!(f, "no variable name in line"),
        }
    }
}