ezcache/stores/
file_stores.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
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
use base64::{prelude::BASE64_URL_SAFE, Engine};
use serde::{de::DeserializeOwned, Serialize};
use sha2::{Digest, Sha256};

use crate::{__internal_prelude::*, thread_safe::dumb_wrappers::RwLockAnyGuardKey};

use core::hash::Hash;
use std::vec;
use std::{
    collections::HashMap,
    fs::{File, OpenOptions},
    io::{Read, Write},
    path::{Path, PathBuf},
    string::String,
    sync::{Mutex, PoisonError, RwLock, RwLockWriteGuard, TryLockError},
    vec::Vec,
};

/// Error Type used by the File Based cache store
#[derive(Debug)]
pub enum ThreadSafeFileStoreError {
    Io(std::io::Error),
    Bincode(bincode::Error),
    Poisoned,
    WouldBlock,
}
impl std::error::Error for ThreadSafeFileStoreError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        match self {
            Self::Io(err) => Some(err),
            Self::Bincode(err) => Some(err),
            _ => None,
        }
    }
}
impl std::fmt::Display for ThreadSafeFileStoreError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> core::fmt::Result {
        match self {
            Self::Io(err) => writeln!(f, "io error: {err}"),
            Self::Bincode(err) => writeln!(f, "bincode error: {err}"),
            Self::Poisoned => writeln!(f, "poisoned lock"),
            Self::WouldBlock => writeln!(f, "locking would block"),
        }
    }
}

impl From<bincode::Error> for ThreadSafeFileStoreError {
    fn from(value: bincode::Error) -> Self {
        Self::Bincode(value)
    }
}
impl From<std::io::Error> for ThreadSafeFileStoreError {
    fn from(value: std::io::Error) -> Self {
        Self::Io(value)
    }
}
impl<T> From<PoisonError<T>> for ThreadSafeFileStoreError {
    fn from(_: PoisonError<T>) -> Self {
        Self::Poisoned
    }
}
impl<T> From<TryLockError<T>> for ThreadSafeFileStoreError {
    fn from(value: TryLockError<T>) -> Self {
        match value {
            TryLockError::Poisoned(_) => Self::Poisoned,
            TryLockError::WouldBlock => Self::WouldBlock,
        }
    }
}

/// Custom trait used for filename hashing
pub trait CustomHash {
    fn hash(&self) -> String;
}
impl<T: AsRef<[u8]>> CustomHash for T {
    fn hash(&self) -> String {
        let mut hasher = Sha256::new();
        hasher.update(self);
        BASE64_URL_SAFE.encode(hasher.finalize().as_slice())
    }
}

// ---- Raw (No Serialization)

/// Thread safe store based on files
pub struct ThreadSafeFileStore<K, V> {
    path: PathBuf,
    cache: Mutex<HashMap<K, RwLock<()>>>,
    value_phantom: PhantomData<V>,
}

impl<K: CustomHash, V> ThreadSafeFileStore<K, V> {
    /// Makes a new instance from a directory path
    /// Doesn't perform any file lock, you must ensure this path isn't used by other processes
    /// or even this one itself.
    ///
    /// # Errors
    /// Fails when any underlying io call does.
    pub fn new_on(path: impl AsRef<Path> + TryInto<PathBuf>) -> std::io::Result<Self> {
        std::fs::create_dir_all(&path)?;
        Ok(Self {
            path: path.try_into().map_err(|_| {
                std::io::Error::new(std::io::ErrorKind::Other, "error converting from path")
            })?,
            cache: Mutex::new(HashMap::new()),
            value_phantom: PhantomData,
        })
    }

    fn get_path_of(&self, key: &K) -> PathBuf {
        self.path.join(key.hash())
    }
}

impl<'lock, K: Clone + Hash + Eq + CustomHash, V: Clone + AsRef<[u8]> + From<Vec<u8>>>
    ThreadSafeTryCacheStore<'lock> for ThreadSafeFileStore<K, V>
where
    Self: 'lock,
{
    type Key = K;
    type Value = V;
    type Error = ThreadSafeFileStoreError;
    type SLock<'guard>
        = RwLockAnyGuardKey<'lock, 'guard, (), K>
    where
        'lock: 'guard;
    type XLock = (RwLockWriteGuard<'lock, ()>, &'lock K);

    fn ts_try_get(
        &'lock self,
        handle: &Self::SLock<'_>,
    ) -> Result<Option<Self::Value>, Self::Error> {
        let path = self.get_path_of(handle.get_key());
        match File::open(path) {
            Ok(mut fil) => {
                let mut buf = vec![];
                fil.read_to_end(&mut buf)?;
                Ok(Some(buf.into()))
            }
            Err(ref error) if error.kind() == std::io::ErrorKind::NotFound => Ok(None),
            Err(error) => Err(error.into()),
        }
    }

    fn ts_try_set(
        &'lock self,
        handle: &mut Self::XLock,
        value: &Self::Value,
    ) -> Result<(), Self::Error> {
        let serialized = value.as_ref();

        let path = self.get_path_of(handle.1);
        let mut file = OpenOptions::new()
            .create(true)
            .write(true)
            .truncate(true)
            .open(path)?;
        file.write_all(serialized)?;
        Ok(())
    }

    fn ts_try_exists(&'lock self, handle: &Self::SLock<'_>) -> Result<bool, Self::Error> {
        let path = self.get_path_of(handle.get_key());
        Ok(std::fs::metadata(path)?.is_file())
    }

    fn ts_try_xlock(&'lock self, key: &'lock Self::Key) -> Result<Self::XLock, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::XLock = unsafe { ((*value).write()?, key) };
        drop(cache_lock);

        Ok(lock)
    }

    fn ts_try_slock(&'lock self, key: &'lock Self::Key) -> Result<Self::SLock<'lock>, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::SLock<'_> = unsafe { ((*value).read()?, key).into() };
        drop(cache_lock);

        Ok(lock)
    }

    fn ts_try_xlock_nblock(&'lock self, key: &'lock Self::Key) -> Result<Self::XLock, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::XLock = unsafe { ((*value).try_write()?, key) };
        drop(cache_lock);

        Ok(lock)
    }

    fn ts_try_slock_nblock(
        &'lock self,
        key: &'lock Self::Key,
    ) -> Result<Self::SLock<'lock>, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::SLock<'_> = unsafe { ((*value).try_read()?, key).into() };
        drop(cache_lock);

        Ok(lock)
    }
}

// ---- With Serialization

/// Thread safe store based on files with serialization
pub struct ThreadSafeFileStoreSerializable<K, V> {
    path: PathBuf,
    cache: Mutex<HashMap<K, RwLock<()>>>,
    value_phantom: PhantomData<V>,
}

impl<K: CustomHash, V> ThreadSafeFileStoreSerializable<K, V> {
    /// Makes a new instance from a directory path
    /// Doesn't perform any file lock, you must ensure this path isn't used by other processes
    /// or even this one itself.
    ///
    /// # Errors
    /// Fails when any underlying io call does.
    pub fn new_on(path: impl AsRef<Path> + TryInto<PathBuf>) -> std::io::Result<Self> {
        std::fs::create_dir_all(&path)?;
        Ok(Self {
            path: path.try_into().map_err(|_| {
                std::io::Error::new(std::io::ErrorKind::Other, "error converting from path")
            })?,
            cache: Mutex::new(HashMap::new()),
            value_phantom: PhantomData,
        })
    }

    fn get_path_of(&self, key: &K) -> PathBuf {
        self.path.join(key.hash())
    }
}

impl<'lock, K: Clone + Hash + Eq + CustomHash, V: Clone + Serialize + DeserializeOwned>
    ThreadSafeTryCacheStore<'lock> for ThreadSafeFileStoreSerializable<K, V>
where
    Self: 'lock,
{
    type Key = K;
    type Value = V;
    type Error = ThreadSafeFileStoreError;
    type SLock<'guard>
        = RwLockAnyGuardKey<'lock, 'guard, (), K>
    where
        'lock: 'guard;
    type XLock = (RwLockWriteGuard<'lock, ()>, &'lock K);

    fn ts_try_get(
        &'lock self,
        handle: &Self::SLock<'_>,
    ) -> Result<Option<Self::Value>, Self::Error> {
        let path = self.get_path_of(handle.get_key());
        match File::open(path) {
            Ok(mut fil) => {
                let mut buf = vec![];
                fil.read_to_end(&mut buf)?;
                Ok(bincode::deserialize(buf.as_slice()).map(Some)?)
            }
            Err(ref error) if error.kind() == std::io::ErrorKind::NotFound => Ok(None),
            Err(error) => Err(error.into()),
        }
    }

    fn ts_try_set(
        &'lock self,
        handle: &mut Self::XLock,
        value: &Self::Value,
    ) -> Result<(), Self::Error> {
        let serialized = bincode::serialize(&value)?;

        let path = self.get_path_of(handle.1);
        let mut file = OpenOptions::new()
            .create(true)
            .write(true)
            .truncate(true)
            .open(path)?;
        file.write_all(&serialized)?;
        Ok(())
    }

    fn ts_try_exists(&'lock self, handle: &Self::SLock<'_>) -> Result<bool, Self::Error> {
        let path = self.get_path_of(handle.get_key());
        Ok(std::fs::metadata(path)?.is_file())
    }

    fn ts_try_xlock(&'lock self, key: &'lock Self::Key) -> Result<Self::XLock, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::XLock = unsafe { ((*value).write()?, key) };
        drop(cache_lock);

        Ok(lock)
    }

    fn ts_try_slock(&'lock self, key: &'lock Self::Key) -> Result<Self::SLock<'lock>, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::SLock<'_> = unsafe { ((*value).read()?, key).into() };
        drop(cache_lock);

        Ok(lock)
    }

    fn ts_try_xlock_nblock(&'lock self, key: &'lock Self::Key) -> Result<Self::XLock, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::XLock = unsafe { ((*value).try_write()?, key) };
        drop(cache_lock);

        Ok(lock)
    }

    fn ts_try_slock_nblock(
        &'lock self,
        key: &'lock Self::Key,
    ) -> Result<Self::SLock<'lock>, Self::Error> {
        let mut cache_lock = self.cache.lock()?;
        let value = if let Some(thing) = cache_lock.get(key) {
            thing
        } else {
            cache_lock.insert(key.clone(), RwLock::default());
            cache_lock.get(key).unwrap()
        };

        // Detach the lock itself from the HashMap guard lifetime
        let value: *const _ = value;
        let lock: Self::SLock<'_> = unsafe { ((*value).try_read()?, key).into() };
        drop(cache_lock);

        Ok(lock)
    }
}

// ---- And some tests

#[cfg(test)]
mod tests {
    use std::println;

    use super::*;
    use serde::{Deserialize, Serialize};
    use tempfile::tempdir;

    #[derive(Clone, Serialize, Deserialize, PartialEq, Debug)]
    struct MyValue {
        name: String,
        number: i32,
    }

    #[test]
    fn raw_set_get() {
        // Create a temporary directory for the store
        let temp_dir = tempdir().expect("Failed to create temp dir");
        let store_path = temp_dir.path().to_path_buf();

        // Initialize the ThreadSafeFileStore
        let store = ThreadSafeFileStore::<String, Vec<u8>>::new_on(store_path)
            .expect("Failed to create ThreadSafeFileStore");

        // Define a key and value
        let key = String::from("test_key");
        let value = String::from("my value").into_bytes().as_slice().to_vec();

        println!("on {temp_dir:?}");

        // Write the value to the store
        {
            let mut xlock = store
                .ts_try_xlock_nblock(&key)
                .expect("Failed to acquire exclusive lock");
            store
                .ts_try_set(&mut xlock, &value)
                .expect("Failed to set value");
        }

        // Retrieve the value from the store
        {
            let slock = store
                .ts_try_slock_nblock(&key)
                .expect("Failed to acquire shared lock");
            let retrieved_value = store
                .ts_try_get(&slock)
                .expect("Failed to get value")
                .expect("Value not found");
            assert_eq!(
                retrieved_value, value,
                "Retrieved value does not match the original"
            );
        }
    }

    #[test]
    fn serialization_set_get() {
        // Create a temporary directory for the store
        let temp_dir = tempdir().expect("Failed to create temp dir");
        let store_path = temp_dir.path().to_path_buf();

        // Initialize the ThreadSafeFileStore
        let store = ThreadSafeFileStoreSerializable::<String, MyValue>::new_on(store_path)
            .expect("Failed to create ThreadSafeFileStore");

        // Define a key and value
        let key = String::from("test_key");
        let value = MyValue {
            name: String::from("test_name"),
            number: 42,
        };

        println!("on {temp_dir:?}");

        // Write the value to the store
        {
            let mut xlock = store
                .ts_try_xlock_nblock(&key)
                .expect("Failed to acquire exclusive lock");
            store
                .ts_try_set(&mut xlock, &value)
                .expect("Failed to set value");
        }

        // Retrieve the value from the store
        {
            let slock = store
                .ts_try_slock_nblock(&key)
                .expect("Failed to acquire shared lock");
            let retrieved_value = store
                .ts_try_get(&slock)
                .expect("Failed to get value")
                .expect("Value not found");
            assert_eq!(
                retrieved_value, value,
                "Retrieved value does not match the original"
            );
        }
    }

    #[test]
    fn file_get_inexistent() {
        // Create a temporary directory for the store
        let temp_dir = tempdir().expect("Failed to create temp dir");
        let store_path = temp_dir.path().to_path_buf();

        // Initialize the ThreadSafeFileStore
        let store = ThreadSafeFileStoreSerializable::<String, ()>::new_on(store_path)
            .expect("Failed to create ThreadSafeFileStore");

        assert_eq!(
            store
                .ts_one_try_get(&String::from("key that doesn't exist"))
                .expect("to not fail"),
            None
        );
    }
}