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 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655
//! [`Store`] is a holder to create, read, write, and remove
//! [`Document`](crate::store::collection::document::DittoDocument)s from a Ditto peer.
use_prelude!();
use std::{
ops::Deref,
sync::{
atomic::{self, AtomicU64},
RwLock, Weak,
},
};
use ffi_sdk::{COrderByParam, FsComponent, WriteStrategyRs};
use tracing::{debug, error};
use crate::{
disk_usage::DiskUsage,
ditto::DittoFields,
error::{DittoError, ErrorKind},
utils::{extension_traits::FfiResultIntoRustResult, SetArc},
};
// Legacy
#[doc(hidden)]
#[deprecated]
#[rustfmt::skip]
pub use self::attachment::{
self as ditto_attachment,
fetch_event as ditto_attachment_fetch_event,
fetcher as ditto_attachment_fetcher,
token as ditto_attachment_token,
};
use self::{
ditto_attachment_fetcher::DittoAttachmentFetcherV2,
dql::store_observer::ChangeHandlerWithSignalNext,
};
pub mod attachment;
pub mod batch;
pub mod collection;
pub mod collections;
pub mod dql;
pub mod live_query;
#[cfg(feature = "timeseries")]
pub mod timeseries;
pub mod update;
use collections::pending_collections_operation::PendingCollectionsOperation;
use dql::*;
type CancelToken = u64;
#[derive(Clone)]
/// `Store` provides access to [`Collection`]s and a
/// write transaction API.
pub struct Store {
ditto: Arc<ffi_sdk::BoxedDitto>,
// FIXME(Daniel): unify this field with `.ditto`
weak_ditto_fields: Weak<DittoFields>,
disk_usage: Arc<DiskUsage>,
observers: Arc<RwLock<SetArc<StoreObserver>>>,
attachment_fetchers: Arc<RwLock<HashMap<CancelToken, (bool, DittoAttachmentFetcherV2)>>>,
}
impl Store {
pub(crate) fn new(
ditto: Arc<ffi_sdk::BoxedDitto>,
weak_ditto_fields: Weak<DittoFields>,
) -> Self {
let disk_usage = Arc::new(DiskUsage::new(ditto.retain(), FsComponent::Store));
Self {
ditto,
weak_ditto_fields,
disk_usage,
observers: <_>::default(),
attachment_fetchers: <_>::default(),
}
}
// Note this method's logic will be moved into the core ditto library
// in the future
fn validate_collection_name(name: &str) -> Result<(), DittoError> {
let mut result = Ok(());
if name.is_empty() {
result = Err(DittoError::new(
ErrorKind::InvalidInput,
String::from("Collection name can not be empty"),
));
}
if name.split_whitespace().next().is_none() {
result = Err(DittoError::new(
ErrorKind::InvalidInput,
String::from("Collection name can not only contain whitespace"),
));
}
result
}
/// Returns a [`Collection`] with the provided name.
/// A collection name is valid if :
/// * its length is less than 100
/// * it is not empty
/// * it does not contain the char '\0'
/// * it does not begin with "$TS_"
pub fn collection(&self, collection_name: &'_ str) -> Result<Collection, DittoError> {
Self::validate_collection_name(collection_name)?;
let c_name = char_p::new(collection_name);
let status = { ffi_sdk::ditto_collection(&*self.ditto, c_name.as_ref()) };
if status != 0 {
return Err(DittoError::from_ffi(ErrorKind::InvalidInput));
}
Ok(Collection {
ditto: Arc::downgrade(&self.ditto),
collection_name: c_name,
})
}
/// Returns an object that lets you fetch or observe the collections in the
/// store.
pub fn collections(&self) -> PendingCollectionsOperation<'_> {
PendingCollectionsOperation::<'_>::new(Arc::downgrade(&self.ditto))
}
/// Allows you to group multiple operations together that affect multiple
/// documents, potentially across multiple collections, without
/// auto-committing on each operation.
///
/// At the end of the batch of operations, either
/// [`batch.commit_changes`](crate::store::batch::ScopedStore::commit_changes)
/// or
/// [`batch.revert_changes`](crate::store::batch::ScopedStore::revert_changes)
/// must be called.
///
/// ## Example
///
/// ```rust
/// # macro_rules! ignore {($($__:tt)*) => ()} ignore! {
/// ditto.store().with_batched_write(|batch| {
/// let mut foo_coll = batch.collection("foo");
/// foo_coll.find...().remove();
/// let mut bar_coll = batch.collection("bar");
/// // Expensive multi-mutation op:
/// for _ in 0 .. 10_000 {
/// let doc = ...;
/// bar_coll.insert(doc, None, false);
/// }
/// // At this point, we must say whether we commit or revert
/// // these changes:
/// batch.commit_changes()
/// })
/// # }
/// ```
pub fn with_batched_write<F>(
&self,
f: F,
) -> Result<Vec<batch::WriteTransactionResult>, DittoError>
where
for<'batch> F: FnOnce(batch::ScopedStore<'batch>) -> batch::Action<'batch>,
{
batch::with_batched_write(self, f)
}
/// Returns a list of the names of collections in the local store.
pub fn collection_names(&self) -> Result<Vec<String>, DittoError> {
let c_collections = { ffi_sdk::ditto_get_collection_names(&*self.ditto).ok()? };
Ok(c_collections
.iter()
.map(|x: &char_p::Box| -> String { x.clone().into_string() })
.collect())
}
/// Returns a hash representing the current version of the given queries.
/// When a document matching such queries gets mutated, the hash will change
/// as well.
///
/// Please note that the hash depends on how queries are constructed, so you
/// should make sure to always compare hashes generated with the same set of
/// queries.
pub fn queries_hash(&self, live_queries: &[LiveQuery]) -> Result<u64, DittoError> {
let (coll_names, queries): (Vec<_>, Vec<_>) = live_queries
.iter()
.map(|lq| (lq.collection_name.as_ref(), lq.query.as_ref()))
.unzip();
{
ffi_sdk::ditto_queries_hash(&self.ditto, coll_names[..].into(), queries[..].into()).ok()
}
}
/// Returns a sequence of English words representing the current version of
/// the given queries. When a document matching such queries gets mutated,
/// the words will change as well.
///
/// Please note that the resulting sequence of words depends on how queries
/// are constructed, so you should make sure to always compare hashes
/// generated with the same set of queries.
pub fn queries_hash_mnemonic(&self, live_queries: &[LiveQuery]) -> Result<String, DittoError> {
let (coll_names, queries): (Vec<_>, Vec<_>) = live_queries
.iter()
.map(|lq| (lq.collection_name.as_ref(), lq.query.as_ref()))
.unzip();
{
ffi_sdk::ditto_queries_hash_mnemonic(
&self.ditto,
coll_names[..].into(),
queries[..].into(),
)
.ok()
.map(|c_str| c_str.into_string())
}
}
/// Start all live query webhooks.
pub fn start_all_live_query_webhooks(&self) -> Result<(), DittoError> {
{
let ret = ffi_sdk::ditto_live_query_webhook_start_all(&self.ditto);
if ret != 0 {
return Err(DittoError::from_ffi(ErrorKind::Internal));
}
}
Ok(())
}
/// Start a live query webhooks by its id.
pub fn start_live_query_webhook_by_id(&self, doc_id: DocumentId) -> Result<(), DittoError> {
{
let ret =
ffi_sdk::ditto_live_query_webhook_start_by_id(&self.ditto, doc_id.bytes[..].into());
if ret != 0 {
return Err(DittoError::from_ffi(ErrorKind::Internal));
}
}
Ok(())
}
/// Register a new live query webhook
pub fn register_live_query_webhook(
&self,
collection_name: &str,
query: &str,
url: &str,
) -> Result<DocumentId, DittoError> {
let c_collection_name = char_p::new(collection_name);
let c_query = char_p::new(query);
let c_url = char_p::new(url);
let order_definitions: Vec<COrderByParam<'_>> = Vec::with_capacity(0);
let doc_id = {
ffi_sdk::ditto_live_query_webhook_register_str(
&self.ditto,
c_collection_name.as_ref(),
c_query.as_ref(),
order_definitions[..].into(),
-1,
0,
c_url.as_ref(),
)
.ok()?
.to::<Box<[u8]>>()
.into()
};
Ok(doc_id)
}
/// Generate a new API secret for live query webhook
pub fn live_query_webhook_generate_new_api_secret(&self) -> Result<(), DittoError> {
{
let ret = ffi_sdk::ditto_live_query_webhook_generate_new_api_secret(&self.ditto);
if ret != 0 {
return Err(DittoError::from_ffi(ErrorKind::Internal));
}
}
Ok(())
}
#[cfg(feature = "timeseries")]
/// Returns a [`TimeSeries`] with the provided name.
pub fn timeseries(&self, ts_name: &'_ str) -> Result<TimeSeries, DittoError> {
Self::validate_collection_name(ts_name)?;
let c_name = char_p::new(ts_name);
Ok(TimeSeries {
ditto: self.ditto.retain(),
ts_name: c_name,
})
}
/// Return a [`DiskUsage`] to monitor the disk usage of the
/// [`Store`].
pub fn disk_usage(&self) -> &DiskUsage {
&self.disk_usage
}
/// Installs and returns a store observer for a query, configuring Ditto to
/// trigger the passed in change handler whenever documents in the local
/// store change such that the result of the matching query changes. The
/// passed in query must be a `SELECT` query, otherwise an error will be
/// returned.
///
/// # Example
///
/// ```
/// use dittolive_ditto::prelude::*;
/// # fn example_with_register_observer(ditto: &Ditto) -> anyhow::Result<()> {
///
/// let store = ditto.store();
/// let _observer = store.register_observer(
/// "SELECT * FROM cars WHERE color = 'blue'",
/// None,
/// move |query_result| {
/// for item in query_result.iter() {
/// // ... handle each item
/// }
/// },
/// )?;
/// # Ok(())
/// # }
/// ```
///
/// You'll need to keep the returned [`StoreObserver`] accessible to be able
/// to cancel the observation. Otherwise it will remain active until the
/// owning [`Ditto`] object goes out of scope.
pub fn register_observer<Q, F>(
&self,
query: Q,
query_args: Option<QueryArguments>,
on_change: F,
) -> Result<Arc<StoreObserver>, DittoError>
where
Q: TryInto<Query, Error = DittoError>,
F: ChangeHandler,
{
let ditto = Ditto::upgrade(&self.weak_ditto_fields)?;
let new_obs = Arc::new(StoreObserver::new(
&ditto,
query.try_into()?,
query_args,
on_change,
)?);
self.observers.write().unwrap().insert(new_obs.retain());
Ok(new_obs)
}
/// Installs and returns a store observer for a query, configuring Ditto to
/// trigger the passed in change handler whenever documents in the local
/// store change such that the result of the matching query changes. The
/// passed in query must be a `SELECT` query, otherwise an error will be
/// returned.
///
/// Here, a function is passed as an additional argument to the change
/// handler. This allows the change handler to control how frequently
/// it is called. See [`register_observer`] for a convenience method that
/// automatically signals the next invocation.
///
/// # Example
///
/// ```
/// use dittolive_ditto::prelude::*;
/// # fn example_with_signal_next(ditto: &Ditto) -> anyhow::Result<()> {
///
/// let store = ditto.store();
/// let _observer = store.register_observer_with_signal_next(
/// "SELECT * FROM cars WHERE color = 'blue'",
/// None,
/// move |query_result, signal_next| {
/// for item in query_result.iter() {
/// // ... handle each item
/// }
///
/// // Call `signal_next` when you're ready for the next callback
/// signal_next();
/// },
/// )?;
/// # Ok(())
/// # }
/// ```
///
/// The first invocation of the change handler will always happen after
/// this method has returned.
///
/// You'll need to keep the returned [`StoreObserver`] accessible to be able
/// to cancel the observation. Otherwise it will remain active until the
/// owning [`Ditto`] object goes out of scope.
///
/// [`register_observer`]: Store::register_observer
pub fn register_observer_with_signal_next<Q, F>(
&self,
query: Q,
query_args: Option<QueryArguments>,
on_change: F,
) -> Result<Arc<StoreObserver>, DittoError>
where
Q: TryInto<Query, Error = DittoError>,
F: ChangeHandlerWithSignalNext,
{
let ditto = Ditto::upgrade(&self.weak_ditto_fields)?;
let new_obs = Arc::new(StoreObserver::with_signal_next(
&ditto,
query.try_into()?,
query_args,
on_change,
)?);
self.observers.write().unwrap().insert(new_obs.retain());
Ok(new_obs)
}
fn unregister_observer(&self, observer: &StoreObserver) -> bool {
let observers = &mut *self.observers.write().unwrap();
let removed = observers.remove(observer);
if removed {
debug!(
id = %observer.live_query_id,
query = %observer._query.inner_string,
"unregistering store observer",
);
if let Ok(ditto) = Ditto::upgrade(&self.weak_ditto_fields) {
ffi_sdk::ditto_live_query_stop(&ditto.ditto, observer.live_query_id);
return true;
}
}
false
}
/// Gets temporary access to the set of currently registered observers.
///
/// A (read) lock is held until the return value is dropped: this means
/// that neither [`Self::register_observer()`] nor
/// [`StoreObserver::cancel()`] can make progress until this read
/// lock is released.
pub fn observers(&self) -> impl '_ + Deref<Target = SetArc<StoreObserver>> {
self.observers.read().unwrap()
}
/// Executes the given query in the local store and returns the result.
///
/// Use placeholders to incorporate values from the optional `query_args`
/// parameter into the query. The keys of the [`QueryArguments`] object must
/// match the placeholders used within the query. You can not use placeholders
/// in the `FROM` clause.
///
/// This method only returns results from the local store without waiting for any
/// [sync subscriptions](crate::store::dql::SyncSubscription) to have caught up with the
/// latest changes. Only use this method if your program must proceed with immediate results.
/// Use a [store observer](crate::store::StoreObserver) to receive updates to query results
/// as soon as they have been synced to this peer.
///
/// Limitations:
///
/// - Supports `SELECT * FROM <collection name>` with optional `WHERE <expression>`
/// - No transactions
pub async fn execute<Q>(
&self,
query: Q,
query_args: Option<QueryArguments>,
) -> Result<QueryResult, DittoError>
where
Q: TryInto<Query, Error = DittoError>,
{
// Get a DqlResult. The operation to get it is fallible, so we end up
// with a `FfiResult<DqlResult> -> Result<DqlResult> -> DqlResult`.
// The `Result` stutter is quite unfortunate, which _results_ from
// having picked that name in our public SDK API (over, say, `Output`).
let ffi_query_result = ffi_sdk::dittoffi_try_exec_statement(
&self.ditto,
None,
query.try_into()?.prepare_ffi(),
query_args.as_ref().map(|qa| qa.cbor().into()),
)
.into_rust_result()?;
Ok(QueryResult::from(ffi_query_result))
}
/// Creates a new attachment, which can then be inserted into a document.
///
/// The file residing at the provided path will be copied into Ditto’s store. The
/// [`DittoAttachment`] object that is returned is what you can
/// then use to insert an attachment into a document.
///
/// You can provide custom user data about the attachment, which will be replicated to other
/// peers alongside the file attachment.
pub async fn new_attachment(
&self,
filepath: &(impl ?Sized + AsRef<Path>),
user_data: HashMap<String, String>,
) -> Result<DittoAttachment, DittoError> {
DittoAttachment::from_file_and_metadata(filepath, user_data, &self.ditto)
}
/// Creates a new attachment from in-memory data
///
/// Refer to [`new_attachment`](Self::new_attachment) for additional information.
pub async fn new_attachment_from_bytes(
&self,
bytes: &(impl ?Sized + AsRef<[u8]>),
user_data: HashMap<String, String>,
) -> Result<DittoAttachment, DittoError> {
DittoAttachment::from_bytes_and_metadata(bytes, user_data, &self.ditto)
}
/// Fetches the attachment corresponding to the provided attachment token.
/// - `attachment_token`: can be either a [`DittoAttachmentToken`], or a `&BTreeMap<CborValue,
/// CborValue>`, that is, the output of a [`QueryResultItem::value()`] once casted
/// [`.as_object()`][crate::prelude::CborValueGetters::as_object()].
///
/// - `on_fetch_event`: A closure that will be called when the status of the request to fetch
/// the attachment has changed. If the attachment is already available then this will be
/// called almost immediately with a completed status value.
///
/// The returned [`DittoAttachmentFetcher`] is a handle which is safe to discard, unless you
/// wish to be able to [`.cancel()`][DittoAttachmentFetcher::cancel] the fetching operation.
/// When not explicitly cancelled, the fetching operation will remain active until it either
/// completes, the attachment is deleted, or the owning [`Ditto`] object is dropped.
pub fn fetch_attachment(
&self,
attachment_token: impl attachment::token::DittoAttachmentTokenLike,
on_fetch_event: impl 'static + Send + Sync + Fn(DittoAttachmentFetchEvent),
) -> Result<DittoAttachmentFetcherV2, DittoError> {
let attachment_token = attachment_token.parse_attachment_token()?;
let weak_ditto = self.weak_ditto_fields.clone();
let ditto = weak_ditto
.upgrade()
.ok_or(ErrorKind::ReleasedDittoInstance)?;
let mut attachment_fetchers_lockguard = self.attachment_fetchers.write().unwrap();
let fetcher = DittoAttachmentFetcher::new(
attachment_token,
Some(&ditto),
&self.ditto,
// Shim around `on_fetch_event` to `cancel` on completion.
move |event, cancel_token: &AtomicU64| {
let has_finished = matches! {
event,
| DittoAttachmentFetchEvent::Completed { .. }
| DittoAttachmentFetchEvent::Deleted { .. }
};
on_fetch_event(event);
if has_finished {
if let Some(ditto) = weak_ditto.upgrade() {
let mut attachment_fetchers_inner_lockguard =
ditto.store.attachment_fetchers.write().unwrap();
// Relaxed is fine thanks to the lock.
let cancel_token = cancel_token.load(atomic::Ordering::Relaxed);
ditto.store.unregister_fetcher(
cancel_token,
Some(&mut *attachment_fetchers_inner_lockguard),
);
}
}
},
)?;
let (cancel_token, was_zero) = fetcher.cancel_token_ensure_unique();
attachment_fetchers_lockguard.insert(cancel_token, (was_zero, fetcher.clone()));
Ok(fetcher)
}
fn unregister_fetcher(
&self,
mut fetcher_cancel_token: CancelToken,
fetchers: Option<&mut HashMap<CancelToken, (bool, DittoAttachmentFetcherV2)>>,
) -> bool {
let mut lock_guard = None;
let fetchers = fetchers.unwrap_or_else(|| {
&mut **lock_guard.get_or_insert(self.attachment_fetchers.write().unwrap())
});
let Some((was_zero, removed_fetcher)) = fetchers.remove(&fetcher_cancel_token) else {
return false;
};
drop(lock_guard);
if was_zero {
fetcher_cancel_token = 0;
}
let att_token = &removed_fetcher.context.token;
debug!(
token_id = %att_token.id(),
%fetcher_cancel_token,
"unregistering ditto attachment fetcher"
);
let status = ffi_sdk::ditto_cancel_resolve_attachment(
&self.ditto,
att_token.id.as_ref().into(),
fetcher_cancel_token,
);
if status != 0 {
error!(
token_id = %att_token.id(),
%fetcher_cancel_token,
"failed to clean up attachment fetcher"
);
}
status == 0
}
/// Gets a copy of the set of currently registered attachment fetchers.
///
/// A (read) lock is held during the copy: this contends with [`Self::fetch_attachment()`] and
/// with [`DittoAttachmentFetcher::cancel()`].
pub fn attachment_fetchers(&self) -> Vec<DittoAttachmentFetcherV2> {
self.attachment_fetchers
.read()
.unwrap()
.iter()
.map(|(_, (_, fetcher))| fetcher.clone())
.collect()
}
}
#[non_exhaustive]
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
/// Specify the order of returned Documents in a query.
pub enum SortDirection {
Ascending,
Descending,
}
#[non_exhaustive]
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
/// Specify the write strategy when inserting documents.
pub enum WriteStrategy {
/// An existing document will be merged with the document being inserted, if there is a
/// pre-existing document.
Merge,
/// Insert the document only if there is not already a document with the same Id in the store.
/// If there is already a document in the store with the same Id then this will be a no-op.
InsertIfAbsent,
/// Insert the document, with its contents treated as default data, only if there is not
/// already a document with the same Id in the store. If there is already a document in the
/// store with the same Id then this will be a no-op. Use this strategy if you want to
/// insert default data for a given document Id, which you want to treat as common initial
/// data amongst all peers and that you expect to be mutated or overwritten in due course.
InsertDefaultIfAbsent,
}
impl WriteStrategy {
fn as_write_strategy_rs(&self) -> WriteStrategyRs {
match self {
WriteStrategy::Merge => WriteStrategyRs::Merge,
WriteStrategy::InsertIfAbsent => WriteStrategyRs::InsertIfAbsent,
WriteStrategy::InsertDefaultIfAbsent => WriteStrategyRs::InsertDefaultIfAbsent,
}
}
}