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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
use std::{
convert::{Infallible, TryFrom, TryInto},
fmt::Display,
str::FromStr,
};
use serde::{Deserialize, Serialize};
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
#[serde(try_from = "String", into = "String")]
pub struct IdString([u8; 26]);
impl IdString {
fn check(s: &str) -> Result<(), IdStringDeserializeError> {
if s.len() != 26 {
return Err(IdStringDeserializeError::IncorrectLength {
expected: 26,
len: s.len(),
});
}
match s.find(|c: char| !('A'..='Z').contains(&c) && !('0'..='9').contains(&c)) {
Some(pos) => {
let c = s.chars().nth(pos).unwrap();
return Err(IdStringDeserializeError::InvalidCharacter { c, pos });
}
None => {}
}
Ok(())
}
pub unsafe fn from_str_unchecked(s: &str) -> Self {
Self(s.as_bytes().try_into().unwrap())
}
pub unsafe fn from_string_unchecked(s: String) -> Self {
Self(s.as_bytes().try_into().unwrap())
}
}
#[derive(thiserror::Error, Debug)]
pub enum IdStringDeserializeError {
#[error("invalid character '{c}' at position {pos}")]
InvalidCharacter { pos: usize, c: char },
#[error("incorrect length: is {len}, expected {expected}")]
IncorrectLength { len: usize, expected: usize },
}
impl FromStr for IdString {
type Err = IdStringDeserializeError;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Self::check(s)?;
Ok(Self(s.as_bytes().try_into().unwrap()))
}
}
impl TryFrom<String> for IdString {
type Error = IdStringDeserializeError;
fn try_from(s: String) -> Result<Self, Self::Error> {
Self::check(&s)?;
Ok(Self(s.as_bytes().try_into().unwrap()))
}
}
impl AsRef<str> for IdString {
fn as_ref(&self) -> &str {
unsafe { std::str::from_utf8_unchecked(&self.0) }
}
}
impl From<IdString> for String {
fn from(id: IdString) -> Self {
id.as_ref().to_string()
}
}
impl Display for IdString {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.as_ref().fmt(f)
}
}
macro_rules! id_impl {
($name:ident) => {
impl From<IdString> for $name {
fn from(id: IdString) -> Self {
Self(id)
}
}
impl From<$name> for IdString {
fn from(id: $name) -> Self {
id.0
}
}
impl FromStr for $name {
type Err = <IdString as FromStr>::Err;
fn from_str(s: &str) -> Result<Self, Self::Err> {
s.parse().map(Self)
}
}
impl TryFrom<String> for $name {
type Error = <IdString as TryFrom<String>>::Error;
fn try_from(value: String) -> Result<Self, Self::Error> {
IdString::try_from(value).map(Self)
}
}
impl AsRef<str> for $name {
fn as_ref(&self) -> &str {
self.0.as_ref()
}
}
impl From<$name> for String {
fn from(id: $name) -> Self {
id.as_ref().to_string()
}
}
impl Display for $name {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.0.fmt(f)
}
}
};
}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
#[serde(transparent)]
pub struct UserId(IdString);
id_impl! {UserId}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
#[serde(transparent)]
pub struct ChannelId(IdString);
id_impl! {ChannelId}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
#[serde(transparent)]
pub struct MessageId(IdString);
id_impl! {MessageId}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
#[serde(transparent)]
pub struct ServerId(IdString);
id_impl! {ServerId}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
#[serde(transparent)]
pub struct RoleId(IdString);
id_impl! {RoleId}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
pub struct MemberId {
pub server: ServerId,
pub user: UserId,
}
#[derive(Serialize, Deserialize, Debug, Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd)]
#[serde(try_from = "String", into = "String")]
pub struct AttachmentId([u8; 128], usize);
impl FromStr for AttachmentId {
type Err = Infallible;
fn from_str(s: &str) -> Result<Self, Self::Err> {
Ok(Self::from(s))
}
}
impl<'a> From<&'a str> for AttachmentId {
fn from(s: &'a str) -> Self {
let len = s.len();
let mut buf = [0; 128];
buf[..len].copy_from_slice(s.as_bytes());
Self(buf, len)
}
}
impl From<String> for AttachmentId {
fn from(s: String) -> Self {
Self::from(s.as_str())
}
}
impl AsRef<str> for AttachmentId {
fn as_ref(&self) -> &str {
unsafe { std::str::from_utf8_unchecked(&self.0[..self.1]) }
}
}
impl From<AttachmentId> for String {
fn from(id: AttachmentId) -> Self {
id.as_ref().to_string()
}
}
impl Display for AttachmentId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.as_ref().fmt(f)
}
}