deprecate sealed module

This commit is contained in:
Trevor Spiteri 2019-08-16 16:54:16 +02:00
parent 875305bdc3
commit 87390efaa3
6 changed files with 178 additions and 193 deletions

View File

@ -14,8 +14,7 @@
// <https://opensource.org/licenses/MIT>.
use crate::{
helpers::{FloatHelper, IntHelper},
sealed::{FloatKind, Widest},
helpers::{FloatHelper, FloatKind, IntHelper, Widest},
traits::Fixed,
types::{LeEqU128, LeEqU16, LeEqU32, LeEqU64, LeEqU8},
FixedI128, FixedI16, FixedI32, FixedI64, FixedI8, FixedU128, FixedU16, FixedU32, FixedU64,

View File

@ -13,10 +13,7 @@
// <https://www.apache.org/licenses/LICENSE-2.0> and
// <https://opensource.org/licenses/MIT>.
use crate::{
helpers::IntHelper,
sealed::{FloatKind, ToFixedHelper, ToFloatHelper, Widest},
};
use crate::helpers::{FloatKind, IntHelper, ToFixedHelper, ToFloatHelper, Widest};
use core::cmp::Ordering;
#[cfg(feature = "f16")]
use half::f16;

View File

@ -13,4 +13,147 @@
// <https://www.apache.org/licenses/LICENSE-2.0> and
// <https://opensource.org/licenses/MIT>.
pub(crate) use crate::{float_helper::FloatHelper, int_helper::IntHelper};
pub use crate::{float_helper::FloatHelper, int_helper::IntHelper};
use crate::{
types::{LeEqU128, LeEqU16, LeEqU32, LeEqU64, LeEqU8},
FixedI128, FixedI16, FixedI32, FixedI64, FixedI8, FixedU128, FixedU16, FixedU32, FixedU64,
FixedU8,
};
use core::cmp::Ordering;
// Unsigned can have 0 ≤ x < 2↑128, that is its msb can be 0 or 1.
// Negative can have 2↑127 ≤ x < 0, that is its msb must be 1.
pub enum Widest {
Unsigned(u128),
Negative(i128),
}
pub struct ToFixedHelper {
pub(crate) bits: Widest,
pub(crate) dir: Ordering,
pub(crate) overflow: bool,
}
pub struct ToFloatHelper {
pub(crate) neg: bool,
pub(crate) abs: u128,
}
pub struct FromFloatHelper {
pub(crate) kind: FloatKind,
}
pub enum FloatKind {
NaN,
Infinite { neg: bool },
Finite { neg: bool, conv: ToFixedHelper },
}
pub trait Sealed: Copy {
fn private_to_fixed_helper(self, dst_frac_nbits: u32, dst_int_nbits: u32) -> ToFixedHelper;
fn private_to_float_helper(self) -> ToFloatHelper;
fn private_saturating_from_float_helper(src: FromFloatHelper) -> Self;
fn private_overflowing_from_float_helper(src: FromFloatHelper) -> (Self, bool);
}
macro_rules! impl_sealed {
($Fixed:ident($LeEqU:ident, $Signedness:tt)) => {
impl<Frac: $LeEqU> Sealed for $Fixed<Frac> {
#[inline]
fn private_to_fixed_helper(
self,
dst_frac_nbits: u32,
dst_int_nbits: u32,
) -> ToFixedHelper {
self.to_bits().to_fixed_helper(
Self::frac_nbits() as i32,
dst_frac_nbits,
dst_int_nbits,
)
}
#[inline]
fn private_to_float_helper(self) -> ToFloatHelper {
let (neg, abs) = self.to_bits().neg_abs();
let abs = abs.into();
ToFloatHelper { neg, abs }
}
#[inline]
fn private_saturating_from_float_helper(src: FromFloatHelper) -> Self {
let neg = match src.kind {
FloatKind::NaN => panic!("NaN"),
FloatKind::Infinite { neg } => neg,
FloatKind::Finite { neg, .. } => neg,
};
let saturated = if neg {
Self::min_value()
} else {
Self::max_value()
};
let conv = match src.kind {
FloatKind::Finite { conv, .. } => conv,
_ => return saturated,
};
if conv.overflow {
return saturated;
}
let bits = if_signed_unsigned!(
$Signedness,
match conv.bits {
Widest::Unsigned(bits) => {
let bits = bits as _;
if bits < 0 {
return Self::max_value();
}
bits
}
Widest::Negative(bits) => bits as _,
},
match conv.bits {
Widest::Unsigned(bits) => bits as _,
Widest::Negative(_) => return Self::min_value(),
},
);
Self::from_bits(bits)
}
#[inline]
fn private_overflowing_from_float_helper(src: FromFloatHelper) -> (Self, bool) {
let conv = match src.kind {
FloatKind::NaN => panic!("NaN"),
FloatKind::Infinite { .. } => panic!("infinite"),
FloatKind::Finite { conv, .. } => conv,
};
let mut new_overflow = false;
let bits = if_signed_unsigned!(
$Signedness,
match conv.bits {
Widest::Unsigned(bits) => {
let bits = bits as _;
if bits < 0 {
new_overflow = true;
}
bits
}
Widest::Negative(bits) => bits as _,
},
match conv.bits {
Widest::Unsigned(bits) => bits as _,
Widest::Negative(bits) => {
new_overflow = true;
bits as _
}
},
);
(Self::from_bits(bits), conv.overflow || new_overflow)
}
}
};
}
impl_sealed! { FixedI8(LeEqU8, Signed) }
impl_sealed! { FixedI16(LeEqU16, Signed) }
impl_sealed! { FixedI32(LeEqU32, Signed) }
impl_sealed! { FixedI64(LeEqU64, Signed) }
impl_sealed! { FixedI128(LeEqU128, Signed) }
impl_sealed! { FixedU8(LeEqU8, Unsigned) }
impl_sealed! { FixedU16(LeEqU16, Unsigned) }
impl_sealed! { FixedU32(LeEqU32, Unsigned) }
impl_sealed! { FixedU64(LeEqU64, Unsigned) }
impl_sealed! { FixedU128(LeEqU128, Unsigned) }

View File

@ -15,7 +15,7 @@
use crate::{
frac::{Bit, False, True, Unsigned, U0, U128, U16, U32, U64, U8},
sealed::{ToFixedHelper, Widest},
helpers::{ToFixedHelper, Widest},
traits::Fixed,
FixedI128, FixedI16, FixedI32, FixedI64, FixedI8, FixedU128, FixedU16, FixedU32, FixedU64,
FixedU8,

View File

@ -16,54 +16,17 @@
/*!
This module contains sealed traits.
*/
#![deprecated(since = "0.4.2")]
#![allow(deprecated)]
use crate::{
helpers::IntHelper,
traits::Fixed as TraitsFixed,
types::{LeEqU128, LeEqU16, LeEqU32, LeEqU64, LeEqU8},
FixedI128, FixedI16, FixedI32, FixedI64, FixedI8, FixedU128, FixedU16, FixedU32, FixedU64,
FixedU8,
};
mod hide {
use core::cmp::Ordering;
// Unsigned can have 0 ≤ x < 2↑128, that is its msb can be 0 or 1.
// Negative can have 2↑127 ≤ x < 0, that is its msb must be 1.
pub enum Widest {
Unsigned(u128),
Negative(i128),
}
pub struct ToFixedHelper {
pub(crate) bits: Widest,
pub(crate) dir: Ordering,
pub(crate) overflow: bool,
}
pub struct ToFloatHelper {
pub(crate) neg: bool,
pub(crate) abs: u128,
}
pub struct FromFloatHelper {
pub(crate) kind: FloatKind,
}
pub enum FloatKind {
NaN,
Infinite { neg: bool },
Finite { neg: bool, conv: ToFixedHelper },
}
pub trait Sealed: Copy {
fn private_to_fixed_helper(self, dst_frac_nbits: u32, dst_int_nbits: u32) -> ToFixedHelper;
fn private_to_float_helper(self) -> ToFloatHelper;
fn private_saturating_from_float_helper(src: FromFloatHelper) -> Self;
fn private_overflowing_from_float_helper(src: FromFloatHelper) -> (Self, bool);
}
}
pub(crate) use self::hide::*;
#[cfg(feature = "f16")]
use half::f16;
/// This trait is implemented for all the primitive integer types.
#[deprecated(since = "0.4.2", note = "do not use")]
@ -81,147 +44,31 @@ pub trait Float: Copy {}
#[deprecated(since = "0.4.2", note = "use traits::Fixed instead")]
pub trait Fixed: TraitsFixed {}
#[allow(deprecated)]
mod impl_deprecated {
use crate::{
sealed::{Fixed, Float, Int},
types::{LeEqU128, LeEqU16, LeEqU32, LeEqU64, LeEqU8},
FixedI128, FixedI16, FixedI32, FixedI64, FixedI8, FixedU128, FixedU16, FixedU32, FixedU64,
FixedU8,
};
#[cfg(feature = "f16")]
use half::f16;
impl Int for i8 {}
impl Int for i16 {}
impl Int for i32 {}
impl Int for i64 {}
impl Int for i128 {}
impl Int for isize {}
impl Int for u8 {}
impl Int for u16 {}
impl Int for u32 {}
impl Int for u64 {}
impl Int for u128 {}
impl Int for usize {}
impl Int for i8 {}
impl Int for i16 {}
impl Int for i32 {}
impl Int for i64 {}
impl Int for i128 {}
impl Int for isize {}
impl Int for u8 {}
impl Int for u16 {}
impl Int for u32 {}
impl Int for u64 {}
impl Int for u128 {}
impl Int for usize {}
#[cfg(feature = "f16")]
impl Float for f16 {}
impl Float for f32 {}
impl Float for f64 {}
#[cfg(feature = "f16")]
impl Float for f16 {}
impl Float for f32 {}
impl Float for f64 {}
impl<Frac: LeEqU8> Fixed for FixedI8<Frac> {}
impl<Frac: LeEqU16> Fixed for FixedI16<Frac> {}
impl<Frac: LeEqU32> Fixed for FixedI32<Frac> {}
impl<Frac: LeEqU64> Fixed for FixedI64<Frac> {}
impl<Frac: LeEqU128> Fixed for FixedI128<Frac> {}
impl<Frac: LeEqU8> Fixed for FixedU8<Frac> {}
impl<Frac: LeEqU16> Fixed for FixedU16<Frac> {}
impl<Frac: LeEqU32> Fixed for FixedU32<Frac> {}
impl<Frac: LeEqU64> Fixed for FixedU64<Frac> {}
impl<Frac: LeEqU128> Fixed for FixedU128<Frac> {}
}
macro_rules! impl_sealed {
($Fixed:ident($LeEqU:ident, $Signedness:tt)) => {
impl<Frac: $LeEqU> Sealed for $Fixed<Frac> {
#[inline]
fn private_to_fixed_helper(
self,
dst_frac_nbits: u32,
dst_int_nbits: u32,
) -> ToFixedHelper {
self.to_bits().to_fixed_helper(
Self::frac_nbits() as i32,
dst_frac_nbits,
dst_int_nbits,
)
}
#[inline]
fn private_to_float_helper(self) -> ToFloatHelper {
let (neg, abs) = self.to_bits().neg_abs();
let abs = abs.into();
ToFloatHelper { neg, abs }
}
#[inline]
fn private_saturating_from_float_helper(src: FromFloatHelper) -> Self {
let neg = match src.kind {
FloatKind::NaN => panic!("NaN"),
FloatKind::Infinite { neg } => neg,
FloatKind::Finite { neg, .. } => neg,
};
let saturated = if neg {
Self::min_value()
} else {
Self::max_value()
};
let conv = match src.kind {
FloatKind::Finite { conv, .. } => conv,
_ => return saturated,
};
if conv.overflow {
return saturated;
}
let bits = if_signed_unsigned!(
$Signedness,
match conv.bits {
Widest::Unsigned(bits) => {
let bits = bits as _;
if bits < 0 {
return Self::max_value();
}
bits
}
Widest::Negative(bits) => bits as _,
},
match conv.bits {
Widest::Unsigned(bits) => bits as _,
Widest::Negative(_) => return Self::min_value(),
},
);
Self::from_bits(bits)
}
#[inline]
fn private_overflowing_from_float_helper(src: FromFloatHelper) -> (Self, bool) {
let conv = match src.kind {
FloatKind::NaN => panic!("NaN"),
FloatKind::Infinite { .. } => panic!("infinite"),
FloatKind::Finite { conv, .. } => conv,
};
let mut new_overflow = false;
let bits = if_signed_unsigned!(
$Signedness,
match conv.bits {
Widest::Unsigned(bits) => {
let bits = bits as _;
if bits < 0 {
new_overflow = true;
}
bits
}
Widest::Negative(bits) => bits as _,
},
match conv.bits {
Widest::Unsigned(bits) => bits as _,
Widest::Negative(bits) => {
new_overflow = true;
bits as _
}
},
);
(Self::from_bits(bits), conv.overflow || new_overflow)
}
}
};
}
impl_sealed! { FixedI8(LeEqU8, Signed) }
impl_sealed! { FixedI16(LeEqU16, Signed) }
impl_sealed! { FixedI32(LeEqU32, Signed) }
impl_sealed! { FixedI64(LeEqU64, Signed) }
impl_sealed! { FixedI128(LeEqU128, Signed) }
impl_sealed! { FixedU8(LeEqU8, Unsigned) }
impl_sealed! { FixedU16(LeEqU16, Unsigned) }
impl_sealed! { FixedU32(LeEqU32, Unsigned) }
impl_sealed! { FixedU64(LeEqU64, Unsigned) }
impl_sealed! { FixedU128(LeEqU128, Unsigned) }
impl<Frac: LeEqU8> Fixed for FixedI8<Frac> {}
impl<Frac: LeEqU16> Fixed for FixedI16<Frac> {}
impl<Frac: LeEqU32> Fixed for FixedI32<Frac> {}
impl<Frac: LeEqU64> Fixed for FixedI64<Frac> {}
impl<Frac: LeEqU128> Fixed for FixedI128<Frac> {}
impl<Frac: LeEqU8> Fixed for FixedU8<Frac> {}
impl<Frac: LeEqU16> Fixed for FixedU16<Frac> {}
impl<Frac: LeEqU32> Fixed for FixedU32<Frac> {}
impl<Frac: LeEqU64> Fixed for FixedU64<Frac> {}
impl<Frac: LeEqU128> Fixed for FixedU128<Frac> {}

View File

@ -18,8 +18,7 @@ This module contains traits.
*/
use crate::{
helpers::{FloatHelper, IntHelper},
sealed::{FloatKind, FromFloatHelper, Sealed, Widest},
helpers::{FloatHelper, FloatKind, FromFloatHelper, IntHelper, Sealed, Widest},
types::{LeEqU128, LeEqU16, LeEqU32, LeEqU64, LeEqU8},
FixedI128, FixedI16, FixedI32, FixedI64, FixedI8, FixedU128, FixedU16, FixedU32, FixedU64,
FixedU8, ParseFixedError,