vsdb 13.2.0

A std-collection-like database
Documentation
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
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
//!
//! # EnDe (Encode/Decode)
//!
//! This module provides traits for encoding and decoding keys and values.
//! These traits are used by the various data structures in `vsdb` to serialize
//! and deserialize data for storage.
//!
//! # Trust model
//!
//! VSDB operates a **closed data loop**: every byte sequence stored on disk
//! was produced by the same encode path in the same process (or a prior run
//! of the same binary).  This has two implications for error handling:
//!
//! * **Encoding a valid Rust value should never fail.**  The blanket
//!   implementations delegate to `postcard::to_allocvec`, which can only
//!   fail if the `Serialize` impl itself is buggy.  Accordingly,
//!   [`KeyEnDe::encode`] / [`ValueEnDe::encode`] **panic** on error —
//!   a failure here is a programming bug, not a recoverable runtime
//!   condition.  Use [`KeyEnDe::try_encode`] / [`ValueEnDe::try_encode`]
//!   at trust boundaries (e.g. first-time validation of a third-party
//!   type) where you want a `Result` instead.
//!
//! * **Decoding VSDB-written data should never fail.**  VSDB collections
//!   (`Mapx`, `MapxOrd`, `VerMap`, …) use `pnk!` (assert-like unwrap) on
//!   `decode` calls for data they wrote themselves.  A decode failure in
//!   this context indicates data corruption or a schema-incompatible code
//!   change — neither is automatically recoverable.  The `decode` method
//!   returns `Result` at the **trait level** because the trait cannot
//!   assume the byte source is trusted; callers at boundaries (e.g.
//!   [`from_meta`](crate::Mapx::from_meta) reading an on-disk file) use
//!   `?` to propagate errors normally.
//!

use super::RawBytes;
use ruc::*;
use std::{fmt, mem::size_of};

use serde::{Serialize, de::DeserializeOwned};

/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////

/// A trait for encoding keys.
pub trait KeyEn: Sized {
    /// Attempts to encode the key.  Returns `Err` only if the
    /// `Serialize` implementation is broken — see [module-level trust
    /// model](self) for details.
    fn try_encode_key(&self) -> Result<RawBytes>;

    /// Encodes the key, **panicking** on failure.
    ///
    /// This is the normal path inside VSDB collections.  A panic here
    /// means the type's `Serialize` impl has a bug.
    fn encode_key(&self) -> RawBytes {
        pnk!(self.try_encode_key())
    }
}

/// A trait for decoding keys.
pub trait KeyDe: Sized {
    /// Decodes a key from a byte slice.
    ///
    /// Returns `Err` when the bytes are invalid.  VSDB collections use
    /// `pnk!` on this internally because data they wrote is always
    /// trusted — see [module-level trust model](self).
    fn decode_key(bytes: &[u8]) -> Result<Self>;
}

/// A trait for both encoding and decoding keys.
pub trait KeyEnDe: Sized {
    /// Attempts to encode the key.  Prefer [`encode`](Self::encode) for
    /// internal VSDB paths; use this at trust boundaries where a `Result`
    /// is needed.
    fn try_encode(&self) -> Result<RawBytes>;

    /// Encodes the key, **panicking** on failure.
    ///
    /// See [`try_encode`](Self::try_encode) for the fallible variant.
    fn encode(&self) -> RawBytes {
        pnk!(self.try_encode())
    }

    /// Decodes a key from a byte slice.
    ///
    /// Returns `Err` when the bytes are invalid.  VSDB collections use
    /// `pnk!` on this internally for data they wrote themselves.
    fn decode(bytes: &[u8]) -> Result<Self>;
}

/// A trait for encoding values.
pub trait ValueEn: Sized {
    /// Attempts to encode the value.  Returns `Err` only if the
    /// `Serialize` implementation is broken.
    fn try_encode_value(&self) -> Result<RawBytes>;

    /// Encodes the value, **panicking** on failure.
    ///
    /// This is the normal path inside VSDB collections.  A panic here
    /// means the type's `Serialize` impl has a bug.
    fn encode_value(&self) -> RawBytes {
        pnk!(self.try_encode_value())
    }
}

/// A trait for decoding values.
pub trait ValueDe: Sized {
    /// Decodes a value from a byte slice.
    ///
    /// Returns `Err` when the bytes are invalid.  VSDB collections use
    /// `pnk!` on this internally because data they wrote is always
    /// trusted.
    fn decode_value(bytes: &[u8]) -> Result<Self>;
}

/// A trait for both encoding and decoding values.
pub trait ValueEnDe: Sized {
    /// Attempts to encode the value.  Prefer [`encode`](Self::encode) for
    /// internal VSDB paths; use this at trust boundaries where a `Result`
    /// is needed.
    fn try_encode(&self) -> Result<RawBytes>;

    /// Encodes the value, **panicking** on failure.
    ///
    /// See [`try_encode`](Self::try_encode) for the fallible variant.
    fn encode(&self) -> RawBytes {
        pnk!(self.try_encode())
    }

    /// Decodes a value from a byte slice.
    ///
    /// Returns `Err` when the bytes are invalid.  VSDB collections use
    /// `pnk!` on this internally for data they wrote themselves.
    fn decode(bytes: &[u8]) -> Result<Self>;
}

impl<T: Serialize> KeyEn for T {
    fn try_encode_key(&self) -> Result<RawBytes> {
        postcard::to_allocvec(self).c(d!())
    }
}

impl<T: DeserializeOwned> KeyDe for T {
    fn decode_key(bytes: &[u8]) -> Result<Self> {
        postcard::from_bytes(bytes).c(d!())
    }
}

impl<T: Serialize> ValueEn for T {
    fn try_encode_value(&self) -> Result<RawBytes> {
        postcard::to_allocvec(self).c(d!())
    }
}

impl<T: DeserializeOwned> ValueDe for T {
    fn decode_value(bytes: &[u8]) -> Result<Self> {
        postcard::from_bytes(bytes).c(d!())
    }
}

impl<T: KeyEn + KeyDe> KeyEnDe for T {
    fn try_encode(&self) -> Result<RawBytes> {
        <Self as KeyEn>::try_encode_key(self).c(d!())
    }

    fn encode(&self) -> RawBytes {
        <Self as KeyEn>::encode_key(self)
    }

    fn decode(bytes: &[u8]) -> Result<Self> {
        <Self as KeyDe>::decode_key(bytes).c(d!())
    }
}

impl<T: ValueEn + ValueDe> ValueEnDe for T {
    fn try_encode(&self) -> Result<RawBytes> {
        <Self as ValueEn>::try_encode_value(self).c(d!())
    }

    fn encode(&self) -> RawBytes {
        <Self as ValueEn>::encode_value(self)
    }

    fn decode(bytes: &[u8]) -> Result<Self> {
        <Self as ValueDe>::decode_value(bytes).c(d!())
    }
}

/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////

/// A trait for keys that maintain their order when serialized.
///
/// This trait is crucial for ordered data structures like `MapxOrd`, ensuring that
/// operations like range queries work correctly.
///
/// All built-in implementations (`u32`, `i64`, `String`, etc.) also
/// implement [`KeyEnDe`] (via serde blanket), so they can be used
/// as keys in both [`MapxOrd`](crate::MapxOrd) and [`Mapx`](crate::Mapx).
pub trait KeyEnDeOrdered: Clone + Eq + Ord + fmt::Debug {
    /// Encodes the key into a byte vector.
    fn to_bytes(&self) -> RawBytes;

    /// Consumes the key and encodes it into a byte vector.
    fn into_bytes(self) -> RawBytes {
        self.to_bytes()
    }

    /// Decodes a key from a byte slice.
    fn from_slice(b: &[u8]) -> Result<Self>;

    /// Consumes a byte vector and decodes it into a key.
    fn from_bytes(b: RawBytes) -> Result<Self> {
        Self::from_slice(&b)
    }
}

impl KeyEnDeOrdered for RawBytes {
    #[inline(always)]
    fn to_bytes(&self) -> RawBytes {
        self.clone()
    }

    #[inline(always)]
    fn into_bytes(self) -> RawBytes {
        self
    }

    #[inline(always)]
    fn from_slice(b: &[u8]) -> Result<Self> {
        Ok(b.to_vec())
    }

    #[inline(always)]
    fn from_bytes(b: RawBytes) -> Result<Self> {
        Ok(b)
    }
}

impl KeyEnDeOrdered for Box<[u8]> {
    #[inline(always)]
    fn to_bytes(&self) -> RawBytes {
        self.to_vec()
    }

    #[inline(always)]
    fn into_bytes(self) -> RawBytes {
        self.to_vec()
    }

    #[inline(always)]
    fn from_slice(b: &[u8]) -> Result<Self> {
        Ok(b.to_vec().into())
    }

    #[inline(always)]
    fn from_bytes(b: RawBytes) -> Result<Self> {
        Ok(b.into())
    }
}

impl KeyEnDeOrdered for String {
    #[inline(always)]
    fn to_bytes(&self) -> RawBytes {
        self.as_bytes().to_vec()
    }

    #[inline(always)]
    fn into_bytes(self) -> RawBytes {
        self.into_bytes()
    }

    #[inline(always)]
    fn from_slice(b: &[u8]) -> Result<Self> {
        String::from_utf8(b.to_owned()).c(d!())
    }

    #[inline(always)]
    fn from_bytes(b: RawBytes) -> Result<Self> {
        String::from_utf8(b).c(d!())
    }
}

macro_rules! impl_type {
    ($int: ty) => {
        impl KeyEnDeOrdered for $int {
            #[inline(always)]
            fn to_bytes(&self) -> RawBytes {
                self.wrapping_sub(<$int>::MIN).to_be_bytes().to_vec()
            }
            #[inline(always)]
            fn from_slice(b: &[u8]) -> Result<Self> {
                <[u8; size_of::<$int>()]>::try_from(b)
                    .c(d!())
                    .map(|bytes| <$int>::from_be_bytes(bytes).wrapping_add(<$int>::MIN))
            }
        }
    };
    (@$int: ty) => {
        impl KeyEnDeOrdered for Vec<$int> {
            #[inline(always)]
            fn to_bytes(&self) -> RawBytes {
                self.iter()
                    .map(|i| i.wrapping_sub(<$int>::MIN).to_be_bytes())
                    .flatten()
                    .collect::<Vec<_>>()
            }
            #[inline(always)]
            fn into_bytes(self) -> RawBytes {
                self.to_bytes()
            }
            #[inline(always)]
            fn from_slice(b: &[u8]) -> Result<Self> {
                if 0 != b.len() % size_of::<$int>() {
                    return Err(eg!("invalid bytes"));
                }
                b.chunks(size_of::<$int>())
                    .map(|i| {
                        <[u8; size_of::<$int>()]>::try_from(i).c(d!()).map(|bytes| {
                            <$int>::from_be_bytes(bytes).wrapping_add(<$int>::MIN)
                        })
                    })
                    .collect()
            }
            #[inline(always)]
            fn from_bytes(b: RawBytes) -> Result<Self> {
                Self::from_slice(&b)
            }
        }
    };
    (^$int: ty) => {
        impl KeyEnDeOrdered for Box<[$int]> {
            #[inline(always)]
            fn to_bytes(&self) -> RawBytes {
                KeyEnDeOrdered::to_bytes(&self.to_vec())
            }
            #[inline(always)]
            fn into_bytes(self) -> RawBytes {
                KeyEnDeOrdered::into_bytes(self.to_vec())
            }
            #[inline(always)]
            fn from_slice(b: &[u8]) -> Result<Self> {
                <Vec<$int> as KeyEnDeOrdered>::from_slice(b).map(|b| b.into())
            }
            #[inline(always)]
            fn from_bytes(b: RawBytes) -> Result<Self> {
                <Vec<$int> as KeyEnDeOrdered>::from_bytes(b).map(|b| b.into())
            }
        }
    };
    ($int: ty, $siz: expr) => {
        impl KeyEnDeOrdered for [$int; $siz] {
            #[inline(always)]
            fn to_bytes(&self) -> RawBytes {
                self.iter()
                    .map(|i| i.wrapping_sub(<$int>::MIN).to_be_bytes())
                    .flatten()
                    .collect::<Vec<_>>()
            }
            #[inline(always)]
            fn from_slice(b: &[u8]) -> Result<Self> {
                if 0 != b.len() % size_of::<$int>() {
                    return Err(eg!("invalid bytes"));
                }
                if $siz != b.len() / size_of::<$int>() {
                    return Err(eg!("invalid bytes"));
                }
                let mut res = [0; $siz];
                b.chunks(size_of::<$int>())
                    .enumerate()
                    .for_each(|(idx, i)| {
                        res[idx] = <[u8; size_of::<$int>()]>::try_from(i)
                            .map(|bytes| {
                                <$int>::from_be_bytes(bytes).wrapping_add(<$int>::MIN)
                            })
                            .unwrap();
                    });
                Ok(res)
            }
        }
    };
    (%$hash: ty) => {
        impl KeyEnDeOrdered for $hash {
            #[inline(always)]
            fn to_bytes(&self) -> RawBytes {
                self.as_bytes().to_vec()
            }
            #[inline(always)]
            fn from_slice(b: &[u8]) -> Result<Self> {
                if b.len() != <$hash>::len_bytes() {
                    return Err(eg!("length mismatch"));
                }
                Ok(<$hash>::from_slice(b))
            }
        }
    };
    (~$big_uint: ty) => {
        impl KeyEnDeOrdered for $big_uint {
            #[inline(always)]
            fn to_bytes(&self) -> RawBytes {
                let mut r = vec![];
                self.to_big_endian(&mut r);
                r
            }
            #[inline(always)]
            fn from_slice(b: &[u8]) -> Result<Self> {
                Ok(<$big_uint>::from_big_endian(b))
            }
        }
    };
}

macro_rules! impl_all {
    ($t: ty) => {
        impl_type!($t);
    };
    ($t: ty, $($tt: ty),+) => {
        impl_all!($t);
        impl_all!($($tt), +);
    };
    (@$t: ty) => {
        impl_type!(@$t);
    };
    (@$t: ty, $(@$tt: ty),+) => {
        impl_all!(@$t);
        impl_all!($(@$tt), +);
    };
    (^$t: ty) => {
        impl_type!(^$t);
    };
    (^$t: ty, $(^$tt: ty),+) => {
        impl_all!(^$t);
        impl_all!($(^$tt), +);
    };
    (%$t: ty) => {
        impl_type!(%$t);
    };
    (%$t: ty, $(%$tt: ty),+) => {
        impl_all!(%$t);
        impl_all!($(%$tt), +);
    };
    (~$t: ty) => {
        impl_type!(~$t);
    };
    (~$t: ty, $(~$tt: ty),+) => {
        impl_all!(~$t);
        impl_all!($(~$tt), +);
    };
}

impl_all!(
    i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize
);
impl_all!(
    @i8, @i16, @i32, @i64, @i128, @isize, @u16, @u32, @u64, @u128, @usize
);
impl_all!(
    ^i8, ^i16, ^i32, ^i64, ^i128, ^isize, ^u16, ^u32, ^u64, ^u128, ^usize
);

macro_rules! impl_array {
    ($i: expr) => {
        impl_type!(i8, $i);
        impl_type!(i16, $i);
        impl_type!(i32, $i);
        impl_type!(i64, $i);
        impl_type!(i128, $i);
        impl_type!(isize, $i);
        impl_type!(u8, $i);
        impl_type!(u16, $i);
        impl_type!(u32, $i);
        impl_type!(u64, $i);
        impl_type!(u128, $i);
        impl_type!(usize, $i);
    };
    ($i: expr, $($ii: expr),+) => {
        impl_array!($i);
        impl_array!($($ii), +);
    };
}

// Sizes 1-32: serde provides Serialize/Deserialize, so the blanket
// impl gives them KeyEnDe automatically.
impl_array!(
    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
);

impl_array!(
    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
);

/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////