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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
use std::sync::Arc;
use crate::lexer::Pos;
pub type Result<T> = std::result::Result<T, Error>;
#[derive(Clone, Debug)]
pub enum Error {
IoError {
error: Arc<std::io::Error>,
context: String,
},
ParseError {
msg: String,
src: Source,
span: Span,
},
TypeError {
msg: String,
src: Source,
span: Span,
},
Errors(Vec<Error>),
}
impl Error {
pub fn from_io(error: std::io::Error, context: impl Into<String>) -> Self {
Error::IoError {
error: Arc::new(error),
context: context.into(),
}
}
}
impl From<Vec<Error>> for Error {
fn from(es: Vec<Error>) -> Self {
Error::Errors(es)
}
}
impl Error {
fn unwrap_errors(&self) -> &[Error] {
match self {
Error::Errors(e) => e,
_ => panic!("`isle::Error::unwrap_errors` on non-`isle::Error::Errors`"),
}
}
}
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
Error::IoError { error, .. } => Some(&*error as &dyn std::error::Error),
_ => None,
}
}
}
impl std::fmt::Display for Error {
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
match self {
Error::IoError { context, .. } => write!(f, "{}", context),
#[cfg(not(feature = "miette-errors"))]
Error::ParseError { src, span, msg, .. } => write!(
f,
"{}: parse error: {}",
span.from.pretty_print_with_filename(&*src.name),
msg
),
#[cfg(not(feature = "miette-errors"))]
Error::TypeError { src, span, msg, .. } => write!(
f,
"{}: type error: {}",
span.from.pretty_print_with_filename(&*src.name),
msg
),
#[cfg(feature = "miette-errors")]
Error::ParseError { msg, .. } => write!(f, "parse error: {}", msg),
#[cfg(feature = "miette-errors")]
Error::TypeError { msg, .. } => write!(f, "type error: {}", msg),
Error::Errors(_) => write!(
f,
"found {} errors:\n\n{}",
self.unwrap_errors().len(),
DisplayErrors(self.unwrap_errors())
),
}
}
}
struct DisplayErrors<'a>(&'a [Error]);
impl std::fmt::Display for DisplayErrors<'_> {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
for e in self.0 {
writeln!(f, "{}", e)?;
}
Ok(())
}
}
#[derive(Clone)]
pub struct Source {
pub name: Arc<str>,
#[allow(unused)]
pub text: Arc<str>,
}
impl std::fmt::Debug for Source {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
f.debug_struct("Source")
.field("name", &self.name)
.field("source", &"<redacted>");
Ok(())
}
}
impl Source {
pub(crate) fn new(name: Arc<str>, text: Arc<str>) -> Self {
Self { name, text }
}
pub fn name(&self) -> &Arc<str> {
&self.name
}
pub fn text(&self) -> &Arc<str> {
&self.name
}
}
#[derive(Clone, Debug)]
pub struct Span {
pub from: Pos,
pub to: Pos,
}
impl Span {
pub fn new_single(pos: Pos) -> Span {
Span {
from: pos,
to: Pos {
file: pos.file,
offset: pos.offset + 1,
line: pos.line,
col: pos.col + 1,
},
}
}
}