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
use crate::{Errors, section::{GenericSection, SectionCore}};
pub struct SegmentIterator<'a> {
data: &'a[u8],
index: usize,
last_error: Option<Errors>,
last_type: Option<u32>,
}
impl<'a> SegmentIterator<'a> {
pub fn new(data: &'a[u8]) -> SegmentIterator<'a> {
SegmentIterator {
data,
index: 0,
last_error: None,
last_type: None,
}
}
pub fn is_valid(&self) -> bool { self.last_error.is_none() }
pub fn error(&self) -> &Errors {self.last_error.as_ref().unwrap()}
pub fn internal_index(&self) -> usize { self.index }
pub fn internal_slice(&self) -> &[u8] { self.data }
}
impl<'a> std::iter::Iterator for SegmentIterator<'a> {
type Item = GenericSection<'a>;
fn next(&mut self) -> Option<Self::Item> {
if self.data.len() <= self.index {
return None;
}
GenericSection::from_slice(&self.data[self.index..], self.last_type)
.and_then(|f| {
self.index += f.len();
self.last_type = Some(f.data_type());
Ok(f)
}).or_else(|e|{
self.last_error = Some(e);
Err(Errors::NoData)
}).ok()
}
}