prefix-trie 0.9.0

Prefix trie (tree) datastructure (both a set and a map) that provides exact and longest-prefix matches.
Documentation
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
//! Module that contains the implementation for the iterators

use num_traits::Zero;

use crate::{
    Prefix,
    {
        allocator::{Loc, RawPtr},
        node::{child_bit, LexIterElem, MaskedLexIter},
        table::{DataIdx, Table, K},
        PrefixMap,
    },
};

/// An iterator over all entries of a [`PrefixMap`] in lexicographic order.
pub struct Iter<'a, P: Prefix, T> {
    table: Option<&'a Table<T>>,
    stack: Vec<MaskedLexIter<P::R>>,
}

impl<P: Prefix, T> Clone for Iter<'_, P, T> {
    fn clone(&self) -> Self {
        Self {
            table: self.table,
            stack: self.stack.clone(),
        }
    }
}

impl<P: Prefix, T> Default for Iter<'_, P, T> {
    fn default() -> Self {
        Self {
            table: None,
            stack: Vec::new(),
        }
    }
}

impl<'a, P: Prefix, T> Iter<'a, P, T> {
    /// Create a new iterator that iterates over all
    pub(crate) fn new(table: &'a Table<T>) -> Self {
        // SAFETY: `Loc::root()` is always valid. The `&'a Table<T>` borrow prevents
        // structural mutations for the lifetime of the iterator, keeping all Locs valid.
        let lex = unsafe { table.lex_iter(Loc::root(), 0, <P::R as Zero>::zero()) };
        Self::at_node(table, lex)
    }

    pub(crate) fn at_node(table: &'a Table<T>, lex: MaskedLexIter<P::R>) -> Self {
        let stack = vec![lex];
        Self {
            table: Some(table),
            stack,
        }
    }
}

impl<'a, P: Prefix, T> Iterator for Iter<'a, P, T> {
    type Item = (P, &'a T);

    fn next(&mut self) -> Option<(P, &'a T)> {
        let table = self.table?;
        while let Some(lex_iter) = self.stack.last_mut() {
            let key = *lex_iter.key();
            let Some(next) = lex_iter.next() else {
                self.stack.pop();
                continue;
            };

            match next {
                LexIterElem::Data(idx) => {
                    // SAFETY: `Iter` holds `&'a Table`; no structural changes occur during
                    // immutable iteration, so `idx.node` remains valid.
                    let Some(r) = (unsafe { idx.resolve(table) }) else {
                        continue;
                    };
                    let p = r.prefix(key);
                    return Some((p, r.get()));
                }
                LexIterElem::Child(next_loc, depth, next_key) => {
                    // SAFETY: `next_loc` came from the previous `lex_iter` step; the borrow
                    // of `table` prevents structural mutations, so `next_loc` remains valid.
                    self.stack
                        .push(unsafe { table.lex_iter(next_loc, depth, next_key) })
                }
            }
        }
        None
    }
}

/// An iterator over all prefixes of a [`PrefixMap`] in lexicographic order.
#[derive(Clone, Default)]
pub struct Keys<'a, P: Prefix, T>(pub(crate) Iter<'a, P, T>);

impl<'a, P: Prefix, T> Iterator for Keys<'a, P, T> {
    type Item = P;

    fn next(&mut self) -> Option<P> {
        self.0.next().map(|(k, _)| k)
    }
}

/// An iterator over all values of a [`PrefixMap`] in lexicographic order of their associated
/// prefixes.
#[derive(Clone, Default)]
pub struct Values<'a, P: Prefix, T>(pub(crate) Iter<'a, P, T>);

impl<'a, P: Prefix, T> Iterator for Values<'a, P, T> {
    type Item = &'a T;

    fn next(&mut self) -> Option<&'a T> {
        self.0.next().map(|(_, v)| v)
    }
}

/// A mutable iterator over a [`PrefixMap`]. This iterator yields elements in lexicographic order of
/// their associated prefix.
pub struct IterMut<'a, P: Prefix, T> {
    // SAFETY
    // 1. This structure must be created using a mutable reference to the table (see Self::new).
    // 2. The tree cannot have cycles (ensured by the way we create the tree.)
    table: Option<(&'a Table<T>, RawPtr<T>)>,
    stack: Vec<MaskedLexIter<P::R>>,
}

impl<P: Prefix, T> Default for IterMut<'_, P, T> {
    fn default() -> Self {
        Self {
            table: None,
            stack: Vec::new(),
        }
    }
}

impl<'a, P: Prefix, T> IterMut<'a, P, T> {
    /// Create a new iterator that iterates over all
    pub(crate) fn new(table: &'a mut Table<T>) -> Self {
        // SAFETY: `Loc::root()` is always valid. The `&'a mut Table<T>` borrow prevents
        // structural mutations for the lifetime of the iterator, keeping all Locs valid.
        let lex = unsafe { table.lex_iter(Loc::root(), 0, <P::R as Zero>::zero()) };
        Self::at_node(table, lex)
    }

    pub(crate) fn at_node(table: &'a mut Table<T>, lex: MaskedLexIter<P::R>) -> Self {
        let ptr = table.raw_cells();
        Self {
            table: Some((table, ptr)),
            stack: vec![lex],
        }
    }
}

impl<'a, P: Prefix, T> Iterator for IterMut<'a, P, T> {
    type Item = (P, &'a mut T);

    fn next(&mut self) -> Option<Self::Item> {
        let (table, mut ptr) = self.table?;
        while let Some(lex_iter) = self.stack.last_mut() {
            let key = *lex_iter.key();
            let Some(next) = lex_iter.next() else {
                self.stack.pop();
                continue;
            };

            match next {
                LexIterElem::Data(idx) => {
                    // SAFETY: `IterMut` holds exclusive access to the table data; no structural
                    // changes occur, so `idx.node` remains valid.
                    let Some(r) = (unsafe { idx.resolve(table) }) else {
                        continue;
                    };
                    let p = r.prefix(key);
                    // SAFETY: `IterMut` was created from `&'a mut Table`; ptr was obtained
                    // from that same table. The tree is acyclic so each node is visited at most
                    // once, guaranteeing no two live `&mut T` references to the same slot.
                    return Some((p, unsafe { r.unsafe_get_mut(&mut ptr) }));
                }
                LexIterElem::Child(next_idx, depth, next_key) => {
                    // SAFETY: `next_idx` came from the previous `lex_iter` step; the exclusive
                    // borrow of `table` prevents structural mutations, so `next_idx` remains valid.
                    self.stack
                        .push(unsafe { table.lex_iter(next_idx, depth, next_key) })
                }
            }
        }
        None
    }
}

/// A mutable iterator over values of [`PrefixMap`]. This iterator yields elements in lexicographic
/// order.
#[derive(Default)]
pub struct ValuesMut<'a, P: Prefix, T>(pub(crate) IterMut<'a, P, T>);

impl<'a, P: Prefix, T> Iterator for ValuesMut<'a, P, T> {
    type Item = &'a mut T;

    fn next(&mut self) -> Option<Self::Item> {
        self.0.next().map(|(_, v)| v)
    }
}

/// An iterator over all owned entries of a [`PrefixMap`] in lexicographic order.
#[derive(Clone)]
pub struct IntoIter<P: Prefix, T> {
    table: Table<T>,
    stack: Vec<MaskedLexIter<P::R>>,
}

impl<P: Prefix, T> IntoIter<P, T> {
    /// Create a new iterator that iterates over all
    pub(crate) fn new(table: Table<T>) -> Self {
        // SAFETY: `Loc::root()` is always valid. `IntoIter` owns the table, preventing
        // any external structural mutations for its lifetime.
        let lex = unsafe { table.lex_iter(Loc::root(), 0, <P::R as Zero>::zero()) };
        Self::at_node(table, lex)
    }

    pub(crate) fn at_node(table: Table<T>, lex: MaskedLexIter<P::R>) -> Self {
        let stack = vec![lex];
        Self { table, stack }
    }
}

impl<P: Prefix, T> Iterator for IntoIter<P, T> {
    type Item = (P, T);

    fn next(&mut self) -> Option<(P, T)> {
        while let Some(lex_iter) = self.stack.last_mut() {
            let key = *lex_iter.key();
            let Some(next) = lex_iter.next() else {
                self.stack.pop();
                continue;
            };

            match next {
                LexIterElem::Data(idx) => {
                    // SAFETY: IntoIter owns the table; no external mutations possible.
                    // `take()` clears the bitmap bit, so the MaskedLexIter snapshot may
                    // yield already-taken bits; `resolve_mut` re-checks and returns None.
                    let Some(r) = (unsafe { idx.resolve_mut(&mut self.table) }) else {
                        continue;
                    };
                    let p = r.prefix(key);
                    return Some((p, r.take()));
                }
                LexIterElem::Child(next_loc, depth, next_key) => {
                    // SAFETY: `IntoIter` owns the table and makes no structural mutations;
                    // `next_loc` came from the previous `lex_iter` step and remains valid.
                    self.stack
                        .push(unsafe { self.table.lex_iter(next_loc, depth, next_key) })
                }
            }
        }
        None
    }
}

/// An iterator over all prefixes of a [`PrefixMap`] in lexicographic order.
#[derive(Clone)]
pub struct IntoKeys<P: Prefix, T>(pub(super) IntoIter<P, T>);

impl<P: Prefix, T> Iterator for IntoKeys<P, T> {
    type Item = P;

    fn next(&mut self) -> Option<P> {
        self.0.next().map(|(k, _)| k)
    }
}

/// An iterator over all values of a [`PrefixMap`] in lexicographic order of their associated
/// prefix.
#[derive(Clone)]
pub struct IntoValues<P: Prefix, T>(pub(super) IntoIter<P, T>);

impl<P: Prefix, T> Iterator for IntoValues<P, T> {
    type Item = T;

    fn next(&mut self) -> Option<T> {
        self.0.next().map(|(_, v)| v)
    }
}

impl<P: Prefix, T> IntoIterator for PrefixMap<P, T> {
    type Item = (P, T);

    type IntoIter = IntoIter<P, T>;

    fn into_iter(self) -> Self::IntoIter {
        IntoIter::new(self.table)
    }
}

impl<'a, P: Prefix, T> IntoIterator for &'a PrefixMap<P, T> {
    type Item = (P, &'a T);

    type IntoIter = Iter<'a, P, T>;

    fn into_iter(self) -> Self::IntoIter {
        Iter::new(&self.table)
    }
}

impl<P, T> FromIterator<(P, T)> for PrefixMap<P, T>
where
    P: Prefix,
{
    fn from_iter<I: IntoIterator<Item = (P, T)>>(iter: I) -> Self {
        let mut map = Self::new();
        iter.into_iter().for_each(|(p, v)| {
            map.insert(p, v);
        });
        map
    }
}

/// An iterator that yields all items in a `PrefixMap` that cover (are a superset of) a given
/// prefix (including the prefix itself if present). See [`PrefixMap::cover`] for how to
/// create this iterator.
pub struct Cover<'a, P: Prefix, T> {
    table: &'a Table<T>,
    next_loc: Option<Loc>,
    lpm_elements: Vec<DataIdx>,
    key: P::R,
    prefix_len: u32,
    depth: u32,
}

impl<'a, P: Prefix, T> Cover<'a, P, T> {
    pub(crate) fn new(table: &'a PrefixMap<P, T>, prefix: &P) -> Self {
        let key = prefix.repr();
        let prefix_len = prefix.prefix_len() as u32;
        let lpm_elements = Vec::new();
        let next_loc = Some(Loc::root());
        Self {
            table: &table.table,
            next_loc,
            lpm_elements,
            key,
            prefix_len,
            depth: 0,
        }
    }
}

impl<'a, P: Prefix, T> Iterator for Cover<'a, P, T>
where
    P: Prefix,
{
    type Item = (P, &'a T);

    fn next(&mut self) -> Option<Self::Item> {
        loop {
            let Some(loc) = self.lpm_elements.pop() else {
                // fill the lpm_nodes
                let loc = self.next_loc?; // if none, then exit.
                                          // SAFETY: `Cover` holds `&'a Table<T>` — no structural mutations are possible
                                          // for the lifetime `'a`. `loc` starts as `Loc::root()` and is only updated to
                                          // the result of a prior `child()` call, so it is always a valid, live node.
                self.lpm_elements = unsafe {
                    self.table
                        .data_ancestors(loc, self.depth, self.key, self.prefix_len)
                }
                .collect();
                self.lpm_elements.reverse();
                let prefix_in_this_node = self.prefix_len < self.depth + K;
                self.next_loc = if prefix_in_this_node {
                    None
                } else {
                    let child_bit = child_bit(self.depth, self.key);
                    // SAFETY: same invariant as above.
                    unsafe { self.table.child(loc, child_bit) }
                };
                self.depth += K;
                continue;
            };

            // SAFETY: `loc` came from `data_ancestors`, which only yields bits set in the
            // bitmap. `Cover` holds `&'a Table<T>` and never mutates node structure.
            let r = unsafe { loc.resolve(self.table) }
                .expect("Cover: data_ancestors yielded stale idx");
            return Some((r.prefix(self.key), r.get()));
        }
    }
}

/// An iterator that yields all keys (prefixes) in a `PrefixMap` that covers a given prefix
/// (including the prefix itself if present). See [`PrefixMap::cover_keys`] for how to create this
/// iterator.
pub struct CoverKeys<'a, P: Prefix, T>(pub(super) Cover<'a, P, T>);

impl<'a, P: Prefix, T> Iterator for CoverKeys<'a, P, T>
where
    P: Prefix,
{
    type Item = P;

    fn next(&mut self) -> Option<Self::Item> {
        self.0.next().map(|(p, _)| p)
    }
}

/// An iterator that yields all values in a `PrefixMap` that covers a given prefix (including the
/// prefix itself if present). See [`PrefixMap::cover_values`] for how to create this iterator.
pub struct CoverValues<'a, P: Prefix, T>(pub(super) Cover<'a, P, T>);

impl<'a, P: Prefix, T> Iterator for CoverValues<'a, P, T>
where
    P: Prefix,
{
    type Item = &'a T;

    fn next(&mut self) -> Option<Self::Item> {
        self.0.next().map(|(_, t)| t)
    }
}

/// Create a lex iterator that covers the given prefix.
pub(crate) fn lpm_children_iter_start<P: Prefix, T>(
    table: &Table<T>,
    prefix: &P,
) -> MaskedLexIter<P::R> {
    let key = prefix.repr();
    let prefix_len = prefix.prefix_len() as u32;
    table.lex_iter_at(key, prefix_len)
}