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
use bytes::BufMut;
use crate::{Codec, Codec64};
impl Codec for () {
fn codec_name() -> String {
"()".into()
}
fn encode<B>(&self, _buf: &mut B)
where
B: BufMut,
{
}
fn decode<'a>(buf: &'a [u8]) -> Result<Self, String> {
if !buf.is_empty() {
return Err(format!("decode expected empty buf got {} bytes", buf.len()));
}
Ok(())
}
}
impl Codec for String {
fn codec_name() -> String {
"String".into()
}
fn encode<B>(&self, buf: &mut B)
where
B: BufMut,
{
buf.put(self.as_bytes())
}
fn decode<'a>(buf: &'a [u8]) -> Result<Self, String> {
String::from_utf8(buf.to_owned()).map_err(|err| err.to_string())
}
}
impl Codec for Vec<u8> {
fn codec_name() -> String {
"Vec<u8>".into()
}
fn encode<B>(&self, buf: &mut B)
where
B: BufMut,
{
buf.put(self.as_slice())
}
fn decode<'a>(buf: &'a [u8]) -> Result<Self, String> {
Ok(buf.to_owned())
}
}
impl Codec64 for i64 {
fn codec_name() -> String {
"i64".to_owned()
}
fn encode(&self) -> [u8; 8] {
self.to_le_bytes()
}
fn decode(buf: [u8; 8]) -> Self {
i64::from_le_bytes(buf)
}
}
impl Codec64 for u64 {
fn codec_name() -> String {
"u64".to_owned()
}
fn encode(&self) -> [u8; 8] {
self.to_le_bytes()
}
fn decode(buf: [u8; 8]) -> Self {
u64::from_le_bytes(buf)
}
}