fidl_next_codec/wire/
ptr.rs1use core::mem::MaybeUninit;
6
7use munge::munge;
8
9use crate::{DecodeError, Slot, WireU64};
10
11#[repr(C, align(8))]
13pub union WirePointer<T> {
14 encoded: WireU64,
15 decoded: *mut T,
16}
17
18impl<T> WirePointer<T> {
19 pub fn is_encoded_present(slot: Slot<'_, Self>) -> Result<bool, DecodeError> {
21 munge!(let Self { encoded } = slot);
22 match **encoded {
23 0 => Ok(false),
24 u64::MAX => Ok(true),
25 x => Err(DecodeError::InvalidPointerPresence(x)),
26 }
27 }
28
29 pub fn encode_present(out: &mut MaybeUninit<Self>) {
31 munge!(let Self { encoded } = out);
32 encoded.write(WireU64(u64::MAX));
33 }
34
35 pub fn encode_absent(out: &mut MaybeUninit<Self>) {
37 munge!(let Self { encoded } = out);
38 encoded.write(WireU64(0));
39 }
40
41 pub fn set_decoded(slot: Slot<'_, Self>, ptr: *mut T) {
43 munge!(let Self { mut decoded } = slot);
44 unsafe {
47 *decoded.as_mut_ptr() = ptr;
48 }
49 }
50
51 pub fn as_ptr(&self) -> *mut T {
53 unsafe { self.decoded }
54 }
55}