2020-04-10 21:11:52 +00:00
|
|
|
use async_trait::async_trait;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2020-04-24 10:10:01 +00:00
|
|
|
use garage_util::background::*;
|
|
|
|
use garage_util::data::*;
|
|
|
|
use garage_util::error::Error;
|
2020-04-23 17:05:46 +00:00
|
|
|
|
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 {
|
|
|
|
// Primary key
|
|
|
|
pub block: Hash,
|
|
|
|
|
|
|
|
// Sort key
|
|
|
|
pub version: UUID,
|
|
|
|
|
|
|
|
// Keep track of deleted status
|
|
|
|
pub deleted: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Entry<Hash, UUID> for BlockRef {
|
|
|
|
fn partition_key(&self) -> &Hash {
|
|
|
|
&self.block
|
|
|
|
}
|
|
|
|
fn sort_key(&self) -> &UUID {
|
|
|
|
&self.version
|
|
|
|
}
|
|
|
|
|
|
|
|
fn merge(&mut self, other: &Self) {
|
|
|
|
if other.deleted {
|
|
|
|
self.deleted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct BlockRefTable {
|
2020-04-12 11:03:55 +00:00
|
|
|
pub background: Arc<BackgroundRunner>,
|
|
|
|
pub block_manager: Arc<BlockManager>,
|
2020-04-10 21:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[async_trait]
|
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-04-17 15:09:57 +00:00
|
|
|
type Filter = ();
|
2020-04-10 21:11:52 +00:00
|
|
|
|
2020-04-19 20:52:20 +00:00
|
|
|
async fn updated(&self, old: Option<Self::E>, new: Option<Self::E>) -> Result<(), Error> {
|
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).unwrap_or(false);
|
|
|
|
let is_after = new.as_ref().map(|x| !x.deleted).unwrap_or(false);
|
2020-04-11 21:00:26 +00:00
|
|
|
if is_after && !was_before {
|
2020-04-19 20:52:20 +00:00
|
|
|
self.block_manager.block_incref(block)?;
|
2020-04-11 21:00:26 +00:00
|
|
|
}
|
|
|
|
if was_before && !is_after {
|
2020-04-19 20:52:20 +00:00
|
|
|
self.block_manager.block_decref(block)?;
|
2020-04-11 21:00:26 +00:00
|
|
|
}
|
2020-04-19 20:52:20 +00:00
|
|
|
Ok(())
|
2020-04-10 21:11:52 +00:00
|
|
|
}
|
2020-04-17 15:09:57 +00:00
|
|
|
|
|
|
|
fn matches_filter(entry: &Self::E, _filter: &Self::Filter) -> bool {
|
|
|
|
!entry.deleted
|
|
|
|
}
|
2020-04-10 21:11:52 +00:00
|
|
|
}
|