workerns/src/trie_map.rs

100 lines
3.0 KiB
Rust

struct TrieMapNode<T> {
label: u8,
value: Option<T>,
children: Vec<TrieMapNode<T>>,
}
impl<T> TrieMapNode<T> {
fn find_child(&self, label: u8) -> Option<usize> {
for (idx, child) in self.children.iter().enumerate() {
if child.label == label {
return Some(idx);
}
}
return None;
}
// Traverse the trie until no children matching the corresponding position
// in the key can be found anymore.
// Returns the last trie node matching the key, and the remainder of the key
// that cannot be matched to any branch of the sub-trie.
fn traverse_trie_mut<'a, 'b>(
&'a mut self,
key: &'b [u8],
) -> (&'a mut TrieMapNode<T>, &'b [u8]) {
if key.len() == 0 {
return (self, key);
}
if let Some(idx) = self.find_child(key[0]) {
self.children[idx].traverse_trie_mut(&key[1..])
} else {
(self, key)
}
}
// Same as traverse_trie_mut, except all references are not mutable,
// and an additional value -- the last non-null `value` while traversing
// the tree -- is returned. This value is the value mapped to the
// longest prefix in our record that matches the given key.
fn traverse_trie_for_value<'a, 'b>(
&'a self,
key: &'b [u8],
mut last_value: Option<&'a T>,
) -> (&'a TrieMapNode<T>, Option<&'a T>, &'b [u8]) {
if self.value.is_some() {
last_value = self.value.as_ref();
}
if key.len() == 0 {
return (self, last_value, key);
}
if let Some(idx) = self.find_child(key[0]) {
self.children[idx].traverse_trie_for_value(&key[1..], last_value)
} else {
(self, last_value, key)
}
}
}
// A Map implemented with a trie, so that when a (K, V) pair is
// inserted into the map, any key whose prefix matches K will also
// be mapped to V.
// The prefix match is greedy, i.e. if multiple key prefixes match
// one key, then the mapped value is the value of the longest prefix
pub struct TrieMap<T> {
root: TrieMapNode<T>,
}
impl<T> TrieMap<T> {
pub fn new() -> TrieMap<T> {
TrieMap {
root: TrieMapNode {
label: 0,
value: None,
children: Vec::new(),
},
}
}
pub fn put_prefix(&mut self, prefix: impl AsRef<[u8]>, value: impl Into<T>) {
let (mut node, remaining_prefix) = self.root.traverse_trie_mut(prefix.as_ref());
for b in remaining_prefix {
let new_node = TrieMapNode {
label: *b,
value: None,
children: Vec::new(),
};
node.children.push(new_node);
node = node.children.last_mut().unwrap();
}
node.value = Some(value.into());
}
pub fn get_by_prefix(&self, key: impl AsRef<[u8]>) -> Option<&T> {
let (_, value, _) = self.root.traverse_trie_for_value(key.as_ref(), None);
value
}
}