use lru::LruCache;
use parking_lot::{RwLock, RwLockReadGuard, RwLockWriteGuard};
use std::collections::HashMap;
#[derive(Debug)]
pub struct ConcurrentHashTable<V, const N: usize> {
tables: [RwLock<HashMap<u128, V>>; N],
}
#[inline]
fn get_shard(key: u128, n_shards: usize) -> usize {
(key % n_shards as u128) as usize
}
impl<V, const N: usize> ConcurrentHashTable<V, N> {
pub fn new() -> Self {
let mut tables = arrayvec::ArrayVec::<_, N>::new();
for _ in 0..N {
tables.push(RwLock::new(HashMap::new()));
}
ConcurrentHashTable {
tables: tables
.into_inner()
.ok()
.expect("ArrayVec pushed N times, into_inner is infallible"),
}
}
pub fn get(&self, key: u128) -> &RwLock<HashMap<u128, V>> {
&self.tables[get_shard(key, N)]
}
#[allow(dead_code)]
pub fn get_shard_at_idx(&self, idx: usize) -> Option<&RwLock<HashMap<u128, V>>> {
self.tables.get(idx)
}
#[allow(dead_code)]
pub fn read(&self, key: u128) -> RwLockReadGuard<'_, HashMap<u128, V>> {
self.get(key).read()
}
pub fn write(&self, key: u128) -> RwLockWriteGuard<'_, HashMap<u128, V>> {
self.get(key).write()
}
#[allow(dead_code)]
pub fn for_each<F>(&self, mut f: F)
where
F: FnMut(&u128, &V),
{
for shard in &self.tables {
let guard = shard.read();
for (key, value) in guard.iter() {
f(key, value);
}
}
}
}
impl<V, const N: usize> Default for ConcurrentHashTable<V, N> {
fn default() -> Self {
Self::new()
}
}
#[doc(hidden)] pub struct LruShard<V>(RwLock<LruCache<u128, V>>);
pub struct ConcurrentLruCache<V, const N: usize> {
lrus: [LruShard<V>; N],
}
impl<V, const N: usize> ConcurrentLruCache<V, N> {
pub fn new(shard_capacity: usize) -> Self {
use std::num::NonZeroUsize;
const ONE: NonZeroUsize = NonZeroUsize::new(1).unwrap();
let cap = shard_capacity.try_into().unwrap_or(ONE);
let mut lrus = arrayvec::ArrayVec::<_, N>::new();
for _ in 0..N {
lrus.push(LruShard(RwLock::new(LruCache::new(cap))));
}
ConcurrentLruCache {
lrus: lrus
.into_inner()
.ok()
.expect("ArrayVec pushed N times, into_inner is infallible"),
}
}
pub fn get(&self, key: u128) -> &RwLock<LruCache<u128, V>> {
&self.lrus[get_shard(key, N)].0
}
#[allow(dead_code)]
pub fn read(&self, key: u128) -> RwLockReadGuard<'_, LruCache<u128, V>> {
self.get(key).read()
}
pub fn write(&self, key: u128) -> RwLockWriteGuard<'_, LruCache<u128, V>> {
self.get(key).write()
}
}