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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
use std::borrow::Cow;
use std::collections::BTreeSet;
use std::fmt::{self, Write};
use thiserror::Error;
use miette::{Diagnostic, NamedSource};
use crate::ast::{TypeName, Literal, SpannedNode};
use crate::span::{Spanned};
use crate::decode::Kind;
use crate::traits::{ErrorSpan, Span};
#[derive(Debug, Diagnostic, Error)]
#[error("error parsing KDL")]
pub struct Error {
#[source_code]
pub(crate) source_code: NamedSource,
#[related]
pub(crate) errors: Vec<miette::Report>,
}
#[derive(Debug, Diagnostic, Error)]
#[non_exhaustive]
pub enum DecodeError<S: ErrorSpan> {
#[error("{} for {}, found {}", expected, rust_type,
found.as_ref().map(|x| x.as_str()).unwrap_or("no type name"))]
#[diagnostic()]
TypeName {
#[label="unexpected type name"]
span: S,
found: Option<TypeName>,
expected: ExpectedType,
rust_type: &'static str,
},
#[diagnostic()]
#[error("expected {} scalar, found {}", expected, found)]
ScalarKind {
#[label("unexpected {}", found)]
span: S,
expected: ExpectedKind,
found: Kind,
},
#[diagnostic()]
#[error("{}", message)]
Missing {
#[label("node starts here")]
span: S,
message: String,
},
#[diagnostic()]
#[error("{}", message)]
MissingNode {
message: String,
},
#[diagnostic()]
#[error("{}", message)]
Unexpected {
#[label("unexpected {}", kind)]
span: S,
kind: &'static str,
message: String,
},
#[error("{}", source)]
#[diagnostic()]
Conversion {
#[label("invalid value")]
span: S,
source: Box<dyn std::error::Error + Send + Sync + 'static>,
},
#[error("{}", message)]
#[diagnostic()]
Unsupported {
#[label="unsupported value"]
span: S,
message: Cow<'static, str>,
},
#[error(transparent)]
Custom(Box<dyn std::error::Error + Send + Sync + 'static>),
}
#[derive(Clone, Debug, PartialOrd, Ord, PartialEq, Eq)]
pub(crate) enum TokenFormat {
Char(char),
Token(&'static str),
Kind(&'static str),
OpenRaw(usize),
CloseRaw(usize),
Eoi,
}
struct FormatUnexpected<'x>(&'x TokenFormat, &'x BTreeSet<TokenFormat>);
#[derive(Debug, Diagnostic, Error)]
pub(crate) enum ParseError<S: ErrorSpan> {
#[error("{}", FormatUnexpected(found, expected))]
#[diagnostic()]
Unexpected {
label: Option<&'static str>,
#[label("{}", label.unwrap_or("unexpected token"))]
span: S,
found: TokenFormat,
expected: BTreeSet<TokenFormat>,
},
#[error("unclosed {} {}", label, opened)]
#[diagnostic()]
Unclosed {
label: &'static str,
#[label="opened here"]
opened_at: S,
opened: TokenFormat,
#[label("expected {}", expected)]
expected_at: S,
expected: TokenFormat,
found: TokenFormat,
},
#[error("{}", message)]
#[diagnostic()]
Message {
label: Option<&'static str>,
#[label("{}", label.unwrap_or("unexpected token"))]
span: S,
message: String,
},
#[error("{}", message)]
#[diagnostic(help("{}", help))]
MessageWithHelp {
label: Option<&'static str>,
#[label("{}", label.unwrap_or("unexpected token"))]
span: S,
message: String,
help: &'static str,
},
}
impl From<Option<char>> for TokenFormat {
fn from(chr: Option<char>) -> TokenFormat {
if let Some(chr) = chr {
TokenFormat::Char(chr)
} else {
TokenFormat::Eoi
}
}
}
impl From<char> for TokenFormat {
fn from(chr: char) -> TokenFormat {
TokenFormat::Char(chr)
}
}
impl From<&'static str> for TokenFormat {
fn from(s: &'static str) -> TokenFormat {
TokenFormat::Token(s)
}
}
impl fmt::Display for TokenFormat {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use TokenFormat::*;
match self {
Char('"') => write!(f, "`\"`"),
Char('\'') => write!(f, "`\'`"),
Char('\\') => write!(f, r"`\`"),
Char(c) => write!(f, "`{}`", c.escape_default()),
Token(s) => write!(f, "`{}`", s.escape_default()),
Kind(s) => write!(f, "{}", s),
Eoi => write!(f, "end of input"),
OpenRaw(0) => {
f.write_str("`r\"`")
}
OpenRaw(n) => {
f.write_str("`r")?;
for _ in 0..*n {
f.write_char('#')?;
}
f.write_str("\"`")
}
CloseRaw(0) => {
f.write_str("`\"`")
}
CloseRaw(n) => {
f.write_str("`\"")?;
for _ in 0..*n {
f.write_char('#')?;
}
f.write_char('`')
}
}
}
}
impl fmt::Display for FormatUnexpected<'_> {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "found {}", self.0)?;
let mut iter = self.1.iter();
if let Some(item) = iter.next() {
write!(f, ", expected {}", item)?;
let back = iter.next_back();
for item in iter {
write!(f, ", {}", item)?;
}
if let Some(item) = back {
write!(f, " or {}", item)?;
}
}
Ok(())
}
}
impl<S: ErrorSpan> ParseError<S> {
pub(crate) fn with_expected_token(mut self, token: &'static str) -> Self {
use ParseError::*;
match &mut self {
Unexpected { ref mut expected, .. } => {
*expected = [TokenFormat::Token(token)].into_iter().collect();
}
_ => {},
}
self
}
pub(crate) fn with_expected_kind(mut self, token: &'static str) -> Self {
use ParseError::*;
match &mut self {
Unexpected { ref mut expected, .. } => {
*expected = [TokenFormat::Kind(token)].into_iter().collect();
}
_ => {},
}
self
}
pub(crate) fn with_no_expected(mut self) -> Self {
use ParseError::*;
match &mut self {
Unexpected { ref mut expected, .. } => {
*expected = BTreeSet::new();
}
_ => {},
}
self
}
#[allow(dead_code)]
pub(crate) fn map_span<T>(self, f: impl Fn(S) -> T) -> ParseError<T>
where T: ErrorSpan,
{
use ParseError::*;
match self {
Unexpected { label, span, found, expected }
=> Unexpected { label, span: f(span), found, expected },
Unclosed { label, opened_at, opened, expected_at, expected, found }
=> Unclosed { label, opened_at: f(opened_at), opened,
expected_at: f(expected_at), expected, found },
Message { label, span, message }
=> Message { label, span: f(span), message },
MessageWithHelp { label, span, message, help }
=> MessageWithHelp { label, span: f(span), message, help },
}
}
}
impl<S: Span> chumsky::Error<char> for ParseError<S> {
type Span = S;
type Label = &'static str;
fn expected_input_found<Iter>(span: Self::Span, expected: Iter,
found: Option<char>)
-> Self
where Iter: IntoIterator<Item = Option<char>>
{
ParseError::Unexpected {
label: None,
span,
found: found.into(),
expected: expected.into_iter().map(Into::into).collect(),
}
}
fn with_label(mut self, new_label: Self::Label) -> Self {
use ParseError::*;
match self {
Unexpected { ref mut label, .. } => *label = Some(new_label),
Unclosed { ref mut label, .. } => *label = new_label,
Message { ref mut label, .. } => *label = Some(new_label),
MessageWithHelp { ref mut label, .. } => *label = Some(new_label),
}
self
}
fn merge(mut self, other: Self) -> Self {
use ParseError::*;
match (&mut self, other) {
(Unclosed { .. }, _) => self,
(_, other@Unclosed { .. }) => other,
(Unexpected { expected: ref mut dest, .. },
Unexpected { expected, .. })
=> {
dest.extend(expected.into_iter());
self
}
(_, other) => todo!("{} -> {}", self, other),
}
}
fn unclosed_delimiter(
unclosed_span: Self::Span,
unclosed: char,
span: Self::Span,
expected: char,
found: Option<char>
) -> Self {
ParseError::Unclosed {
label: "delimited",
opened_at: unclosed_span,
opened: unclosed.into(),
expected_at: span,
expected: expected.into(),
found: found.into(),
}
}
}
impl<S: ErrorSpan> DecodeError<S> {
pub fn conversion<T, E>(span: &Spanned<T, S>, err: E) -> Self
where E: Into<Box<dyn std::error::Error + Send + Sync + 'static>>,
{
DecodeError::Conversion {
span: span.span().clone(),
source: err.into(),
}
}
pub fn scalar_kind(expected: Kind, found: &Spanned<Literal, S>) -> Self {
DecodeError::ScalarKind {
span: found.span().clone(),
expected: expected.into(),
found: (&found.value).into(),
}
}
pub fn missing(node: &SpannedNode<S>, message: impl Into<String>) -> Self {
DecodeError::Missing {
span: node.node_name.span().clone(),
message: message.into(),
}
}
pub fn unexpected<T>(elem: &Spanned<T, S>, kind: &'static str,
message: impl Into<String>)
-> Self
{
DecodeError::Unexpected {
span: elem.span().clone(),
kind,
message: message.into(),
}
}
pub fn unsupported<T, M>(span: &Spanned<T, S>, message: M)-> Self
where M: Into<Cow<'static, str>>,
{
DecodeError::Unsupported {
span: span.span().clone(),
message: message.into(),
}
}
#[allow(dead_code)]
pub(crate) fn map_span<T>(self, mut f: impl FnMut(S) -> T)
-> DecodeError<T>
where T: ErrorSpan,
{
use DecodeError::*;
match self {
TypeName { span, found, expected, rust_type }
=> TypeName { span: f(span), found, expected, rust_type },
ScalarKind { span, expected, found }
=> ScalarKind { span: f(span), expected, found },
Missing { span, message }
=> Missing { span: f(span), message},
MissingNode { message }
=> MissingNode { message },
Unexpected { span, kind, message }
=> Unexpected { span: f(span), kind, message},
Conversion { span, source }
=> Conversion { span: f(span), source },
Unsupported { span, message }
=> Unsupported { span: f(span), message },
Custom(e) => Custom(e),
}
}
}
#[derive(Debug)]
pub struct ExpectedType {
types: Vec<TypeName>,
no_type: bool,
}
impl ExpectedType {
pub fn no_type() -> Self {
ExpectedType {
types: [].into(),
no_type: true,
}
}
pub fn required(ty: impl Into<TypeName>) -> Self {
ExpectedType {
types: vec![ty.into()],
no_type: false,
}
}
pub fn optional(ty: impl Into<TypeName>) -> Self {
ExpectedType {
types: vec![ty.into()],
no_type: true,
}
}
}
impl fmt::Display for ExpectedType {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
if self.types.is_empty() {
write!(f, "no type")
} else {
let mut iter = self.types.iter();
if let Some(first) = iter.next() {
write!(f, "{}", first)?;
}
let last = if self.no_type {
None
} else {
iter.next_back()
};
for item in iter {
write!(f, ", {}", item)?;
}
if self.no_type {
write!(f, " or no type")?;
} else if let Some(last) = last {
write!(f, " or {}", last)?;
}
Ok(())
}
}
}
#[derive(Debug)]
pub struct ExpectedKind(Kind);
impl From<Kind> for ExpectedKind {
fn from(kind: Kind) -> ExpectedKind {
ExpectedKind(kind)
}
}
impl fmt::Display for ExpectedKind {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.0.as_str())
}
}