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
use core::fmt;
use arrayvec::ArrayString;
use crate::constants::MAX_ERR_LEN;
use crate::ErrorKind;
#[derive(Copy, Clone, Debug, Eq, PartialEq, Hash)]
#[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 {
msg: 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 {
msg: ArrayString::from(s).unwrap(),
},
}
}
pub(crate) fn capacity(len: usize, cap: usize) -> Error {
Error {
kind: ErrorKind::Capacity { len, cap },
}
}
pub(crate) fn parse_locale<S>(input: S) -> Error
where
S: AsRef<str>,
{
let s = input.as_ref();
let s = if s.len() > MAX_ERR_LEN {
&s[0..MAX_ERR_LEN]
} else {
s
};
Error {
kind: ErrorKind::ParseLocale {
input: ArrayString::from(s).unwrap(),
},
}
}
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.kind)
}
}
impl From<ErrorKind> for Error {
fn from(kind: ErrorKind) -> Error {
Error { kind }
}
}
#[cfg(feature = "std")]
mod standard {
use crate::{Error, ErrorKind};
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
use self::ErrorKind::*;
match self.kind {
C { .. } => None,
Capacity { .. } => None,
Other { .. } => None,
ParseLocale { .. } => None,
}
}
}
}