iptrie 0.11.1

IPv4/v6 prefixes lookup structures (based on tries)
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
//! Generic prefix trie map structures
use crate::set::*;
use crate::trie::lctrie::LevelCompressedTrie;
use crate::trie::patricia::RadixTrie;
use std::num::NonZeroUsize;

use crate::prefix::*;

#[cfg(feature = "graphviz")]
use crate::graphviz::DotWriter;

#[cfg(feature = "graphviz")]
use std::fmt::Display;

/// A map of Ip prefixes based on a radix binary trie
#[derive(Clone)]
pub struct RTrieMap<K, V>(pub(crate) RadixTrie<K, V>);

/// A map of Ip prefixes based on a level-compressed trie
pub struct LCTrieMap<K, V>(pub(crate) LevelCompressedTrie<K, V>);

impl<K: IpRootPrefix, V: Default> RTrieMap<K, V> {
    /// Create a new map.
    ///
    /// The root prefix is associated with the default value of `V`.
    #[inline]
    pub fn new() -> Self {
        Self::default()
    }

    /// Create a new map with a initial capacity.
    ///
    /// The root prefix is associated with the default value of `V`.
    #[inline]
    pub fn with_capacity(capacity: usize) -> Self {
        Self::with_root_and_capacity(V::default(), capacity)
    }
}

impl<K: IpRootPrefix, V: Default> Default for RTrieMap<K, V> {
    #[inline]
    fn default() -> Self {
        Self::with_root(V::default())
    }
}

impl<K: IpRootPrefix, V> RTrieMap<K, V> {
    /// Creates a new trie map with the specified value associated to the
    /// root prefix.
    #[inline]
    pub fn with_root(root: V) -> Self {
        Self::with_root_and_capacity(root, 1000)
    }

    /// Creates a new trie map with a initial capacity.
    #[inline]
    pub fn with_root_and_capacity(root: V, capacity: usize) -> Self {
        Self(RadixTrie::new(root, capacity))
    }
}

impl<K: IpPrefix, V> RTrieMap<K, V> {
    /// Returns the size of the map.
    ///
    /// Notice that it never equals zero since the top prefix is
    /// always present in the map.
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// use std::net::Ipv4Addr;
    /// let trie = Ipv4RTrieMap::with_root(42);
    ///
    /// assert_eq!(trie.len().get(), 1);
    /// ```
    #[inline]
    #[allow(clippy::len_without_is_empty)]
    pub fn len(&self) -> NonZeroUsize {
        self.0.len()
    }

    /// Compress this Patricia trie in a LC-Trie.
    ///
    /// For lookup algorithms, a Patricia trie performs unit bit checking and LC-Trie
    /// performs multi bits checking. So the last one is more performant but it
    /// cannot be modified (no insertion or removal operations are provided).
    #[inline]
    pub fn compress(self) -> LCTrieMap<K, V> {
        LCTrieMap(LevelCompressedTrie::new(self.0))
    }

    #[inline]
    pub fn shrink_to_fit(&mut self) {
        self.0.shrink_to_fit()
    }

    /// Inserts a new entry in the map.
    ///
    /// If the specified key already exists in the map, then the previous associated
    /// value is replaced by the new one and is returned.
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    ///
    /// let mut trie = RTrieMap::with_root(42);
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip = Ipv4Prefix::new(addr, 20).unwrap();
    ///
    /// assert_eq!( trie.insert(ip, 45), None);
    /// assert_eq!( trie.insert(ip, 50), Some(45));
    ///
    /// assert_eq!( trie.insert(Ipv4Prefix::default(), 12), Some(42));
    /// ```
    #[inline]
    pub fn insert(&mut self, k: K, v: V) -> Option<V> {
        self.0.insert(k, v)
    }

    /// Gets the value associated with an exact match of the key.
    ///
    /// To access to the longest prefix match, use [`Self::lookup`].
    ///
    /// To get a mutable access to a value, use [`Self::get_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip20 = Ipv4Prefix::new(addr, 20).unwrap();
    /// let ip22 = Ipv4Prefix::new(addr, 22).unwrap();
    /// let ip24 = Ipv4Prefix::new(addr, 24).unwrap();
    ///
    /// trie.insert(ip24, 24);
    /// trie.insert(ip20, 20);
    ///
    /// assert_eq!( trie.get(&ip24), Some(&24));
    /// assert_eq!( trie.get(&ip22), None);
    /// assert_eq!( trie.get(&ip20), Some(&20));
    /// ```
    #[inline]
    pub fn get<Q>(&self, k: &Q) -> Option<&V>
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.get(k).map(|(_, v)| v)
    }

    /// Gets a mutable access to the value associated with an exact match of the key.
    ///
    /// To access to the longest prefix match, use [`Self::lookup_mut`].
    ///
    /// To get a mutable access to a value, use [`Self::get_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip20 = Ipv4Prefix::new(addr, 20).unwrap();
    /// let ip22 = Ipv4Prefix::new(addr, 22).unwrap();
    ///
    /// trie.insert(ip20, 20);
    /// assert_eq!( trie.get(&ip20), Some(&20));
    ///
    /// assert_eq!( trie.get_mut(&ip22), None);
    /// *trie.get_mut(&ip20).unwrap() = 42;
    /// assert_eq!( trie.get(&ip20), Some(&42));
    /// ```
    #[inline]
    pub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.get_mut(k).map(|(_, v)| v)
    }

    /// Removes a previously inserted prefix (exact match).
    /// # Panic
    /// Panics if trying to remove the root prefix.
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip20 = Ipv4Prefix::new(addr, 20).unwrap();
    /// let ip22 = Ipv4Prefix::new(addr, 22).unwrap();
    ///
    /// trie.insert(ip22, 22);
    /// trie.insert(ip20, 20);
    /// assert_eq!( trie.get(&ip22), Some(&22));
    ///
    /// trie.remove(&ip22);
    /// assert_eq!( trie.get(&ip22), None);
    /// ```
    #[inline]
    pub fn remove<Q>(&mut self, k: &Q) -> Option<V>
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.remove(k)
    }

    /// Gets the entry associated with the longest prefix match of the key.
    ///
    /// As the top prefix always matches, it never fails.
    ///
    /// To access to the exact prefix match, use [`Self::get`].
    ///
    /// To get a mutable access to a value, use [`Self::lookup_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip20 = Ipv4Prefix::new(addr, 20).unwrap();
    /// let ip22 = Ipv4Prefix::new(addr, 22).unwrap();
    /// let ip24 = Ipv4Prefix::new(addr, 24).unwrap();
    ///
    /// trie.insert(ip20, 20);
    /// trie.insert(ip24, 24);
    ///
    /// assert_eq!( trie.lookup(&ip20), (&ip20, &20));
    /// assert_eq!( trie.lookup(&ip22), (&ip20, &20));
    /// assert_eq!( trie.lookup(&ip24), (&ip24, &24));
    ///
    /// assert_eq!( trie.lookup(&addr), (&ip24, &24));
    /// ```
    #[inline]
    pub fn lookup<Q>(&self, k: &Q) -> (&K, &V)
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.lookup(k)
    }

    /// Gets a mutable access to the value associated with a longest prefix match of the key.
    ///
    /// To access to the exact prefix match, use [`Self::get_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let ip20 = "1.1.1.1/20".parse::<Ipv4Prefix>().unwrap();
    /// let ip22 = "1.1.1.1/22".parse::<Ipv4Prefix>().unwrap();
    ///
    /// trie.insert(ip20, 20);
    /// assert_eq!( trie.get(&ip20), Some(&20));
    ///
    /// *trie.lookup_mut(&ip22).1 = 42;
    /// assert_eq!( trie.get(&ip20), Some(&42));
    /// ```
    #[inline]
    pub fn lookup_mut<Q>(&mut self, k: &Q) -> (&K, &mut V)
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.lookup_mut(k)
    }

    /// Iterates over all the entries.
    ///
    /// For a mutable access of values, use [`Self::iter_mut`]
    #[inline]
    pub fn iter(&self) -> impl Iterator<Item = (&K, &V)> + '_ {
        self.0.iter().map(|(k, v)| (k, v))
    }

    /// Iterates over all the entries with a mutable access to values.
    #[inline]
    pub fn iter_mut(&mut self) -> impl Iterator<Item = (&K, &mut V)> + '_ {
        self.0.iter_mut().map(|(k, v)| (&*k, v))
    }

    #[inline]
    pub fn as_slice(&self) -> &[(K, V)] {
        self.0.as_slice()
    }

    /// Gets a set of copy of all the keys in a trie set.
    #[inline]
    pub fn prefixes(&self) -> RTrieSet<K> {
        RTrieSet(self.0.map(|_| ()))
    }
}

impl<K: IpPrefix, V> Extend<(K, V)> for RTrieMap<K, V> {
    fn extend<I: IntoIterator<Item = (K, V)>>(&mut self, iter: I) {
        iter.into_iter().for_each(|(k, v)| {
            self.insert(k, v);
        })
    }
}

impl<K: IpRootPrefix, V: Default> FromIterator<(K, V)> for RTrieMap<K, V> {
    fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self {
        let mut triemap = Self::default();
        triemap.extend(iter);
        triemap
    }
}

impl<K: IpPrefix, V> LCTrieMap<K, V> {
    /// Returns the size of the map.
    ///
    /// Notice that it never equals zero since the top prefix is
    /// always present in the map.
    #[inline]
    #[allow(clippy::len_without_is_empty)]
    pub fn len(&self) -> NonZeroUsize {
        self.0.len()
    }

    /// Gets the value associated with an exact match of the key.
    ///
    /// To access to the longest prefix match, use [`Self::lookup`].
    ///
    /// To get a mutable access to a value, use [`Self::get_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip20 = Ipv4Prefix::new(addr, 20).unwrap();
    /// let ip22 = Ipv4Prefix::new(addr, 22).unwrap();
    /// let ip24 = Ipv4Prefix::new(addr, 24).unwrap();
    ///
    /// trie.insert(ip24, 24);
    /// trie.insert(ip20, 20);
    ///
    /// let lctrie = trie.compress();
    /// assert_eq!( lctrie.get(&ip20), Some(&20));
    /// assert_eq!( lctrie.get(&ip22), None);
    /// assert_eq!( lctrie.get(&ip24), Some(&24));
    /// ```
    #[inline]
    pub fn get<Q>(&self, k: &Q) -> Option<&V>
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.get(k).map(|(_, v)| v)
    }

    /// Gets a mutable access to the value associated with an exact match of the key.
    ///
    /// To access to the longest prefix match, use [`Self::lookup_mut`].
    ///
    /// To get a mutable access to a value, use [`Self::get_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    /// let mut trie = RTrieMap::new();
    ///
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip20 = Ipv4Prefix::new(addr, 20).unwrap();
    /// let ip22 = Ipv4Prefix::new(addr, 22).unwrap();
    ///
    /// trie.insert(ip20, 20);
    /// let mut lctrie = trie.compress();
    ///
    /// assert_eq!( lctrie.get(&ip20), Some(&20));
    ///
    /// assert_eq!( lctrie.get_mut(&ip22), None);
    /// *lctrie.get_mut(&ip20).unwrap() = 42;
    /// assert_eq!( lctrie.get(&ip20), Some(&42));
    /// ```
    #[inline]
    pub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.get_mut(k).map(|(_, v)| v)
    }

    /// Gets the value associated with the longest prefix match of the key.
    ///
    /// As the top prefix always matches, the lookup never fails.
    ///
    /// To access to the exact prefix match, use [`Self::get`].
    ///
    /// To get a mutable access to a value, use [`Self::lookup_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// use std::net::Ipv4Addr;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let addr = Ipv4Addr::new(1,1,1,1);
    /// let ip20 = Ipv4Prefix::new(addr, 20).unwrap();
    /// let ip22 = Ipv4Prefix::new(addr, 22).unwrap();
    /// let ip24 = Ipv4Prefix::new(addr, 24).unwrap();
    ///
    /// trie.insert(ip20, 20);
    /// trie.insert(ip24, 24);
    ///
    /// let lctrie = trie.compress();
    ///
    /// assert_eq!( lctrie.lookup(&ip20), (&ip20, &20));
    /// assert_eq!( lctrie.lookup(&ip22), (&ip20, &20));
    /// assert_eq!( lctrie.lookup(&ip24), (&ip24, &24));
    ///
    /// assert_eq!( lctrie.lookup(&addr), (&ip24, &24));
    /// ```
    #[inline]
    pub fn lookup<Q>(&self, k: &Q) -> (&K, &V)
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.lookup(k)
    }

    /// Gets a mutable access to the value associated with a longest prefix match of the key.
    ///
    /// To access to the exact prefix match, use [`Self::get_mut`].
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// # use iptrie::map::*;
    /// let mut trie = RTrieMap::with_root(42);
    ///
    /// let ip20 = "1.1.1.1/20".parse::<Ipv4Prefix>().unwrap();
    /// let ip22 = "1.1.1.1/22".parse::<Ipv4Prefix>().unwrap();
    ///
    /// trie.insert(ip20, 20);
    ///
    /// let mut lctrie = trie.compress();
    ///
    /// assert_eq!( lctrie.get(&ip20), Some(&20));
    ///
    /// *lctrie.lookup_mut(&ip22).1 = 42;
    /// assert_eq!( lctrie.get(&ip20), Some(&42));
    /// ```
    #[inline]
    pub fn lookup_mut<Q>(&mut self, k: &Q) -> (&K, &mut V)
    where
        Q: IpPrefix<Addr = K::Addr>,
        K: IpPrefixCovering<Q>,
    {
        self.0.lookup_mut(k)
    }

    #[inline]
    pub fn info(&self) {
        self.0.info()
    }

    /// Iterates over all the entries.
    ///
    /// As the root prefix always exists, this iterator is never empty.
    ///
    /// For a mutable access of values, use [`Self::iter_mut`]
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// let trie = Ipv4RTrieMap::with_root(42);
    /// let lctrie = trie.compress();
    /// assert_eq!( lctrie.len().get(), lctrie.iter().count());
    /// ```
    #[inline]
    pub fn iter(&self) -> impl Iterator<Item = (&K, &V)> + '_ {
        self.0.leaves.0.iter().map(|(k, v)| (k, v))
    }

    /// Iterates over all the entries with a mutable access to values.
    /// As the root prefix always exists, this iterator is never empty.
    ///
    /// For a mutable access of values, use [`Self::iter_mut`]
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// let trie = Ipv4RTrieMap::with_root(42);
    /// let mut lctrie = trie.compress();
    /// lctrie.iter_mut().for_each(|(_,v)| *v += 1 );
    /// assert_eq!( lctrie.lookup(&Ipv4Prefix::root()).1, &43);
    /// ```
    #[inline]
    pub fn iter_mut(&mut self) -> impl Iterator<Item = (&K, &mut V)> + '_ {
        self.0.leaves.0.iter_mut().map(|(k, v)| (&*k, v))
    }

    #[inline]
    pub fn as_slice(&self) -> &[(K, V)] {
        self.0.leaves.0.as_slice()
    }

    /// Gets a set of copy of all the keys in a trie set.
    ///
    /// # Example
    /// ```
    /// # use iptrie::*;
    /// let trie = Ipv4RTrieMap::with_root(42);
    /// let mut lctrie = trie.compress();
    /// assert_eq!( lctrie.len(), lctrie.prefixes().len());
    /// ```
    #[inline]
    pub fn prefixes(&self) -> LCTrieSet<K> {
        LCTrieSet(self.0.map(|_| ()))
    }
}

impl<K: IpRootPrefix, V: Default> FromIterator<(K, V)> for LCTrieMap<K, V> {
    fn from_iter<I: IntoIterator<Item = (K, V)>>(iter: I) -> Self {
        RTrieMap::from_iter(iter).compress()
    }
}

#[cfg(feature = "graphviz")]
impl<P: IpPrefix + Display, V> DotWriter for RTrieMap<P, V> {
    fn write_dot(&self, dot: &mut dyn std::io::Write) -> std::io::Result<()> {
        self.0.write_dot(dot)
    }
}

#[cfg(feature = "graphviz")]
impl<P: IpPrefix + Display, V> DotWriter for LCTrieMap<P, V> {
    fn write_dot(&self, dot: &mut dyn std::io::Write) -> std::io::Result<()> {
        self.0.write_dot(dot)
    }
}