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
use std::fmt::Display;
use byteorder::{BigEndian, ReadBytesExt, WriteBytesExt};
use crate::{
error::Error,
tree::{btree_entry::Reducer, key_entry::ValueIndex, BinarySerialization, PagedWriter},
ArcBytes, ErrorKind,
};
#[derive(Default, Debug, Clone, Copy, Eq, PartialEq, Hash, Ord, PartialOrd)]
pub struct SequenceId(pub u64);
impl From<u64> for SequenceId {
fn from(id: u64) -> Self {
Self(id)
}
}
impl From<SequenceId> for u64 {
fn from(id: SequenceId) -> Self {
id.0
}
}
impl SequenceId {
#[must_use]
pub(crate) const fn valid(self) -> bool {
self.0 > 0
}
pub fn next_sequence(&self) -> Option<Self> {
self.0.checked_add(1).map(Self)
}
}
impl Display for SequenceId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.0.fmt(f)
}
}
#[derive(Clone, Debug)]
pub struct BySequenceIndex<Embedded> {
pub key: ArcBytes<'static>,
pub last_sequence: Option<SequenceId>,
pub value_length: u32,
pub position: u64,
pub embedded: Option<Embedded>,
}
impl<Embedded> BinarySerialization for BySequenceIndex<Embedded>
where
Embedded: super::EmbeddedIndex,
{
fn serialize_to(
&mut self,
writer: &mut Vec<u8>,
_paged_writer: &mut PagedWriter<'_>,
) -> Result<usize, Error> {
let mut bytes_written = 0;
writer.write_u32::<BigEndian>(self.value_length)?;
bytes_written += 4;
writer.write_u64::<BigEndian>(self.position)?;
bytes_written += 8;
writer.write_u64::<BigEndian>(self.last_sequence.unwrap_or(SequenceId(0)).0)?;
bytes_written += 8;
let key_length = u16::try_from(self.key.len()).map_err(|_| ErrorKind::KeyTooLarge)?;
writer.write_u16::<BigEndian>(key_length)?;
bytes_written += 2;
writer.extend_from_slice(&self.key);
bytes_written += key_length as usize;
if let Some(embedded) = &self.embedded {
bytes_written += embedded.serialize_to(writer)?;
}
Ok(bytes_written)
}
fn deserialize_from(
reader: &mut ArcBytes<'_>,
_current_order: Option<usize>,
) -> Result<Self, Error> {
let value_length = reader.read_u32::<BigEndian>()?;
let position = reader.read_u64::<BigEndian>()?;
let last_sequence = SequenceId(reader.read_u64::<BigEndian>()?);
let key_length = reader.read_u16::<BigEndian>()? as usize;
if key_length > reader.len() {
return Err(Error::data_integrity(format!(
"key length {} found but only {} bytes remaining",
key_length,
reader.len()
)));
}
let key = reader.read_bytes(key_length)?.into_owned();
let embedded = (!reader.is_empty())
.then(|| Embedded::deserialize_from(reader))
.transpose()?;
Ok(Self {
key,
last_sequence: if last_sequence.valid() {
Some(last_sequence)
} else {
None
},
value_length,
position,
embedded,
})
}
}
impl<Embedded> ValueIndex for BySequenceIndex<Embedded> {
fn position(&self) -> u64 {
self.position
}
}
#[derive(Clone, Debug)]
pub struct BySequenceStats {
pub total_sequences: u64,
}
impl BinarySerialization for BySequenceStats {
fn serialize_to(
&mut self,
writer: &mut Vec<u8>,
_paged_writer: &mut PagedWriter<'_>,
) -> Result<usize, Error> {
writer.write_u64::<BigEndian>(self.total_sequences)?;
Ok(8)
}
fn deserialize_from(
reader: &mut ArcBytes<'_>,
_current_order: Option<usize>,
) -> Result<Self, Error> {
let number_of_records = reader.read_u64::<BigEndian>()?;
Ok(Self {
total_sequences: number_of_records,
})
}
}
#[derive(Clone, Default, Debug)]
pub struct BySequenceReducer;
impl<Embedded> Reducer<BySequenceIndex<Embedded>, BySequenceStats> for BySequenceReducer {
fn reduce<'a, Indexes, IndexesIter>(&self, indexes: Indexes) -> BySequenceStats
where
BySequenceIndex<Embedded>: 'a,
Indexes: IntoIterator<Item = &'a BySequenceIndex<Embedded>, IntoIter = IndexesIter>
+ ExactSizeIterator,
IndexesIter: Iterator<Item = &'a BySequenceIndex<Embedded>> + ExactSizeIterator + Clone,
{
BySequenceStats {
total_sequences: indexes.len() as u64,
}
}
fn rereduce<'a, ReducedIndexes, ReducedIndexesIter>(
&self,
values: ReducedIndexes,
) -> BySequenceStats
where
Self: 'a,
ReducedIndexes: IntoIterator<Item = &'a BySequenceStats, IntoIter = ReducedIndexesIter>
+ ExactSizeIterator,
ReducedIndexesIter: Iterator<Item = &'a BySequenceStats> + ExactSizeIterator,
{
BySequenceStats {
total_sequences: values.into_iter().map(|v| v.total_sequences).sum(),
}
}
}