pinapod 0.4.0

Zero-copy pod types with derive macros. Alignment-1 representations for zero-overhead data access.
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
//! Alignment-one integer storage for zero-copy account access.

use core::fmt;

macro_rules! define_pod_integer {
    ($name:ident, $native:ty, $size:expr) => {
        #[doc = concat!("Alignment-one storage for a schema field declared as `", stringify!($native), "`.")]
        #[doc = ""]
        #[doc = concat!("The stored value is the little-endian bit pattern in ", stringify!($size), " bytes, so `", stringify!($name), "` is `#[repr(transparent)]` over `[u8; ", stringify!($size), "]` and can be read at any byte offset. Decode with [`get`](Self::get), encode with [`set`](Self::set), and pick an overflow contract per call with the `checked_*`, `wrapping_*`, and `saturating_*` methods.")]
        #[doc = ""]
        #[doc = concat!("A schema field declared as `", stringify!($native), "` maps to this pod through the [`ZcField`](crate::ZcField) implementation, so `PinaPod` derives accept the native spelling. The methods mirror the native integer arithmetic, but every operation returns a pod value and the arithmetic itself never panics.")]
        #[repr(transparent)]
        #[derive(Copy, Clone, Default)]
        #[cfg_attr(feature = "wincode", derive(wincode::SchemaWrite, wincode::SchemaRead))]
        pub struct $name([u8; $size]);

        impl $name {
            /// Zero encoded in little-endian form.
            pub const ZERO: Self = Self([0u8; $size]);

            /// The largest value representable by the native integer.
            pub const MAX: Self = Self(<$native>::MAX.to_le_bytes());

            /// The smallest value representable by the native integer.
            pub const MIN: Self = Self(<$native>::MIN.to_le_bytes());

            /// Creates a value from its little-endian byte representation.
            #[inline(always)]
            pub const fn new_from_array(array: [u8; $size]) -> Self {
                Self(array)
            }

            /// Decodes the stored little-endian value.
            #[inline(always)]
            pub fn get(&self) -> $native {
                <$native>::from_le_bytes(self.0)
            }

            /// Replaces the stored value.
            #[inline(always)]
            pub fn set(&mut self, value: $native) {
                self.0 = value.to_le_bytes();
            }

            /// Returns `true` if the stored value is zero.
            #[inline(always)]
            pub fn is_zero(&self) -> bool {
                self.0 == [0u8; $size]
            }

            /// Adds two values, returning `None` on overflow.
            #[must_use]
            #[inline(always)]
            pub fn checked_add(self, rhs: impl Into<Self>) -> Option<Self> {
                self.get().checked_add(rhs.into().get()).map(Self::from)
            }

            /// Subtracts two values, returning `None` on overflow or underflow.
            #[must_use]
            #[inline(always)]
            pub fn checked_sub(self, rhs: impl Into<Self>) -> Option<Self> {
                self.get().checked_sub(rhs.into().get()).map(Self::from)
            }

            /// Multiplies two values, returning `None` on overflow.
            #[must_use]
            #[inline(always)]
            pub fn checked_mul(self, rhs: impl Into<Self>) -> Option<Self> {
                self.get().checked_mul(rhs.into().get()).map(Self::from)
            }

            /// Divides two values, returning `None` for an invalid result.
            ///
            /// Division by zero and signed division overflow both return `None`.
            #[must_use]
            #[inline(always)]
            pub fn checked_div(self, rhs: impl Into<Self>) -> Option<Self> {
                self.get().checked_div(rhs.into().get()).map(Self::from)
            }

            /// Adds two values with modular arithmetic.
            #[must_use]
            #[inline(always)]
            pub fn wrapping_add(self, rhs: impl Into<Self>) -> Self {
                Self::from(self.get().wrapping_add(rhs.into().get()))
            }

            /// Subtracts two values with modular arithmetic.
            #[must_use]
            #[inline(always)]
            pub fn wrapping_sub(self, rhs: impl Into<Self>) -> Self {
                Self::from(self.get().wrapping_sub(rhs.into().get()))
            }

            /// Multiplies two values with modular arithmetic.
            #[must_use]
            #[inline(always)]
            pub fn wrapping_mul(self, rhs: impl Into<Self>) -> Self {
                Self::from(self.get().wrapping_mul(rhs.into().get()))
            }

            /// Adds two values and clamps the result to the numeric bounds.
            #[must_use]
            #[inline(always)]
            pub fn saturating_add(self, rhs: impl Into<Self>) -> Self {
                Self::from(self.get().saturating_add(rhs.into().get()))
            }

            /// Subtracts two values and clamps the result to the numeric bounds.
            #[must_use]
            #[inline(always)]
            pub fn saturating_sub(self, rhs: impl Into<Self>) -> Self {
                Self::from(self.get().saturating_sub(rhs.into().get()))
            }

            /// Multiplies two values and clamps the result to the numeric bounds.
            #[must_use]
            #[inline(always)]
            pub fn saturating_mul(self, rhs: impl Into<Self>) -> Self {
                Self::from(self.get().saturating_mul(rhs.into().get()))
            }
        }

        impl From<$native> for $name {
            #[inline(always)]
            fn from(value: $native) -> Self {
                Self(value.to_le_bytes())
            }
        }

        impl From<$name> for $native {
            #[inline(always)]
            fn from(value: $name) -> Self {
                value.get()
            }
        }

        impl PartialEq for $name {
            #[inline(always)]
            fn eq(&self, other: &Self) -> bool {
                self.0 == other.0
            }
        }

        impl Eq for $name {}

        impl PartialEq<$native> for $name {
            #[inline(always)]
            fn eq(&self, other: &$native) -> bool {
                self.get() == *other
            }
        }

        impl PartialOrd for $name {
            #[inline(always)]
            fn partial_cmp(&self, other: &Self) -> Option<core::cmp::Ordering> {
                Some(self.cmp(other))
            }
        }

        impl Ord for $name {
            #[inline(always)]
            fn cmp(&self, other: &Self) -> core::cmp::Ordering {
                self.get().cmp(&other.get())
            }
        }

        impl PartialOrd<$native> for $name {
            #[inline(always)]
            fn partial_cmp(&self, other: &$native) -> Option<core::cmp::Ordering> {
                self.get().partial_cmp(other)
            }
        }

        impl core::hash::Hash for $name {
            fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
                self.get().hash(state);
            }
        }

        impl fmt::Binary for $name {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                fmt::Binary::fmt(&self.get(), f)
            }
        }

        impl fmt::LowerHex for $name {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                fmt::LowerHex::fmt(&self.get(), f)
            }
        }

        impl fmt::UpperHex for $name {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                fmt::UpperHex::fmt(&self.get(), f)
            }
        }

        impl fmt::Display for $name {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                self.get().fmt(f)
            }
        }

        impl fmt::Debug for $name {
            fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                fmt::Debug::fmt(&self.get(), f)
            }
        }

        impl AsRef<[u8]> for $name {
            #[inline(always)]
            fn as_ref(&self) -> &[u8] {
                &self.0
            }
        }
    };
}

macro_rules! define_pod_signed {
    ($name:ident, $native:ty, $size:expr) => {
        define_pod_integer!($name, $native, $size);

        impl $name {
            /// Negates the value, returning `None` if the result is not representable.
            #[must_use]
            #[inline(always)]
            pub fn checked_neg(self) -> Option<Self> {
                self.get().checked_neg().map(Self::from)
            }

            /// Negates the value with modular arithmetic.
            #[must_use]
            #[inline(always)]
            pub fn wrapping_neg(self) -> Self {
                Self::from(self.get().wrapping_neg())
            }
        }
    };
}

define_pod_integer!(PodU128, u128, 16);
define_pod_integer!(PodU64, u64, 8);
define_pod_integer!(PodU32, u32, 4);
define_pod_integer!(PodU16, u16, 2);
define_pod_signed!(PodI128, i128, 16);
define_pod_signed!(PodI64, i64, 8);
define_pod_signed!(PodI32, i32, 4);
define_pod_signed!(PodI16, i16, 2);

macro_rules! assert_pod_layout {
    ($name:ident, $size:expr) => {
        const _: () = assert!(core::mem::align_of::<$name>() == 1);
        const _: () = assert!(core::mem::size_of::<$name>() == $size);
    };
}

assert_pod_layout!(PodU128, 16);
assert_pod_layout!(PodU64, 8);
assert_pod_layout!(PodU32, 4);
assert_pod_layout!(PodU16, 2);
assert_pod_layout!(PodI128, 16);
assert_pod_layout!(PodI64, 8);
assert_pod_layout!(PodI32, 4);
assert_pod_layout!(PodI16, 2);

#[cfg(all(kani, feature = "kani"))]
mod kani_proofs {
    macro_rules! prove_pod_integer {
        ($pod:ident, $native:ty, $module:ident) => {
            mod $module {
                use super::super::*;

                #[kani::proof]
                fn roundtrip() {
                    let value: $native = kani::any();
                    let pod = $pod::from(value);

                    assert!(pod.get() == value);
                    assert!(<$native>::from(pod) == value);
                }

                #[kani::proof]
                fn ordering_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod_left = $pod::from(left);
                    let pod_right = $pod::from(right);

                    assert!(pod_left.cmp(&pod_right) == left.cmp(&right));
                    assert!((pod_left == right) == (left == right));
                }

                #[kani::proof]
                fn zero_matches_native() {
                    let value: $native = kani::any();

                    assert!($pod::from(value).is_zero() == (value == 0));
                }

                // Addition and subtraction share one harness; they are cheap
                // relative to multiplication and division, whose solver cost
                // grows far faster than the number of assertions. Splitting the
                // expensive operations into their own harnesses keeps each
                // verification condition small, so the wide integer proofs stay
                // solvable instead of accumulating one large formula.
                #[kani::proof]
                #[kani::solver(cvc5)]
                fn checked_add_sub_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod = $pod::from(left);

                    assert!(
                        pod.checked_add(right).map(|value| value.get()) == left.checked_add(right)
                    );
                    assert!(
                        pod.checked_sub(right).map(|value| value.get()) == left.checked_sub(right)
                    );
                }

                #[kani::proof]
                #[kani::solver(cvc5)]
                fn checked_mul_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod = $pod::from(left);

                    assert!(
                        pod.checked_mul(right).map(|value| value.get()) == left.checked_mul(right)
                    );
                }

                #[kani::proof]
                #[kani::solver(cvc5)]
                fn checked_div_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod = $pod::from(left);

                    assert!(
                        pod.checked_div(right).map(|value| value.get()) == left.checked_div(right)
                    );
                }

                #[kani::proof]
                #[kani::solver(cvc5)]
                fn wrapping_add_sub_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod = $pod::from(left);

                    assert!(pod.wrapping_add(right).get() == left.wrapping_add(right));
                    assert!(pod.wrapping_sub(right).get() == left.wrapping_sub(right));
                }

                #[kani::proof]
                #[kani::solver(cvc5)]
                fn wrapping_mul_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod = $pod::from(left);

                    assert!(pod.wrapping_mul(right).get() == left.wrapping_mul(right));
                }

                #[kani::proof]
                #[kani::solver(cvc5)]
                fn saturating_add_sub_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod = $pod::from(left);

                    assert!(pod.saturating_add(right).get() == left.saturating_add(right));
                    assert!(pod.saturating_sub(right).get() == left.saturating_sub(right));
                }

                #[kani::proof]
                #[kani::solver(cvc5)]
                fn saturating_mul_matches_native() {
                    let left: $native = kani::any();
                    let right: $native = kani::any();
                    let pod = $pod::from(left);

                    assert!(pod.saturating_mul(right).get() == left.saturating_mul(right));
                }
            }
        };
    }

    macro_rules! prove_pod_signed {
        ($pod:ident, $native:ty, $module:ident) => {
            mod $module {
                use super::super::*;

                #[kani::proof]
                fn explicit_negation_matches_native() {
                    let value: $native = kani::any();
                    let pod = $pod::from(value);

                    assert!(pod.checked_neg().map(|value| value.get()) == value.checked_neg());
                    assert!(pod.wrapping_neg().get() == value.wrapping_neg());
                }
            }
        };
    }

    prove_pod_integer!(PodU16, u16, u16_proofs);
    prove_pod_integer!(PodU32, u32, u32_proofs);
    prove_pod_integer!(PodU64, u64, u64_proofs);
    prove_pod_integer!(PodU128, u128, u128_proofs);
    prove_pod_integer!(PodI16, i16, i16_proofs);
    prove_pod_integer!(PodI32, i32, i32_proofs);
    prove_pod_integer!(PodI64, i64, i64_proofs);
    prove_pod_integer!(PodI128, i128, i128_proofs);

    prove_pod_signed!(PodI16, i16, signed_i16_proofs);
    prove_pod_signed!(PodI32, i32, signed_i32_proofs);
    prove_pod_signed!(PodI64, i64, signed_i64_proofs);
    prove_pod_signed!(PodI128, i128, signed_i128_proofs);
}