about summary refs log tree commit diff
path: root/tvix/store/src/blobservice/memory.rs
blob: 73028f8f3c63f3236d7471e8bd6f987af134500f (plain) (blame)
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
use data_encoding::BASE64;
use std::{
    collections::HashMap,
    sync::{Arc, RwLock},
};
use tracing::instrument;

use crate::{proto, Error};

use super::BlobService;

#[derive(Clone)]
pub struct MemoryBlobService {
    db: Arc<RwLock<HashMap<Vec<u8>, proto::BlobMeta>>>,
}

impl MemoryBlobService {
    pub fn new() -> Self {
        let db = Arc::new(RwLock::new(HashMap::default()));

        Self { db }
    }
}

impl BlobService for MemoryBlobService {
    #[instrument(skip(self, req), fields(blob.digest=BASE64.encode(&req.digest)))]
    fn stat(&self, req: &proto::StatBlobRequest) -> Result<Option<proto::BlobMeta>, Error> {
        if req.include_bao {
            todo!("not implemented yet")
        }

        let db = self.db.read().unwrap();
        // if include_chunks is also false, the user only wants to know if the
        // blob is present at all.
        if !req.include_chunks {
            Ok(if db.contains_key(&req.digest) {
                Some(proto::BlobMeta::default())
            } else {
                None
            })
        } else {
            match db.get(&req.digest) {
                None => Ok(None),
                Some(blob_meta) => Ok(Some(blob_meta.clone())),
            }
        }
    }

    #[instrument(skip(self, blob_meta, blob_digest), fields(blob.digest = BASE64.encode(blob_digest)))]
    fn put(&self, blob_digest: &[u8], blob_meta: proto::BlobMeta) -> Result<(), Error> {
        let mut db = self.db.write().unwrap();

        db.insert(blob_digest.to_vec(), blob_meta);

        Ok(())
        // TODO: make sure all callers make sure the chunks exist.
        // TODO: where should we calculate the bao?
    }
}