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
use std::error;
use std::fmt;
use std::io;
pub fn error_new(kind: ErrorKind) -> Error {
Error { kind: kind, line: None }
}
pub fn error_parse(msg: String) -> Error {
error_new(ErrorKind::Parse(msg))
}
pub fn error_set_line(err: &mut Error, line: Option<u64>) {
err.line = line;
}
#[derive(Debug)]
pub struct Error {
kind: ErrorKind,
line: Option<u64>,
}
#[derive(Debug)]
pub enum ErrorKind {
Io(io::Error),
Parse(String),
}
impl Error {
pub fn kind(&self) -> &ErrorKind {
&self.kind
}
pub fn line(&self) -> Option<u64> {
self.line
}
pub fn into_kind(self) -> ErrorKind {
self.kind
}
pub fn is_io_error(&self) -> bool {
match self.kind {
ErrorKind::Io(_) => true,
_ => false,
}
}
}
impl error::Error for Error {
fn description(&self) -> &str {
match self.kind {
ErrorKind::Io(ref err) => err.description(),
ErrorKind::Parse(ref msg) => msg,
}
}
fn cause(&self) -> Option<&error::Error> {
match self.kind {
ErrorKind::Io(ref err) => Some(err),
_ => None,
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self.kind {
ErrorKind::Io(ref err) => err.fmt(f),
ErrorKind::Parse(ref msg) => {
if let Some(line) = self.line {
write!(f, "error on line {}: {}", line, msg)
} else {
write!(f, "{}", msg)
}
}
}
}
}
impl From<io::Error> for Error {
fn from(err: io::Error) -> Error {
Error { kind: ErrorKind::Io(err), line: None }
}
}