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
#![allow(clippy::use_self)]

#[cfg(not(any(
    target_pointer_width = "16",
    target_pointer_width = "32",
    target_pointer_width = "64",
)))]
compile_error!("unsupported pointer width");

use core::convert::Infallible;
use core::fmt::{self, Display};

pub fn checked_cast<T, U>(src: T) -> Result<U, T::Error>
where
    T: CheckedCast<U>,
{
    src.checked_cast()
}

pub fn wrapping_cast<T, U>(src: T) -> U
where
    T: WrappingCast<U>,
{
    src.wrapping_cast()
}

pub fn extending_cast<T, U>(src: T) -> U
where
    T: ExtendingCast<U>,
{
    src.extending_cast()
}

pub fn truncating_cast<T, U>(src: T) -> U
where
    T: TruncatingCast<U>,
{
    src.truncating_cast()
}

pub trait CheckedCast<T> {
    type Error;
    fn checked_cast(self) -> Result<T, Self::Error>;
}

pub trait WrappingCast<T> {
    fn wrapping_cast(self) -> T;
}

pub trait ExtendingCast<T> {
    fn extending_cast(self) -> T;
}

pub trait TruncatingCast<T> {
    fn truncating_cast(self) -> T;
}

#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum NumCastError {
    Overflow,
    Underflow,
    Infinite,
    NaN,
    Fractional,
}

impl Display for NumCastError {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        let msg = match *self {
            Self::Overflow => "Overflow during numeric conversion",
            Self::Underflow => "Underflow during numeric conversion",
            Self::Fractional => "Cannot store fractional value without loss",
            Self::Infinite => "Cannot store infinite value in finite type",
            Self::NaN => "Cannot store NaN in type which does not support it",
        };

        f.write_str(msg)
    }
}

#[cfg(feature = "std")]
impl std::error::Error for NumCastError {}

macro_rules! check {
    (upper $val: expr, $rhs: ty) => {
        if $val > <$rhs>::MAX as Self {
            return Err(NumCastError::Overflow);
        }
    };
    (lower $val: expr, $rhs: ty) => {
        if $val < <$rhs>::MIN as Self {
            return Err(NumCastError::Underflow);
        }
    };
    (both $val: expr, $rhs: ty) => {
        check!(upper $val, $rhs);
        check!(lower $val, $rhs);
    };
    (infallible $val: expr, $rhs: ty) => {}
}

macro_rules! checked_cast{
    ($lhs:ty => $rhs:ty: upper) => {
        impl CheckedCast<$rhs> for $lhs {
            type Error = NumCastError;
            fn checked_cast(self) -> Result<$rhs, Self::Error> {
                check!(upper self, $rhs);
                Ok(self as $rhs)
            }
        }
    };
    ($lhs:ty => $rhs:ty: lower) => {
        impl CheckedCast<$rhs> for $lhs {
            type Error = NumCastError;
            fn checked_cast(self) -> Result<$rhs, Self::Error> {
                check!(lower self, $rhs);
                Ok(self as $rhs)
            }
        }
    };
    ($lhs:ty => $rhs:ty: both) => {
        impl CheckedCast<$rhs> for $lhs {
            type Error = NumCastError;
            fn checked_cast(self) -> Result<$rhs, Self::Error> {
                check!(both self, $rhs);
                Ok(self as $rhs)
            }
        }
    };
    ($lhs:ty => $rhs:ty: infallible ) => {
        impl CheckedCast<$rhs> for $lhs {
            type Error = Infallible;
            fn checked_cast(self) -> Result<$rhs, Self::Error> {
                Ok(self as $rhs)
            }
        }
    };

    ($lhs: ty => $rhs: ty: 16:$c16:tt, 32:$c32:tt, 64:$c64:tt) => {
        impl CheckedCast<$rhs> for $lhs {
            type Error = NumCastError;

            fn checked_cast(self) -> Result<$rhs, Self::Error> {
                #[cfg(target_pointer_width = "16")]
                {
                    check!($c16 self, $rhs);
                }
                #[cfg(target_pointer_width = "32")]
                {
                    check!($c32 self, $rhs);
                }
                #[cfg(target_pointer_width = "64")]
                {
                    check!($c64 self, $rhs);
                }
                Ok(self as $rhs)
            }
        }
    };
    (f32 => $rhs: ty) => {
        impl CheckedCast<$rhs> for f32 {
            type Error = NumCastError;

            fn checked_cast(self) -> Result<$rhs, Self::Error> {
                if self.is_nan() {
                    return Err(NumCastError::NaN);
                }
                if self.is_infinite() {
                    return Err(NumCastError::Infinite);
                }
                if self.trunc().to_bits() != self.to_bits() {
                    return Err(NumCastError::Fractional);
                }
                check!(both self, $rhs);
                Ok(self as $rhs)
            }
        }
    };
    (f64 => $rhs: ty) => {
        impl CheckedCast<$rhs> for f64 {
            type Error = NumCastError;

            fn checked_cast(self) -> Result<$rhs, Self::Error> {
                if self.is_nan() {
                    return Err(NumCastError::NaN);
                }
                if self.is_infinite() {
                    return Err(NumCastError::Infinite);
                }
                if self.trunc().to_bits() != self.to_bits() {
                    return Err(NumCastError::Fractional);
                }
                check!(both self, $rhs);
                Ok(self as $rhs)
            }
        }
    }
}

// u8
checked_cast!(u8 => u8     : infallible  );
checked_cast!(u8 => u16    : infallible  );
checked_cast!(u8 => u32    : infallible  );
checked_cast!(u8 => u64    : infallible  );
checked_cast!(u8 => u128   : infallible  );
checked_cast!(u8 => i8     : upper       );
checked_cast!(u8 => i16    : infallible  );
checked_cast!(u8 => i32    : infallible  );
checked_cast!(u8 => i64    : infallible  );
checked_cast!(u8 => i128   : infallible  );
checked_cast!(u8 => usize  : infallible  );
checked_cast!(u8 => isize  : infallible  );
checked_cast!(u8 => f32    : infallible  );
checked_cast!(u8 => f64    : infallible  );

// u16
checked_cast!(u16 => u8    : upper       );
checked_cast!(u16 => u16   : infallible  );
checked_cast!(u16 => u32   : infallible  );
checked_cast!(u16 => u64   : infallible  );
checked_cast!(u16 => u128  : infallible  );
checked_cast!(u16 => i8    : upper       );
checked_cast!(u16 => i16   : upper       );
checked_cast!(u16 => i32   : infallible  );
checked_cast!(u16 => i64   : infallible  );
checked_cast!(u16 => i128  : infallible  );
checked_cast!(u16 => usize : infallible  );
checked_cast!(u16 => isize : 16: upper, 32: infallible, 64: infallible       );
checked_cast!(u16 => f32   : infallible  );
checked_cast!(u16 => f64   : infallible  );

// u32
checked_cast!(u32 => u8    : upper       );
checked_cast!(u32 => u16   : upper       );
checked_cast!(u32 => u32   : infallible  );
checked_cast!(u32 => u64   : infallible  );
checked_cast!(u32 => u128  : infallible  );
checked_cast!(u32 => i8    : upper       );
checked_cast!(u32 => i16   : upper       );
checked_cast!(u32 => i32   : upper       );
checked_cast!(u32 => i64   : infallible  );
checked_cast!(u32 => i128  : infallible  );
checked_cast!(u32 => usize : 16: upper, 32: infallible, 64: infallible       );
checked_cast!(u32 => isize : 16: upper, 32: upper     , 64: infallible       );

// u64
checked_cast!(u64 => u8    : upper       );
checked_cast!(u64 => u16   : upper       );
checked_cast!(u64 => u32   : upper       );
checked_cast!(u64 => u64   : infallible  );
checked_cast!(u64 => u128  : infallible  );
checked_cast!(u64 => i8    : upper       );
checked_cast!(u64 => i16   : upper       );
checked_cast!(u64 => i32   : upper       );
checked_cast!(u64 => i64   : upper       );
checked_cast!(u64 => i128  : infallible  );
checked_cast!(u64 => usize : 16: upper, 32: upper     , 64: infallible       );
checked_cast!(u64 => isize : upper       );

// u128
checked_cast!(u128 => u8    : upper       );
checked_cast!(u128 => u16   : upper       );
checked_cast!(u128 => u32   : upper       );
checked_cast!(u128 => u64   : upper       );
checked_cast!(u128 => u128  : infallible  );
checked_cast!(u128 => i8    : upper       );
checked_cast!(u128 => i16   : upper       );
checked_cast!(u128 => i32   : upper       );
checked_cast!(u128 => i64   : upper       );
checked_cast!(u128 => i128  : upper       );
checked_cast!(u128 => usize : upper       );
checked_cast!(u128 => isize : upper       );

// i8
checked_cast!(i8 => u8     : lower       );
checked_cast!(i8 => u16    : lower       );
checked_cast!(i8 => u32    : lower       );
checked_cast!(i8 => u64    : lower       );
checked_cast!(i8 => u128   : lower       );
checked_cast!(i8 => i8     : infallible  );
checked_cast!(i8 => i16    : infallible  );
checked_cast!(i8 => i32    : infallible  );
checked_cast!(i8 => i64    : infallible  );
checked_cast!(i8 => i128   : infallible  );
checked_cast!(i8 => usize  : lower       );
checked_cast!(i8 => isize  : infallible  );
checked_cast!(i8 => f32   : infallible  );
checked_cast!(i8 => f64   : infallible  );

// i16
checked_cast!(i16 => u8    : both        );
checked_cast!(i16 => u16   : lower       );
checked_cast!(i16 => u32   : lower       );
checked_cast!(i16 => u64   : lower       );
checked_cast!(i16 => u128  : lower       );
checked_cast!(i16 => i8    : both        );
checked_cast!(i16 => i16   : infallible  );
checked_cast!(i16 => i32   : infallible  );
checked_cast!(i16 => i64   : infallible  );
checked_cast!(i16 => i128  : infallible  );
checked_cast!(i16 => usize : lower       );
checked_cast!(i16 => isize : infallible  );
checked_cast!(i16 => f32   : infallible  );
checked_cast!(i16 => f64   : infallible  );

// i32
checked_cast!(i32 => u8    : both        );
checked_cast!(i32 => u16   : both        );
checked_cast!(i32 => u32   : lower       );
checked_cast!(i32 => u64   : lower       );
checked_cast!(i32 => u128  : lower       );
checked_cast!(i32 => i8    : both        );
checked_cast!(i32 => i16   : both        );
checked_cast!(i32 => i32   : infallible  );
checked_cast!(i32 => i64   : infallible  );
checked_cast!(i32 => i128  : infallible  );
checked_cast!(i32 => usize : 16: both,   32: lower      , 64: lower             );
checked_cast!(i32 => isize : 16: both,   32: infallible , 64: infallible        );

// i64
checked_cast!(i64 => u8    : both        );
checked_cast!(i64 => u16   : both        );
checked_cast!(i64 => u32   : both        );
checked_cast!(i64 => u64   : lower       );
checked_cast!(i64 => u128  : lower       );
checked_cast!(i64 => i8    : both        );
checked_cast!(i64 => i16   : both        );
checked_cast!(i64 => i32   : both        );
checked_cast!(i64 => i64   : infallible  );
checked_cast!(i64 => i128  : infallible  );
checked_cast!(i64 => usize : 16: both,   32: both      , 64: lower             );
checked_cast!(i64 => isize : 16: both,   32: both      , 64: infallible        );

// i128
checked_cast!(i128 => u8   : both        );
checked_cast!(i128 => u16  : both        );
checked_cast!(i128 => u32  : both        );
checked_cast!(i128 => u64  : both        );
checked_cast!(i128 => u128 : lower       );
checked_cast!(i128 => i8   : both        );
checked_cast!(i128 => i16  : both        );
checked_cast!(i128 => i32  : both        );
checked_cast!(i128 => i64  : both        );
checked_cast!(i128 => i128 : infallible  );
checked_cast!(i128 => usize: both        );
checked_cast!(i128 => isize: both        );

// usize
checked_cast!(usize => u8   : upper                                              );
checked_cast!(usize => u16  : 16: infallible, 32: upper     , 64: upper          );
checked_cast!(usize => u32  : 16: infallible, 32: infallible, 64: upper          );
checked_cast!(usize => u64  : 16: infallible, 32: infallible, 64: infallible     );
checked_cast!(usize => u128 : 16: infallible, 32: infallible, 64: infallible     );
checked_cast!(usize => i8   : upper                                              );
checked_cast!(usize => i16  : upper                                              );
checked_cast!(usize => i32  : 16: infallible, 32: upper     , 64: upper          );
checked_cast!(usize => i64  : 16: infallible, 32: infallible, 64: upper          );
checked_cast!(usize => i128 : 16: infallible, 32: infallible, 64: infallible     );
checked_cast!(usize => usize: infallible                                         );
checked_cast!(usize => isize: upper                                              );

// isize
checked_cast!(isize => u8   : both                                               );
checked_cast!(isize => u16  : 16: lower     , 32: both       , 64: both          );
checked_cast!(isize => u32  : 16: lower     , 32: lower      , 64: both          );
checked_cast!(isize => u64  : lower                                              );
checked_cast!(isize => u128 : lower                                              );
checked_cast!(isize => i8   : both                                               );
checked_cast!(isize => i16  : 16: infallible, 32: both      , 64: both           );
checked_cast!(isize => i32  : 16: infallible, 32: infallible, 64: both           );
checked_cast!(isize => i64  : 16: infallible, 32: infallible, 64: infallible     );
checked_cast!(isize => i128 : 16: infallible, 32: infallible, 64: infallible     );
checked_cast!(isize => usize: lower                                              );
checked_cast!(isize => isize: infallible                                         );

// f32
checked_cast!(f32 => u8);
checked_cast!(f32 => u16);
checked_cast!(f32 => i8);
checked_cast!(f32 => i16);
checked_cast!(f32 => f32: infallible);
checked_cast!(f32 => f64: infallible);

// f64
checked_cast!(f64 => u8);
checked_cast!(f64 => u16);
checked_cast!(f64 => i8);
checked_cast!(f64 => i16);
checked_cast!(f64 => f64: infallible);

macro_rules! wrapping_cast {
    ($lhs: ty=>$rhs:ty) => {
        impl WrappingCast<$rhs> for $lhs {
            fn wrapping_cast(self) -> $rhs {
                self as $rhs
            }
        }
    };
}

wrapping_cast!(u8    => i8   );
wrapping_cast!(u16   => i16  );
wrapping_cast!(u32   => i32  );
wrapping_cast!(u64   => i64  );
wrapping_cast!(u128  => i128 );
wrapping_cast!(usize => isize);
wrapping_cast!(i8    => u8   );
wrapping_cast!(i16   => u16  );
wrapping_cast!(i32   => u32  );
wrapping_cast!(i64   => u64  );
wrapping_cast!(i128  => u128 );
wrapping_cast!(isize => usize);

macro_rules! extending_cast {
    ($lhs: ty=>$rhs:ty) => {
        impl ExtendingCast<$rhs> for $lhs {
            fn extending_cast(self) -> $rhs {
                self as $rhs
            }
        }
    };
}

extending_cast!(u8  => u16  );
extending_cast!(u8  => u32  );
extending_cast!(u8  => u64  );
extending_cast!(u8  => u128 );
extending_cast!(u16 => u32  );
extending_cast!(u16 => u64  );
extending_cast!(u16 => u128 );
extending_cast!(u32 => u64  );
extending_cast!(u32 => u128 );
extending_cast!(u64 => u128 );
extending_cast!(i8  => i16  );
extending_cast!(i8  => i32  );
extending_cast!(i8  => i64  );
extending_cast!(i8  => i128 );
extending_cast!(i16 => i32  );
extending_cast!(i16 => i64  );
extending_cast!(i16 => i128 );
extending_cast!(i32 => i64  );
extending_cast!(i32 => i128 );
extending_cast!(i64 => i128 );

macro_rules! truncating_cast {
    ($lhs: ty=>$rhs:ty) => {
        impl TruncatingCast<$rhs> for $lhs {
            fn truncating_cast(self) -> $rhs {
                self as $rhs
            }
        }
    };
}

truncating_cast!(u16  => u8  );
truncating_cast!(u32  => u8  );
truncating_cast!(u64  => u8  );
truncating_cast!(u128 => u8  );
truncating_cast!(u32  => u16 );
truncating_cast!(u64  => u16 );
truncating_cast!(u128 => u16 );
truncating_cast!(u64  => u32 );
truncating_cast!(u128 => u32 );
truncating_cast!(u128 => u64 );
truncating_cast!(i16  => i8  );
truncating_cast!(i32  => i8  );
truncating_cast!(i64  => i8  );
truncating_cast!(i128 => i8  );
truncating_cast!(i32  => i16 );
truncating_cast!(i64  => i16 );
truncating_cast!(i128 => i16 );
truncating_cast!(i64  => i32 );
truncating_cast!(i128 => i32 );
truncating_cast!(i128 => i64 );