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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
use dbutils::checksum::Crc32;
use skl::KeySize;
use super::{
error::Error,
memtable::BaseTable,
options::{arena_options, Options},
sealed::Constructable,
};
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
#[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
mod memmap;
/// A write-ahead log builder.
pub struct Builder<M, S = Crc32>
where
M: BaseTable,
{
pub(super) opts: Options,
pub(super) cks: S,
pub(super) memtable_opts: M::Options,
}
impl<M> Default for Builder<M>
where
M: BaseTable,
M::Options: Default,
{
#[inline]
fn default() -> Self {
Self::new()
}
}
impl<M> Builder<M>
where
M: BaseTable,
M::Options: Default,
{
/// Returns a new write-ahead log builder with the given options.
#[inline]
pub fn new() -> Self {
Self {
opts: Options::default(),
cks: Crc32::default(),
memtable_opts: M::Options::default(),
}
}
}
impl<M, S> Builder<M, S>
where
M: BaseTable,
{
/// Returns a new write-ahead log builder with the new checksumer
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, Crc32, multiple_version::DefaultTable};
///
/// let opts = Builder::<DefaultTable<[u8], [u8]>>::new().with_checksumer(Crc32::new());
/// ```
#[inline]
pub fn with_checksumer<NS>(self, cks: NS) -> Builder<M, NS> {
Builder {
opts: self.opts,
cks,
memtable_opts: self.memtable_opts,
}
}
/// Returns a new write-ahead log builder with the new options
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, Options, multiple_version::DefaultTable};
///
/// let opts = Builder::<DefaultTable<[u8], [u8]>>::new().with_options(Options::default());
/// ```
#[inline]
pub fn with_options(self, opts: Options) -> Self {
Self {
opts,
cks: self.cks,
memtable_opts: self.memtable_opts,
}
}
/// Returns a new write-ahead log builder with the new options
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::{ArenaTable, ArenaTableOptions}};
///
/// let opts = Builder::<ArenaTable<[u8], [u8]>>::new().with_memtable_options(ArenaTableOptions::default());
/// ```
#[inline]
pub fn with_memtable_options(self, opts: M::Options) -> Self {
Self {
opts: self.opts,
cks: self.cks,
memtable_opts: opts,
}
}
/// Returns a new write-ahead log builder with the new memtable.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::{DefaultTable, ArenaTable}};
///
/// let opts = Builder::<ArenaTable<[u8], [u8]>>::new().change_memtable::<DefaultTable<[u8], [u8]>>();
/// ```
#[inline]
pub fn change_memtable<NM>(self) -> Builder<NM, S>
where
NM: BaseTable,
NM::Options: Default,
{
Builder {
opts: self.opts,
cks: self.cks,
memtable_opts: NM::Options::default(),
}
}
/// Returns a new write-ahead log builder with the new memtable and its options
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::{DefaultTable, ArenaTable, ArenaTableOptions}};
///
/// let opts = Builder::<DefaultTable<[u8], [u8]>>::new().change_memtable_with_options::<ArenaTable<[u8], [u8]>>(ArenaTableOptions::default().with_capacity(1000));
/// ```
#[inline]
pub fn change_memtable_with_options<NM>(self, opts: NM::Options) -> Builder<NM, S>
where
NM: BaseTable,
{
Builder {
opts: self.opts,
cks: self.cks,
memtable_opts: opts,
}
}
/// Set the reserved bytes of the WAL.
///
/// The `reserved` is used to configure the start position of the WAL. This is useful
/// when you want to add some bytes as your own WAL's header.
///
/// The default reserved is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let opts = Builder::<DefaultTable<[u8], [u8]>>::new().with_reserved(8);
/// ```
#[inline]
pub const fn with_reserved(mut self, reserved: u32) -> Self {
self.opts = self.opts.with_reserved(reserved);
self
}
/// Get the reserved of the WAL.
///
/// The `reserved` is used to configure the start position of the WAL. This is useful
/// when you want to add some bytes as your own WAL's header.
///
/// The default reserved is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let opts = Builder::<DefaultTable<[u8], [u8]>>::new().with_reserved(8);
///
/// assert_eq!(opts.reserved(), 8);
/// ```
#[inline]
pub const fn reserved(&self) -> u32 {
self.opts.reserved()
}
/// Returns the magic version.
///
/// The default value is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_magic_version(1);
/// assert_eq!(options.magic_version(), 1);
/// ```
#[inline]
pub const fn magic_version(&self) -> u16 {
self.opts.magic_version()
}
/// Returns the capacity of the WAL.
///
/// The default value is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_capacity(1000);
/// assert_eq!(options.capacity(), 1000);
/// ```
#[inline]
pub const fn capacity(&self) -> u32 {
self.opts.capacity()
}
/// Returns the maximum key length.
///
/// The default value is `u16::MAX`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, KeySize, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_maximum_key_size(KeySize::with(1024));
/// assert_eq!(options.maximum_key_size(), KeySize::with(1024));
/// ```
#[inline]
pub const fn maximum_key_size(&self) -> KeySize {
self.opts.maximum_key_size()
}
/// Returns the maximum value length.
///
/// The default value is `u32::MAX`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_maximum_value_size(1024);
/// assert_eq!(options.maximum_value_size(), 1024);
/// ```
#[inline]
pub const fn maximum_value_size(&self) -> u32 {
self.opts.maximum_value_size()
}
/// Returns `true` if the WAL syncs on write.
///
/// The default value is `true`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new();
/// assert_eq!(options.sync(), true);
/// ```
#[inline]
pub const fn sync(&self) -> bool {
self.opts.sync()
}
/// Sets the capacity of the WAL.
///
/// This configuration will be ignored when using file-backed memory maps.
///
/// The default value is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_capacity(100);
/// assert_eq!(options.capacity(), 100);
/// ```
#[inline]
pub const fn with_capacity(mut self, cap: u32) -> Self {
self.opts = self.opts.with_capacity(cap);
self
}
/// Sets the maximum key length.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, KeySize, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_maximum_key_size(KeySize::with(1024));
/// assert_eq!(options.maximum_key_size(), KeySize::with(1024));
/// ```
#[inline]
pub const fn with_maximum_key_size(mut self, size: KeySize) -> Self {
self.opts = self.opts.with_maximum_key_size(size);
self
}
/// Sets the maximum value length.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_maximum_value_size(1024);
/// assert_eq!(options.maximum_value_size(), 1024);
/// ```
#[inline]
pub const fn with_maximum_value_size(mut self, size: u32) -> Self {
self.opts = self.opts.with_maximum_value_size(size);
self
}
/// Sets the WAL to sync on write.
///
/// The default value is `true`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_sync(false);
/// assert_eq!(options.sync(), false);
/// ```
#[inline]
pub const fn with_sync(mut self, sync: bool) -> Self {
self.opts = self.opts.with_sync(sync);
self
}
/// Sets the magic version.
///
/// The default value is `0`.
///
/// ## Example
///
/// ```rust
///
/// use orderwal::{Builder, multiple_version::DefaultTable};
///
/// let options = Builder::<DefaultTable<[u8], [u8]>>::new().with_magic_version(1);
/// assert_eq!(options.magic_version(), 1);
/// ```
#[inline]
pub const fn with_magic_version(mut self, version: u16) -> Self {
self.opts = self.opts.with_magic_version(version);
self
}
}
impl<M, S> Builder<M, S>
where
M: BaseTable,
{
/// Creates a new in-memory write-ahead log backed by an aligned vec.
///
/// ## Example
///
/// ```rust
///
/// use orderwal::{base::OrderWal, Builder};
///
/// let wal = Builder::new()
/// .with_capacity(1024)
/// .alloc::<OrderWal<[u8], [u8]>>()
/// .unwrap();
/// ```
pub fn alloc<W>(self) -> Result<W, Error<W::Memtable>>
where
W: Constructable<Memtable = M, Checksumer = S>,
{
let Self {
opts,
cks,
memtable_opts,
} = self;
arena_options(opts.reserved())
.with_capacity(opts.capacity())
.alloc()
.map_err(Error::from_insufficient_space)
.and_then(|arena| W::new_in(arena, opts, memtable_opts, cks).map(W::from_core))
}
}