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
use rarena_allocator::{Freelist, Options as ArenaOptions};
pub use skl::KeySize;
use super::{CURRENT_VERSION, HEADER_SIZE};
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
#[cfg_attr(docsrs, doc(cfg(all(feature = "memmap", not(target_family = "wasm")))))]
mod memmap;
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) use memmap::*;
/// Options for the WAL.
#[derive(Debug, Clone)]
pub struct Options {
maximum_key_size: KeySize,
maximum_value_size: u32,
sync: bool,
magic_version: u16,
cap: Option<u32>,
reserved: u32,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) lock_meta: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) read: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) write: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) create_new: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) create: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) truncate: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) append: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) stack: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) populate: bool,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
pub(crate) huge: Option<u8>,
}
impl Default for Options {
#[inline]
fn default() -> Self {
Self::new()
}
}
impl Options {
/// Create a new `Options` instance.
///
///
/// ## Example
///
/// **Note:** If you are creating in-memory WAL, then you must specify the capacity.
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::new().with_capacity(1024 * 1024 * 8); // 8MB in-memory WAL
/// ```
#[inline]
pub const fn new() -> Self {
Self {
maximum_key_size: KeySize::new(),
maximum_value_size: u32::MAX,
sync: true,
magic_version: 0,
cap: None,
reserved: 0,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
lock_meta: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
read: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
write: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
create_new: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
create: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
truncate: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
append: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
stack: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
populate: false,
#[cfg(all(feature = "memmap", not(target_family = "wasm")))]
huge: None,
}
}
/// 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::Options;
///
/// let opts = Options::new().with_reserved(8);
/// ```
#[inline]
pub const fn with_reserved(mut self, reserved: u32) -> Self {
self.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::Options;
///
/// let opts = Options::new().with_reserved(8);
///
/// assert_eq!(opts.reserved(), 8);
/// ```
#[inline]
pub const fn reserved(&self) -> u32 {
self.reserved
}
/// Returns the magic version.
///
/// The default value is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::new().with_magic_version(1);
/// assert_eq!(options.magic_version(), 1);
/// ```
#[inline]
pub const fn magic_version(&self) -> u16 {
self.magic_version
}
/// Returns the capacity of the WAL.
///
/// The default value is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::new().with_capacity(1000);
/// assert_eq!(options.capacity(), 1000);
/// ```
#[inline]
pub const fn capacity(&self) -> u32 {
match self.cap {
Some(cap) => cap,
None => 0,
}
}
/// Returns the maximum key length.
///
/// The default value is `u16::MAX`.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Options, KeySize};
///
/// let options = Options::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.maximum_key_size
}
/// Returns the maximum value length.
///
/// The default value is `u32::MAX`.
///
/// ## Example
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::new().with_maximum_value_size(1024);
/// assert_eq!(options.maximum_value_size(), 1024);
/// ```
#[inline]
pub const fn maximum_value_size(&self) -> u32 {
self.maximum_value_size
}
/// Returns `true` if the WAL syncs on write.
///
/// The default value is `true`.
///
/// ## Example
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::new();
/// assert_eq!(options.sync(), true);
/// ```
#[inline]
pub const fn sync(&self) -> bool {
self.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::Options;
///
/// let options = Options::new().with_capacity(100);
/// assert_eq!(options.capacity(), 100);
/// ```
#[inline]
pub const fn with_capacity(mut self, cap: u32) -> Self {
self.cap = Some(cap);
self
}
/// Sets the maximum key length.
///
/// ## Example
///
/// ```rust
/// use orderwal::{Options, KeySize};
///
/// let options = Options::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.maximum_key_size = size;
self
}
/// Sets the maximum value length.
///
/// ## Example
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::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.maximum_value_size = size;
self
}
/// Sets the WAL to sync on write.
///
/// The default value is `true`.
///
/// ## Example
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::new().with_sync(false);
/// assert_eq!(options.sync(), false);
/// ```
#[inline]
pub const fn with_sync(mut self, sync: bool) -> Self {
self.sync = sync;
self
}
/// Sets the magic version.
///
/// The default value is `0`.
///
/// ## Example
///
/// ```rust
/// use orderwal::Options;
///
/// let options = Options::new().with_magic_version(1);
/// assert_eq!(options.magic_version(), 1);
/// ```
#[inline]
pub const fn with_magic_version(mut self, version: u16) -> Self {
self.magic_version = version;
self
}
}
#[inline]
pub(crate) const fn arena_options(reserved: u32) -> ArenaOptions {
ArenaOptions::new()
.with_magic_version(CURRENT_VERSION)
.with_freelist(Freelist::None)
.with_reserved((HEADER_SIZE + reserved as usize) as u32)
.with_unify(true)
}