use crate::fx::FxHashMap;
use core::hash::Hash;
use smallvec::{smallvec, SmallVec};
#[cfg(not(feature = "std"))]
use crate::fx::FxHasher;
#[cfg(not(feature = "std"))]
type Hasher = core::hash::BuildHasherDefault<FxHasher>;
struct Val<V> {
value: V,
level: u32,
generation: u32,
}
pub struct OccupiedEntry<'a, K: 'a, V: 'a> {
entry: super::hash_map::OccupiedEntry<'a, K, Val<V>>,
}
impl<'a, K, V> OccupiedEntry<'a, K, V> {
pub fn get(&self) -> &V {
&self.entry.get().value
}
}
pub struct VacantEntry<'a, K: 'a, V: 'a> {
entry: InsertLoc<'a, K, V>,
depth: u32,
generation: u32,
}
enum InsertLoc<'a, K: 'a, V: 'a> {
Vacant(super::hash_map::VacantEntry<'a, K, Val<V>>),
Occupied(super::hash_map::OccupiedEntry<'a, K, Val<V>>),
}
impl<'a, K, V> VacantEntry<'a, K, V> {
pub fn insert(self, value: V) {
let val = Val {
value,
level: self.depth,
generation: self.generation,
};
match self.entry {
InsertLoc::Vacant(v) => {
v.insert(val);
}
InsertLoc::Occupied(mut o) => {
o.insert(val);
}
}
}
}
pub enum Entry<'a, K: 'a, V: 'a> {
Occupied(OccupiedEntry<'a, K, V>),
Vacant(VacantEntry<'a, K, V>),
}
pub struct ScopedHashMap<K, V> {
map: FxHashMap<K, Val<V>>,
generation_by_depth: SmallVec<[u32; 8]>,
generation: u32,
}
impl<K, V> ScopedHashMap<K, V>
where
K: PartialEq + Eq + Hash + Clone,
{
pub fn new() -> Self {
Self {
map: FxHashMap(),
generation: 0,
generation_by_depth: smallvec![0],
}
}
pub fn with_capacity(cap: usize) -> Self {
let mut map = FxHashMap::default();
map.reserve(cap);
Self {
map,
generation: 0,
generation_by_depth: smallvec![0],
}
}
pub fn entry<'a>(&'a mut self, key: K) -> Entry<'a, K, V> {
self.entry_with_depth(key, self.depth())
}
pub fn entry_with_depth<'a>(&'a mut self, key: K, depth: usize) -> Entry<'a, K, V> {
debug_assert!(depth <= self.generation_by_depth.len());
let generation = self.generation_by_depth[depth];
let depth = depth as u32;
use super::hash_map::Entry::*;
match self.map.entry(key) {
Occupied(entry) => {
let entry_generation = entry.get().generation;
let entry_depth = entry.get().level as usize;
if self.generation_by_depth.get(entry_depth).cloned() == Some(entry_generation) {
Entry::Occupied(OccupiedEntry { entry })
} else {
Entry::Vacant(VacantEntry {
entry: InsertLoc::Occupied(entry),
depth,
generation,
})
}
}
Vacant(entry) => Entry::Vacant(VacantEntry {
entry: InsertLoc::Vacant(entry),
depth,
generation,
}),
}
}
pub fn get<'a>(&'a self, key: &K) -> Option<&'a V> {
self.map
.get(key)
.filter(|entry| {
let level = entry.level as usize;
self.generation_by_depth.get(level).cloned() == Some(entry.generation)
})
.map(|entry| &entry.value)
}
pub fn insert_if_absent(&mut self, key: K, value: V) {
self.insert_if_absent_with_depth(key, value, self.depth());
}
pub fn insert_if_absent_with_depth(&mut self, key: K, value: V, depth: usize) {
match self.entry_with_depth(key, depth) {
Entry::Vacant(v) => {
v.insert(value);
}
Entry::Occupied(_) => {
}
}
}
pub fn increment_depth(&mut self) {
self.generation_by_depth.push(self.generation);
}
pub fn decrement_depth(&mut self) {
self.generation += 1;
self.generation_by_depth.pop();
}
pub fn depth(&self) -> usize {
self.generation_by_depth
.len()
.checked_sub(1)
.expect("generation_by_depth cannot be empty")
}
pub fn remove(&mut self, key: &K) -> Option<V> {
self.map.remove(key).and_then(|val| {
let entry_generation = val.generation;
let entry_depth = val.level as usize;
if self.generation_by_depth.get(entry_depth).cloned() == Some(entry_generation) {
Some(val.value)
} else {
None
}
})
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn basic() {
let mut map: ScopedHashMap<i32, i32> = ScopedHashMap::new();
match map.entry(0) {
Entry::Occupied(_entry) => panic!(),
Entry::Vacant(entry) => entry.insert(1),
}
match map.entry(2) {
Entry::Occupied(_entry) => panic!(),
Entry::Vacant(entry) => entry.insert(8),
}
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
map.increment_depth();
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(1) {
Entry::Occupied(_entry) => panic!(),
Entry::Vacant(entry) => entry.insert(3),
}
match map.entry(1) {
Entry::Occupied(entry) => assert!(*entry.get() == 3),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(0) {
Entry::Occupied(entry) => assert!(*entry.get() == 1),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
map.decrement_depth();
match map.entry(0) {
Entry::Occupied(entry) => assert!(*entry.get() == 1),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
map.increment_depth();
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(1) {
Entry::Occupied(_entry) => panic!(),
Entry::Vacant(entry) => entry.insert(4),
}
match map.entry(1) {
Entry::Occupied(entry) => assert!(*entry.get() == 4),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
map.decrement_depth();
map.increment_depth();
map.increment_depth();
map.increment_depth();
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(1) {
Entry::Occupied(_entry) => panic!(),
Entry::Vacant(entry) => entry.insert(5),
}
match map.entry(1) {
Entry::Occupied(entry) => assert!(*entry.get() == 5),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
map.decrement_depth();
map.decrement_depth();
map.decrement_depth();
match map.entry(2) {
Entry::Occupied(entry) => assert!(*entry.get() == 8),
Entry::Vacant(_entry) => panic!(),
}
match map.entry(1) {
Entry::Occupied(_entry) => panic!(),
Entry::Vacant(entry) => entry.insert(3),
}
}
#[test]
fn insert_arbitrary_depth() {
let mut map: ScopedHashMap<i32, i32> = ScopedHashMap::new();
map.insert_if_absent(1, 2);
assert_eq!(map.get(&1), Some(&2));
map.increment_depth();
assert_eq!(map.get(&1), Some(&2));
map.insert_if_absent(3, 4);
assert_eq!(map.get(&3), Some(&4));
map.decrement_depth();
assert_eq!(map.get(&3), None);
map.increment_depth();
map.insert_if_absent_with_depth(3, 4, 0);
assert_eq!(map.get(&3), Some(&4));
map.decrement_depth();
assert_eq!(map.get(&3), Some(&4));
}
}