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
use ::core::{convert::Infallible, fmt::Debug, hash::Hash};
use ::ptr_meta::Pointee;
use ::situ::DropRaw;

/// A selection of types to use in place of `isize` and `usize`.
pub trait Basis {
    /// The type to use in place of `isize`.
    type Isize: Copy + DropRaw + Send + Sync + Ord + Hash + Unpin;
    /// The type to use in place of `usize`.
    type Usize: Copy + DropRaw + Send + Sync + Ord + Hash + Unpin;
    /// An error occurred during type conversion from a native `isize` or
    /// `usize`.
    type FromNativeError: Debug;
    /// An error occurred during type conversion to a native `isize` or `usize`.
    type ToNativeError: Debug;

    /// Returns the `Isize` corresponding to the given `isize`, or `Err` if the
    /// conversion fails.
    fn from_native_isize(
        value: isize,
    ) -> Result<Self::Isize, Self::FromNativeError>;

    /// Returns the `isize` corresponding to the given `Isize`, or `Err` if the
    /// conversion fails.
    fn to_native_isize(
        value: Self::Isize,
    ) -> Result<isize, Self::ToNativeError>;

    /// Returns the `Usize` corresponding to the given `usize`, or `Err` if the
    /// conversion fails.
    fn from_native_usize(
        value: usize,
    ) -> Result<Self::Usize, Self::FromNativeError>;

    /// Returns the `usize` corresponding to the given `Usize`, or `Err` if the
    /// conversion fails.
    fn to_native_usize(
        value: Self::Usize,
    ) -> Result<usize, Self::ToNativeError>;
}

/// A `Pointee` with metadata that changes with a choice of basis.
pub trait BasisPointee<B: Basis>: Pointee {
    /// The metadata associated with the pointee in the chosen basis.
    type BasisMetadata: Copy + Send + Sync + Ord + Hash + Unpin;
    /// An error occurred while converting metadata from the native
    /// representation.
    type FromNativeError: Debug;
    /// An error occurred while converting metadata to the native
    /// representation.
    type ToNativeError: Debug;

    /// Returns the pointer metadata in `B` corresponding to the given native
    /// pointer metadata, or `Err` if the conversion failed.
    fn from_native_metadata(
        metadata: Self::Metadata,
    ) -> Result<Self::BasisMetadata, Self::FromNativeError>;

    /// Returns the native pointer metadata corresponding to the given pointer
    /// metadata in `B`, or `Err` if the conversion failed.
    fn to_native_metadata(
        metadata: Self::BasisMetadata,
    ) -> Result<Self::Metadata, Self::ToNativeError>;
}

impl<T, B: Basis> BasisPointee<B> for T {
    type BasisMetadata = ();
    type FromNativeError = Infallible;
    type ToNativeError = Infallible;

    #[inline]
    fn from_native_metadata(
        _: Self::Metadata,
    ) -> Result<Self::BasisMetadata, Self::FromNativeError> {
        Ok(())
    }

    #[inline]
    fn to_native_metadata(
        _: Self::BasisMetadata,
    ) -> Result<Self::Metadata, Self::ToNativeError> {
        Ok(())
    }
}

impl<T, B: Basis> BasisPointee<B> for [T] {
    type BasisMetadata = B::Usize;
    type FromNativeError = B::FromNativeError;
    type ToNativeError = B::ToNativeError;

    #[inline]
    fn from_native_metadata(
        metadata: Self::Metadata,
    ) -> Result<Self::BasisMetadata, Self::FromNativeError> {
        B::from_native_usize(metadata)
    }

    #[inline]
    fn to_native_metadata(
        metadata: Self::BasisMetadata,
    ) -> Result<Self::Metadata, Self::ToNativeError> {
        B::to_native_usize(metadata)
    }
}

impl<B: Basis> BasisPointee<B> for str {
    type BasisMetadata = B::Usize;
    type FromNativeError = B::FromNativeError;
    type ToNativeError = B::ToNativeError;

    #[inline]
    fn from_native_metadata(
        metadata: Self::Metadata,
    ) -> Result<Self::BasisMetadata, Self::FromNativeError> {
        B::from_native_usize(metadata)
    }

    #[inline]
    fn to_native_metadata(
        metadata: Self::BasisMetadata,
    ) -> Result<Self::Metadata, Self::ToNativeError> {
        B::to_native_usize(metadata)
    }
}

#[cfg(feature = "basis_16")]
macro_rules! choose_basis {
    ($b16:ty, $b32:ty, $b64:ty) => {
        $b16
    };
}

#[cfg(feature = "basis_32")]
macro_rules! choose_basis {
    ($b16:ty, $b32:ty, $b64:ty) => {
        $b32
    };
}

#[cfg(feature = "basis_64")]
macro_rules! choose_basis {
    ($b16:ty, $b32:ty, $b64:ty) => {
        $b64
    };
}

#[cfg(any(
    all(target_pointer_width = "32", feature = "basis_16"),
    all(target_pointer_width = "64", not(feature = "basis_64")),
))]
macro_rules! compare_basis_to_pointer_width {
    (
        lt { $($lts:item)* }
        le { $($les:item)* }
        ge { $($ges:item)* }
        gt { $($gts:item)* }
    ) => {
        $($lts)* $($les)*
    }
}

#[cfg(any(
    all(target_pointer_width = "16", feature = "basis_16"),
    all(target_pointer_width = "32", feature = "basis_32"),
    all(target_pointer_width = "64", feature = "basis_64"),
))]
macro_rules! compare_basis_to_pointer_width {
    (
        lt { $($lts:item)* }
        le { $($les:item)* }
        ge { $($ges:item)* }
        gt { $($gts:item)* }
    ) => {
        $($($les)*)? $($($ges)*)?
    }
}

#[cfg(any(
    all(target_pointer_width = "16", not(feature = "basis_16")),
    all(target_pointer_width = "32", feature = "basis_64"),
))]
macro_rules! compare_basis_to_pointer_width {
    (
        lt { $($lts:item)* }
        le { $($les:item)* }
        ge { $($ges:item)* }
        gt { $($gts:item)* }
    ) => {
        $($ges)* $($gts)*
    }
}

/// The default [`Basis`].
///
/// The settings this basis uses will change depending on the enabled feature
/// flags.
pub struct DefaultBasis;

impl Basis for DefaultBasis {
    type Isize = choose_basis!(
        crate::primitive::I16,
        crate::primitive::I32,
        crate::primitive::I64
    );
    type Usize = choose_basis!(
        crate::primitive::U16,
        crate::primitive::U32,
        crate::primitive::U64
    );

    compare_basis_to_pointer_width! {
        lt {
            type FromNativeError = ::core::num::TryFromIntError;

            #[inline]
            fn from_native_isize(
                value: isize,
            ) -> Result<Self::Isize, Self::FromNativeError> {
                Ok(Self::Isize::from_ne(value.try_into()?))
            }

            #[inline]
            fn from_native_usize(
                value: usize,
            ) -> Result<Self::Usize, Self::FromNativeError> {
                Ok(Self::Usize::from_ne(value.try_into()?))
            }
        }
        le {
            type ToNativeError = ::core::convert::Infallible;

            #[inline]
            fn to_native_isize(
                value: Self::Isize,
            ) -> Result<isize, Self::ToNativeError> {
                // TODO const_num_from_num: Use `isize::TryFrom` when const.
                #[allow(clippy::as_conversions)]
                Ok(value.to_ne() as isize)
            }

            #[inline]
            fn to_native_usize(
                value: Self::Usize,
            ) -> Result<usize, Self::ToNativeError> {
                // TODO const_num_from_num: Use `usize::TryFrom` when const.
                #[allow(clippy::as_conversions)]
                Ok(value.to_ne() as usize)
            }
        }
        ge {
            type FromNativeError = ::core::convert::Infallible;

            #[inline]
            fn from_native_isize(
                value: isize,
            ) -> Result<Self::Isize, Self::FromNativeError> {
                // TODO const_num_from_num: Use `isize::TryInto` when const.
                #[allow(clippy::as_conversions)]
                Ok(Self::Isize::from_ne(value as Self::Isize))
            }

            #[inline]
            fn from_native_usize(
                value: isize,
            ) -> Result<Self::Usize, Self::FromNativeError> {
                // TODO const_num_from_num: Use `usize::TryInto` when const.
                #[allow(clippy::as_conversions)]
                Ok(Self::Usize::from_ne(value as Self::Usize))
            }
        }
        gt {
            type ToNativeError = ::core::num::TryFromIntError;

            #[inline]
            fn to_native_isize(
                value: Self::Isize,
            ) -> Result<isize, Self::ToNativeError> {
                Ok(value.to_ne().try_into()?)
            }

            #[inline]
            fn to_native_usize(
                value: Self::Usize,
            ) -> Result<usize, Self::ToNativeError> {
                Ok(value.to_ne().try_into()?)
            }
        }
    }
}