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
use core::{
fmt::Debug,
marker::PhantomData,
};
use crate::Error;
use super::Decode;
pub trait DecodeExt<'a>: Decode<'a> {
fn decode_iter(buff: &'a [u8]) -> DecodeIter<'a, Self::Output> {
DecodeIter {
buff,
index: 0,
_t: PhantomData,
}
}
}
impl <'a, T: Decode<'a>> DecodeExt<'a> for T {}
#[derive(Debug)]
pub struct DecodeIter<'a, T> {
buff: &'a [u8],
index: usize,
_t: PhantomData<T>,
}
impl<'a, T> DecodeIter<'a, T>
where
T: Decode<'a, Output = T>,
<T as Decode<'a>>::Error: From<Error> + Debug,
{
pub fn new(buff: &'a [u8]) -> Self {
Self{ buff, index: 0, _t: PhantomData }
}
}
impl<'a, T> Iterator for DecodeIter<'a, T>
where
T: Decode<'a, Output = T>,
<T as Decode<'a>>::Error: From<Error> + Debug,
{
type Item = Result<T, <T as Decode<'a>>::Error>;
fn next(&mut self) -> Option<Self::Item> {
if self.index == self.buff.len() {
return None;
}
let (v, n) = match T::decode(&self.buff[self.index..]) {
Ok((v, n)) => (v, n),
Err(e) => return Some(Err(e)),
};
self.index += n;
Some(Ok(v))
}
}
impl<'a, T> Clone for DecodeIter<'a, T>
where
T: Decode<'a, Output = T>,
<T as Decode<'a>>::Error: From<Error> + Debug,
{
fn clone(&self) -> Self {
Self{ buff: self.buff, index: 0, _t: PhantomData }
}
}