2020-04-10 20:01:48 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::sync::Arc;
|
2020-04-09 21:45:07 +00:00
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
use garage_util::background::BackgroundRunner;
|
|
|
|
use garage_util::data::*;
|
2020-04-23 17:05:46 +00:00
|
|
|
|
2021-03-10 15:21:56 +00:00
|
|
|
use garage_table::crdt::*;
|
2021-03-11 15:54:15 +00:00
|
|
|
use garage_table::replication::sharded::*;
|
2020-04-24 10:10:01 +00:00
|
|
|
use garage_table::*;
|
2020-04-09 21:45:07 +00:00
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
use crate::block_ref_table::*;
|
2020-04-18 17:39:08 +00:00
|
|
|
|
2020-04-09 21:45:07 +00:00
|
|
|
#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct Version {
|
|
|
|
// Primary key
|
2020-04-10 21:11:52 +00:00
|
|
|
pub uuid: UUID,
|
2020-04-09 21:45:07 +00:00
|
|
|
|
|
|
|
// Actual data: the blocks for this version
|
2021-03-10 16:01:05 +00:00
|
|
|
// In the case of a multipart upload, also store the etags
|
|
|
|
// of individual parts and check them when doing CompleteMultipartUpload
|
2021-03-10 15:21:56 +00:00
|
|
|
pub deleted: crdt::Bool,
|
|
|
|
pub blocks: crdt::Map<VersionBlockKey, VersionBlock>,
|
2021-03-10 16:01:05 +00:00
|
|
|
pub parts_etags: crdt::Map<u64, String>,
|
2020-04-09 21:45:07 +00:00
|
|
|
|
|
|
|
// Back link to bucket+key so that we can figure if
|
|
|
|
// this was deleted later on
|
|
|
|
pub bucket: String,
|
|
|
|
pub key: String,
|
|
|
|
}
|
|
|
|
|
2020-04-23 18:16:33 +00:00
|
|
|
impl Version {
|
2021-03-10 15:21:56 +00:00
|
|
|
pub fn new(uuid: UUID, bucket: String, key: String, deleted: bool) -> Self {
|
|
|
|
Self {
|
2020-04-23 18:16:33 +00:00
|
|
|
uuid,
|
2021-03-10 15:21:56 +00:00
|
|
|
deleted: deleted.into(),
|
|
|
|
blocks: crdt::Map::new(),
|
2021-03-10 16:01:05 +00:00
|
|
|
parts_etags: crdt::Map::new(),
|
2020-04-23 18:16:33 +00:00
|
|
|
bucket,
|
|
|
|
key,
|
|
|
|
}
|
|
|
|
}
|
2021-03-10 15:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(PartialEq, Eq, Clone, Copy, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct VersionBlockKey {
|
|
|
|
pub part_number: u64,
|
|
|
|
pub offset: u64,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Ord for VersionBlockKey {
|
|
|
|
fn cmp(&self, other: &Self) -> std::cmp::Ordering {
|
|
|
|
self.part_number
|
|
|
|
.cmp(&other.part_number)
|
|
|
|
.then(self.offset.cmp(&other.offset))
|
2020-04-23 18:16:33 +00:00
|
|
|
}
|
2021-03-10 15:21:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl PartialOrd for VersionBlockKey {
|
|
|
|
fn partial_cmp(&self, other: &Self) -> Option<std::cmp::Ordering> {
|
|
|
|
Some(self.cmp(other))
|
2020-04-23 18:16:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-10 15:21:56 +00:00
|
|
|
#[derive(PartialEq, Eq, Ord, PartialOrd, Clone, Copy, Debug, Serialize, Deserialize)]
|
2020-04-09 21:45:07 +00:00
|
|
|
pub struct VersionBlock {
|
|
|
|
pub hash: Hash,
|
2020-04-26 20:39:32 +00:00
|
|
|
pub size: u64,
|
|
|
|
}
|
|
|
|
|
2021-03-10 15:21:56 +00:00
|
|
|
impl AutoCRDT for VersionBlock {
|
|
|
|
const WARN_IF_DIFFERENT: bool = true;
|
2020-04-09 21:45:07 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 15:15:48 +00:00
|
|
|
impl Entry<Hash, EmptyKey> for Version {
|
2020-04-09 21:45:07 +00:00
|
|
|
fn partition_key(&self) -> &Hash {
|
2020-04-10 21:11:52 +00:00
|
|
|
&self.uuid
|
2020-04-09 21:45:07 +00:00
|
|
|
}
|
2020-04-19 15:15:48 +00:00
|
|
|
fn sort_key(&self) -> &EmptyKey {
|
|
|
|
&EmptyKey
|
2020-04-09 21:45:07 +00:00
|
|
|
}
|
2021-03-12 18:57:37 +00:00
|
|
|
fn is_tombstone(&self) -> bool {
|
|
|
|
self.deleted.get()
|
|
|
|
}
|
2021-03-10 15:21:56 +00:00
|
|
|
}
|
2020-04-09 21:45:07 +00:00
|
|
|
|
2021-03-10 15:21:56 +00:00
|
|
|
impl CRDT for Version {
|
2020-04-09 21:45:07 +00:00
|
|
|
fn merge(&mut self, other: &Self) {
|
2021-03-10 15:21:56 +00:00
|
|
|
self.deleted.merge(&other.deleted);
|
|
|
|
|
|
|
|
if self.deleted.get() {
|
2020-04-09 21:45:07 +00:00
|
|
|
self.blocks.clear();
|
2021-03-10 16:01:05 +00:00
|
|
|
self.parts_etags.clear();
|
2021-03-10 15:21:56 +00:00
|
|
|
} else {
|
|
|
|
self.blocks.merge(&other.blocks);
|
2021-03-10 16:01:05 +00:00
|
|
|
self.parts_etags.merge(&other.parts_etags);
|
2020-04-09 21:45:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct VersionTable {
|
2020-04-12 11:03:55 +00:00
|
|
|
pub background: Arc<BackgroundRunner>,
|
2020-04-19 11:22:28 +00:00
|
|
|
pub block_ref_table: Arc<Table<BlockRefTable, TableShardedReplication>>,
|
2020-04-09 21:45:07 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 20:24:53 +00:00
|
|
|
impl TableSchema for VersionTable {
|
2020-04-09 21:45:07 +00:00
|
|
|
type P = Hash;
|
2020-04-19 15:15:48 +00:00
|
|
|
type S = EmptyKey;
|
2020-04-09 21:45:07 +00:00
|
|
|
type E = Version;
|
2020-11-20 19:11:04 +00:00
|
|
|
type Filter = DeletedFilter;
|
2020-04-09 21:45:07 +00:00
|
|
|
|
2021-02-23 19:25:15 +00:00
|
|
|
fn updated(&self, old: Option<Self::E>, new: Option<Self::E>) {
|
2020-04-12 11:03:55 +00:00
|
|
|
let block_ref_table = self.block_ref_table.clone();
|
2021-03-15 22:14:12 +00:00
|
|
|
self.background.spawn(async move {
|
2021-02-23 19:25:15 +00:00
|
|
|
if let (Some(old_v), Some(new_v)) = (old, new) {
|
|
|
|
// Propagate deletion of version blocks
|
2021-03-10 15:21:56 +00:00
|
|
|
if new_v.deleted.get() && !old_v.deleted.get() {
|
2021-02-23 19:25:15 +00:00
|
|
|
let deleted_block_refs = old_v
|
|
|
|
.blocks
|
2021-03-10 15:21:56 +00:00
|
|
|
.items()
|
2021-02-23 19:25:15 +00:00
|
|
|
.iter()
|
2021-03-10 15:21:56 +00:00
|
|
|
.map(|(_k, vb)| BlockRef {
|
2021-02-23 19:25:15 +00:00
|
|
|
block: vb.hash,
|
|
|
|
version: old_v.uuid,
|
2021-03-10 15:21:56 +00:00
|
|
|
deleted: true.into(),
|
2021-02-23 19:25:15 +00:00
|
|
|
})
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
block_ref_table.insert_many(&deleted_block_refs[..]).await?;
|
|
|
|
}
|
2020-04-19 20:52:20 +00:00
|
|
|
}
|
2021-02-23 19:25:15 +00:00
|
|
|
Ok(())
|
|
|
|
})
|
2020-04-09 21:45:07 +00:00
|
|
|
}
|
2020-04-17 15:09:57 +00:00
|
|
|
|
2020-11-20 19:11:04 +00:00
|
|
|
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool {
|
2021-03-10 15:21:56 +00:00
|
|
|
filter.apply(entry.deleted.get())
|
2020-04-17 15:09:57 +00:00
|
|
|
}
|
2020-04-09 21:45:07 +00:00
|
|
|
}
|