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
use hashlink::lru_cache::LruCache;
#[derive(Debug)]
pub struct StatementCache<T> {
inner: LruCache<String, T>,
}
impl<T> StatementCache<T> {
pub fn new(capacity: usize) -> Self {
Self {
inner: LruCache::new(capacity),
}
}
pub fn get_mut(&mut self, k: &str) -> Option<&mut T> {
self.inner.get_mut(k)
}
pub fn insert(&mut self, k: &str, v: T) -> Option<T> {
let mut lru_item = None;
if self.capacity() == self.len() && !self.contains_key(k) {
lru_item = self.remove_lru();
} else if self.contains_key(k) {
lru_item = self.inner.remove(k);
}
self.inner.insert(k.into(), v);
lru_item
}
pub fn len(&self) -> usize {
self.inner.len()
}
pub fn remove_lru(&mut self) -> Option<T> {
self.inner.remove_lru().map(|(_, v)| v)
}
#[cfg(feature = "sqlite")]
pub fn clear(&mut self) {
self.inner.clear();
}
pub fn contains_key(&mut self, k: &str) -> bool {
self.inner.contains_key(k)
}
pub fn capacity(&self) -> usize {
self.inner.capacity()
}
#[allow(dead_code)]
pub fn is_enabled(&self) -> bool {
self.capacity() > 0
}
}