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
use core::fmt;
use core::mem::MaybeUninit;
use core::ptr;
use musli::error::Error;
use crate::writer::Writer;
pub struct FixedBytes<const N: usize> {
data: [MaybeUninit<u8>; N],
init: usize,
}
impl<const N: usize> FixedBytes<N> {
pub const fn new() -> Self {
Self {
data: unsafe { MaybeUninit::<[MaybeUninit<u8>; N]>::uninit().assume_init() },
init: 0,
}
}
pub fn into_bytes(self) -> Option<[u8; N]> {
if self.init == N {
unsafe { Some((&self.data as *const _ as *const [u8; N]).read()) }
} else {
None
}
}
pub fn as_bytes(&self) -> &[u8] {
if self.init == 0 {
return &[];
}
unsafe { std::slice::from_raw_parts(self.data.as_ptr() as *const u8, self.init) }
}
}
decl_message_repr!(FixedBytesWriterErrorRepr, "failed to write to fixed bytes");
#[derive(Debug)]
pub struct FixedBytesWriterError(FixedBytesWriterErrorRepr);
impl fmt::Display for FixedBytesWriterError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.0.fmt(f)
}
}
impl Error for FixedBytesWriterError {
fn custom<T>(message: T) -> Self
where
T: 'static + Send + Sync + fmt::Display + fmt::Debug,
{
Self(FixedBytesWriterErrorRepr::collect(message))
}
fn collect_from_display<T>(message: T) -> Self
where
T: fmt::Display,
{
Self(FixedBytesWriterErrorRepr::collect(message))
}
}
#[cfg(feature = "std")]
impl std::error::Error for FixedBytesWriterError {}
impl<const N: usize> Writer for FixedBytes<N> {
type Error = FixedBytesWriterError;
fn write_bytes(&mut self, bytes: &[u8]) -> Result<(), Self::Error> {
if bytes.len() > N.saturating_sub(self.init) {
return Err(FixedBytesWriterError::custom("buffer overflow"));
}
unsafe {
let dst = (self.data.as_mut_ptr() as *mut u8).add(self.init);
ptr::copy_nonoverlapping(bytes.as_ptr(), dst, bytes.len());
}
self.init += bytes.len();
Ok(())
}
}