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
use crate::encoder::Encoder;
#[derive(Debug, Eq, PartialEq, PartialOrd, Ord)]
pub struct EncoderBuffer<'a> {
bytes: &'a mut [u8],
position: usize,
}
impl<'a> EncoderBuffer<'a> {
#[inline]
pub fn new(bytes: &'a mut [u8]) -> Self {
Self { bytes, position: 0 }
}
#[inline]
pub fn set_position(&mut self, position: usize) {
debug_assert!(position <= self.capacity());
self.position = position;
}
#[inline]
pub fn advance_position(&mut self, offset: usize) {
let position = self.position + offset;
self.set_position(position)
}
#[inline]
pub fn split_off(self) -> (&'a mut [u8], &'a mut [u8]) {
self.bytes.split_at_mut(self.position)
}
#[inline]
pub fn split_mut(&mut self) -> (&mut [u8], &mut [u8]) {
self.bytes.split_at_mut(self.position)
}
#[inline]
pub fn as_mut_slice(&mut self) -> &mut [u8] {
&mut self.bytes[..self.position]
}
#[inline]
fn assert_capacity(&self, len: usize) {
debug_assert!(
len <= self.remaining_capacity(),
"not enough buffer capacity. wanted: {}, available: {}",
len,
self.remaining_capacity()
);
}
}
impl<'a> Encoder for EncoderBuffer<'a> {
#[inline]
fn write_sized<F: FnOnce(&mut [u8])>(&mut self, len: usize, write: F) {
self.assert_capacity(len);
let end = self.position + len;
write(&mut self.bytes[self.position..end]);
self.position = end;
}
#[inline]
fn write_slice(&mut self, slice: &[u8]) {
self.assert_capacity(slice.len());
let position = self.position;
let len = slice.len();
let end = position + len;
self.bytes[position..end].copy_from_slice(slice);
self.position = end;
}
#[inline]
fn write_repeated(&mut self, count: usize, value: u8) {
self.assert_capacity(count);
let start = self.position;
let end = start + count;
for byte in &mut self.bytes[start..end] {
*byte = value;
}
self.position = end;
}
#[inline]
fn capacity(&self) -> usize {
self.bytes.len()
}
#[inline]
fn len(&self) -> usize {
self.position
}
}