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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
#[derive(Copy, Clone, Debug)]
pub struct Error {
pub source_location: ErrorLocation,
pub error_kind: ErrorKind,
}
impl core::fmt::Display for Error {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "In {}: {}", self.source_location, self.error_kind)
}
}
#[cfg(feature = "std")]
impl std::error::Error for Error {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
Some(&self.error_kind)
}
}
#[derive(Copy, Clone, Debug)]
#[non_exhaustive]
pub enum ErrorKind {
InvalidOffset,
InvalidLength,
UnknownEnumTag { source: UnknownEnumTagKind },
UnknownUnionTag { tag: u8 },
InvalidVtableLength { length: u16 },
InvalidUtf8 { source: core::str::Utf8Error },
MissingRequired,
MissingNullTerminator,
}
impl core::fmt::Display for ErrorKind {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
match self {
ErrorKind::InvalidOffset => write!(f, "Invalid offset"),
ErrorKind::InvalidLength => write!(f, "Invalid length"),
ErrorKind::UnknownEnumTag { source } => source.fmt(f),
ErrorKind::UnknownUnionTag { tag } => write!(f, "Unknown union (tag = {})", tag),
ErrorKind::InvalidVtableLength { length } => {
write!(f, "Invalid vtable length (length = {})", length)
}
ErrorKind::InvalidUtf8 { source } => write!(f, "Invalid utf-8: {}", source),
ErrorKind::MissingRequired => write!(f, "Missing required field"),
ErrorKind::MissingNullTerminator => write!(f, "Missing null terminator"),
}
}
}
#[cfg(feature = "std")]
impl std::error::Error for ErrorKind {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
match self {
ErrorKind::InvalidOffset => None,
ErrorKind::InvalidLength => None,
ErrorKind::UnknownEnumTag { source } => Some(source),
ErrorKind::UnknownUnionTag { .. } => None,
ErrorKind::InvalidVtableLength { .. } => None,
ErrorKind::InvalidUtf8 { source } => Some(source),
ErrorKind::MissingRequired => None,
ErrorKind::MissingNullTerminator => None,
}
}
}
impl From<UnknownEnumTagKind> for ErrorKind {
fn from(source: UnknownEnumTagKind) -> Self {
ErrorKind::UnknownEnumTag { source }
}
}
impl From<core::str::Utf8Error> for ErrorKind {
fn from(source: core::str::Utf8Error) -> Self {
ErrorKind::InvalidUtf8 { source }
}
}
#[derive(Clone, Debug)]
pub struct UnknownEnumTag {
pub source_location: ErrorLocation,
pub error_kind: UnknownEnumTagKind,
}
impl core::fmt::Display for UnknownEnumTag {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "In {}: {}", self.source_location, self.error_kind)
}
}
#[cfg(feature = "std")]
impl std::error::Error for UnknownEnumTag {
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
Some(&self.error_kind)
}
}
#[derive(Copy, Clone, Debug)]
pub struct UnknownEnumTagKind {
pub tag: i128,
}
impl core::fmt::Display for UnknownEnumTagKind {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
write!(f, "Unknown enum (tag = {})", self.tag)
}
}
#[cfg(feature = "std")]
impl std::error::Error for UnknownEnumTagKind {}
#[derive(Copy, Clone, Debug)]
pub struct ErrorLocation {
pub type_: &'static str,
pub method: &'static str,
pub byte_offset: usize,
}
impl core::fmt::Display for ErrorLocation {
fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
if self.byte_offset != usize::MAX {
write!(
f,
"<{}@{:x}>::{}()",
self.type_, self.byte_offset, self.method,
)
} else {
write!(f, "<{}>::{}()", self.type_, self.method,)
}
}
}
impl From<UnknownEnumTag> for Error {
fn from(error: UnknownEnumTag) -> Self {
Self {
source_location: error.source_location,
error_kind: error.error_kind.into(),
}
}
}
impl From<core::convert::Infallible> for Error {
fn from(value: core::convert::Infallible) -> Self {
match value {}
}
}
impl UnknownEnumTagKind {
pub fn with_error_location(
self,
type_: &'static str,
method: &'static str,
byte_offset: usize,
) -> UnknownEnumTag {
UnknownEnumTag {
source_location: ErrorLocation {
type_,
method,
byte_offset,
},
error_kind: self,
}
}
}
impl ErrorKind {
pub fn with_error_location(
self,
type_: &'static str,
method: &'static str,
byte_offset: usize,
) -> Error {
Error {
source_location: ErrorLocation {
type_,
method,
byte_offset,
},
error_kind: self,
}
}
}