ezcache/generative.rs
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
//! This module provides cache stores with generator functions.
//!
//! This means that if a entry is not found, it's possible to automatically call the generator
//! function to generate such key.
//!
//! Traits:
//! - [`GenCacheStore`]: The default infallible trait.
//! - [`TryGenCacheStore`]: The fallible flavour.
//!
//! This also provides wrappers for normal stores to attach a generator to:
//! - [`GenCacheStoreWrapper`]: The default infallible wrapper.
//! - [`TryGenCacheStoreWrapper`]: The fallible flavour.
//!
//! # Examples
//! ```rust
//! # use ezcache::{
//! # generative::{GenCacheStore, GenCacheStoreWrapper},
//! # stores::MemoryStore
//! # };
//! # use ezcache::prelude::*;
//! #
//! // This would obviously be something more complex, perhaps even handling long-awaited io
//! let very_heavy_computation = |&n: &usize, ()| n * 2;
//! // You wrap this around a normal store that you want
//! let store = MemoryStore::<usize, usize>::default();
//!
//! // And combine them (here is where the magic happens)
//! let mut gen_store = GenCacheStoreWrapper::new(store, very_heavy_computation);
//!
//! assert_eq!(gen_store.get(2), None);
//! assert_eq!(gen_store.get_or_new(2, ()), 4);
//! assert_eq!(gen_store.get(2), Some(4));
//! ```
//!
//! ```rust
//! # use ezcache::{
//! # generative::{GenCacheStore, GenCacheStoreWrapper},
//! # stores::MemoryStore
//! # };
//! # use ezcache::prelude::*;
//! #
//! // We can eve pass additional arguments that we dont want to cache the keys by.
//! // This could be a one-time source that changes but is a valid to represent the cache key.
//!
//! let very_heavy_computation = |&n: &usize, offset: usize| n * 2 + offset;
//! let store = MemoryStore::<usize, usize>::default();
//!
//! let mut gen_store = GenCacheStoreWrapper::new(store, very_heavy_computation);
//!
//! assert_eq!(gen_store.get(2), None); // Key hasn't been generated so far
//! assert_eq!(gen_store.get_or_new(2, 0), 4); // We generate such entry
//! assert_eq!(gen_store.get(2), Some(4)); // Now it exists
//!
//! // As it exists, it won't generate a new value, even if the result would change
//! assert_eq!(gen_store.get_or_new(2, 1), 4);
//! assert_eq!(gen_store.gen_new(2, 1), 5); // Unless we explicitly tell it to
//! assert_eq!(gen_store.get(2), Some(5)); // And then it's saved
//!
//! // WARNING: Extra arguments should NOT be important for the cache key, should only have
//! // information that you do NOT want to index in the underlying cache store. But you still want
//! // to pass to the generator for any reasons.
//! ```
use crate::__internal_prelude::*;
/// Infallible generative cache store.
#[delegatable_trait]
pub trait GenCacheStore:
CacheStore<Key = <Self as GenCacheStore>::Key, Value = <Self as GenCacheStore>::Value>
{
type Key;
type Value;
type Args;
/// Generate a new value without checking cache or adding the value to it.
fn gen(
&self,
key: impl Borrow<<Self as GenCacheStore>::Key>,
args: Self::Args,
) -> <Self as GenCacheStore>::Value;
/// Get the value from cache or generate a new one without adding it.
fn get_or_gen(
&self,
key: impl Borrow<<Self as GenCacheStore>::Key>,
args: Self::Args,
) -> <Self as GenCacheStore>::Value;
/// Get the value from cache or generate a new one adding it.
fn get_or_new(
&mut self,
key: impl Borrow<<Self as GenCacheStore>::Key>,
args: Self::Args,
) -> <Self as GenCacheStore>::Value;
/// Generate a new value without checking cache and add the value to it, possibly overwriting
/// previous values.
fn gen_new(
&mut self,
key: impl Borrow<<Self as GenCacheStore>::Key>,
args: Self::Args,
) -> <Self as GenCacheStore>::Value;
}
use super::ambassador_impl_CacheStore;
#[derive(Delegate)]
#[delegate(CacheStore, target = "store")]
/// Infallible generative cache store wrapper around a [`CacheStore`] and a generator function.
///
/// Generics:
/// - `K`: Type of the key used for cache indexing.
/// - `V`: Type of the value stored in the cache store.
/// - `A`: Type of additional arguments of the generator function.
/// - `S`: [`CacheStore`] which this wraps around.
/// - `F`: [`Fn<&K, A>`] with `V` return generator function.
pub struct GenCacheStoreWrapper<K, V, A, S: CacheStore<Key = K, Value = V>, F: Fn(&K, A) -> V> {
pub store: S,
pub generator: F,
phantom: PhantomData<(K, V, A)>,
}
/// Default implementation
impl<K, V, A, F: Fn(&K, A) -> V, S: CacheStore<Key = K, Value = V>>
GenCacheStoreWrapper<K, V, A, S, F>
{
/// Make a new [`GenCacheStoreWrapper`] from a infallible store and a generator function.
pub fn new(store: S, generator: F) -> Self {
Self {
store,
generator,
phantom: PhantomData,
}
}
}
/// Implement [`GenCacheStore`]
impl<K, V, A, S: CacheStore<Key = K, Value = V>, F: Fn(&K, A) -> V> GenCacheStore
for GenCacheStoreWrapper<K, V, A, S, F>
{
type Key = K;
type Value = V;
type Args = A;
fn gen(&self, key: impl Borrow<K>, args: A) -> V {
(self.generator)(key.borrow(), args)
}
fn get_or_gen(&self, key: impl Borrow<K>, args: A) -> V {
self.store
.get(key.borrow())
.unwrap_or_else(|| self.gen(key, args))
}
fn get_or_new(&mut self, key: impl Borrow<K>, args: A) -> V {
let value = self.get_or_gen(key.borrow(), args);
self.store.set(key, &value);
value
}
fn gen_new(&mut self, key: impl Borrow<K>, args: A) -> V {
let value = self.gen(key.borrow(), args);
self.store.set(key.borrow(), &value);
value
}
}
// --------------------- **TRY**
// ----
/// Fallible generative cache store.
#[delegatable_trait]
#[allow(clippy::missing_errors_doc)]
pub trait TryGenCacheStore:
TryCacheStore<
Key = <Self as TryGenCacheStore>::Key,
Value = <Self as TryGenCacheStore>::Value,
Error = <Self as TryGenCacheStore>::Error,
>
{
type Key;
type Value;
type Error;
type Args;
/// Attempt to generate a new value without checking cache or adding the value to it.
fn try_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
/// Attempt to get the value from cache or generate a new one without adding it.
fn try_get_or_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
/// Attempt to get the value from cache or generate a new one attempting to add it.
fn try_get_or_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
/// Attempt to generate a new value without checking cache and attempting to add the value to
/// it, possibly overwriting previous values.
fn try_gen_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error>;
}
use crate::ambassador_impl_TryCacheStore;
#[derive(Delegate)]
#[delegate(TryCacheStore, target = "store")]
/// Infallible generative cache store wrapper around a [`CacheStore`] and a generator function.
///
/// Generics:
/// - `K`: Type of the key used for cache indi.
/// - `V`: Type of the value stored in the cache store.
/// - `E`: Error type used for [`Result`]s
/// - `A`: Type of additional arguments of the generator function.
/// - `FnErr`: Error type of the function.
/// - `S`: [`CacheStore`] which this wraps around.
/// - `F`: [`Fn<&K, A>`] with `V` return generator function.
pub struct TryGenCacheStoreWrapper<
K,
V,
E,
A,
FnErr: Into<E>,
S: TryCacheStore<Key = K, Value = V, Error = E>,
F: Fn(&K, A) -> Result<V, FnErr>,
> {
pub store: S,
pub try_generator: F,
phantom: PhantomData<(K, V, E, A)>,
}
/// Default implementation
impl<
K,
V,
E,
A,
FnErr: Into<E>,
F: Fn(&K, A) -> Result<V, FnErr>,
S: TryCacheStore<Key = K, Value = V, Error = E>,
> TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
{
/// Make a new [`TryGenCacheStore`] from a fallible store and fallible generator function.
pub fn new(store: S, try_generator: F) -> Self {
Self {
store,
try_generator,
phantom: PhantomData,
}
}
}
/// Functions with multiple stages will return the same type of error without any way to detect at
/// what point it failed, and not undoing the changes. If you don't like this you'll have to
/// manually follow the steps done by the function and handle the errors yourself.
impl<
K,
V,
E,
A,
FnErr: Into<E>,
F: Fn(&K, A) -> Result<V, FnErr>,
S: TryCacheStore<Key = K, Value = V, Error = E>,
> TryGenCacheStore for TryGenCacheStoreWrapper<K, V, E, A, FnErr, S, F>
{
type Key = K;
type Value = V;
type Error = E;
type Args = A;
/// Attempt to generate a new value without checking cache or adding the value to it.
fn try_gen(&self, key: impl Borrow<K>, args: A) -> Result<V, E> {
(self.try_generator)(key.borrow(), args).map_err(Into::into)
}
/// Attempt to get the value from cache or generate a new one without adding it.
fn try_get_or_gen(&self, key: impl Borrow<K>, args: A) -> Result<V, E> {
let value = self.store.try_get(key.borrow())?;
if let Some(value) = value {
Ok(value)
} else {
self.try_gen(key, args)
}
}
/// Attempt to get the value from cache or generate a new one attempting to add it.
fn try_get_or_new(&mut self, key: impl Borrow<K>, args: A) -> Result<V, E> {
let value = self.try_get_or_gen(key.borrow(), args)?;
self.store.try_set(key, &value)?;
Ok(value)
}
/// Attempt to generate a new value without checking cache and attempting to add the value to
/// it, possibly overwriting previous values.
fn try_gen_new(&mut self, key: impl Borrow<K>, args: A) -> Result<V, E> {
let value = self.try_gen(key.borrow(), args)?;
self.store.try_set(key.borrow(), &value)?;
Ok(value)
}
}
/// Implement [`TryGenCacheStore`]
impl<K, V, A, T: GenCacheStore<Key = K, Value = V, Args = A>> TryGenCacheStore for T {
type Key = K;
type Value = V;
type Error = core::convert::Infallible;
type Args = A;
fn try_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error> {
Ok(self.gen(key, args))
}
fn try_gen_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error> {
Ok(self.gen_new(key, args))
}
fn try_get_or_gen(
&self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error> {
Ok(self.get_or_gen(key, args))
}
fn try_get_or_new(
&mut self,
key: impl Borrow<<Self as TryGenCacheStore>::Key>,
args: <Self as TryGenCacheStore>::Args,
) -> Result<<Self as TryGenCacheStore>::Value, <Self as TryCacheStore>::Error> {
Ok(self.get_or_new(key, args))
}
}