garage/src/model/block_ref_table.rs

72 lines
1.7 KiB
Rust
Raw Normal View History

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
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-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
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
}
fn is_tombstone(&self) -> bool {
self.deleted.get()
}
}
2020-04-10 21:11:52 +00:00
impl CRDT for BlockRef {
2020-04-10 21:11:52 +00:00
fn merge(&mut self, other: &Self) {
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;
type Filter = DeletedFilter;
2020-04-10 21:11:52 +00:00
fn updated(&self, old: Option<Self::E>, new: Option<Self::E>) {
2020-04-17 12:49:10 +00:00
let block = &old.as_ref().or(new.as_ref()).unwrap().block;
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 {
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 {
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
}
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool {
filter.apply(entry.deleted.get())
}
2020-04-10 21:11:52 +00:00
}