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
use crate::prelude::*;
use crate::internal::encodings::{
varint::{encode_prefix_varint, decode_prefix_varint},
};
use std::convert::{TryInto};
use std::fmt::Debug;
pub trait Primitive: Default + BatchData {
fn id() -> PrimitiveId;
fn from_dyn_branch(branch: DynBranch) -> OneOrMany<Self>;
}
#[derive(Debug, PartialEq, Eq, Hash, Copy, Clone)]
pub enum PrimitiveId {
Object { num_fields: usize },
Array,
Nullable,
Integer,
Boolean,
Float,
Tuple { num_fields: usize },
}
impl PrimitiveId {
pub(crate) fn write(self: &Self, bytes: &mut Vec<u8>) {
use PrimitiveId::*;
match self {
Object { num_fields } => {
bytes.push(1);
encode_prefix_varint(*num_fields as u64, bytes);
},
Tuple { num_fields } => {
bytes.push(7);
encode_prefix_varint(*num_fields as u64, bytes);
}
_ => {
let discriminant = match self {
Object {..} => unreachable!(),
Tuple {..} => unreachable!(),
Array => 2,
Nullable => 3,
Integer => 4,
Boolean => 5,
Float => 6,
};
bytes.push(discriminant);
}
}
}
pub(crate) fn read(bytes: &[u8], offset: &mut usize) -> Self {
use PrimitiveId::*;
let discriminant = bytes[*offset];
*offset += 1;
match discriminant {
1 => Object { num_fields: decode_prefix_varint(bytes, offset) as usize },
2 => Array,
3 => Nullable,
4 => Integer,
5 => Boolean,
6 => Float,
7 => Tuple { num_fields: decode_prefix_varint(bytes, offset) as usize },
_ => todo!("error handling. {}", discriminant),
}
}
}
pub trait BatchData: Sized {
fn read_batch(bytes: &[u8]) -> Vec<Self>;
fn write_batch(items: &[Self], bytes: &mut Vec<u8>);
fn write_one(item: Self, bytes: &mut Vec<u8>) {
Self::write_batch(&[item], bytes)
}
fn read_one(bytes: &[u8], offset: &mut usize) -> Self;
}
impl Primitive for usize {
fn id() -> PrimitiveId {
PrimitiveId::Integer
}
fn from_dyn_branch(branch: DynBranch) -> OneOrMany<Self> {
match branch {
DynBranch::Integer(r) => {
match r {
OneOrMany::One(i) => OneOrMany::One(i as usize),
OneOrMany::Many(b) => OneOrMany::Many(b),
}
},
_ => todo!("schema mismatch"),
}
}
}
impl BatchData for usize {
fn read_batch(bytes: &[u8]) -> Vec<Self> {
read_all(bytes, |b, o| {
let v = decode_prefix_varint(b, o);
v.try_into().unwrap_or_else(|_| todo!())
})
}
fn write_batch(items: &[Self], bytes: &mut Vec<u8>) {
for item in items {
let v = (*item) as u64;
encode_prefix_varint(v, bytes);
}
}
fn read_one(bytes: &[u8], offset: &mut usize) -> Self {
decode_prefix_varint(bytes, offset) as usize
}
}
#[derive(Debug)]
pub struct PrimitiveBuffer<T> {
values: Vec<T>,
read_offset: usize,
}
impl<T: BatchData> PrimitiveBuffer<T> {
pub fn read_from(items: OneOrMany<T>) -> Self {
let values = match items {
OneOrMany::One(one) => vec![one],
OneOrMany::Many(bytes) => T::read_batch(bytes)
};
Self {
values,
read_offset: 0,
}
}
}
impl<T: Primitive + Copy> Writer for PrimitiveBuffer<T> {
type Write = T;
fn new() -> Self {
Self {
values: Vec::new(),
read_offset: 0,
}
}
fn write(&mut self, value: &Self::Write) {
self.values.push(*value);
}
fn flush<ParentBranch: StaticBranch>(self, _branch: ParentBranch, bytes: &mut Vec<u8>, lens: &mut Vec<usize>) {
T::id().write(bytes);
if ParentBranch::in_array_context() {
let start = bytes.len();
T::write_batch(&self.values, bytes);
let len = bytes.len() - start;
lens.push(len);
} else {
let Self { mut values, .. } = self;
assert_eq!(values.len(), 1);
let value = values.pop().unwrap();
T::write_one(value, bytes);
}
}
}
impl<T: Primitive + Copy> Reader for PrimitiveBuffer<T> {
type Read = T;
fn new<ParentBranch: StaticBranch>(sticks: DynBranch, _branch: ParentBranch) -> Self {
let values = T::from_dyn_branch(sticks);
Self::read_from(values)
}
fn read(&mut self) -> Self::Read {
let value = self.values[self.read_offset];
self.read_offset += 1;
value
}
}
impl<T: Primitive + Copy> Writable for T {
type Writer = PrimitiveBuffer<T>;
}
impl<T: Primitive + Copy> Readable for T {
type Reader = PrimitiveBuffer<T>;
}
impl<T: Copy> PrimitiveBuffer<T> {
pub fn read(&mut self) -> T {
let value = self.values[self.read_offset];
self.read_offset += 1;
value
}
}
impl<T: Primitive> PrimitiveBuffer<T> {
pub fn new() -> Self {
Self {
values: Vec::new(),
read_offset: 0,
}
}
}