2020-07-08 14:10:53 +00:00
|
|
|
use async_trait::async_trait;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
|
|
|
use garage_util::data::*;
|
|
|
|
use garage_util::error::Error;
|
|
|
|
|
|
|
|
pub trait PartitionKey {
|
|
|
|
fn hash(&self) -> Hash;
|
|
|
|
}
|
|
|
|
|
2020-11-20 19:11:04 +00:00
|
|
|
impl PartitionKey for String {
|
2020-07-08 14:10:53 +00:00
|
|
|
fn hash(&self) -> Hash {
|
2021-02-21 14:24:30 +00:00
|
|
|
sha256sum(self.as_bytes())
|
2020-07-08 14:10:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-20 19:11:04 +00:00
|
|
|
impl PartitionKey for Hash {
|
2020-07-08 14:10:53 +00:00
|
|
|
fn hash(&self) -> Hash {
|
2020-11-20 19:11:04 +00:00
|
|
|
self.clone()
|
2020-07-08 14:10:53 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-20 19:11:04 +00:00
|
|
|
|
|
|
|
pub trait SortKey {
|
|
|
|
fn sort_key(&self) -> &[u8];
|
|
|
|
}
|
|
|
|
|
2020-07-08 14:10:53 +00:00
|
|
|
impl SortKey for String {
|
|
|
|
fn sort_key(&self) -> &[u8] {
|
|
|
|
self.as_bytes()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SortKey for Hash {
|
|
|
|
fn sort_key(&self) -> &[u8] {
|
|
|
|
self.as_slice()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-20 19:11:04 +00:00
|
|
|
pub trait Entry<P: PartitionKey, S: SortKey>:
|
|
|
|
PartialEq + Clone + Serialize + for<'de> Deserialize<'de> + Send + Sync
|
|
|
|
{
|
|
|
|
fn partition_key(&self) -> &P;
|
|
|
|
fn sort_key(&self) -> &S;
|
|
|
|
|
|
|
|
fn merge(&mut self, other: &Self);
|
|
|
|
}
|
|
|
|
|
2020-07-08 14:10:53 +00:00
|
|
|
#[async_trait]
|
|
|
|
pub trait TableSchema: Send + Sync {
|
|
|
|
type P: PartitionKey + Clone + PartialEq + Serialize + for<'de> Deserialize<'de> + Send + Sync;
|
|
|
|
type S: SortKey + Clone + Serialize + for<'de> Deserialize<'de> + Send + Sync;
|
|
|
|
type E: Entry<Self::P, Self::S>;
|
|
|
|
type Filter: Clone + Serialize + for<'de> Deserialize<'de> + Send + Sync;
|
|
|
|
|
2020-07-08 15:34:37 +00:00
|
|
|
// Action to take if not able to decode current version:
|
|
|
|
// try loading from an older version
|
|
|
|
fn try_migrate(_bytes: &[u8]) -> Option<Self::E> {
|
|
|
|
None
|
|
|
|
}
|
2020-07-08 14:10:53 +00:00
|
|
|
|
|
|
|
async fn updated(&self, old: Option<Self::E>, new: Option<Self::E>) -> Result<(), Error>;
|
|
|
|
fn matches_filter(_entry: &Self::E, _filter: &Self::Filter) -> bool {
|
|
|
|
true
|
|
|
|
}
|
|
|
|
}
|