commit | 2f562b2b5eee80c9affa15c60b17c281c020be66 | [log] [tgz] |
---|---|---|
author | David LeGare <[email protected]> | Fri Mar 04 03:12:27 2022 +0000 |
committer | Automerger Merge Worker <[email protected]> | Fri Mar 04 03:12:27 2022 +0000 |
tree | 93f36fb91d268cdae444791dbbdcc6bd50de9034 | |
parent | 5ca92bfbefca59ad8172c1fee5355c15ae9a5877 [diff] | |
parent | 3dc30e23e1f24a7cf8862f6fed1166a68ddca94d [diff] |
Update weak-table to 0.3.2 am: 77e4bb9dcd am: 0a3ad2af3d am: 3f9b4dcddd am: 98e40769d3 am: 3dc30e23e1 Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/weak-table/+/2005833 Change-Id: Ifd12e28d80de54f0caf824f72a16c497ad0a64ea
This crate defines several kinds of weak hash maps and sets. See the full API documentation for details.
This crate supports Rust version 1.46 and later.
weak-table
is built with the std
feature, which enables functionality dependent on the std
library, enabled by default. Optionally, the following dependency may be enabled:
ahash
: use ahash
’s hasher rather than the std
hasherIf the std
feature is disabled (for no_std) then the ahash
dependency must be enabled.
Here we create a weak hash map and demonstrate that it forgets mappings whose keys expire:
use weak_table::WeakKeyHashMap; use std::sync::{Arc, Weak}; let mut table = <WeakKeyHashMap<Weak<str>, u32>>::new(); let one = Arc::<str>::from("one"); let two = Arc::<str>::from("two"); table.insert(one.clone(), 1); assert_eq!( table.get("one"), Some(&1) ); assert_eq!( table.get("two"), None ); table.insert(two.clone(), 2); *table.get_mut(&one).unwrap() += 10; assert_eq!( table.get("one"), Some(&11) ); assert_eq!( table.get("two"), Some(&2) ); drop(one); assert_eq!( table.get("one"), None ); assert_eq!( table.get("two"), Some(&2) );
Here we use a weak hash set to implement a simple string interning facility:
use weak_table::WeakHashSet; use std::ops::Deref; use std::rc::{Rc, Weak}; #[derive(Clone, Debug)] pub struct Symbol(Rc<str>); impl PartialEq for Symbol { fn eq(&self, other: &Symbol) -> bool { Rc::ptr_eq(&self.0, &other.0) } } impl Eq for Symbol {} impl Deref for Symbol { type Target = str; fn deref(&self) -> &str { &self.0 } } #[derive(Debug, Default)] pub struct SymbolTable(WeakHashSet<Weak<str>>); impl SymbolTable { pub fn new() -> Self { Self::default() } pub fn intern(&mut self, name: &str) -> Symbol { if let Some(rc) = self.0.get(name) { Symbol(rc) } else { let rc = Rc::<str>::from(name); self.0.insert(Rc::clone(&rc)); Symbol(rc) } } } #[test] fn interning() { let mut tab = SymbolTable::new(); let a0 = tab.intern("a"); let a1 = tab.intern("a"); let b = tab.intern("b"); assert_eq!(a0, a1); assert_ne!(a0, b); }