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
use std::marker;
use std::slice;
use crate::Match;
pub struct MatchIterator<'a> {
head: *const yara_sys::YR_MATCH,
_marker: marker::PhantomData<&'a yara_sys::YR_MATCH>,
}
impl<'a> From<&'a yara_sys::YR_MATCHES> for MatchIterator<'a> {
fn from(matches: &'a yara_sys::YR_MATCHES) -> MatchIterator<'a> {
MatchIterator {
head: matches.get_head(),
_marker: marker::PhantomData::default(),
}
}
}
impl<'a> Iterator for MatchIterator<'a> {
type Item = &'a yara_sys::YR_MATCH;
fn next(&mut self) -> Option<Self::Item> {
if !self.head.is_null() {
let m = unsafe { &*self.head };
self.head = m.next;
Some(m)
} else {
None
}
}
}
impl<'a> From<&'a yara_sys::YR_MATCH> for Match {
fn from(m: &yara_sys::YR_MATCH) -> Self {
Match {
offset: m.offset as usize,
length: m.match_length as usize,
data: Vec::from(unsafe { slice::from_raw_parts(m.data, m.data_length as usize) }),
}
}
}