use crate::{
index::{
Cursor, Unordered as Index,
partitioned::{PartitionRange, Partitioned},
},
journal::{
Error as JournalError,
contiguous::{Contiguous, Mutable},
},
merkle::{
Bagging, Family, Location,
hasher::{Hasher as MerkleHasher, Standard as StandardHasher},
},
qmdb::operation::{Floored, Operation},
translator::Translator,
};
use commonware_codec::Encode;
use commonware_cryptography::Hasher;
use commonware_runtime::{ReadOptions, Spawner};
use commonware_utils::{
bitmap::{Atomic, BitMap},
cache::Clock,
channel::mpsc,
};
use core::{num::NonZeroUsize, ops::Range};
use futures::{StreamExt as _, future::join_all, pin_mut};
use std::sync::Arc;
use thiserror::Error;
pub mod any;
pub mod batch_chain;
pub(crate) mod bitmap;
pub(crate) mod compact;
#[cfg(test)]
mod conformance;
pub mod current;
pub mod immutable;
pub mod keyless;
mod metrics;
pub mod operation;
pub mod store;
pub mod sync;
pub mod verify;
pub use verify::{
create_multi_proof, create_proof_store, verify_multi_proof, verify_proof,
verify_proof_and_extract_digests, verify_proof_and_pinned_nodes,
};
pub(crate) const ROOT_BAGGING: Bagging = Bagging::BackwardFold;
pub const fn hasher<H: Hasher>() -> StandardHasher<H> {
StandardHasher::new(ROOT_BAGGING)
}
fn single_operation_root<F: Family, H: Hasher>(operation: &impl Encode) -> H::Digest {
let hasher = hasher::<H>();
let leaf = MerkleHasher::<F>::leaf_digest(
&hasher,
F::location_to_position(Location::new(0)),
&operation.encode(),
);
MerkleHasher::<F>::root(&hasher, Location::new(1), 0, [&leaf])
.expect("a single-leaf Merkle root is always valid")
}
pub(crate) async fn find_inactivity_floor_at<F, R>(
reader: &R,
op_count: Location<F>,
) -> Result<Location<F>, Error<F>>
where
F: Family,
R: Contiguous<Item: Floored<F>>,
{
let Some(last_op) = op_count.checked_sub(1) else {
return Err(Error::HistoricalFloorPruned(op_count));
};
let last_op = *last_op;
let bounds = reader.bounds();
if last_op < bounds.start {
return Err(JournalError::ItemPruned(last_op).into());
}
let op = reader.read(last_op).await?;
let floor = op
.has_floor()
.ok_or(Error::HistoricalFloorPruned(op_count))?;
if floor > Location::new(last_op) {
return Err(Error::DataCorrupted(
"inactivity floor exceeds commit location",
));
}
Ok(floor)
}
pub(crate) async fn inactive_peaks_at<F, R>(
reader: &R,
op_count: Location<F>,
) -> Result<usize, Error<F>>
where
F: Family,
R: Contiguous<Item: Floored<F>>,
{
if op_count == Location::new(0) {
return Ok(0);
}
let floor = find_inactivity_floor_at::<F, _>(reader, op_count).await?;
Ok(F::inactive_peaks(op_count, floor))
}
#[derive(Error, Debug)]
pub enum Error<F: Family> {
#[error("data corrupted: {0}")]
DataCorrupted(&'static str),
#[error("merkle error: {0}")]
Merkle(#[from] crate::merkle::Error<F>),
#[error("metadata error: {0}")]
Metadata(#[from] crate::metadata::Error),
#[error("journal error: {0}")]
Journal(#[from] crate::journal::Error),
#[error("runtime error: {0}")]
Runtime(#[from] commonware_runtime::Error),
#[error("operation pruned: {0}")]
OperationPruned(Location<F>),
#[error("key not found")]
KeyNotFound,
#[error("key exists")]
KeyExists,
#[error("unexpected data at location: {0}")]
UnexpectedData(Location<F>),
#[error("location out of bounds: {0} >= {1}")]
LocationOutOfBounds(Location<F>, Location<F>),
#[error("prune location {0} beyond minimum required location {1}")]
PruneBeyondMinRequired(Location<F>, Location<F>),
#[error("stale batch: current database state does not match the batch")]
StaleBatch,
#[error("floor regressed: batch floor {0} < current floor {1}")]
FloorRegressed(Location<F>, Location<F>),
#[error("floor beyond commit location: floor {0} > commit loc {1}")]
FloorBeyondSize(Location<F>, Location<F>),
#[error("historical floor pruned for size: {0}")]
HistoricalFloorPruned(Location<F>),
}
impl<F: Family> From<crate::journal::authenticated::Error<F>> for Error<F> {
fn from(e: crate::journal::authenticated::Error<F>) -> Self {
match e {
crate::journal::authenticated::Error::Journal(j) => Self::Journal(j),
crate::journal::authenticated::Error::Merkle(m) => Self::Merkle(m),
}
}
}
pub(super) async fn build_snapshot_from_log<F, C, I, Fn>(
inactivity_floor_loc: crate::merkle::Location<F>,
reader: &C,
snapshot: &mut I,
init_buffer: NonZeroUsize,
cache_size: Option<NonZeroUsize>,
mut callback: Fn,
) -> Result<usize, Error<F>>
where
F: crate::merkle::Family,
C: Contiguous<Item: Operation<F>>,
I: Index<Value = crate::merkle::Location<F>>,
Fn: FnMut(bool, Option<crate::merkle::Location<F>>),
{
let bounds = reader.bounds();
let stream = reader
.replay(*inactivity_floor_loc, init_buffer, ReadOptions::default())
.await?;
pin_mut!(stream);
let last_commit_loc = bounds.end.saturating_sub(1);
let mut cache = cache_size.map(Clock::<u64, <C::Item as Operation<F>>::Key>::new);
let mut active_keys: usize = 0;
while let Some(result) = stream.next().await {
let (loc, op) = result?;
if let Some(key) = op.key() {
if op.is_delete() {
let old_loc = delete_key(snapshot, reader, key, cache.as_mut()).await?;
callback(false, old_loc);
if old_loc.is_some() {
active_keys -= 1;
}
} else if op.is_update() {
let new_loc = crate::merkle::Location::new(loc);
let old_loc = update_key(snapshot, reader, key, new_loc, cache.as_mut()).await?;
callback(true, old_loc);
if old_loc.is_none() {
active_keys += 1;
}
if let Some(cache) = cache.as_mut() {
cache.put(loc, key.clone());
}
}
} else if op.has_floor().is_some() {
callback(loc == last_commit_loc, None);
}
}
Ok(active_keys)
}
async fn delete_key<F, I, R>(
snapshot: &mut I,
reader: &R,
key: &<R::Item as Operation<F>>::Key,
cache: Option<&mut Clock<u64, <R::Item as Operation<F>>::Key>>,
) -> Result<Option<Location<F>>, Error<F>>
where
F: Family,
I: Index<Value = Location<F>>,
R: Contiguous,
R::Item: Operation<F>,
{
let Some(cursor) = snapshot.get_mut(key) else {
return Ok(None);
};
delete_at_cursor::<F, _, _>(cursor, reader, key, cache).await
}
async fn delete_at_cursor<F, C, R>(
mut cursor: C,
reader: &R,
key: &<R::Item as Operation<F>>::Key,
mut cache: Option<&mut Clock<u64, <R::Item as Operation<F>>::Key>>,
) -> Result<Option<Location<F>>, Error<F>>
where
F: Family,
C: Cursor<Value = Location<F>>,
R: Contiguous,
R::Item: Operation<F>,
{
let Some(loc) = find_update_op::<F, _>(reader, &mut cursor, key, cache.as_deref_mut()).await?
else {
return Ok(None);
};
cursor.delete();
if let Some(cache) = cache {
cache.remove(&*loc);
}
Ok(Some(loc))
}
async fn update_key<F, I, R>(
snapshot: &mut I,
reader: &R,
key: &<R::Item as Operation<F>>::Key,
new_loc: Location<F>,
cache: Option<&mut Clock<u64, <R::Item as Operation<F>>::Key>>,
) -> Result<Option<Location<F>>, Error<F>>
where
F: Family,
I: Index<Value = Location<F>>,
R: Contiguous,
R::Item: Operation<F>,
{
let Some(cursor) = snapshot.get_mut_or_insert(key, new_loc) else {
return Ok(None);
};
update_at_cursor::<F, _, _>(cursor, reader, key, new_loc, cache).await
}
async fn update_at_cursor<F, C, R>(
mut cursor: C,
reader: &R,
key: &<R::Item as Operation<F>>::Key,
new_loc: Location<F>,
mut cache: Option<&mut Clock<u64, <R::Item as Operation<F>>::Key>>,
) -> Result<Option<Location<F>>, Error<F>>
where
F: Family,
C: Cursor<Value = Location<F>>,
R: Contiguous,
R::Item: Operation<F>,
{
if let Some(loc) =
find_update_op::<F, _>(reader, &mut cursor, key, cache.as_deref_mut()).await?
{
assert!(new_loc > loc);
cursor.update(new_loc);
if let Some(cache) = cache {
cache.remove(&*loc);
}
return Ok(Some(loc));
}
cursor.insert(new_loc);
Ok(None)
}
async fn find_update_op<F, R>(
reader: &R,
cursor: &mut impl Cursor<Value = Location<F>>,
key: &<R::Item as Operation<F>>::Key,
mut cache: Option<&mut Clock<u64, <R::Item as Operation<F>>::Key>>,
) -> Result<Option<Location<F>>, Error<F>>
where
F: Family,
R: Contiguous,
R::Item: Operation<F>,
{
while let Some(&loc) = cursor.next() {
let matches = if let Some(k) = cache.as_deref().and_then(|c| c.get(&*loc)) {
*k == *key
} else {
let op = reader.read(*loc).await?;
let k = op.key().expect("operation without key");
let matches = *k == *key;
if !matches && let Some(cache) = cache.as_deref_mut() {
cache.put(*loc, k.clone());
}
matches
};
if matches {
return Ok(Some(loc));
}
}
Ok(None)
}
const SNAPSHOT_ROUTE_BATCH: usize = 4096;
const SNAPSHOT_CHANNEL_DEPTH: usize = 4;
type RoutedBatch<K> = Vec<(K, u64, bool)>;
async fn build_snapshot_worker<F, C, R>(
log: Arc<C>,
mut rx: mpsc::Receiver<RoutedBatch<<C::Item as Operation<F>>::Key>>,
mut index: R,
activity: Range<u64>,
active: Arc<Atomic>,
cache_size: Option<NonZeroUsize>,
) -> Result<(R, usize), Error<F>>
where
F: Family,
C: Contiguous<Item: Operation<F>>,
R: PartitionRange<Value = Location<F>>,
{
let mut cache = cache_size.map(Clock::<u64, <C::Item as Operation<F>>::Key>::new);
while let Some(batch) = rx.recv().await {
for (key, loc, is_delete) in batch {
if is_delete {
if let Some(cursor) = index.get_mut(&key) {
delete_at_cursor::<F, _, _>(cursor, &*log, &key, cache.as_mut()).await?;
}
} else {
let new_loc = Location::new(loc);
if let Some(cursor) = index.get_mut_or_insert(&key, new_loc) {
update_at_cursor::<F, _, _>(cursor, &*log, &key, new_loc, cache.as_mut())
.await?;
}
if let Some(cache) = cache.as_mut() {
cache.put(loc, key);
}
}
}
}
let mut active_keys = 0;
index.for_each_value(|loc| {
active.set(**loc - activity.start);
active_keys += 1;
});
Ok((index, active_keys))
}
async fn build_snapshot_serial<F, C, I>(
inactivity_floor_loc: Location<F>,
reader: &C,
snapshot: &mut I,
init_buffer: NonZeroUsize,
cache_size: Option<NonZeroUsize>,
) -> Result<(usize, BitMap), Error<F>>
where
F: Family,
C: Contiguous<Item: Operation<F>>,
I: Index<Value = Location<F>>,
{
let mut activity = BitMap::new();
let floor = *inactivity_floor_loc;
let active_keys = build_snapshot_from_log(
inactivity_floor_loc,
reader,
snapshot,
init_buffer,
cache_size,
|is_active, old_loc| {
activity.push(is_active);
if let Some(loc) = old_loc {
activity.set(*loc - floor, false);
}
},
)
.await?;
Ok((active_keys, activity))
}
async fn build_snapshot_parallel<F, E, C, I>(
snapshot: &mut I,
context: E,
inactivity_floor_loc: Location<F>,
log: &Arc<C>,
init_concurrency: NonZeroUsize,
init_buffer: NonZeroUsize,
cache_size: Option<NonZeroUsize>,
) -> Result<(usize, BitMap), Error<F>>
where
F: Family,
E: Spawner,
C: Contiguous<Item: Operation<F>> + 'static,
I: Partitioned + Index<Value = Location<F>>,
{
let count = snapshot.partition_count();
let workers = (init_concurrency.get() - 1).min(count);
if workers == 0 {
return build_snapshot_serial(
inactivity_floor_loc,
&**log,
snapshot,
init_buffer,
cache_size,
)
.await;
}
let floor = *inactivity_floor_loc;
let range_size = count.div_ceil(workers);
let workers = count.div_ceil(range_size);
let per_worker_cache = cache_size.and_then(|n| NonZeroUsize::new(n.get() / workers));
let end = log.bounds().end;
let active = Arc::new(Atomic::zeroes(end - floor));
let mut senders = Vec::with_capacity(workers);
let mut handles = Vec::with_capacity(workers);
for w in 0..workers {
let (tx, rx) = mpsc::channel(SNAPSHOT_CHANNEL_DEPTH);
senders.push(tx);
let log = log.clone();
let lo = w * range_size;
let range_len = range_size.min(count - lo);
let worker_index = snapshot.new_range(lo, range_len);
let active = active.clone();
let handle = context
.child("snapshot_worker")
.with_attribute("worker", w)
.dedicated()
.spawn(move |_| {
build_snapshot_worker::<F, C, I::Range>(
log,
rx,
worker_index,
floor..end,
active,
per_worker_cache,
)
});
handles.push(handle);
}
let routing_result: Result<(), Error<F>> = async {
let stream = log
.replay(floor, init_buffer, ReadOptions::default())
.await?;
pin_mut!(stream);
let mut batches: Vec<RoutedBatch<_>> = (0..workers)
.map(|_| Vec::with_capacity(SNAPSHOT_ROUTE_BATCH))
.collect();
while let Some(result) = stream.next().await {
let (loc, op) = result?;
let is_delete = op.is_delete();
let Some(key) = op.into_key() else { continue };
let w = I::partition_of(key.as_ref()) / range_size;
batches[w].push((key, loc, is_delete));
if batches[w].len() >= SNAPSHOT_ROUTE_BATCH {
let batch =
std::mem::replace(&mut batches[w], Vec::with_capacity(SNAPSHOT_ROUTE_BATCH));
if senders[w].send(batch).await.is_err() {
return Ok(());
}
}
}
for (w, batch) in batches.into_iter().enumerate() {
if !batch.is_empty() && senders[w].send(batch).await.is_err() {
break;
}
}
Ok(())
}
.await;
drop(senders);
let joined = join_all(handles).await;
routing_result?;
let mut total_items = 0;
for handle in joined {
let (worker_index, worker_keys) = handle??;
snapshot.install_range(worker_index);
total_items += worker_keys;
}
let mut active = Arc::into_inner(active)
.expect("workers were joined")
.into_bitmap();
if let Some(last_commit) = end.checked_sub(1)
&& last_commit >= floor
{
active.set(last_commit - floor, true);
}
Ok((total_items, active))
}
pub trait SnapshotBuild<F: Family>:
sealed::SnapshotBuildSealed + Index<Value = Location<F>> + Sized + 'static
{
type Concurrency: Copy + Send + 'static;
#[allow(async_fn_in_trait)]
async fn build_snapshot<E, C>(
&mut self,
_context: E,
inactivity_floor_loc: Location<F>,
log: &Arc<C>,
_init_concurrency: Self::Concurrency,
init_buffer: NonZeroUsize,
cache_size: Option<NonZeroUsize>,
) -> Result<(usize, BitMap), Error<F>>
where
E: Spawner,
C: Contiguous<Item: Operation<F>> + 'static,
{
build_snapshot_serial(inactivity_floor_loc, &**log, self, init_buffer, cache_size).await
}
}
mod sealed {
use crate::translator::Translator;
pub trait SnapshotBuildSealed {}
impl<T: Translator, V: Send + Sync> SnapshotBuildSealed for crate::index::unordered::Index<T, V> {}
impl<T: Translator, V: Send + Sync> SnapshotBuildSealed for crate::index::ordered::Index<T, V> {}
impl<T: Translator, V: Send + Sync, const P: usize> SnapshotBuildSealed
for crate::index::partitioned::unordered::Index<T, V, P>
{
}
impl<T: Translator, V: Send + Sync, const P: usize> SnapshotBuildSealed
for crate::index::partitioned::ordered::Index<T, V, P>
{
}
}
impl<F: Family, T: Translator> SnapshotBuild<F> for crate::index::unordered::Index<T, Location<F>> {
type Concurrency = ();
}
impl<F: Family, T: Translator> SnapshotBuild<F> for crate::index::ordered::Index<T, Location<F>> {
type Concurrency = ();
}
impl<F: Family, T: Translator, const P: usize> SnapshotBuild<F>
for crate::index::partitioned::unordered::Index<T, Location<F>, P>
{
type Concurrency = NonZeroUsize;
async fn build_snapshot<E, C>(
&mut self,
context: E,
inactivity_floor_loc: Location<F>,
log: &Arc<C>,
init_concurrency: NonZeroUsize,
init_buffer: NonZeroUsize,
cache_size: Option<NonZeroUsize>,
) -> Result<(usize, BitMap), Error<F>>
where
E: Spawner,
C: Contiguous<Item: Operation<F>> + 'static,
{
build_snapshot_parallel(
self,
context,
inactivity_floor_loc,
log,
init_concurrency,
init_buffer,
cache_size,
)
.await
}
}
impl<F: Family, T: Translator, const P: usize> SnapshotBuild<F>
for crate::index::partitioned::ordered::Index<T, Location<F>, P>
{
type Concurrency = NonZeroUsize;
async fn build_snapshot<E, C>(
&mut self,
context: E,
inactivity_floor_loc: Location<F>,
log: &Arc<C>,
init_concurrency: NonZeroUsize,
init_buffer: NonZeroUsize,
cache_size: Option<NonZeroUsize>,
) -> Result<(usize, BitMap), Error<F>>
where
E: Spawner,
C: Contiguous<Item: Operation<F>> + 'static,
{
build_snapshot_parallel(
self,
context,
inactivity_floor_loc,
log,
init_concurrency,
init_buffer,
cache_size,
)
.await
}
}
fn update_known_loc<F: Family, I: Index<Value = Location<F>>>(
snapshot: &mut I,
key: &[u8],
old_loc: Location<F>,
new_loc: Location<F>,
) {
let mut cursor = snapshot.get_mut(key).expect("key should be known to exist");
assert!(
cursor.find(|&loc| *loc == old_loc),
"known key with given old_loc should have been found"
);
cursor.update(new_loc);
}
fn delete_known_loc<F: Family, I: Index<Value = Location<F>>>(
snapshot: &mut I,
key: &[u8],
old_loc: Location<F>,
) {
let mut cursor = snapshot.get_mut(key).expect("key should be known to exist");
assert!(
cursor.find(|&loc| *loc == old_loc),
"known key with given old_loc should have been found"
);
cursor.delete();
}
pub(crate) struct FloorHelper<
'a,
F: Family,
I: Index<Value = Location<F>>,
C: Mutable<Item: Operation<F>>,
> {
pub snapshot: &'a mut I,
pub log: C,
}
impl<F, I, C> FloorHelper<'_, F, I, C>
where
F: Family,
I: Index<Value = Location<F>>,
C: Mutable<Item: Operation<F>>,
{
async fn move_op_if_active(
mut self,
op: C::Item,
old_loc: Location<F>,
) -> Result<(Self, bool), Error<F>> {
let Some(key) = op.key() else {
return Ok((self, false)); };
let active = {
let Some(mut cursor) = self.snapshot.get_mut(key) else {
return Ok((self, false));
};
if cursor.find(|&loc| loc == old_loc) {
cursor.update(Location::<F>::new(self.log.bounds().end));
true
} else {
false
}
};
if !active {
return Ok((self, false));
}
(self.log, _) = self.log.append(&op).await?;
Ok((self, true))
}
async fn raise_floor(
mut self,
mut inactivity_floor_loc: Location<F>,
) -> Result<(Self, Location<F>), Error<F>> {
let tip_loc: Location<F> = Location::new(self.log.bounds().end);
loop {
assert!(
*inactivity_floor_loc < tip_loc,
"no active operations above the inactivity floor"
);
let old_loc = inactivity_floor_loc;
inactivity_floor_loc += 1;
let op = self.log.read(*old_loc).await?;
let moved;
(self, moved) = self.move_op_if_active(op, old_loc).await?;
if moved {
return Ok((self, inactivity_floor_loc));
}
}
}
}