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
238
239
240
241
242
243
244
245
246
use core::borrow::Borrow;
use core::fmt;
use core::ops::Deref;
use core::str;
use crate::constants::MAX_BUF_LEN;
use crate::format::Format;
use crate::to_formatted_str::ToFormattedStr;
#[derive(Copy, Clone)]
pub struct Buffer {
pub(crate) inner: [u8; MAX_BUF_LEN],
pub(crate) pos: usize,
pub(crate) end: usize,
}
impl Buffer {
#[inline(always)]
pub fn new() -> Buffer {
Buffer {
inner: [0; MAX_BUF_LEN],
pos: MAX_BUF_LEN,
end: MAX_BUF_LEN,
}
}
#[inline(always)]
pub fn as_bytes(&self) -> &[u8] {
&self.inner[self.pos..self.end]
}
#[inline(always)]
pub fn as_str(&self) -> &str {
unsafe { str::from_utf8_unchecked(self.as_bytes()) }
}
#[inline(always)]
pub fn is_empty(&self) -> bool {
self.len() == 0
}
#[inline(always)]
pub fn len(&self) -> usize {
self.end - self.pos
}
#[inline(always)]
pub fn write_formatted<F, N>(&mut self, n: &N, format: &F) -> usize
where
F: Format,
N: ToFormattedStr,
{
n.read_to_buffer(self, format)
}
#[inline(always)]
pub(crate) fn as_mut_ptr(&mut self) -> *mut u8 {
self.inner.as_mut_ptr()
}
#[inline(always)]
pub(crate) fn write_with_itoa<N: itoa::Integer>(&mut self, n: N) -> usize {
let mut itoa_buf = itoa::Buffer::new();
let s = itoa_buf.format(n);
let s_len = s.len();
self.pos = MAX_BUF_LEN - s_len;
self.end = MAX_BUF_LEN;
let dst = &mut self.inner[self.pos..self.end];
dst.copy_from_slice(s.as_bytes());
s_len
}
}
impl AsRef<str> for Buffer {
#[inline(always)]
fn as_ref(&self) -> &str {
self.as_str()
}
}
impl Borrow<str> for Buffer {
#[inline(always)]
fn borrow(&self) -> &str {
self.as_str()
}
}
impl fmt::Debug for Buffer {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.as_str())
}
}
impl Default for Buffer {
#[inline(always)]
fn default() -> Buffer {
Buffer::new()
}
}
impl Deref for Buffer {
type Target = str;
#[inline(always)]
fn deref(&self) -> &Self::Target {
self.as_str()
}
}
impl fmt::Display for Buffer {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "{}", self.as_str())
}
}
#[cfg(feature = "with-serde")]
mod serialization {
use serde::{de, ser};
use super::*;
impl ser::Serialize for Buffer {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where
S: ser::Serializer,
{
serializer.serialize_bytes(self.as_bytes())
}
}
impl<'de> de::Deserialize<'de> for Buffer {
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
where
D: de::Deserializer<'de>,
{
struct BufferVisitor;
impl<'de> de::Visitor<'de> for BufferVisitor {
type Value = Buffer;
fn expecting(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
write!(f, "bytes of maximum length {}", MAX_BUF_LEN)
}
fn visit_seq<V>(self, mut seq: V) -> Result<Buffer, V::Error>
where
V: de::SeqAccess<'de>,
{
let mut inner: [u8; MAX_BUF_LEN] = [0; MAX_BUF_LEN];
let mut index = 0;
while let Some(value) = seq.next_element()? {
if index < MAX_BUF_LEN {
inner[index] = value;
index += 1;
} else {
return Err(de::Error::invalid_length(index, &self));
}
}
Ok(Buffer {
inner,
pos: 0,
end: index,
})
}
}
deserializer.deserialize_bytes(BufferVisitor)
}
}
#[cfg(test)]
mod tests {
use arrayvec::ArrayString;
use crate::constants::MAX_BUF_LEN;
use crate::{Buffer, Locale};
#[test]
fn test_buffer_serialization() {
let mut buf = Buffer::new();
let _ = buf.write_formatted(&1_000, &Locale::en);
let s = serde_json::to_string(&buf).unwrap();
assert_eq!(&s, "[49,44,48,48,48]");
}
#[test]
fn test_buffer_deserialization() {
let buf: Buffer = serde_json::from_str("[49,44,48,48,48]").unwrap();
assert_eq!(0, buf.pos);
assert_eq!(5, buf.end);
assert_eq!(&[49, 44, 48, 48, 48], buf.as_bytes());
assert_eq!("1,000", buf.as_str());
let mut should_fail = ArrayString::<1024>::new();
should_fail.push_str("[0");
for _ in 0..MAX_BUF_LEN {
should_fail.push_str(",0");
}
should_fail.push(']');
let result: Result<Buffer, serde_json::Error> = serde_json::from_str(&should_fail);
if result.is_ok() {
panic!("was somehow able to deserialize bytes that were too long")
}
}
}
}