1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437
//! Storage trait and implementation for iroh-sync documents
use std::num::{NonZeroU64, NonZeroUsize};
use anyhow::Result;
use bytes::Bytes;
use iroh_bytes::Hash;
use rand_core::CryptoRngCore;
use serde::{Deserialize, Serialize};
use crate::{
heads::AuthorHeads,
keys::{Author, NamespaceSecret},
ranger,
sync::{Replica, SignedEntry},
AuthorId, Capability, CapabilityKind, NamespaceId, PeerIdBytes,
};
#[cfg(feature = "fs-store")]
pub mod fs;
pub mod memory;
mod pubkeys;
mod util;
pub use pubkeys::*;
/// Number of [`PeerIdBytes`] objects to cache per document.
pub(crate) const PEERS_PER_DOC_CACHE_SIZE: NonZeroUsize = match NonZeroUsize::new(5) {
Some(val) => val,
None => panic!("this is clearly non zero"),
};
/// Error return from [`Store::open_replica`]
#[derive(Debug, thiserror::Error)]
pub enum OpenError {
/// The replica was already opened.
#[error("Replica is already open")]
AlreadyOpen,
/// The replica does not exist.
#[error("Replica not found")]
NotFound,
/// Other error while opening the replica.
#[error("{0}")]
Other(#[from] anyhow::Error),
}
/// Abstraction over the different available storage solutions.
pub trait Store: std::fmt::Debug + Clone + Send + Sync + 'static {
/// The specialized instance scoped to a `NamespaceSecret`.
type Instance: ranger::Store<SignedEntry> + PublicKeyStore + Send + Sync + 'static + Clone;
/// Iterator over entries in the store, returned from [`Self::get_many`]
type GetIter<'a>: Iterator<Item = Result<SignedEntry>>
where
Self: 'a;
/// Iterator over all content hashes in the store, returned from [`Self::content_hashes`]
type ContentHashesIter<'a>: Iterator<Item = Result<Hash>>
where
Self: 'a;
/// Iterator over replica namespaces in the store, returned from [`Self::list_namespaces`]
type NamespaceIter<'a>: Iterator<Item = Result<(NamespaceId, CapabilityKind)>>
where
Self: 'a;
/// Iterator over authors in the store, returned from [`Self::list_authors`]
type AuthorsIter<'a>: Iterator<Item = Result<Author>>
where
Self: 'a;
/// Iterator over the latest entry for each author.
///
/// The iterator returns a tuple of (AuthorId, Timestamp, Key).
type LatestIter<'a>: Iterator<Item = Result<(AuthorId, u64, Vec<u8>)>>
where
Self: 'a;
/// Iterator over peers in the store for a document, returned from [`Self::get_sync_peers`].
type PeersIter<'a>: Iterator<Item = PeerIdBytes>
where
Self: 'a;
/// Create a new replica for `namespace` and persist in this store.
fn new_replica(&self, namespace: NamespaceSecret) -> Result<Replica<Self::Instance>> {
let id = namespace.id();
self.import_namespace(namespace.into())?;
self.open_replica(&id).map_err(Into::into)
}
/// Import a new replica namespace.
fn import_namespace(&self, capability: Capability) -> Result<ImportNamespaceOutcome>;
/// List all replica namespaces in this store.
fn list_namespaces(&self) -> Result<Self::NamespaceIter<'_>>;
/// Open a replica from this store.
///
/// Store implementers must ensure that only a single instance of [`Replica`] is created per
/// namespace. On subsequent calls, a clone of that singleton instance must be returned.
fn open_replica(&self, namespace: &NamespaceId) -> Result<Replica<Self::Instance>, OpenError>;
/// Close a replica.
fn close_replica(&self, replica: Replica<Self::Instance>);
/// Remove a replica.
///
/// Completely removes a replica and deletes both the namespace private key and all document
/// entries.
///
/// Note that a replica has to be closed before it can be removed. The store has to enforce
/// that a replica cannot be removed while it is still open.
fn remove_replica(&self, namespace: &NamespaceId) -> Result<()>;
/// Create a new author key and persist it in the store.
fn new_author<R: CryptoRngCore + ?Sized>(&self, rng: &mut R) -> Result<Author> {
let author = Author::new(rng);
self.import_author(author.clone())?;
Ok(author)
}
/// Import an author key pair.
fn import_author(&self, author: Author) -> Result<()>;
/// List all author keys in this store.
fn list_authors(&self) -> Result<Self::AuthorsIter<'_>>;
/// Get an author key from the store.
fn get_author(&self, author: &AuthorId) -> Result<Option<Author>>;
/// Get an iterator over entries of a replica.
fn get_many(
&self,
namespace: NamespaceId,
query: impl Into<Query>,
) -> Result<Self::GetIter<'_>>;
/// Get an entry by key and author.
fn get_exact(
&self,
namespace: NamespaceId,
author: AuthorId,
key: impl AsRef<[u8]>,
include_empty: bool,
) -> Result<Option<SignedEntry>>;
/// Get all content hashes of all replicas in the store.
fn content_hashes(&self) -> Result<Self::ContentHashesIter<'_>>;
/// Get the latest entry for each author in a namespace.
fn get_latest_for_each_author(&self, namespace: NamespaceId) -> Result<Self::LatestIter<'_>>;
/// Check if a [`AuthorHeads`] contains entry timestamps that we do not have locally.
///
/// Returns the number of authors that the other peer has updates for.
fn has_news_for_us(
&self,
namespace: NamespaceId,
heads: &AuthorHeads,
) -> Result<Option<NonZeroU64>> {
let our_heads = {
let latest = self.get_latest_for_each_author(namespace)?;
let mut heads = AuthorHeads::default();
for e in latest {
let (author, timestamp, _key) = e?;
heads.insert(author, timestamp);
}
heads
};
let has_news_for_us = heads.has_news_for(&our_heads);
Ok(has_news_for_us)
}
/// Register a peer that has been useful to sync a document.
fn register_useful_peer(&self, namespace: NamespaceId, peer: PeerIdBytes) -> Result<()>;
/// Get peers to use for syncing a document.
fn get_sync_peers(&self, namespace: &NamespaceId) -> Result<Option<Self::PeersIter<'_>>>;
}
/// Outcome of [`Store::import_namespace`]
#[derive(Debug, Clone, Copy)]
pub enum ImportNamespaceOutcome {
/// The namespace did not exist before and is now inserted.
Inserted,
/// The namespace existed and now has an upgraded capability.
Upgraded,
/// The namespace existed and its capability remains unchanged.
NoChange,
}
/// A query builder for document queries.
#[derive(Debug, Default)]
pub struct QueryBuilder<K> {
kind: K,
filter_author: AuthorFilter,
filter_key: KeyFilter,
limit: Option<u64>,
offset: u64,
include_empty: bool,
sort_direction: SortDirection,
}
impl<K> QueryBuilder<K> {
/// Call to include empty entries (deletion markers).
pub fn include_empty(mut self) -> Self {
self.include_empty = true;
self
}
/// Filter by exact key match.
pub fn key_exact(mut self, key: impl AsRef<[u8]>) -> Self {
self.filter_key = KeyFilter::Exact(key.as_ref().to_vec().into());
self
}
/// Filter by key prefix.
pub fn key_prefix(mut self, key: impl AsRef<[u8]>) -> Self {
self.filter_key = KeyFilter::Prefix(key.as_ref().to_vec().into());
self
}
/// Filter by author.
pub fn author(mut self, author: AuthorId) -> Self {
self.filter_author = AuthorFilter::Exact(author);
self
}
/// Set the maximum number of entries to be returned.
pub fn limit(mut self, limit: u64) -> Self {
self.limit = Some(limit);
self
}
/// Set the offset within the result set from where to start returning results.
pub fn offset(mut self, offset: u64) -> Self {
self.offset = offset;
self
}
}
/// Query on all entries without aggregation.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct FlatQuery {
sort_by: SortBy,
}
/// Query that only returns the latest entry for a key which has entries from multiple authors.
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct SingleLatestPerKeyQuery {}
impl QueryBuilder<FlatQuery> {
/// Set the sort for the query.
///
/// The default is to sort by author, then by key, in ascending order.
pub fn sort_by(mut self, sort_by: SortBy, direction: SortDirection) -> Self {
self.kind.sort_by = sort_by;
self.sort_direction = direction;
self
}
/// Build the query.
pub fn build(self) -> Query {
Query::from(self)
}
}
impl QueryBuilder<SingleLatestPerKeyQuery> {
/// Set the order direction for the query.
///
/// Ordering is always by key for this query type.
/// Default direction is ascending.
pub fn sort_direction(mut self, direction: SortDirection) -> Self {
self.sort_direction = direction;
self
}
/// Build the query.
pub fn build(self) -> Query {
Query::from(self)
}
}
impl From<QueryBuilder<SingleLatestPerKeyQuery>> for Query {
fn from(builder: QueryBuilder<SingleLatestPerKeyQuery>) -> Query {
Query {
kind: QueryKind::SingleLatestPerKey(builder.kind),
filter_author: builder.filter_author,
filter_key: builder.filter_key,
limit: builder.limit,
offset: builder.offset,
include_empty: builder.include_empty,
sort_direction: builder.sort_direction,
}
}
}
impl From<QueryBuilder<FlatQuery>> for Query {
fn from(builder: QueryBuilder<FlatQuery>) -> Query {
Query {
kind: QueryKind::Flat(builder.kind),
filter_author: builder.filter_author,
filter_key: builder.filter_key,
limit: builder.limit,
offset: builder.offset,
include_empty: builder.include_empty,
sort_direction: builder.sort_direction,
}
}
}
/// Note: When using the `SingleLatestPerKey` query kind, the key filter is applied *before* the
/// grouping, the author filter is applied *after* the grouping.
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct Query {
kind: QueryKind,
filter_author: AuthorFilter,
filter_key: KeyFilter,
limit: Option<u64>,
offset: u64,
include_empty: bool,
sort_direction: SortDirection,
}
impl Query {
/// Query all records.
pub fn all() -> QueryBuilder<FlatQuery> {
Default::default()
}
/// Query only the latest entry for each key, omitting older entries if the entry was written
/// to by multiple authors.
pub fn single_latest_per_key() -> QueryBuilder<SingleLatestPerKeyQuery> {
Default::default()
}
/// Create a [`Query::all`] query filtered by a single author.
pub fn author(author: AuthorId) -> QueryBuilder<FlatQuery> {
Self::all().author(author)
}
/// Create a [`Query::all`] query filtered by a single key.
pub fn key_exact(key: impl AsRef<[u8]>) -> QueryBuilder<FlatQuery> {
Self::all().key_exact(key)
}
/// Create a [`Query::all`] query filtered by a key prefix.
pub fn key_prefix(prefix: impl AsRef<[u8]>) -> QueryBuilder<FlatQuery> {
Self::all().key_prefix(prefix)
}
/// Get the limit for this query (max. number of entries to emit).
pub fn limit(&self) -> Option<u64> {
self.limit
}
/// Get the offset for this query (number of entries to skip at the beginning).
pub fn offset(&self) -> u64 {
self.offset
}
}
/// Sort direction
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
pub enum SortDirection {
/// Sort ascending
#[default]
Asc,
/// Sort descending
Desc,
}
#[derive(derive_more::Debug, Clone, Serialize, Deserialize)]
enum QueryKind {
#[debug("Flat {{ sort_by: {:?}}}", _0)]
Flat(FlatQuery),
#[debug("SingleLatestPerKey")]
SingleLatestPerKey(SingleLatestPerKeyQuery),
}
/// Fields by which the query can be sorted
#[derive(Debug, Clone, Copy, Default, Serialize, Deserialize)]
pub enum SortBy {
/// Sort by key, then author.
KeyAuthor,
/// Sort by author, then key.
#[default]
AuthorKey,
}
/// Key matching.
#[derive(Debug, Serialize, Deserialize, Clone, Default, Eq, PartialEq)]
pub enum KeyFilter {
/// Matches any key.
#[default]
Any,
/// Only keys that are exactly the provided value.
Exact(Bytes),
/// All keys that start with the provided value.
Prefix(Bytes),
}
impl<T: AsRef<[u8]>> From<T> for KeyFilter {
fn from(value: T) -> Self {
KeyFilter::Exact(Bytes::copy_from_slice(value.as_ref()))
}
}
impl KeyFilter {
/// Test if a key is matched by this [`KeyFilter`].
pub fn matches(&self, key: &[u8]) -> bool {
match self {
Self::Any => true,
Self::Exact(k) => &k[..] == key,
Self::Prefix(p) => key.starts_with(p),
}
}
}
/// Author matching.
#[derive(Debug, Serialize, Deserialize, Clone, Default, Eq, PartialEq)]
pub enum AuthorFilter {
/// Matches any author.
#[default]
Any,
/// Matches exactly the provided author.
Exact(AuthorId),
}
impl AuthorFilter {
/// Test if an author is matched by this [`AuthorFilter`].
pub fn matches(&self, author: &AuthorId) -> bool {
match self {
Self::Any => true,
Self::Exact(a) => a == author,
}
}
}
impl From<AuthorId> for AuthorFilter {
fn from(value: AuthorId) -> Self {
AuthorFilter::Exact(value)
}
}