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-03-10 16:21:56 +01: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 {
|
|
|
|
// Primary key
|
|
|
|
pub block: Hash,
|
|
|
|
|
|
|
|
// Sort key
|
|
|
|
pub version: UUID,
|
|
|
|
|
|
|
|
// Keep track of deleted status
|
2021-03-10 16:21:56 +01:00
|
|
|
pub deleted: crdt::Bool,
|
2020-04-10 23:11:52 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Entry<Hash, UUID> for BlockRef {
|
|
|
|
fn partition_key(&self) -> &Hash {
|
|
|
|
&self.block
|
|
|
|
}
|
|
|
|
fn sort_key(&self) -> &UUID {
|
|
|
|
&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-03-10 16:21:56 +01: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;
|
|
|
|
type S = UUID;
|
|
|
|
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>) {
|
2020-04-17 14:49:10 +02:00
|
|
|
let block = &old.as_ref().or(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
|
|
|
}
|