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
use std::borrow::Cow;
use serde::{Deserialize, Serialize};
use crate::{document::Header, schema::collection};
#[derive(Default, Debug)]
pub struct Transaction<'a> {
pub operations: Vec<Operation<'a>>,
}
impl<'a> Transaction<'a> {
pub fn push(&mut self, operation: Operation<'a>) {
self.operations.push(operation);
}
}
#[derive(Debug)]
pub struct Operation<'a> {
pub collection: collection::Id,
pub command: Command<'a>,
}
#[derive(Debug, Serialize, Deserialize)]
pub enum Command<'a> {
Insert {
#[serde(borrow)]
contents: Cow<'a, [u8]>,
},
Update {
header: Cow<'a, Header>,
#[serde(borrow)]
contents: Cow<'a, [u8]>,
},
}
#[derive(Debug, Serialize, Deserialize)]
pub enum OperationResult {
Success,
DocumentUpdated {
collection: collection::Id,
header: Header,
},
}
#[derive(Debug, Serialize, Deserialize)]
pub struct Executed<'a> {
pub id: u64,
#[serde(borrow)]
pub changed_documents: Cow<'a, [ChangedDocument]>,
}
impl<'a> Executed<'a> {
#[must_use]
pub fn to_owned(&self) -> Executed<'static> {
Executed {
id: self.id,
changed_documents: self.changed_documents.iter().cloned().collect(),
}
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ChangedDocument {
pub collection: collection::Id,
pub id: u64,
}