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
//! A thread-safe cache intended hold lazily evaluated hashes.

use std::fmt::Debug;

use parking_lot::Mutex;

use crate::prelude::*;

/// An `Mutex`-based cache for hashes, to prevent repeated computation.
#[derive(Default, Derivative)]
pub struct CachedHash {
    mutex: Mutex<OptionHash>,
}

impl Debug for CachedHash {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        if let Some(hash) = <Option<Hash>>::from(*self.mutex.lock()) {
            write!(f, "{hash:?}")
        } else {
            write!(f, "_")
        }
    }
}

impl Clone for CachedHash {
    fn clone(&self) -> Self {
        Self {
            mutex: Mutex::new(*self.mutex.lock()),
        }
    }
}

impl CachedHash {
    /// Get the cached hash, or return `None` if it is not yet set.
    pub fn get(&self) -> Option<Hash> {
        (*self.mutex.lock()).into()
    }

    /// If the cache is empty, set its value using the closure, then return its contents regardless.
    pub fn set_if_empty(&self, new: impl FnOnce() -> Hash) -> Hash {
        let mut guard = self.mutex.lock();
        if let Some(hash) = Option::from(*guard) {
            hash
        } else {
            let new = new();
            *guard = OptionHash::from(Some(new));
            new
        }
    }

    /// Reset the cached hash to empty.
    pub fn clear(&self) {
        *self.mutex.lock() = OptionHash::from(None);
    }
}

impl From<Hash> for CachedHash {
    fn from(hash: Hash) -> Self {
        Self {
            mutex: Mutex::new(OptionHash::from(Some(hash))),
        }
    }
}

#[cfg(test)]
mod test {
    use super::*;

    #[test]
    fn cached_hash_size() {
        static_assertions::assert_eq_size!(CachedHash, [u8; 40]);
    }
}