2020-04-10 21:11:52 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
use garage_util::data::*;
|
2020-04-23 17:05:46 +00:00
|
|
|
|
2021-03-10 15:21:56 +00:00
|
|
|
use garage_table::crdt::CRDT;
|
2020-04-24 10:10:01 +00:00
|
|
|
use garage_table::*;
|
2020-04-10 21:11:52 +00:00
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
use crate::block::*;
|
2020-04-18 17:39:08 +00:00
|
|
|
|
2020-04-10 21:11:52 +00:00
|
|
|
#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct BlockRef {
|
2021-04-08 13:13:02 +00:00
|
|
|
/// Hash (blake2 sum) of the block, used as partition key
|
2020-04-10 21:11:52 +00:00
|
|
|
pub block: Hash,
|
|
|
|
|
2021-04-06 03:25:28 +00:00
|
|
|
/// Id of the Version for the object containing this block, used as sorting key
|
2020-04-10 21:11:52 +00:00
|
|
|
pub version: UUID,
|
|
|
|
|
|
|
|
// Keep track of deleted status
|
2021-04-06 03:25:28 +00:00
|
|
|
/// Is the Version that contains this block deleted
|
2021-03-10 15:21:56 +00:00
|
|
|
pub deleted: crdt::Bool,
|
2020-04-10 21:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Entry<Hash, UUID> for BlockRef {
|
|
|
|
fn partition_key(&self) -> &Hash {
|
|
|
|
&self.block
|
|
|
|
}
|
|
|
|
fn sort_key(&self) -> &UUID {
|
|
|
|
&self.version
|
|
|
|
}
|
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-10 21:11:52 +00:00
|
|
|
|
2021-03-10 15:21:56 +00:00
|
|
|
impl CRDT for BlockRef {
|
2020-04-10 21:11:52 +00:00
|
|
|
fn merge(&mut self, other: &Self) {
|
2021-03-10 15:21:56 +00:00
|
|
|
self.deleted.merge(&other.deleted);
|
2020-04-10 21:11:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct BlockRefTable {
|
2020-04-12 11:03:55 +00:00
|
|
|
pub block_manager: Arc<BlockManager>,
|
2020-04-10 21:11:52 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 20:24:53 +00:00
|
|
|
impl TableSchema for BlockRefTable {
|
2020-04-10 21:11:52 +00:00
|
|
|
type P = Hash;
|
|
|
|
type S = UUID;
|
|
|
|
type E = BlockRef;
|
2020-11-20 19:11:04 +00:00
|
|
|
type Filter = DeletedFilter;
|
2020-04-10 21:11:52 +00:00
|
|
|
|
2021-02-23 19:25:15 +00:00
|
|
|
fn updated(&self, old: Option<Self::E>, new: Option<Self::E>) {
|
2021-04-23 19:57:32 +00:00
|
|
|
let block = &old.as_ref().or_else(|| new.as_ref()).unwrap().block;
|
2021-03-10 15:21:56 +00:00
|
|
|
let was_before = old.as_ref().map(|x| !x.deleted.get()).unwrap_or(false);
|
|
|
|
let is_after = new.as_ref().map(|x| !x.deleted.get()).unwrap_or(false);
|
2020-04-11 21:00:26 +00:00
|
|
|
if is_after && !was_before {
|
2021-02-23 19:25:15 +00:00
|
|
|
if let Err(e) = self.block_manager.block_incref(block) {
|
|
|
|
warn!("block_incref failed for block {:?}: {}", block, e);
|
|
|
|
}
|
2020-04-11 21:00:26 +00:00
|
|
|
}
|
|
|
|
if was_before && !is_after {
|
2021-02-23 19:25:15 +00:00
|
|
|
if let Err(e) = self.block_manager.block_decref(block) {
|
|
|
|
warn!("block_decref failed for block {:?}: {}", block, e);
|
|
|
|
}
|
2020-04-11 21:00:26 +00:00
|
|
|
}
|
2020-04-10 21:11:52 +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-10 21:11:52 +00:00
|
|
|
}
|