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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
use std::cmp::min;
#[cfg(test)]
extern crate aho_corasick;
type NByteIdx = u16;
type NeedleIdx = u16;
#[derive(Debug)]
pub struct TwoByteWM {
needles: Vec<(usize, Vec<u8>)>,
prefix: Vec<u16>,
pat_len: NByteIdx,
shift: Vec<NByteIdx>,
hash: Vec<NeedleIdx>,
}
#[derive(Debug, PartialEq)]
pub struct Match {
pub start: usize,
pub end: usize,
pub pat_idx: usize,
}
pub struct Matches<'a, 'b> {
wm: &'a TwoByteWM,
haystack: &'b [u8],
cur_pos: usize,
}
impl<'a, 'b> Iterator for Matches<'a, 'b> {
type Item = Match;
fn next(&mut self) -> Option<Match> {
self.wm.find_from(self.haystack, self.cur_pos).map(|m| { self.cur_pos = m.end; m })
}
}
fn hash_fn(a: u8, b: u8) -> NeedleIdx {
((a as NeedleIdx) << 5) + (b as NeedleIdx)
}
const HASH_MAX: usize = (0xFFusize << 5) + 0xFF;
impl TwoByteWM {
fn pat(&self, p_idx: NeedleIdx) -> &[u8] {
&self.needles[p_idx as usize].1
}
fn pat_idx(&self, p_idx: NeedleIdx) -> usize {
self.needles[p_idx as usize].0
}
pub fn new<I, P>(needles: I) -> TwoByteWM
where P: AsRef<[u8]>, I: IntoIterator<Item=P> {
let needles: Vec<_> = needles.into_iter().map(|s| s.as_ref().to_vec()).collect();
if needles.is_empty() {
panic!("cannot create TwoByteWM from an empty set of needles");
} else if needles.len() > NeedleIdx::max_value() as usize {
panic!("too many needles");
}
let pat_len = needles.iter().map(|p| p.len()).min().unwrap();
if pat_len < 2 {
panic!("all needles must have length (in bytes) at least 2");
} else if pat_len > NByteIdx::max_value() as usize {
panic!("these needles are too long");
}
let pat_len = pat_len as NByteIdx;
let h = |p: &[u8]| hash_fn(p[(pat_len-2) as usize], p[(pat_len-1) as usize]);
let mut needles: Vec<_> = needles.into_iter().enumerate().collect();
needles.sort_by(|p, q| h(&p.1).cmp(&h(&q.1)));
let needles = needles;
let prefix: Vec<_> = needles.iter()
.map(|p| ((p.1[0] as u16) << 8) + (p.1[1] as u16))
.collect();
let mut hash = vec![0; HASH_MAX + 2];
for (p_idx, &(_, ref p)) in needles.iter().enumerate().rev() {
let h_idx = h(&p) as usize;
hash[h_idx] = p_idx as NeedleIdx;
if hash[h_idx + 1] == 0 {
hash[h_idx + 1] = p_idx as NeedleIdx + 1;
}
}
let mut shift = vec![pat_len - 1; HASH_MAX + 1];
for &(_, ref p) in &needles {
for p_pos in 0..(pat_len - 1) {
let h = hash_fn(p[p_pos as usize], p[(p_pos + 1) as usize]);
shift[h as usize] = min(shift[h as usize], pat_len - p_pos - 2);
}
}
TwoByteWM {
needles: needles,
prefix: prefix,
pat_len: pat_len,
shift: shift,
hash: hash,
}
}
pub fn find_from<P>(&self, haystack: P, offset: usize) -> Option<Match> where P: AsRef<[u8]> {
let pat_len = self.pat_len as usize;
let mut pos = offset + pat_len - 1;
let haystack = haystack.as_ref();
while pos <= haystack.len() - 1 {
let h = hash_fn(haystack[pos - 1], haystack[pos]) as usize;
let shift = self.shift[h] as usize;
if shift == 0 {
let a = haystack[pos - pat_len + 1];
let b = haystack[pos - pat_len + 2];
let prefix = ((a as u16) << 8) + (b as u16);
let mut found: Option<NeedleIdx> = None;
for p_idx in self.hash[h]..self.hash[h+1] {
if self.prefix[p_idx as usize] == prefix {
let p = self.pat(p_idx);
if haystack[(pos - pat_len + 1)..].starts_with(&p) {
found = match found {
None => Some(p_idx),
Some(q_idx) => {
let q = self.pat(q_idx);
Some(if p.len() < q.len() { p_idx } else { q_idx })
}
}
}
}
}
if let Some(p_idx) = found {
return Some(Match {
start: pos - pat_len + 1,
end: pos - pat_len + 1 + self.pat(p_idx).len(),
pat_idx: self.pat_idx(p_idx),
})
}
pos += 1;
} else {
pos += shift;
}
}
None
}
pub fn find<'a, 'b>(&'a self, haystack: &'b str) -> Matches<'a, 'b> {
Matches {
wm: &self,
haystack: haystack.as_bytes(),
cur_pos: 0,
}
}
}
#[cfg(test)]
mod tests {
use ::{Match, TwoByteWM};
use aho_corasick::{AcAutomaton, Automaton};
#[test]
fn examples() {
let needles = vec![
"fox",
"brown",
"vwxyz",
"yz",
"ijk",
"ijklm",
];
let haystacks = vec![
"The quick brown fox jumped over the lazy dog.",
"abcdefghijklmnopqrstuvwxyz",
];
let wm = TwoByteWM::new(&needles);
let ac = AcAutomaton::new(&needles);
for hay in &haystacks {
let wm_answer: Vec<Match> = wm.find(hay).collect();
let ac_answer: Vec<Match> = ac.find(hay)
.map(|m| Match { start: m.start, end: m.end, pat_idx: m.pati })
.collect();
assert_eq!(wm_answer, ac_answer);
}
}
}