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
use std::error::Error;
use std::convert::From;
use std::{io, fmt};
use term;
pub type PathResult<'a, T> = Result<T, PathError>;
pub struct PathError {
pub code: ErrorType,
pub description: String,
pub cause: Option<Box<Error>>,
}
impl fmt::Display for PathError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f,
"Code: {:?}, Description: {}",
self.code,
self.description)
}
}
impl fmt::Debug for PathError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(self, f)
}
}
impl Error for PathError {
fn description(&self) -> &str {
&self.description
}
}
#[derive(Debug, PartialEq, Eq)]
pub enum ErrorType {
PacketCounterOverflow,
Timeout,
Other,
Internal,
}
macro_rules! from_error {
($($p:ty,)*) => (
$(impl From<$p> for PathError {
fn from(err: $p) -> PathError {
PathError {
code: ErrorType::Other,
description: err.description().to_owned(),
cause: Some(Box::new(err)),
}
}
})*
)
}
from_error! {
io::Error,
term::Error,
}
pub fn bail(code: ErrorType, description: &fmt::Display) -> PathError {
PathError {
code: code,
description: description.to_string(),
cause: None,
}
}
macro_rules! bail {($code:expr, $($fmt:tt)*) => (
return Err(::error::bail($code, &format_args!($($fmt)*)))
)}