aboutsummaryrefslogtreecommitdiff
path: root/lib/xixanta/src/errors.rs
blob: 3ca00bc133e0d25d6f7d465b38f075510cb8a09b (plain)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
use crate::SourceInfo;
use std::fmt;

#[derive(Debug, Clone, PartialEq)]
pub enum Error {
    Parse(ParseError),
    Context(ContextError),
    Eval(EvalError),
}

impl From<ParseError> for Vec<Error> {
    fn from(err: ParseError) -> Self {
        vec![Error::Parse(err)]
    }
}

impl From<ParseError> for Vec<ParseError> {
    fn from(err: ParseError) -> Self {
        vec![err]
    }
}

impl From<ContextError> for Vec<Error> {
    fn from(err: ContextError) -> Self {
        vec![Error::Context(err)]
    }
}

impl From<EvalError> for Vec<Error> {
    fn from(err: EvalError) -> Self {
        vec![Error::Eval(err)]
    }
}

impl fmt::Display for Error {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        match self {
            Error::Parse(parse_error) => write!(f, "{}", parse_error),
            Error::Context(context_error) => write!(f, "{}", context_error),
            Error::Eval(eval_error) => write!(f, "{}", eval_error),
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct ParseError {
    pub line: usize,
    pub message: String,
    pub source: SourceInfo,
}

impl std::error::Error for ParseError {}

impl fmt::Display for ParseError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.source.name.is_empty() {
            write!(f, "{} (line {})", self.message, self.line + 1)
        } else {
            write!(
                f,
                "{} ({}: line {})",
                self.message,
                self.source.name,
                self.line + 1
            )
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub enum ContextErrorReason {
    Redefinition,
    UnknownVariable,
    BadScope,
    Label,
    Bounds,
    BadStart,
    BadEnd,
    Other,
}

#[derive(Debug, Clone, PartialEq)]
pub struct ContextError {
    pub line: usize,
    pub reason: ContextErrorReason,
    pub message: String,
    pub global: bool,
    pub source: SourceInfo,
}

impl std::error::Error for ContextError {}

impl fmt::Display for ContextError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.global {
            if self.source.name.is_empty() {
                write!(f, "{}", self.message)
            } else {
                write!(f, "{} ({})", self.message, self.source.name)
            }
        } else if self.source.name.is_empty() {
            write!(f, "{} (line {})", self.message, self.line + 1)
        } else {
            write!(
                f,
                "{} ({}: line {})",
                self.message,
                self.source.name,
                self.line + 1
            )
        }
    }
}

#[derive(Debug, Clone, PartialEq)]
pub struct EvalError {
    pub line: usize,
    pub message: String,
    pub global: bool,
    pub source: SourceInfo,
}

impl std::error::Error for EvalError {}

impl From<ContextError> for EvalError {
    fn from(err: ContextError) -> Self {
        EvalError {
            line: err.line,
            message: err.message,
            global: false,
            source: SourceInfo::default(), // TODO
        }
    }
}

impl fmt::Display for EvalError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        if self.global {
            if self.source.name.is_empty() {
                write!(f, "{}", self.message)
            } else {
                write!(f, "{} ({})", self.message, self.source.name)
            }
        } else if self.source.name.is_empty() {
            write!(f, "{} (line {})", self.message, self.line + 1)
        } else {
            write!(
                f,
                "{} ({}: line {})",
                self.message,
                self.source.name,
                self.line + 1
            )
        }
    }
}