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
use std::fmt::{ Display, Formatter };
use std::fmt::Error as FormatError;
use read_token::{ ParseNumberError, ParseStringError };
use std::sync::Arc;
use DebugId;
#[derive(Debug, PartialEq)]
pub enum ParseError {
ExpectedWhitespace(DebugId),
ExpectedNewLine(DebugId),
ExpectedSomething(DebugId),
ExpectedNumber(DebugId),
ParseNumberError(ParseNumberError, DebugId),
ExpectedText(DebugId),
EmptyTextNotAllowed(DebugId),
ParseStringError(ParseStringError, DebugId),
ExpectedTag(Arc<String>, DebugId),
DidNotExpectTag(Arc<String>, DebugId),
InvalidRule(&'static str, DebugId),
NoRules,
ExpectedEnd,
Conversion(String),
}
impl Display for ParseError {
fn fmt(&self, fmt: &mut Formatter) -> Result<(), FormatError> {
match self {
&ParseError::ExpectedWhitespace(debug_id) =>
try!(write!(fmt, "#{}, Expected whitespace",
debug_id)),
&ParseError::ExpectedNewLine(debug_id) =>
try!(write!(fmt, "#{}, Expected new line",
debug_id)),
&ParseError::ExpectedSomething(debug_id) =>
try!(write!(fmt, "#{}, Expected something",
debug_id)),
&ParseError::ExpectedNumber(debug_id) =>
try!(write!(fmt, "#{}, Expected number", debug_id)),
&ParseError::ParseNumberError(ref err, debug_id) =>
try!(write!(fmt, "#{}, Invalid number format: {}",
debug_id, err)),
&ParseError::ExpectedTag(ref token, debug_id) =>
try!(write!(fmt, "#{}, Expected: `{}`", debug_id, token)),
&ParseError::DidNotExpectTag(ref token, debug_id) =>
try!(write!(fmt, "#{}, Did not expect: `{}`", debug_id, token)),
&ParseError::ExpectedText(debug_id) =>
try!(write!(fmt, "#{}, Expected text", debug_id)),
&ParseError::EmptyTextNotAllowed(debug_id) =>
try!(write!(fmt, "#{}, Empty text not allowed", debug_id)),
&ParseError::ParseStringError(err, debug_id) =>
try!(write!(fmt, "#{}, Invalid string format: {}",
debug_id, err)),
&ParseError::InvalidRule(msg, debug_id) =>
try!(write!(fmt, "#{}, Invalid rule: {}", debug_id, msg)),
&ParseError::NoRules =>
try!(write!(fmt, "No rules are specified")),
&ParseError::ExpectedEnd =>
try!(write!(fmt, "Expected end")),
&ParseError::Conversion(ref msg) =>
try!(write!(fmt, "Conversion, {}", msg)),
}
Ok(())
}
}