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
use async_std::sync::RwLock; use std::collections::HashMap; use crate::item::Item; use std::hash::Hash; use std::time::Duration; pub struct Cache<T, V> { items: RwLock<HashMap<T, Item<V>>>, item_duration: Option<Duration>, } impl<T, V> Cache<T, V> { pub fn new(item_duration: Option<Duration>) -> Self { Cache { items: RwLock::new(HashMap::new()), item_duration, } } pub async fn get(&self, key: T) -> Option<V> where T: Eq + Hash, V: Clone, { self.items .read() .await .get(&key) .filter(|&item| !item.expired()) .map(|item| item.object.clone()) } pub async fn set(&self, key: T, value: V) -> Option<V> where T: Eq + Hash, { self.items .write() .await .insert(key, Item::new(value, self.item_duration)) .map(|item| item.object) } pub async fn remove_expired(&self) where T: Eq + Hash + Clone, { let expired_keys: Vec<T> = self .items .read() .await .iter() .filter(|(_, item)| item.expired()) .map(|(k, _)| k.clone()) .collect(); for key in expired_keys { self.items.write().await.remove(&key); } } pub async fn clear(&self) { self.items.write().await.clear() } } #[cfg(test)] mod tests { use crate::cache::Cache; use std::time::Duration; const KEY: i8 = 0; const VALUE: &str = "VALUE"; #[async_std::test] async fn set_and_get_value_with_duration() { let cache = Cache::new(Some(Duration::from_secs(2))); cache.set(KEY, VALUE).await; let value = cache.get(KEY).await; match value { Some(value) => assert_eq!(value, VALUE), None => panic!("value was not found in cache"), }; } #[async_std::test] async fn set_and_get_value_without_duration() { let cache = Cache::new(None); cache.set(KEY, VALUE).await; let value = cache.get(KEY).await; match value { Some(value) => assert_eq!(value, VALUE), None => panic!("value was not found in cache"), }; } #[async_std::test] async fn do_not_get_expired_value() { let cache = Cache::new(Some(Duration::from_secs(0))); cache.set(KEY, VALUE).await; let value = cache.get(KEY).await; if value.is_some() { panic!("found expired value in cache") }; } #[async_std::test] async fn replace_existing_value() { const NEW_VALUE: &str = "NEW_VALUE"; let cache = Cache::new(Some(Duration::from_secs(2))); cache.set(KEY, VALUE).await; cache.set(KEY, NEW_VALUE).await; let value = cache.get(KEY).await; match value { Some(value) => assert_eq!(value, NEW_VALUE), None => panic!("value was not found in cache"), }; } #[async_std::test] async fn remove_expired_item() { let cache = Cache::new(Some(Duration::from_secs(0))); cache.set(KEY, VALUE).await; cache.remove_expired_items().await; if cache.items.read().await.get(&KEY).is_some() { panic!("found expired item in cache") }; } #[async_std::test] async fn do_not_remove_not_expired_item() { let cache = Cache::new(Some(Duration::from_secs(2))); cache.set(KEY, VALUE).await; cache.remove_expired_items().await; if cache.items.read().await.get(&KEY).is_none() { panic!("could not find not expired item in cache") }; } #[async_std::test] async fn remove_not_expired_item() { let cache = Cache::new(Some(Duration::from_secs(2))); cache.set(KEY, VALUE).await; cache.remove_all_items().await; if cache.items.read().await.get(&KEY).is_some() { panic!("found item in cache") }; } }