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
use crate::access_path::AccessPath;
use anyhow::Result;
use serde::{Deserialize, Serialize};
#[derive(Clone, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub enum WriteOp {
Deletion,
Value(#[serde(with = "serde_bytes")] Vec<u8>),
}
impl WriteOp {
#[inline]
pub fn is_deletion(&self) -> bool {
match self {
WriteOp::Deletion => true,
WriteOp::Value(_) => false,
}
}
}
impl std::fmt::Debug for WriteOp {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
match self {
WriteOp::Value(value) => write!(
f,
"Value({})",
value
.iter()
.map(|byte| format!("{:02x}", byte))
.collect::<String>()
),
WriteOp::Deletion => write!(f, "Deletion"),
}
}
}
#[derive(Clone, Debug, Default, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct WriteSet(WriteSetMut);
impl WriteSet {
#[inline]
pub fn is_empty(&self) -> bool {
self.0.is_empty()
}
#[inline]
pub fn iter(&self) -> ::std::slice::Iter<'_, (AccessPath, WriteOp)> {
self.into_iter()
}
#[inline]
pub fn into_mut(self) -> WriteSetMut {
self.0
}
}
#[derive(Clone, Debug, Default, Eq, Hash, PartialEq, Serialize, Deserialize)]
pub struct WriteSetMut {
write_set: Vec<(AccessPath, WriteOp)>,
}
impl WriteSetMut {
pub fn new(write_set: Vec<(AccessPath, WriteOp)>) -> Self {
Self { write_set }
}
pub fn push(&mut self, item: (AccessPath, WriteOp)) {
self.write_set.push(item);
}
#[inline]
pub fn is_empty(&self) -> bool {
self.write_set.is_empty()
}
pub fn freeze(self) -> Result<WriteSet> {
Ok(WriteSet(self))
}
}
impl ::std::iter::FromIterator<(AccessPath, WriteOp)> for WriteSetMut {
fn from_iter<I: IntoIterator<Item = (AccessPath, WriteOp)>>(iter: I) -> Self {
let mut ws = WriteSetMut::default();
for write in iter {
ws.push((write.0, write.1));
}
ws
}
}
impl<'a> IntoIterator for &'a WriteSet {
type Item = &'a (AccessPath, WriteOp);
type IntoIter = ::std::slice::Iter<'a, (AccessPath, WriteOp)>;
fn into_iter(self) -> Self::IntoIter {
self.0.write_set.iter()
}
}
impl ::std::iter::IntoIterator for WriteSet {
type Item = (AccessPath, WriteOp);
type IntoIter = ::std::vec::IntoIter<(AccessPath, WriteOp)>;
fn into_iter(self) -> Self::IntoIter {
self.0.write_set.into_iter()
}
}