use crate::store::{BlobEntry, BlobTable, BlobTableInterface, StoreError};
use std::borrow::Cow;
#[async_trait::async_trait]
pub trait BlobStoreInterface: Send + Sync {
async fn get_in_table<'a>(&'a self, entry: &BlobEntry) -> Result<Cow<'a, [u8]>, StoreError> {
let table = self.table(&entry.table).await?;
table.get(&entry.key).await
}
async fn set_in_table(&mut self, entry: &BlobEntry, value: &[u8]) -> Result<(), StoreError> {
self.table(&entry.table).await?.set(&entry.key, value).await
}
async fn table<'a>(
&'a self,
table: &BlobTable,
) -> Result<Box<dyn BlobTableInterface<'a>>, StoreError>;
async fn table_option(&self, table: &BlobTable) -> Option<Box<dyn BlobTableInterface>> {
match self.table(table).await {
Ok(t) => Some(t),
Err(e) => {
error!(
"blob_store: Failed to open table {} due to error: {:?}",
table, e
);
None
}
}
}
}