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
use core::fmt;
use arrayvec::ArrayString;
use failure::Fail;
use crate::constants::MAX_ERR_LEN;
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Fail)]
#[cfg_attr(feature = "with-serde", derive(Serialize, Deserialize))]
pub struct Error {
kind: ErrorKind,
}
impl Error {
pub fn new<S>(msg: S) -> Error
where
S: AsRef<str>,
{
let s = msg.as_ref();
let s = if s.len() > MAX_ERR_LEN {
&s[0..MAX_ERR_LEN]
} else {
s
};
Error {
kind: ErrorKind::Other(ArrayString::from(s).unwrap()),
}
}
pub fn kind(&self) -> ErrorKind {
self.kind
}
#[cfg_attr(not(feature = "std"), allow(dead_code))]
pub(crate) fn c<S>(msg: S) -> Error
where
S: AsRef<str>,
{
let s = msg.as_ref();
let s = if s.len() > MAX_ERR_LEN {
&s[0..MAX_ERR_LEN]
} else {
s
};
Error {
kind: ErrorKind::C(ArrayString::from(s).unwrap()),
}
}
pub(crate) fn capacity(cap: usize) -> Error {
Error {
kind: ErrorKind::Capacity(cap),
}
}
pub(crate) fn parse_locale<S>(s: S) -> Error
where
S: AsRef<str>,
{
let s = s.as_ref();
let s = if s.len() > MAX_ERR_LEN {
&s[0..MAX_ERR_LEN]
} else {
s
};
Error {
kind: ErrorKind::ParseLocale(ArrayString::from(s).unwrap()),
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.kind)
}
}
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash, Fail)]
#[cfg_attr(feature = "with-serde", derive(Serialize, Deserialize))]
pub enum ErrorKind {
#[fail(display = "received unexpected data from C; {}", _0)]
C(ArrayString<[u8; MAX_ERR_LEN]>),
#[fail(display = "input exceeds capacity of {}", _0)]
Capacity(usize),
#[fail(display = "{}", _0)]
Other(ArrayString<[u8; MAX_ERR_LEN]>),
#[fail(display = "failed to parse {} into a Locale", _0)]
ParseLocale(ArrayString<[u8; MAX_ERR_LEN]>),
}
impl From<ErrorKind> for Error {
fn from(kind: ErrorKind) -> Error {
Error { kind }
}
}