pinapod 0.4.3

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
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
use core::mem::MaybeUninit;

use crate::error::PinaPodError;

/// Returns the maximum `N` value representable by a `PFX`-byte length prefix.
///
/// Returns `0` for invalid `PFX` values, which causes `_CAP_CHECK` to fire.
pub(crate) const fn max_n_for_pfx(pfx: usize) -> usize {
	match pfx {
		1 => u8::MAX as usize,
		2 => u16::MAX as usize,
		4 => u32::MAX as usize,
		8 => usize::MAX,
		_ => 0,
	}
}

/// Alignment-one fixed-capacity UTF-8 string for a schema field.
///
/// The representation is a `PFX`-byte little-endian length followed by `N` payload
/// bytes, so `PodString<N, PFX>` occupies `PFX + N` bytes with alignment one and can be
/// read at any byte offset. Active bytes are always valid UTF-8: a reader validates them,
/// and every writer takes a `&str`.
///
/// <!-- {=podPrefixWidthRule|trim|linePrefix:"/// ":true} -->
/// `PFX` is the width in bytes of the length prefix or tag that precedes the payload, and it must be `1`, `2`, `4`, or `8`.<!-- {/podPrefixWidthRule} -->
///
/// <!-- {=podStringCapacityRule|trim|linePrefix:"/// ":true} -->
/// The capacity must fit that prefix: `String<255>` is valid, `String<256>` is not, and `PodString<256, 2>` restores it.<!-- {/podStringCapacityRule} -->
///
/// The default prefix is one byte, so the [`String`](crate::String) alias is
/// `PodString<N, 1>`. Safe accessors clamp the decoded length to `N`; call
/// [`decode_len`](Self::decode_len) for the unvalidated prefix.
#[repr(C)]
#[derive(Copy, Clone)]
pub struct PodString<const N: usize, const PFX: usize = 1> {
	len: [u8; PFX],
	pub(crate) data: [MaybeUninit<u8>; N],
}

// Compile-time: PFX must be in {1,2,4,8} and N must fit in the prefix.
impl<const N: usize, const PFX: usize> PodString<N, PFX> {
	/// Compile-time assertion that this capacity and prefix are representable.
	///
	/// The associated constant is the only way to name the check: referring to
	/// `PodString::<N, PFX>::VALID` forces the compiler to evaluate it, which rejects an
	/// unsupported prefix width or a capacity that does not fit the prefix. Generated
	/// code references it so a bad schema fails at the declaration site.
	pub const VALID: () = Self::_CAP_CHECK;
	const _CAP_CHECK: () = {
		assert!(
			PFX == 1 || PFX == 2 || PFX == 4 || PFX == 8,
			"PodString<N, PFX>: PFX must be 1, 2, 4, or 8"
		);
		assert!(
			N <= max_n_for_pfx(PFX),
			"PodString<N, PFX>: N exceeds the maximum value representable by the PFX-byte length \
			 prefix"
		);
	};
}

// Compile-time layout invariants — PFX=1 (default, backward-compat).
const _: () = assert!(core::mem::size_of::<PodString<0>>() == 1);
const _: () = assert!(core::mem::size_of::<PodString<1>>() == 2);
const _: () = assert!(core::mem::size_of::<PodString<32>>() == 33);
const _: () = assert!(core::mem::size_of::<PodString<255>>() == 256);
const _: () = assert!(core::mem::align_of::<PodString<0>>() == 1);
const _: () = assert!(core::mem::align_of::<PodString<32>>() == 1);
const _: () = assert!(core::mem::align_of::<PodString<255>>() == 1);
// Compile-time layout invariants — PFX=2.
const _: () = assert!(core::mem::size_of::<PodString<0, 2>>() == 2);
const _: () = assert!(core::mem::size_of::<PodString<100, 2>>() == 102);
const _: () = assert!(core::mem::align_of::<PodString<0, 2>>() == 1);
// Compile-time layout invariants — PFX=4.
const _: () = assert!(core::mem::size_of::<PodString<0, 4>>() == 4);
const _: () = assert!(core::mem::size_of::<PodString<100, 4>>() == 104);
const _: () = assert!(core::mem::align_of::<PodString<0, 4>>() == 1);
// Compile-time layout invariants — PFX=8.
const _: () = assert!(core::mem::size_of::<PodString<0, 8>>() == 8);
const _: () = assert!(core::mem::align_of::<PodString<0, 8>>() == 1);

impl<const N: usize, const PFX: usize> PodString<N, PFX> {
	#[inline(always)]
	pub(crate) fn try_decode_len(&self) -> Result<usize, PinaPodError> {
		#[allow(clippy::let_unit_value)]
		let _ = Self::_CAP_CHECK;
		match PFX {
			1 => Ok(self.len[0] as usize),
			2 => Ok(u16::from_le_bytes([self.len[0], self.len[1]]) as usize),
			_ => {
				let mut buf = [0u8; 8];
				buf[..PFX].copy_from_slice(&self.len);
				let raw = u64::from_le_bytes(buf);
				if raw > usize::MAX as u64 {
					Err(PinaPodError::InvalidLength)
				} else {
					Ok(raw as usize)
				}
			}
		}
	}

	/// <!-- {=podRawDecodeLenContract|trim|linePrefix:"/// ":true|indent:"\t"} -->
	/// The raw decoded length prefix.
	///
	/// This is the unvalidated prefix value. On a prefix wider than `usize` (eight-byte prefixes on 32-bit targets) the sentinel `usize::MAX` is returned. Safe accessors such as [`len`](Self::len) clamp the value to the capacity; readers reject it during validation.<!-- {/podRawDecodeLenContract} -->
	#[inline(always)]
	pub fn decode_len(&self) -> usize {
		self.try_decode_len().unwrap_or(usize::MAX)
	}

	#[inline(always)]
	fn encode_len(&mut self, n: usize) {
		#[allow(clippy::let_unit_value)]
		let _ = Self::_CAP_CHECK;
		match PFX {
			1 => self.len[0] = n as u8,
			2 => {
				let bytes = (n as u16).to_le_bytes();
				self.len[0] = bytes[0];
				self.len[1] = bytes[1];
			}
			_ => {
				let bytes = (n as u64).to_le_bytes();
				self.len.copy_from_slice(&bytes[..PFX]);
			}
		}
	}

	#[inline(always)]
	fn zero_range(&mut self, range: core::ops::Range<usize>) {
		self.data[range].fill(MaybeUninit::zeroed());
	}

	/// <!-- {=podClampedLenContract|trim|linePrefix:"/// ":true|indent:"\t"} -->
	/// The active length, clamped to the fixed capacity `N`.
	///
	/// A forged or corrupt prefix can decode above `N`; this accessor never trusts it. Callers that need to distinguish a corrupt prefix from a valid one must validate through a reader first (see [`ZcValidate`](crate::ZcValidate)).<!-- {/podClampedLenContract} -->
	#[inline(always)]
	pub fn len(&self) -> usize {
		#[allow(clippy::let_unit_value)]
		let _ = Self::_CAP_CHECK;
		self.decode_len().min(N)
	}

	/// Returns `true` when no bytes are active.
	#[inline(always)]
	pub fn is_empty(&self) -> bool {
		self.len() == 0
	}

	/// The fixed payload capacity `N`, in bytes.
	#[inline(always)]
	pub const fn capacity(&self) -> usize {
		N
	}

	/// Borrows the active bytes as a UTF-8 string slice.
	///
	/// The length is clamped to the capacity, so this never reads past `N`. Validate
	/// through a reader first when the prefix itself must be trusted.
	#[inline(always)]
	pub fn as_str(&self) -> &str {
		let len = self.len();
		unsafe {
			let bytes = core::slice::from_raw_parts(self.data.as_ptr() as *const u8, len);
			core::str::from_utf8_unchecked(bytes)
		}
	}

	/// Borrows the active bytes, excluding the prefix and the inactive capacity.
	#[inline(always)]
	pub fn as_bytes(&self) -> &[u8] {
		let len = self.len();
		unsafe { core::slice::from_raw_parts(self.data.as_ptr() as *const u8, len) }
	}

	/// Replaces the string contents.
	///
	/// # Errors
	///
	/// <!-- {=podWriteCapacityContract|trim|linePrefix:"/// ":true|indent:"\t"} -->
	/// Returns [`PinaPodError::Overflow`](crate::PinaPodError::Overflow) when the write would exceed the fixed capacity.
	///
	/// The destination keeps its previous contents, so a rejected write is a no-op.<!-- {/podWriteCapacityContract} -->
	pub fn try_set(&mut self, value: &str) -> Result<(), PinaPodError> {
		let vlen = value.len();
		if vlen > N {
			return Err(PinaPodError::Overflow);
		}
		let old_len = self.len();
		unsafe {
			core::ptr::copy_nonoverlapping(value.as_ptr(), self.data.as_mut_ptr() as *mut u8, vlen);
		}
		if vlen < old_len {
			self.zero_range(vlen..old_len);
		}
		self.encode_len(vlen);
		Ok(())
	}

	/// Appends a string slice.
	///
	/// # Errors
	///
	/// <!-- {=podWriteCapacityContract|trim|linePrefix:"/// ":true|indent:"\t"} -->
	/// Returns [`PinaPodError::Overflow`](crate::PinaPodError::Overflow) when the write would exceed the fixed capacity.
	///
	/// The destination keeps its previous contents, so a rejected write is a no-op.<!-- {/podWriteCapacityContract} -->
	pub fn try_push_str(&mut self, value: &str) -> Result<(), PinaPodError> {
		let cur = self.len();
		let vlen = value.len();
		let new_len = cur.checked_add(vlen).ok_or(PinaPodError::Overflow)?;
		if new_len > N {
			return Err(PinaPodError::Overflow);
		}
		unsafe {
			core::ptr::copy_nonoverlapping(
				value.as_ptr(),
				(self.data.as_mut_ptr() as *mut u8).add(cur),
				vlen,
			);
		}
		self.encode_len(new_len);
		Ok(())
	}

	/// Iterates the active characters.
	#[inline(always)]
	pub fn chars(&self) -> core::str::Chars<'_> {
		self.as_str().chars()
	}

	/// Iterates the active bytes.
	#[inline(always)]
	pub fn bytes(&self) -> core::str::Bytes<'_> {
		self.as_str().bytes()
	}

	/// Shortens the active bytes to at most `new_len`.
	///
	/// The new length is rounded down to the nearest UTF-8 character boundary, so the
	/// result stays a valid string.
	///
	/// <!-- {=podZeroedInactiveCapacityContract|trim|linePrefix:"/// ":true|indent:"\t"} -->
	/// Every container starts with fully initialized backing storage.
	///
	/// Operations that shorten or clear active data zero the bytes they vacate, so a later raw read or canonical serialization cannot disclose a previous value.<!-- {/podZeroedInactiveCapacityContract} -->
	#[inline(always)]
	pub fn truncate(&mut self, new_len: usize) {
		if new_len >= self.len() {
			return;
		}
		let s = self.as_str();
		let mut boundary = new_len;
		while boundary > 0 && !s.is_char_boundary(boundary) {
			boundary -= 1;
		}
		self.zero_range(boundary..self.len());
		self.encode_len(boundary);
	}

	/// Removes every active byte.
	///
	/// <!-- {=podZeroedInactiveCapacityContract|trim|linePrefix:"/// ":true|indent:"\t"} -->
	/// Every container starts with fully initialized backing storage.
	///
	/// Operations that shorten or clear active data zero the bytes they vacate, so a later raw read or canonical serialization cannot disclose a previous value.<!-- {/podZeroedInactiveCapacityContract} -->
	#[inline(always)]
	pub fn clear(&mut self) {
		self.zero_range(0..self.len());
		self.len = [0u8; PFX];
	}
}

impl<const N: usize, const PFX: usize> Default for PodString<N, PFX> {
	fn default() -> Self {
		#[allow(clippy::let_unit_value)]
		let _ = Self::_CAP_CHECK;

		Self {
			len: [0u8; PFX],
			// Typed assignments and compact copies include inactive capacity.
			data: [MaybeUninit::zeroed(); N],
		}
	}
}

impl<const N: usize, const PFX: usize> core::ops::Deref for PodString<N, PFX> {
	type Target = str;

	#[inline(always)]
	fn deref(&self) -> &str {
		self.as_str()
	}
}

impl<const N: usize, const PFX: usize> AsRef<str> for PodString<N, PFX> {
	#[inline(always)]
	fn as_ref(&self) -> &str {
		self.as_str()
	}
}

impl<const N: usize, const PFX: usize> AsRef<[u8]> for PodString<N, PFX> {
	#[inline(always)]
	fn as_ref(&self) -> &[u8] {
		self.as_bytes()
	}
}

impl<const N: usize, const PFX: usize> PartialEq for PodString<N, PFX> {
	#[inline(always)]
	fn eq(&self, other: &Self) -> bool {
		self.as_bytes() == other.as_bytes()
	}
}

impl<const N: usize, const PFX: usize> Eq for PodString<N, PFX> {}

impl<const N: usize, const PFX: usize> PartialEq<str> for PodString<N, PFX> {
	#[inline(always)]
	fn eq(&self, other: &str) -> bool {
		self.as_str() == other
	}
}

impl<const N: usize, const PFX: usize> PartialEq<&str> for PodString<N, PFX> {
	#[inline(always)]
	fn eq(&self, other: &&str) -> bool {
		self.as_str() == *other
	}
}

impl<const N: usize, const PFX: usize> core::fmt::Debug for PodString<N, PFX> {
	fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
		core::fmt::Debug::fmt(self.as_str(), f)
	}
}

impl<const N: usize, const PFX: usize> core::fmt::Display for PodString<N, PFX> {
	fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
		f.write_str(self.as_str())
	}
}

impl<const N: usize, const PFX: usize> core::hash::Hash for PodString<N, PFX> {
	fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
		self.as_str().hash(state);
	}
}

impl<const N: usize, const PFX: usize> TryFrom<&str> for PodString<N, PFX> {
	type Error = PinaPodError;

	fn try_from(value: &str) -> Result<Self, Self::Error> {
		let mut pod_str = PodString::default();
		pod_str.try_push_str(value)?;
		Ok(pod_str)
	}
}

// ---------------------------------------------------------------------------
// Kani model-checking proof harnesses
// ---------------------------------------------------------------------------

#[cfg(all(kani, feature = "kani"))]
mod kani_proofs {
	use super::*;

	#[kani::proof]
	fn encode_decode_roundtrip_pfx1() {
		let n: usize = kani::any();
		kani::assume(n <= u8::MAX as usize);
		let mut s = PodString::<255, 1>::default();
		s.encode_len(n);
		assert!(s.decode_len() == n);
	}

	#[kani::proof]
	fn encode_decode_roundtrip_pfx2() {
		let n: usize = kani::any();
		kani::assume(n <= u16::MAX as usize);
		let mut s = PodString::<255, 2>::default();
		s.encode_len(n);
		assert!(s.decode_len() == n);
	}

	#[kani::proof]
	fn encode_decode_roundtrip_pfx4() {
		let n: usize = kani::any();
		kani::assume(n <= u32::MAX as usize);
		let mut s = PodString::<255, 4>::default();
		s.encode_len(n);
		assert!(s.decode_len() == n);
	}

	#[kani::proof]
	fn len_clamp_pfx1() {
		let raw: [u8; 1] = kani::any();
		let s = PodString::<8, 1> {
			len: raw,
			data: [MaybeUninit::zeroed(); 8],
		};
		assert!(s.len() <= 8);
	}

	#[kani::proof]
	fn len_clamp_pfx2() {
		let raw: [u8; 2] = kani::any();
		let s = PodString::<8, 2> {
			len: raw,
			data: [MaybeUninit::zeroed(); 8],
		};
		assert!(s.len() <= 8);
	}

	#[kani::proof]
	#[kani::unwind(10)]
	fn set_then_as_bytes_len() {
		let vlen: usize = kani::any();
		kani::assume(vlen <= 8);
		let content = [0x41u8; 8];
		let mut s = PodString::<8>::default();
		let result = s.try_set(unsafe { core::str::from_utf8_unchecked(&content[..vlen]) });
		assert!(result.is_ok());
		assert!(s.len() == vlen);
		assert!(s.as_bytes().len() == vlen);
	}

	#[kani::proof]
	fn set_rejects_over_capacity() {
		let vlen: usize = kani::any();
		kani::assume(vlen > 4);
		kani::assume(vlen <= 8);
		let content = [0x41u8; 8];
		let mut s = PodString::<4>::default();
		assert!(
			s.try_set(unsafe { core::str::from_utf8_unchecked(&content[..vlen]) })
				.is_err()
		);
	}

	#[kani::proof]
	#[kani::unwind(10)]
	fn push_str_len_accounting() {
		let a_len: usize = kani::any();
		let b_len: usize = kani::any();
		kani::assume(a_len <= 4);
		kani::assume(b_len <= 4);
		kani::assume(a_len + b_len <= 8);

		let buf = [0x41u8; 8];
		let mut s = PodString::<8>::default();
		assert!(
			s.try_set(unsafe { core::str::from_utf8_unchecked(&buf[..a_len]) })
				.is_ok()
		);
		assert!(
			s.try_push_str(unsafe { core::str::from_utf8_unchecked(&buf[..b_len]) })
				.is_ok()
		);
		assert!(s.len() == a_len + b_len);
	}

	#[kani::proof]
	fn push_str_rejects_overflow() {
		let a_len: usize = kani::any();
		let b_len: usize = kani::any();
		kani::assume(a_len <= 4);
		kani::assume(b_len <= 8);
		kani::assume(a_len + b_len > 4);

		let buf = [0x41u8; 8];
		let mut s = PodString::<4>::default();
		assert!(
			s.try_set(unsafe { core::str::from_utf8_unchecked(&buf[..a_len]) })
				.is_ok()
		);
		assert!(
			s.try_push_str(unsafe { core::str::from_utf8_unchecked(&buf[..b_len]) })
				.is_err()
		);
		assert!(s.len() == a_len);
	}
}