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
use std::str::Utf8Error;
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum Error {
#[error("identifier or required part of it is empty")]
Empty,
#[error("identifier contains invalid characters")]
InvalidCharacters,
#[error("invalid matrix ID: {0}")]
InvalidMatrixId(#[from] MatrixIdError),
#[error("invalid matrix.to URI: {0}")]
InvalidMatrixToUri(#[from] MatrixToError),
#[error("invalid matrix URI: {0}")]
InvalidMatrixUri(#[from] MatrixUriError),
#[error("invalid Matrix Content URI: {0}")]
InvalidMxcUri(#[from] MxcUriError),
#[error("server name is not a valid IP address or domain name")]
InvalidServerName,
#[error("invalid UTF-8")]
InvalidUtf8,
#[error("ID exceeds 255 bytes")]
MaximumLengthExceeded,
#[error("required colon is missing")]
MissingColon,
#[error("leading sigil is incorrect or missing")]
MissingLeadingSigil,
}
impl From<Utf8Error> for Error {
fn from(_: Utf8Error) -> Self {
Self::InvalidUtf8
}
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum MxcUriError {
#[error("MXC URI schema was not mxc://")]
WrongSchema,
#[error("MXC URI does not have first slash")]
MissingSlash,
#[error("Media Identifier malformed, invalid characters")]
MediaIdMalformed,
#[error("invalid Server Name")]
ServerNameMalformed,
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum MatrixIdError {
#[error("invalid number of parts")]
InvalidPartsNumber,
#[error("missing room ID or alias")]
MissingRoom,
#[error("no identifier")]
NoIdentifier,
#[error("too many identifiers")]
TooManyIdentifiers,
#[error("unknown identifier")]
UnknownIdentifier,
#[error("unknown identifier pair")]
UnknownIdentifierPair,
#[error("unknown identifier type")]
UnknownType,
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum MatrixToError {
#[error("given string is not a valid URL")]
InvalidUrl,
#[error("base URL is not https://matrix.to/#/")]
WrongBaseUrl,
#[error("unknown additional argument")]
UnknownArgument,
}
#[derive(Copy, Clone, Debug, Eq, Hash, PartialEq, thiserror::Error)]
#[non_exhaustive]
pub enum MatrixUriError {
#[error("scheme is not 'matrix:'")]
WrongScheme,
#[error("too many actions")]
TooManyActions,
#[error("unknown query item")]
UnknownQueryItem,
}
#[cfg(test)]
mod tests {
use std::mem::size_of;
use super::Error;
#[test]
fn small_error_type() {
assert!(size_of::<Error>() <= 8);
}
}