logo
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
//! The `cache` module declare the cache functionality for webmachine is
//! executing in. Basically implements in-memory and Dummy cache.
//! Inspired by [any-cache].
//! 
//! TODO: 
//! [ ] - partitioning
//! [ ] - fnv
//! [ ] - POLICY in key
//! [ ] - policy implementation (LFU, LRU, etc.)
//! [ ] - async loader
//! 
//! [any-cache]: https://github.com/phaazon/any-cache

use std::{
    any::{Any, TypeId},
    collections::hash_map::{DefaultHasher, HashMap},
    hash::{Hash, Hasher},
};

/// A cache that can store arbitrary values and namespace them by key types.
pub trait Cache {
    /// Save item in cache
    fn save<K>(&mut self, key: K, value: K::Target)
    where
        K::Target: Any + 'static,
        K: CacheKey;

    /// Get item from cache
    fn get<K>(&self, key: &K) -> Option<&K::Target>
    where
        K::Target: Any + 'static,
        K: CacheKey;

    /// Remove item from cache
    fn remove<K>(&mut self, key: &K) -> Option<K::Target>
    where
        K::Target: Any + 'static,
        K: CacheKey;

    /// Clear cache
    fn clear(&mut self);
}

/// A key that is usable in a cache.
///
/// Cache keys are required to declare the type of values they reference. This is needed to
/// implement type-level namespacing.
pub trait CacheKey: 'static + Hash {
    /// Target type for cache key
    type Target;
}

/// An implementation of a cache with a `HashMap`.
pub struct HashCache {
    items: HashMap<u64, Box<dyn Any>>,
}

impl HashCache {
    /// Constructor
    pub fn new() -> Self {
        HashCache {
            items: HashMap::new(),
        }
    }
}

impl Default for HashCache {
    fn default() -> Self {
        Self::new()
    }
}

impl Cache for HashCache {
    fn save<K>(&mut self, key: K, value: K::Target)
    where
        K::Target: Any + 'static,
        K: CacheKey,
    {
        let mut hasher = DefaultHasher::new();
        key.hash(&mut hasher);
        TypeId::of::<K>().hash(&mut hasher);
        self.items.insert(hasher.finish(), Box::new(value));
    }

    fn get<K>(&self, key: &K) -> Option<&K::Target>
    where
        K::Target: Any + 'static,
        K: CacheKey,
    {
        let mut hasher = DefaultHasher::new();
        key.hash(&mut hasher);
        TypeId::of::<K>().hash(&mut hasher);
        self.items
            .get(&hasher.finish())
            .and_then(|a| a.downcast_ref::<K::Target>())
    }

    fn remove<K>(&mut self, key: &K) -> Option<K::Target>
    where
        K::Target: Any + 'static,
        K: CacheKey,
    {
        let mut hasher = DefaultHasher::new();
        key.hash(&mut hasher);
        TypeId::of::<K>().hash(&mut hasher);
        self.items
            .remove(&hasher.finish())
            .and_then(|anybox| anybox.downcast().ok())
            .map(|b| *b)
    }

    fn clear(&mut self) {
        self.items.clear();
    }
}

/// An implementation of a cache that actually doesn’t cache at all.
pub struct DummyCache;

impl DummyCache {
    /// Constructor
    pub fn new() -> Self {
        DummyCache
    }
}

impl Default for DummyCache {
    fn default() -> Self {
        DummyCache
    }
}

impl Cache for DummyCache {
    fn save<K>(&mut self, _: K, _: K::Target)
    where
        K::Target: Any + 'static,
        K: CacheKey,
    {
    }

    fn get<K>(&self, _: &K) -> Option<&K::Target>
    where
        K::Target: Any + 'static,
        K: CacheKey,
    {
        None
    }

    fn remove<K>(&mut self, _: &K) -> Option<K::Target>
    where
        K::Target: Any + 'static,
        K: CacheKey,
    {
        None
    }

    fn clear(&mut self) {}
}