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
use_prelude!();
use super::*;

#[derive(Debug)]
/// Provides information about a live query event relating to a single document live query.
pub struct SingleDocumentLiveQueryEvent {
    /// States whether the event is an `initial` event or not.
    pub(crate) is_initial: bool,
    pub(crate) old_document: Option<ffi_sdk::BoxedDocument>,
}

impl SingleDocumentLiveQueryEvent {
    /// Return true if the event is an "initial"
    pub fn is_initial(&self) -> bool {
        self.is_initial
    }

    /// Return the old boxed document
    pub fn old_document(&self) -> &Option<ffi_sdk::BoxedDocument> {
        &self.old_document
    }
}

impl SingleDocumentLiveQueryEvent {
    /// Return hash of the eventually contained document.
    pub fn hash(&self, doc: &Option<ffi_sdk::BoxedDocument>) -> Result<u64, DittoError> {
        let zero_or_one_doc: &[_] = doc.as_ref().map_or(&[], ::core::slice::from_ref);
        ffi_sdk::ditto_documents_hash(zero_or_one_doc.into()).ok()
    }

    /// Return hash of the mnemonic of the eventually contained document.
    pub fn hash_mnemonic(
        &self,
        doc: &Option<ffi_sdk::BoxedDocument>,
    ) -> Result<String, DittoError> {
        let zero_or_one_doc: &[_] = doc.as_ref().map_or(&[], ::core::slice::from_ref);
        let mnemonic_c_str =
            { ffi_sdk::ditto_documents_hash_mnemonic(zero_or_one_doc.into()).ok()? };
        Ok(mnemonic_c_str.into_string())
    }
}