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