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
//! A concurrent insert only hash map.
//!
//! This crate implements a "memo map" which is in many ways similar to a
//! [`HashMap`] with some crucial differences:
//!
//! * Unlike a regular hash map, a memo map is thread safe and synchronized.
//! * Adding or retrieving keys works through a shared reference, removing only
//! through a mutable reference.
//! * Retrieving a value from a memo map returns a plain old reference.
//!
//! Together these purposes allow one to use this type of structure to
//! implement something similar to lazy loading in places where the API
//! has been constrained to references before.
//!
//! The values in the map are individually boxed up so that resizing of the
//! map retains the previously issued references.
//!
//! ```
//! use memo_map::MemoMap;
//!
//! let memo = MemoMap::new();
//! let one = memo.get_or_insert(&1, || "one".to_string());
//! let one2 = memo.get_or_insert(&1, || "not one".to_string());
//! assert_eq!(one, "one");
//! assert_eq!(one2, "one");
//! ```
//!
//! # Notes on Iteration
//!
//! Because the memo map internally uses a mutex it needs to be held during
//! iteration. This is potentially dangerous as it means you can easily
//! deadlock yourself when trying to use the memo map while iterating. The
//! iteration functionality thus has to be used with great care.
//!
//! # Notes on Removal
//!
//! Items can be removed from a memo map but this operation requires a mutable
//! reference to the memo map. This is so that it can ensure that there are no
//! borrows outstanding that would be invalidated through the removal of the item.
use std::borrow::Borrow;
use std::collections::hash_map::{self, Entry, RandomState};
use std::collections::HashMap;
use std::convert::Infallible;
use std::hash::{BuildHasher, Hash};
use std::mem::{transmute, ManuallyDrop};
use std::sync::{Mutex, MutexGuard};
macro_rules! lock {
($mutex:expr) => {
match $mutex.lock() {
Ok(guard) => guard,
Err(poisoned) => poisoned.into_inner(),
}
};
}
macro_rules! get_mut {
(let $target:ident, $mutex:expr) => {
let mut $target = $mutex.get_mut();
let $target = match $target {
Ok(guard) => guard,
Err(ref mut poisoned) => poisoned.get_mut(),
};
};
}
/// An insert only, thread safe hash map to memoize values.
#[derive(Debug)]
pub struct MemoMap<K, V, S = RandomState> {
inner: Mutex<HashMap<K, Box<V>, S>>,
}
impl<K: Clone, V: Clone, S: Clone> Clone for MemoMap<K, V, S> {
fn clone(&self) -> Self {
Self {
inner: Mutex::new(lock!(self.inner).clone()),
}
}
}
impl<K, V, S: Default> Default for MemoMap<K, V, S> {
fn default() -> Self {
MemoMap {
inner: Mutex::new(HashMap::default()),
}
}
}
impl<K, V> MemoMap<K, V, RandomState> {
/// Creates an empty `MemoMap`.
pub fn new() -> MemoMap<K, V, RandomState> {
MemoMap {
inner: Mutex::default(),
}
}
}
impl<K, V, S> MemoMap<K, V, S> {
/// Creates an empty `MemoMap` which will use the given hash builder to hash
/// keys.
pub fn with_hasher(hash_builder: S) -> MemoMap<K, V, S> {
MemoMap {
inner: Mutex::new(HashMap::with_hasher(hash_builder)),
}
}
}
impl<K, V, S> MemoMap<K, V, S>
where
K: Eq + Hash,
S: BuildHasher,
{
/// Inserts a value into the memo map.
///
/// This inserts a value for a specific key into the memo map. If the
/// key already exists, this method does nothing and instead returns `false`.
/// Otherwise the value is inserted and `true` is returned. It's generally
/// recommended to instead use [`get_or_insert`](Self::get_or_insert) or
/// it's sibling [`get_or_try_insert`](Self::get_or_try_insert).
pub fn insert(&self, key: K, value: V) -> bool {
let mut inner = lock!(self.inner);
match inner.entry(key) {
Entry::Occupied(_) => false,
Entry::Vacant(vacant) => {
vacant.insert(Box::new(value));
true
}
}
}
/// Inserts a value into the memo map replacing the old value.
///
/// This has the same restrictions as [`remove`](Self::remove) and
/// [`clear`](Self::clear) in that it requires a mutable reference to
/// the map.
pub fn replace(&mut self, key: K, value: V) {
lock!(self.inner).insert(key, Box::new(value));
}
/// Returns true if the map contains a value for the specified key.
///
/// The key may be any borrowed form of the map's key type, but [`Hash`] and
/// [`Eq`] on the borrowed form must match those for the key type.
pub fn contains_key<Q>(&self, key: &Q) -> bool
where
Q: Hash + Eq + ?Sized,
K: Borrow<Q>,
{
lock!(self.inner).contains_key(key)
}
/// Returns a reference to the value corresponding to the key.
///
/// The key may be any borrowed form of the map's key type, but [`Hash`] and
/// [`Eq`] on the borrowed form must match those for the key type.
pub fn get<Q>(&self, key: &Q) -> Option<&V>
where
Q: Hash + Eq + ?Sized,
K: Borrow<Q>,
{
let inner = lock!(self.inner);
let value = inner.get(key)?;
Some(unsafe { transmute::<&V, &V>(&**value) })
}
/// Returns a mutable reference to the value corresponding to the key.
///
/// The key may be any borrowed form of the map's key type, but [`Hash`] and
/// [`Eq`] on the borrowed form must match those for the key type.
pub fn get_mut<Q>(&mut self, key: &Q) -> Option<&mut V>
where
Q: Hash + Eq + ?Sized,
K: Borrow<Q>,
{
get_mut!(let map, self.inner);
Some(unsafe { transmute::<&mut V, &mut V>(&mut **map.get_mut(key)?) })
}
/// Returns a reference to the value corresponding to the key or inserts.
///
/// This is the preferred way to work with a memo map: if the value has not
/// been in the map yet the creator function is invoked to create the value,
/// otherwise the already stored value is returned. The creator function itself
/// can be falliable and the error is passed through.
///
/// If the creator is infallible, [`get_or_insert`](Self::get_or_insert) can be used.
pub fn get_or_try_insert<Q, F, E>(&self, key: &Q, creator: F) -> Result<&V, E>
where
Q: Hash + Eq + ToOwned<Owned = K> + ?Sized,
K: Borrow<Q>,
F: FnOnce() -> Result<V, E>,
{
let mut inner = lock!(self.inner);
let value = if let Some(value) = inner.get(key) {
value
} else {
inner.insert(key.to_owned(), Box::new(creator()?));
inner.get(key).unwrap()
};
Ok(unsafe { transmute::<&V, &V>(&**value) })
}
/// Like [`get_or_insert`](Self::get_or_insert) but with an owned key.
pub fn get_or_insert_owned<F>(&self, key: K, creator: F) -> &V
where
F: FnOnce() -> V,
{
self.get_or_try_insert_owned(key, || Ok::<_, Infallible>(creator()))
.unwrap()
}
/// Like [`get_or_try_insert`](Self::get_or_try_insert) but with an owned key.
///
/// If the creator is infallible, [`get_or_insert_owned`](Self::get_or_insert_owned) can be used.
pub fn get_or_try_insert_owned<F, E>(&self, key: K, creator: F) -> Result<&V, E>
where
F: FnOnce() -> Result<V, E>,
{
let mut inner = lock!(self.inner);
let entry = inner.entry(key);
let value = match entry {
Entry::Occupied(ref val) => val.get(),
Entry::Vacant(entry) => entry.insert(Box::new(creator()?)),
};
Ok(unsafe { transmute::<&V, &V>(&**value) })
}
/// Returns a reference to the value corresponding to the key or inserts.
///
/// This is the preferred way to work with a memo map: if the value has not
/// been in the map yet the creator function is invoked to create the value,
/// otherwise the already stored value is returned.
///
/// If the creator is fallible, [`get_or_try_insert`](Self::get_or_try_insert) can be used.
///
/// # Example
///
/// ```
/// # use memo_map::MemoMap;
/// let memo = MemoMap::new();
///
/// // first time inserts
/// let value = memo.get_or_insert("key", || "23");
/// assert_eq!(*value, "23");
///
/// // second time returns old value
/// let value = memo.get_or_insert("key", || "24");
/// assert_eq!(*value, "23");
/// ```
pub fn get_or_insert<Q, F>(&self, key: &Q, creator: F) -> &V
where
Q: Hash + Eq + ToOwned<Owned = K> + ?Sized,
K: Borrow<Q>,
F: FnOnce() -> V,
{
self.get_or_try_insert(key, || Ok::<_, Infallible>(creator()))
.unwrap()
}
/// Removes a key from the memo map, returning the value at the key if the key
/// was previously in the map.
///
/// A key can only be removed if a mutable reference to the memo map exists.
/// In other words a key can not be removed if there can be borrows to the item.
pub fn remove<Q>(&mut self, key: &Q) -> Option<V>
where
Q: Hash + Eq + ?Sized,
K: Borrow<Q>,
{
lock!(self.inner).remove(key).map(|x| *x)
}
/// Clears the map, removing all elements.
pub fn clear(&mut self) {
lock!(self.inner).clear();
}
/// Returns the number of items in the map.
///
/// # Example
///
/// ```
/// # use memo_map::MemoMap;
/// let memo = MemoMap::new();
///
/// assert_eq!(memo.len(), 0);
/// memo.insert(1, "a");
/// memo.insert(2, "b");
/// memo.insert(2, "not b");
/// assert_eq!(memo.len(), 2);
/// ```
pub fn len(&self) -> usize {
lock!(self.inner).len()
}
/// Returns `true` if the memo map contains no items.
pub fn is_empty(&self) -> bool {
lock!(self.inner).is_empty()
}
/// An iterator visiting all key-value pairs in arbitrary order. The
/// iterator element type is `(&'a K, &'a V)`.
///
/// Important note: during iteration the map is locked! This means that you
/// must not perform calls to the map or you will run into deadlocks. This
/// makes the iterator rather useless in practice for a lot of operations.
pub fn iter(&self) -> Iter<'_, K, V, S> {
let guard = lock!(self.inner);
let iter = guard.iter();
Iter {
iter: unsafe {
transmute::<hash_map::Iter<'_, K, Box<V>>, hash_map::Iter<'_, K, Box<V>>>(iter)
},
guard: ManuallyDrop::new(guard),
}
}
/// An iterator visiting all key-value pairs in arbitrary order, with mutable
/// references to the values. The iterator element type is `(&'a K, &'a mut V)`.
///
/// This iterator requires a mutable reference to the map.
pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
get_mut!(let map, self.inner);
IterMut {
iter: unsafe {
transmute::<hash_map::IterMut<'_, K, Box<V>>, hash_map::IterMut<'_, K, Box<V>>>(
map.iter_mut(),
)
},
}
}
/// An iterator visiting all values mutably in arbitrary order. The iterator
/// element type is `&'a mut V`.
///
/// This iterator requires a mutable reference to the map.
pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
get_mut!(let map, self.inner);
ValuesMut {
iter: unsafe {
transmute::<hash_map::ValuesMut<'_, K, Box<V>>, hash_map::ValuesMut<'_, K, Box<V>>>(
map.values_mut(),
)
},
}
}
/// An iterator visiting all keys in arbitrary order. The iterator element
/// type is `&'a K`.
pub fn keys(&self) -> Keys<'_, K, V, S> {
Keys { iter: self.iter() }
}
}
/// An iterator over the items of a [`MemoMap`].
///
/// This struct is created by the [`iter`](MemoMap::iter) method on [`MemoMap`].
/// See its documentation for more information.
pub struct Iter<'a, K, V, S> {
guard: ManuallyDrop<MutexGuard<'a, HashMap<K, Box<V>, S>>>,
iter: hash_map::Iter<'a, K, Box<V>>,
}
impl<'a, K, V, S> Drop for Iter<'a, K, V, S> {
fn drop(&mut self) {
unsafe {
ManuallyDrop::drop(&mut self.guard);
}
}
}
impl<'a, K, V, S> Iterator for Iter<'a, K, V, S> {
type Item = (&'a K, &'a V);
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|(k, v)| (k, &**v))
}
}
/// An iterator over the keys of a [`MemoMap`].
///
/// This struct is created by the [`keys`](MemoMap::keys) method on [`MemoMap`].
/// See its documentation for more information.
pub struct Keys<'a, K, V, S> {
iter: Iter<'a, K, V, S>,
}
impl<'a, K, V, S> Iterator for Keys<'a, K, V, S> {
type Item = &'a K;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|(k, _)| k)
}
}
/// A mutable iterator over a [`MemoMap`].
pub struct IterMut<'a, K, V> {
iter: hash_map::IterMut<'a, K, Box<V>>,
}
impl<'a, K, V> Iterator for IterMut<'a, K, V> {
type Item = (&'a K, &'a mut V);
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|(k, v)| (k, &mut **v))
}
}
/// A mutable iterator over a [`MemoMap`].
pub struct ValuesMut<'a, K, V> {
iter: hash_map::ValuesMut<'a, K, Box<V>>,
}
impl<'a, K, V> Iterator for ValuesMut<'a, K, V> {
type Item = &'a mut V;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|v| &mut **v)
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_insert() {
let memo = MemoMap::new();
assert!(memo.insert(23u32, Box::new(1u32)));
assert!(!memo.insert(23u32, Box::new(2u32)));
assert_eq!(memo.get(&23u32).cloned(), Some(Box::new(1)));
}
#[test]
fn test_iter() {
let memo = MemoMap::new();
memo.insert(1, "one");
memo.insert(2, "two");
memo.insert(3, "three");
let mut values = memo.iter().map(|(k, v)| (*k, *v)).collect::<Vec<_>>();
values.sort();
assert_eq!(values, vec![(1, "one"), (2, "two"), (3, "three")]);
}
#[test]
fn test_keys() {
let memo = MemoMap::new();
memo.insert(1, "one");
memo.insert(2, "two");
memo.insert(3, "three");
let mut values = memo.keys().map(|k| *k).collect::<Vec<_>>();
values.sort();
assert_eq!(values, vec![1, 2, 3]);
}
#[test]
fn test_contains() {
let memo = MemoMap::new();
memo.insert(1, "one");
assert!(memo.contains_key(&1));
assert!(!memo.contains_key(&2));
}
#[test]
fn test_remove() {
let mut memo = MemoMap::new();
memo.insert(1, "one");
let value = memo.get(&1);
assert!(value.is_some());
let old_value = memo.remove(&1);
assert_eq!(old_value, Some("one"));
let value = memo.get(&1);
assert!(value.is_none());
}
#[test]
fn test_clear() {
let mut memo = MemoMap::new();
memo.insert(1, "one");
memo.insert(2, "two");
assert_eq!(memo.len(), 2);
assert!(!memo.is_empty());
memo.clear();
assert_eq!(memo.len(), 0);
assert!(memo.is_empty());
}
#[test]
fn test_ref_after_resize() {
let memo = MemoMap::new();
let mut refs = Vec::new();
let iterations = if cfg!(miri) { 100 } else { 10000 };
for key in 0..iterations {
refs.push((key, memo.get_or_insert(&key, || Box::new(key))));
}
for (key, val) in refs {
dbg!(key, val);
assert_eq!(memo.get(&key), Some(val));
}
}
#[test]
fn test_ref_after_resize_owned() {
let memo = MemoMap::new();
let mut refs = Vec::new();
let iterations = if cfg!(miri) { 100 } else { 10000 };
for key in 0..iterations {
refs.push((
key,
memo.get_or_insert_owned(key.to_string(), || Box::new(key)),
));
}
for (key, val) in refs {
dbg!(key, val);
assert_eq!(memo.get(&key.to_string()), Some(val));
}
}
#[test]
fn test_replace() {
let mut memo = MemoMap::new();
memo.insert("foo", "bar");
memo.replace("foo", "bar2");
assert_eq!(memo.get("foo"), Some(&"bar2"));
}
#[test]
fn test_get_mut() {
let mut memo = MemoMap::new();
memo.insert("foo", "bar");
*memo.get_mut("foo").unwrap() = "bar2";
assert_eq!(memo.get("foo"), Some(&"bar2"));
}
#[test]
fn test_iter_mut() {
let mut memo = MemoMap::new();
memo.insert("foo", "bar");
for item in memo.iter_mut() {
*item.1 = "bar2";
}
assert_eq!(memo.get("foo"), Some(&"bar2"));
}
#[test]
fn test_values_mut() {
let mut memo = MemoMap::new();
memo.insert("foo", "bar");
for item in memo.values_mut() {
*item = "bar2";
}
assert_eq!(memo.get("foo"), Some(&"bar2"));
}
}