ezcache/thread_safe/
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
345
//! Thread safe traits for generative cache stores.

use core::marker::PhantomData;

use crate::__internal_prelude::*;

use super::ThreadSafeCacheStore;

/// Infalible thread safe generative cache store. This trait is **HIGHLY** discouraged for the
/// reasons explained in [`thread_safe`][crate::thread_safe]
#[delegatable_trait]
pub trait ThreadSafeGenCacheStore<'lock>:
    super::ThreadSafeCacheStore<
    'lock,
    Key = <Self as ThreadSafeGenCacheStore<'lock>>::Key,
    Value = <Self as ThreadSafeGenCacheStore<'lock>>::Value,
>
where
    Self: 'lock,
{
    type Key;
    type Value;
    type Args;

    /// Generate a new value without checking cache or adding the value to it.
    fn ts_gen(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value;
    /// Get the value from cache or generate a new one without adding it.
    fn ts_get_or_gen(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value;
    /// Get the value from cache or generate a new one adding it.
    fn ts_get_or_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value;
    /// Generate a new value without checking cache and add the value to it, possibly overwriting
    /// previous values.
    fn ts_gen_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value;
}

/// Falible thread safe generative cache store.
#[delegatable_trait]
#[allow(clippy::missing_errors_doc)]
pub trait ThreadSafeTryGenCacheStore<'lock>:
    super::ThreadSafeTryCacheStore<
    'lock,
    Key = <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
    Value = <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
>
{
    type Key;
    type Value;
    type Error;
    type Args;

    /// Generate a new value without checking cache or adding the value to it.
    fn ts_try_gen(
        &'lock self,
        key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    >;
    /// Get the value from cache or generate a new one without adding it.
    fn ts_try_get_or_gen(
        &'lock self,
        key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    >;
    /// Get the value from cache or generate a new one adding it.
    fn ts_try_get_or_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    >;
    /// Generate a new value without checking cache and add the value to it, possibly overwriting
    /// previous values.
    fn ts_try_gen_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    >;
}

use super::ambassador_impl_ThreadSafeCacheStore;
#[derive(Delegate)]
#[delegate(ThreadSafeCacheStore<'lock>, target = "store")]
/// Infallible thread safe generative cache store wrapper around a [`ThreadSafeCacheStore`]
/// and a generator function.
///
/// One of the few unafallible thread safe wrappers.
///
/// 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`: [`ThreadSafeCacheStore`] which this wraps around.
/// - `F`: [`Fn<&K, A>`] with `V` return generator function.
pub struct ThreadSafeGenCacheStoreWrapper<
    'lock,
    K,
    V,
    A,
    S: super::ThreadSafeCacheStore<'lock, Key = K, Value = V>,
    F: Fn(&K, A) -> V + 'lock,
> {
    pub store: S,
    pub generator: F,
    phantom: PhantomData<&'lock (K, V, A)>,
}

/// Default implementation
impl<
        'lock,
        K,
        V,
        A,
        S: super::ThreadSafeCacheStore<'lock, Key = K, Value = V>,
        F: Fn(&K, A) -> V,
    > ThreadSafeGenCacheStoreWrapper<'lock, K, V, A, S, F>
{
    /// Make a new [`ThreadSafeGenCacheStoreWrapper`] from a
    /// [`ThreadSafeCacheStore`] and a generator function.
    pub fn new(store: S, generator: F) -> Self {
        Self {
            store,
            generator,
            phantom: PhantomData,
        }
    }
}

/// Implement [`ThreadSafeCacheStore`]
impl<
        'lock,
        K,
        V: Clone,
        A,
        S: super::ThreadSafeCacheStore<'lock, Key = K, Value = V>,
        F: Fn(&K, A) -> V,
    > ThreadSafeGenCacheStore<'lock> for ThreadSafeGenCacheStoreWrapper<'lock, K, V, A, S, F>
{
    type Key = K;
    type Value = V;
    type Args = A;

    fn ts_gen(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value {
        (self.generator)(key, args)
    }

    fn ts_get_or_gen(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value {
        self.store
            .ts_one_get(key)
            .unwrap_or_else(|| self.ts_gen(key, args))
    }

    fn ts_get_or_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value {
        let mut handle = self.ts_xlock(key);
        let slock: Self::SLock<'_> = (&handle).into();
        let value = self
            .store
            .ts_get(&slock)
            .unwrap_or_else(|| self.ts_gen(key, args));
        drop(slock);
        self.store.ts_set(&mut handle, &value);
        drop(handle);
        value
    }

    fn ts_gen_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> <Self as ThreadSafeGenCacheStore<'lock>>::Value {
        let value = self.ts_gen(key, args);
        self.store.ts_one_set(key, &value);
        value
    }
}

use super::ambassador_impl_ThreadSafeTryCacheStore;
#[derive(Delegate)]
#[delegate(ThreadSafeTryCacheStore<'lock>, target = "store")]
/// Fallible thread safe generative cache store wrapper around a [`ThreadSafeTryCacheStore`]
/// and a generator function.
///
/// Generics:
/// - `K`: Type of the key used for cache indexing.
/// - `V`: Type of the value stored in the cache store.
/// - `E`: Error type.
/// - `A`: Type of additional arguments of the generator function.
/// - `StErr`: Error type of the store.
/// - `FnErr`: Error type of the function.
/// - `S`: [`ThreadSafeCacheStore`] which this wraps around.
/// - `F`: [`Fn<&K, A>`] with `V` return generator function.
pub struct ThreadSafeGenTryCacheStoreWrapper<
    'lock,
    K,
    V,
    E,
    A,
    StErr: Into<E> + 'lock,
    FnErr: Into<E> + 'lock,
    S: super::ThreadSafeTryCacheStore<'lock, Key = K, Value = V, Error = StErr>,
    F: Fn(&K, A) -> Result<V, FnErr> + 'lock,
> {
    pub store: S,
    pub generator: F,
    phantom: PhantomData<&'lock (K, V, A, E)>,
}

/// Default implementation
impl<
        'lock,
        K,
        V,
        E,
        A,
        StErr: Into<E> + 'lock,
        FnErr: Into<E> + 'lock,
        S: super::ThreadSafeTryCacheStore<'lock, Key = K, Value = V, Error = StErr>,
        F: Fn(&K, A) -> Result<V, FnErr>,
    > ThreadSafeGenTryCacheStoreWrapper<'lock, K, V, E, A, StErr, FnErr, S, F>
{
    /// Make a new [`ThreadSafeGenCacheStoreWrapper`] from a [`ThreadSafeCacheStore`] and a generator function.
    pub fn new(store: S, generator: F) -> Self {
        Self {
            store,
            generator,
            phantom: PhantomData,
        }
    }
}

/// Implement [`ThreadSafeCacheStore`]
impl<
        'lock,
        K,
        V: Clone,
        E,
        A,
        StErr: Into<E> + 'lock,
        FnErr: Into<E> + 'lock,
        S: super::ThreadSafeTryCacheStore<'lock, Key = K, Value = V, Error = StErr>,
        F: Fn(&K, A) -> Result<V, FnErr>,
    > ThreadSafeTryGenCacheStore<'lock>
    for ThreadSafeGenTryCacheStoreWrapper<'lock, K, V, E, A, StErr, FnErr, S, F>
{
    type Key = K;
    type Value = V;
    type Args = A;
    type Error = E;

    fn ts_try_gen(
        &self,
        key: &<Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    > {
        (self.generator)(key, args).map_err(Into::into)
    }

    fn ts_try_get_or_gen(
        &'lock self,
        key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    > {
        self.store
            .ts_one_try_get(key)
            .map_err(Into::into)?
            .map_or_else(move || self.ts_try_gen(key, args), Ok)
    }

    fn ts_try_get_or_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    > {
        let mut handle = self.ts_try_xlock(key).map_err(Into::into)?;
        let value = self
            .store
            .ts_try_get(&(&handle).into())
            .map_err(Into::into)?
            .map_or_else(|| self.ts_try_gen(key, args), Ok)?;
        self.store
            .ts_try_set(&mut handle, &value)
            .map_err(Into::into)?;
        drop(handle);
        Ok(value)
    }

    fn ts_try_gen_new(
        &'lock self,
        key: &'lock <Self as ThreadSafeTryGenCacheStore<'lock>>::Key,
        args: Self::Args,
    ) -> Result<
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Value,
        <Self as ThreadSafeTryGenCacheStore<'lock>>::Error,
    > {
        let value = self.ts_try_gen(key, args)?;
        self.store.ts_one_try_set(key, &value).map_err(Into::into)?;
        Ok(value)
    }
}