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 std::{
error::Error,
fmt::{Debug, Display, Formatter},
path::PathBuf,
};
mod for_std;
#[derive(Debug, Default)]
pub struct XError {
pub kind: Box<XErrorKind>,
pub path: Option<PathBuf>,
pub position: Option<(usize, usize)>,
pub source: Option<Box<dyn Error>>,
}
#[derive(Debug)]
pub enum XErrorKind {
IOError(String),
SyntaxError { message: String },
TableError(String),
TypeMismatch { except: String, current: String },
UnknownError,
}
impl Display for XError {
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
Debug::fmt(self, f)
}
}
impl Error for XError {
fn source(&self) -> Option<&(dyn Error + 'static)> {
match &self.source {
Some(s) => Some(s.as_ref()),
None => None,
}
}
}
impl XError {
pub fn new(kind: XErrorKind) -> Self {
Self { kind: Box::new(kind), path: None, position: None, source: None }
}
pub fn with_path(mut self, path: PathBuf) -> Self {
self.path = Some(path);
self
}
pub fn with_xy(mut self, x: usize, y: usize) -> Self {
self.position = Some((x, y));
self
}
}