ipfs-sqlite-block-store 0.2.0

block store for ipfs, using sqlite
Documentation
use super::{BlockInfo, CacheTracker, WriteInfo};
use parking_lot::Mutex;
use std::{fmt::Debug, sync::Arc};

/// Wrapper around a spawn function
pub trait Spawner: Send {
    /// Called by the cache tracker to spawn a small, blocking, io bound task
    fn spawn_blocking(&self, f: impl FnOnce() + Send + 'static);
}

/// A wrapping cache tracker that performs write operations on another thread
pub struct AsyncCacheTracker<S, T> {
    spawner: S,
    inner: Arc<Mutex<T>>,
}

impl<S, T> Debug for AsyncCacheTracker<S, T> {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("AsyncCacheTracker").finish()
    }
}

impl<S: Spawner, T: CacheTracker> AsyncCacheTracker<S, T> {
    pub fn new(spawner: S, inner: T) -> Self {
        Self {
            spawner,
            inner: Arc::new(Mutex::new(inner)),
        }
    }
}

impl<S, T> CacheTracker for AsyncCacheTracker<S, T>
where
    S: Spawner,
    T: CacheTracker + Send + 'static,
{
    fn blocks_accessed(&self, blocks: Vec<BlockInfo>) {
        let inner = self.inner.clone();
        self.spawner.spawn_blocking(move || {
            inner.lock().blocks_accessed(blocks);
        });
    }

    fn blocks_written(&self, blocks: Vec<WriteInfo>) {
        let inner = self.inner.clone();
        self.spawner.spawn_blocking(move || {
            inner.lock().blocks_written(blocks);
        });
    }

    fn blocks_deleted(&self, blocks: Vec<BlockInfo>) {
        self.inner.lock().blocks_deleted(blocks);
    }

    fn retain_ids(&self, ids: &[i64]) {
        self.inner.lock().retain_ids(ids);
    }

    fn sort_ids(&self, ids: &mut [i64]) {
        self.inner.lock().sort_ids(ids);
    }
}