dittolive-ditto 4.11.2

Ditto is a peer to peer cross-platform database that allows mobile, web, IoT and server apps to sync with or without an internet connection.
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
use_prelude!();

use std::collections::BTreeMap;

use ffi_sdk::COrderByParam;

use crate::{
    ditto::{TryUpgrade, WeakDittoHandleWrapper},
    error::{DittoError, ErrorKind},
    store::{collection::document_id::DocumentId, live_query::LiveQuery, update::UpdateResult},
    subscription::Subscription,
};

/// Use [`.find_all()`], [`.find(...)`], or [`.find_with_args(...)`] to query documents in a
/// collection.
///
/// This object lets you take various actions on the selected documents, such as:
///
/// - [`.exec()`]: Immediately return the current state of the documents from the local store.
///
/// - [`.observe_local(...)`]: Register a callback to receive notifications whenever the documents
///   change in the local store. Note that this does not automatically begin syncing these documents
///   from remote peers, use [`.subscribe()`] for that.
///
/// - [`.subscribe()`]: Create a [`Subscription`] that syncs these documents from remote peers.
///
/// - [`.limit(...)`]: Limit the number of documents that get returned by this query.
///
/// - [`.offset(...)`]: Offsets the resulting set of matching documents. Useful for skipping the
///   first N matching documents, such as with paging.
///
/// - [`.sort(...)`]: Sort the matching documents according to chosen fields and ordering.
///
/// - [`.remove()`]: Remove the selected documents from the collection, replacing them with
///   tombstones. If another peer concurrently updates these documents, the update will win
///   ("add-wins"). This removal may be synced to other peers.
///
/// - [`.evict()`]: Evicts the selected documents from this peer's local store. This can be used to
///   reduce resource consumption on peers that have finished using documents. This will _not_ cause
///   remote peers to evict or remove these document, it only impacts the local peer's store.
///
/// - [`.update(...)`]: Update the documents via a callback that receives a mutable reference to
///   them.
///
/// Typically, an app would call [`.subscribe()`] in some part of the application which
/// is long-lived to ensure the device receives updates from the mesh. These updates will be
/// automatically received and written into the local store. Elsewhere, where you need to use this
/// data, [`.observe_local(...)`] can be used to notify you of the data, and all
/// subsequent changes to the data.
///
/// # Example
///
/// ```
/// use dittolive_ditto::prelude::*;
///
/// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
/// let collection = ditto.store().collection("cars")?;
/// let pending_op = collection.find("color == 'blue'");
///
/// // Hold a `Subscription` to continuously sync from remote peers
/// let _subscription = pending_op.subscribe();
///
/// // Hold a `LiveQuery` to receive callbacks when selected documents are changed
/// let _live_query = pending_op.observe_local(|docs, _event| {
///     let typed: Vec<serde_json::Value> = docs
///         .into_iter()
///         .flat_map(|doc| doc.typed::<serde_json::Value>().ok())
///         .collect();
///     println!("Observed doc changes: {typed:?}");
/// })?;
/// # Ok(())
/// # }
/// ```
///
/// [`.find_all()`]: crate::store::query_builder::Collection::find_all
/// [`.find(...)`]: crate::store::query_builder::Collection::find
/// [`.find_with_args(...)`]: crate::store::query_builder::Collection::find_with_args
/// [`.exec()`]: Self::exec
/// [`.observe_local(...)`]: Self::observe_local
/// [`.subscribe()`]: Self::subscribe
/// [`.limit(...)`]: Self::limit
/// [`.offset(...)`]: Self::offset
/// [`.sort(...)`]: Self::sort
/// [`.remove()`]: Self::remove
/// [`.evict()`]: Self::evict
/// [`.update(...)`]: Self::update
pub struct PendingCursorOperation<'order_by> {
    pub(super) ditto: WeakDittoHandleWrapper,
    pub(super) collection_name: char_p::Box,
    pub(super) query: char_p::Box,
    pub(super) query_args: Option<Vec<u8>>,
    pub(super) offset: u32,
    pub(super) limit: i32,
    pub(super) order_by: Vec<COrderByParam<'order_by>>,
}

impl<'order_by> PendingCursorOperation<'order_by> {
    #[doc(hidden)]
    #[deprecated(
        note = "See the `store::query_builder` module docs to learn about `PendingCursorOperation`"
    )]
    pub fn new(
        ditto: WeakDittoHandleWrapper,
        collection_name: char_p::Box,
        query: &str,
        query_args: Option<Vec<u8>>,
    ) -> Self {
        let query = char_p::new(query);
        Self {
            ditto,
            collection_name,
            query,
            query_args,
            offset: 0,
            limit: -1,
            order_by: vec![],
        }
    }

    /// Execute the find operation and return the matching documents.
    ///
    /// The documents returned represent the current state of the local store,
    /// this function does not cause any syncing with remote peers.
    ///
    /// # Example
    ///
    /// ```
    /// use dittolive_ditto::prelude::*;
    ///
    /// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
    /// let collection = ditto.store().collection("cars")?;
    /// let pending_op = collection.find_all();
    ///
    /// // Execute the query to receive Ditto documents
    /// let documents: Vec<_> = pending_op.exec()?;
    ///
    /// // Use `doc.typed::<T>` with a `Deserialize` type for typed access
    /// let typed_docs: Vec<serde_json::Value> = documents
    ///     .into_iter()
    ///     .flat_map(|doc| doc.typed::<serde_json::Value>().ok())
    ///     .collect();
    /// # Ok(())
    /// # }
    /// ```
    pub fn exec(&self) -> Result<Vec<BoxedDocument>, DittoError> {
        self.exec_internal(None)
    }

    fn exec_internal(
        &self,
        txn: Option<&'_ mut ffi_sdk::CWriteTransaction>,
    ) -> Result<Vec<BoxedDocument>, DittoError> {
        let ditto = self.ditto.try_upgrade()?;
        {
            ffi_sdk::ditto_collection_exec_query_str(
                &*ditto,
                self.collection_name.as_ref(),
                txn,
                self.query.as_ref(),
                self.query_args.as_ref().map(|qa| (&qa[..]).into()),
                (&self.order_by[..]).into(),
                self.limit,
                self.offset,
            )
        }
        .ok_or(ErrorKind::InvalidInput)
        .map(|it| it.into())
    }

    /// Register a callback that delivers updates when selected documents change.
    ///
    /// The callback will be called any time the selected documents are changed in this peer's local
    /// store. It will NOT cause the documents to be synced with remote peers, for that use
    /// [`.subscribe()`].
    ///
    /// Hold the returned [`LiveQuery`] for as long as you wish to continue receiving updates.
    /// Dropping the [`LiveQuery`] will cancel the callbacks.
    ///
    /// ```
    /// use dittolive_ditto::prelude::*;
    ///
    /// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
    /// let collection = ditto.store().collection("cars")?;
    /// let pending_op = collection.find("color == 'blue'");
    ///
    /// // Hold the LiveQuery to continue receiving callbacks
    /// let _live_query = pending_op.observe_local(|docs, _event| {
    ///     let typed: Vec<serde_json::Value> = docs
    ///         .into_iter()
    ///         .flat_map(|doc| doc.typed::<serde_json::Value>().ok())
    ///         .collect();
    ///     println!("Received doc updates: {typed:?}");
    /// })?;
    ///
    /// // Drop the LiveQuery to cancel the callback
    /// drop(_live_query);
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// [`.subscribe()`]: Self::subscribe
    pub fn observe_local<Handler>(&self, handler: Handler) -> Result<LiveQuery, DittoError>
    where
        Handler: EventHandler,
    {
        #[allow(deprecated)] // TODO deprecation temporary until pub(crate)
        LiveQuery::with_handler(
            self.ditto.clone(),
            self.query.clone(),
            self.query_args.clone(),
            self.collection_name.clone(),
            &self.order_by,
            self.limit,
            self.offset,
            handler,
        )
    }

    /// Creates a [`Subscription`] that syncs the selected documents from remote peers.
    ///
    /// Holding the `Subscription` will cause Ditto to continue syncing the selected documents from
    /// remote peers. Dropping the `Subscription` will cancel the sync with remote peers.
    ///
    /// # Example
    ///
    /// ```
    /// use dittolive_ditto::prelude::*;
    ///
    /// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
    /// let collection = ditto.store().collection("cars")?;
    /// let pending_op = collection.find_all();
    ///
    /// // Hold the Subscription to continue syncing with remote peers
    /// let _subscription = pending_op.subscribe();
    ///
    /// // Drop the Subscription to cancel sync with remote peers
    /// drop(_subscription);
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if the `Ditto` object has been closed.
    pub fn subscribe(&self) -> Subscription {
        let ditto = self.ditto.try_upgrade().unwrap();
        Subscription::new(
            ditto,
            self.collection_name.clone(),
            self.query.to_str(),
            self.query_args.clone(),
            &self.order_by,
            self.limit,
            self.offset,
        )
    }

    /// Limit the number of documents that get returned when querying a
    /// collection for matching documents.
    ///
    /// # Example
    ///
    /// ```
    /// use dittolive_ditto::prelude::*;
    ///
    /// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
    /// let collection = ditto.store().collection("cars")?;
    /// let mut pending_op = collection.find_all();
    ///
    /// // The number of documents returned is limited to at most 20
    /// let documents: Vec<_> = pending_op.limit(20).exec()?;
    /// assert!(documents.len() <= 20);
    /// # Ok(())
    /// # }
    /// ```
    pub fn limit(&mut self, limit: i32) -> &mut Self {
        self.limit = limit;
        self
    }

    /// Offset the resulting set of matching documents.
    ///
    /// This is useful if you aren’t interested in the first N matching
    /// documents for one reason or another. For example, you might already
    /// have queried the collection and obtained the first 20 matching documents
    /// and so you might want to run the same query as you did previously but
    /// ignore the first 20 matching documents, and that is where you would
    /// use `offset`.
    pub fn offset(&mut self, offset: u32) -> &mut Self {
        self.offset = offset;
        self
    }

    // FIXME: To bring this in line with the other SDKs this should accept a single
    // "order_by" expression, which should then be added to the `order_by` vec
    /// Sort the documents that match the query provided in the preceding
    /// find-like function call.
    ///
    /// Documents that are missing the field to sort by will appear at
    /// the beginning of the results when sorting in ascending order.
    pub fn sort(&mut self, sort_param: Vec<COrderByParam<'order_by>>) -> &mut Self {
        self.order_by = sort_param;
        self
    }

    /// Remove the queried documents from this [`Collection`], returning the [`DocumentId`]s of all
    /// documents removed.
    ///
    /// A document removal may sync to other peers, causing them to remove the document
    /// as well. However, a concurrent update from a remote peer will win when merging the update
    /// with the removal ("add-wins").
    ///
    /// # Example
    ///
    /// ```
    /// use dittolive_ditto::prelude::*;
    ///
    /// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
    /// let collection = ditto.store().collection("todos")?;
    /// let pending_op = collection.find("done == true");
    ///
    /// // Removing documents returns their IDs
    /// let removed_ids: Vec<DocumentId> = pending_op.remove()?;
    /// # Ok(())
    /// # }
    /// ```
    pub fn remove(&self) -> Result<Vec<DocumentId>, DittoError> {
        let ditto = self
            .ditto
            .upgrade()
            .ok_or(crate::error::ErrorKind::ReleasedDittoInstance)?;
        let hint: Option<char_p::Ref<'_>> = None;
        let mut write_txn = ffi_sdk::ditto_write_transaction(&*ditto, hint).ok()?;

        let ids = {
            ffi_sdk::ditto_collection_remove_query_str(
                &*ditto,
                self.collection_name.as_ref(),
                &mut write_txn,
                self.query.as_ref(),
                self.query_args.as_ref().map(|qa| (&qa[..]).into()),
                (&self.order_by[..]).into(),
                self.limit,
                self.offset,
            )
            .ok_or(ErrorKind::InvalidInput)?
        };
        ffi_sdk::ditto_write_transaction_commit(&ditto, write_txn);
        Ok(ids
            .to::<Vec<_>>()
            .into_iter()
            .map(|s| s.to::<Box<[u8]>>().into())
            .collect())
    }

    /// Evict the selected documents from the local peer's store.
    ///
    /// Unlike a [`removal`], an eviction does not sync with other peers. When
    /// a document is evicted, it is simply removed from the local store to save
    /// disk space.
    ///
    /// This returns the [`DocumentId`]s of the documents that were evicted.
    ///
    /// # Example
    ///
    /// ```
    /// use dittolive_ditto::prelude::*;
    ///
    /// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
    /// let collection = ditto.store().collection("cars")?;
    /// let pending_op = collection.find("sold == true");
    ///
    /// // Evicting documents returns their DocumentIds
    /// let evicted_ids: Vec<DocumentId> = pending_op.evict()?;
    /// # Ok(())
    /// # }
    /// ```
    ///
    /// [`removal`]: Self::remove
    pub fn evict(&self) -> Result<Vec<DocumentId>, DittoError> {
        let ditto = self
            .ditto
            .upgrade()
            .ok_or(crate::error::ErrorKind::ReleasedDittoInstance)?;
        let hint: Option<char_p::Ref<'_>> = None;
        let mut write_txn = ffi_sdk::ditto_write_transaction(&*ditto, hint).ok()?;

        let ids = {
            ffi_sdk::ditto_collection_evict_query_str(
                &*ditto,
                self.collection_name.as_ref(),
                &mut write_txn,
                self.query.as_ref(),
                self.query_args.as_ref().map(|qa| (&qa[..]).into()),
                (&self.order_by[..]).into(),
                self.limit,
                self.offset,
            )
            .ok_or(ErrorKind::InvalidInput)?
        };
        ffi_sdk::ditto_write_transaction_commit(&ditto, write_txn);
        Ok(ids
            .to::<Vec<_>>()
            .into_iter()
            .map(|s| s.to::<Box<[u8]>>().into())
            .collect())
    }

    /// Update the selected documents by mutating them directly.
    ///
    /// This function takes a callback and provides it with a mutable slice
    /// of the documents matching the query.
    ///
    /// After performing the update, this function returns a map of each
    /// `DocumentId` affected and a list of [`UpdateResult`]s describing the
    /// updates that happened.
    ///
    /// # Example
    ///
    /// ```
    /// use dittolive_ditto::prelude::*;
    ///
    /// # fn example(ditto: &Ditto) -> anyhow::Result<()> {
    /// let collection = ditto.store().collection("cars")?;
    /// let pending_op = collection.find("model == 'pinto'");
    ///
    /// let _update_results = pending_op.update(|docs| {
    ///     for doc in docs {
    ///         doc.set("recalled", true).unwrap();
    ///     }
    /// })?;
    /// # Ok(())
    /// # }
    /// ```
    pub fn update<Updater>(
        &self,
        updater: Updater,
    ) -> Result<BTreeMap<DocumentId, Vec<UpdateResult>>, DittoError>
    where
        Updater: Fn(&mut [BoxedDocument]),
    {
        let ditto = self
            .ditto
            .upgrade()
            .ok_or(crate::error::ErrorKind::ReleasedDittoInstance)?;
        let hint: Option<char_p::Ref<'_>> = None;
        let mut write_txn = ffi_sdk::ditto_write_transaction(&*ditto, hint).ok()?;

        let mut docs = self.exec_internal(Some(&mut write_txn))?;

        // Apply the closure to the document,
        updater(&mut docs);
        let diff = BTreeMap::<DocumentId, Vec<UpdateResult>>::new();

        let code = {
            ffi_sdk::ditto_collection_update_multiple(
                &ditto,
                self.collection_name.as_ref(),
                &mut write_txn,
                docs.into(),
            )
        };
        if code != 0 {
            ffi_sdk::ditto_write_transaction_rollback(&ditto, write_txn);
            return Err(DittoError::from_ffi(ErrorKind::InvalidInput));
        }
        ffi_sdk::ditto_write_transaction_commit(&ditto, write_txn);
        Ok(diff)
    }
}