2019-04-14 21:23:21 -05:00
|
|
|
use crate::fmt::{Debug, Display, Formatter, LowerExp, Result, UpperExp};
|
|
|
|
use crate::mem::MaybeUninit;
|
|
|
|
use crate::num::flt2dec;
|
2021-06-05 20:08:09 -05:00
|
|
|
use crate::num::fmt as numfmt;
|
2017-02-07 03:58:34 -06:00
|
|
|
|
2021-06-19 14:50:29 -05:00
|
|
|
#[doc(hidden)]
|
|
|
|
trait GeneralFormat: PartialOrd {
|
|
|
|
/// Determines if a value should use exponential based on its magnitude, given the precondition
|
|
|
|
/// that it will not be rounded any further before it is displayed.
|
|
|
|
fn already_rounded_value_should_use_exponential(&self) -> bool;
|
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! impl_general_format {
|
|
|
|
($($t:ident)*) => {
|
|
|
|
$(impl GeneralFormat for $t {
|
|
|
|
fn already_rounded_value_should_use_exponential(&self) -> bool {
|
|
|
|
let abs = $t::abs_private(*self);
|
|
|
|
(abs != 0.0 && abs < 1e-4) || abs >= 1e+16
|
|
|
|
}
|
|
|
|
})*
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_general_format! { f32 f64 }
|
|
|
|
|
2017-04-13 14:49:37 -05:00
|
|
|
// Don't inline this so callers don't use the stack space this function
|
|
|
|
// requires unless they have to.
|
|
|
|
#[inline(never)]
|
2019-04-18 18:37:12 -05:00
|
|
|
fn float_to_decimal_common_exact<T>(
|
|
|
|
fmt: &mut Formatter<'_>,
|
|
|
|
num: &T,
|
2017-04-13 14:49:37 -05:00
|
|
|
sign: flt2dec::Sign,
|
|
|
|
precision: usize,
|
|
|
|
) -> Result
|
|
|
|
where
|
|
|
|
T: flt2dec::DecodableFloat,
|
|
|
|
{
|
2020-09-02 05:18:07 -05:00
|
|
|
let mut buf: [MaybeUninit<u8>; 1024] = MaybeUninit::uninit_array(); // enough for f32 and f64
|
2021-06-05 20:08:09 -05:00
|
|
|
let mut parts: [MaybeUninit<numfmt::Part<'_>>; 4] = MaybeUninit::uninit_array();
|
2020-09-02 05:18:07 -05:00
|
|
|
let formatted = flt2dec::to_exact_fixed_str(
|
|
|
|
flt2dec::strategy::grisu::format_exact,
|
|
|
|
*num,
|
|
|
|
sign,
|
|
|
|
precision,
|
|
|
|
&mut buf,
|
|
|
|
&mut parts,
|
|
|
|
);
|
|
|
|
fmt.pad_formatted_parts(&formatted)
|
2017-04-13 14:49:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't inline this so callers that call both this and the above won't wind
|
|
|
|
// up using the combined stack space of both functions in some cases.
|
|
|
|
#[inline(never)]
|
2019-04-18 18:37:12 -05:00
|
|
|
fn float_to_decimal_common_shortest<T>(
|
|
|
|
fmt: &mut Formatter<'_>,
|
|
|
|
num: &T,
|
2017-12-18 17:16:00 -06:00
|
|
|
sign: flt2dec::Sign,
|
|
|
|
precision: usize,
|
|
|
|
) -> Result
|
2017-04-13 14:49:37 -05:00
|
|
|
where
|
|
|
|
T: flt2dec::DecodableFloat,
|
|
|
|
{
|
2020-09-02 05:18:07 -05:00
|
|
|
// enough for f32 and f64
|
|
|
|
let mut buf: [MaybeUninit<u8>; flt2dec::MAX_SIG_DIGITS] = MaybeUninit::uninit_array();
|
2021-06-05 20:08:09 -05:00
|
|
|
let mut parts: [MaybeUninit<numfmt::Part<'_>>; 4] = MaybeUninit::uninit_array();
|
2020-09-02 05:18:07 -05:00
|
|
|
let formatted = flt2dec::to_shortest_str(
|
|
|
|
flt2dec::strategy::grisu::format_shortest,
|
|
|
|
*num,
|
|
|
|
sign,
|
|
|
|
precision,
|
|
|
|
&mut buf,
|
|
|
|
&mut parts,
|
|
|
|
);
|
|
|
|
fmt.pad_formatted_parts(&formatted)
|
2017-04-13 14:49:37 -05:00
|
|
|
}
|
|
|
|
|
2021-06-19 14:50:29 -05:00
|
|
|
fn float_to_decimal_display<T>(fmt: &mut Formatter<'_>, num: &T) -> Result
|
2017-02-07 03:58:34 -06:00
|
|
|
where
|
|
|
|
T: flt2dec::DecodableFloat,
|
|
|
|
{
|
|
|
|
let force_sign = fmt.sign_plus();
|
2020-10-31 15:16:14 -05:00
|
|
|
let sign = match force_sign {
|
|
|
|
false => flt2dec::Sign::Minus,
|
|
|
|
true => flt2dec::Sign::MinusPlus,
|
2017-02-07 03:58:34 -06:00
|
|
|
};
|
|
|
|
|
2017-04-13 14:49:37 -05:00
|
|
|
if let Some(precision) = fmt.precision {
|
|
|
|
float_to_decimal_common_exact(fmt, num, sign, precision)
|
|
|
|
} else {
|
2021-06-19 14:50:29 -05:00
|
|
|
let min_precision = 0;
|
2017-12-18 17:16:00 -06:00
|
|
|
float_to_decimal_common_shortest(fmt, num, sign, min_precision)
|
2017-04-13 14:49:37 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Don't inline this so callers don't use the stack space this function
|
|
|
|
// requires unless they have to.
|
|
|
|
#[inline(never)]
|
2019-04-18 18:37:12 -05:00
|
|
|
fn float_to_exponential_common_exact<T>(
|
|
|
|
fmt: &mut Formatter<'_>,
|
|
|
|
num: &T,
|
2017-04-13 14:49:37 -05:00
|
|
|
sign: flt2dec::Sign,
|
|
|
|
precision: usize,
|
|
|
|
upper: bool,
|
|
|
|
) -> Result
|
|
|
|
where
|
|
|
|
T: flt2dec::DecodableFloat,
|
|
|
|
{
|
2020-09-02 05:18:07 -05:00
|
|
|
let mut buf: [MaybeUninit<u8>; 1024] = MaybeUninit::uninit_array(); // enough for f32 and f64
|
2021-06-05 20:08:09 -05:00
|
|
|
let mut parts: [MaybeUninit<numfmt::Part<'_>>; 6] = MaybeUninit::uninit_array();
|
2020-09-02 05:18:07 -05:00
|
|
|
let formatted = flt2dec::to_exact_exp_str(
|
|
|
|
flt2dec::strategy::grisu::format_exact,
|
|
|
|
*num,
|
|
|
|
sign,
|
|
|
|
precision,
|
|
|
|
upper,
|
|
|
|
&mut buf,
|
|
|
|
&mut parts,
|
|
|
|
);
|
|
|
|
fmt.pad_formatted_parts(&formatted)
|
2017-04-13 14:49:37 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Don't inline this so callers that call both this and the above won't wind
|
|
|
|
// up using the combined stack space of both functions in some cases.
|
|
|
|
#[inline(never)]
|
2019-04-18 18:37:12 -05:00
|
|
|
fn float_to_exponential_common_shortest<T>(
|
|
|
|
fmt: &mut Formatter<'_>,
|
2017-04-13 14:49:37 -05:00
|
|
|
num: &T,
|
|
|
|
sign: flt2dec::Sign,
|
|
|
|
upper: bool,
|
|
|
|
) -> Result
|
|
|
|
where
|
|
|
|
T: flt2dec::DecodableFloat,
|
|
|
|
{
|
2020-09-02 05:18:07 -05:00
|
|
|
// enough for f32 and f64
|
|
|
|
let mut buf: [MaybeUninit<u8>; flt2dec::MAX_SIG_DIGITS] = MaybeUninit::uninit_array();
|
2021-06-05 20:08:09 -05:00
|
|
|
let mut parts: [MaybeUninit<numfmt::Part<'_>>; 6] = MaybeUninit::uninit_array();
|
2020-09-02 05:18:07 -05:00
|
|
|
let formatted = flt2dec::to_shortest_exp_str(
|
|
|
|
flt2dec::strategy::grisu::format_shortest,
|
|
|
|
*num,
|
|
|
|
sign,
|
|
|
|
(0, 0),
|
|
|
|
upper,
|
|
|
|
&mut buf,
|
|
|
|
&mut parts,
|
|
|
|
);
|
|
|
|
fmt.pad_formatted_parts(&formatted)
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Common code of floating point LowerExp and UpperExp.
|
2019-04-18 18:37:12 -05:00
|
|
|
fn float_to_exponential_common<T>(fmt: &mut Formatter<'_>, num: &T, upper: bool) -> Result
|
2017-02-07 03:58:34 -06:00
|
|
|
where
|
|
|
|
T: flt2dec::DecodableFloat,
|
|
|
|
{
|
|
|
|
let force_sign = fmt.sign_plus();
|
|
|
|
let sign = match force_sign {
|
|
|
|
false => flt2dec::Sign::Minus,
|
|
|
|
true => flt2dec::Sign::MinusPlus,
|
|
|
|
};
|
|
|
|
|
2017-04-13 14:49:37 -05:00
|
|
|
if let Some(precision) = fmt.precision {
|
2017-02-07 03:58:34 -06:00
|
|
|
// 1 integral digit + `precision` fractional digits = `precision + 1` total digits
|
2017-04-13 14:49:37 -05:00
|
|
|
float_to_exponential_common_exact(fmt, num, sign, precision + 1, upper)
|
2017-02-07 03:58:34 -06:00
|
|
|
} else {
|
2017-04-13 14:49:37 -05:00
|
|
|
float_to_exponential_common_shortest(fmt, num, sign, upper)
|
|
|
|
}
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
|
2021-06-19 14:50:29 -05:00
|
|
|
fn float_to_general_debug<T>(fmt: &mut Formatter<'_>, num: &T) -> Result
|
|
|
|
where
|
|
|
|
T: flt2dec::DecodableFloat + GeneralFormat,
|
|
|
|
{
|
|
|
|
let force_sign = fmt.sign_plus();
|
|
|
|
let sign = match force_sign {
|
|
|
|
false => flt2dec::Sign::Minus,
|
|
|
|
true => flt2dec::Sign::MinusPlus,
|
|
|
|
};
|
|
|
|
|
|
|
|
if let Some(precision) = fmt.precision {
|
|
|
|
// this behavior of {:.PREC?} predates exponential formatting for {:?}
|
|
|
|
float_to_decimal_common_exact(fmt, num, sign, precision)
|
|
|
|
} else {
|
|
|
|
// since there is no precision, there will be no rounding
|
|
|
|
if num.already_rounded_value_should_use_exponential() {
|
|
|
|
let upper = false;
|
|
|
|
float_to_exponential_common_shortest(fmt, num, sign, upper)
|
|
|
|
} else {
|
|
|
|
let min_precision = 1;
|
|
|
|
float_to_decimal_common_shortest(fmt, num, sign, min_precision)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-07 03:58:34 -06:00
|
|
|
macro_rules! floating {
|
|
|
|
($ty:ident) => {
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl Debug for $ty {
|
2019-04-18 18:37:12 -05:00
|
|
|
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result {
|
2021-06-19 14:50:29 -05:00
|
|
|
float_to_general_debug(fmt, self)
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl Display for $ty {
|
2019-04-18 18:37:12 -05:00
|
|
|
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result {
|
2021-06-19 14:50:29 -05:00
|
|
|
float_to_decimal_display(fmt, self)
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl LowerExp for $ty {
|
2019-04-18 18:37:12 -05:00
|
|
|
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result {
|
2017-02-07 03:58:34 -06:00
|
|
|
float_to_exponential_common(fmt, self, false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl UpperExp for $ty {
|
2019-04-18 18:37:12 -05:00
|
|
|
fn fmt(&self, fmt: &mut Formatter<'_>) -> Result {
|
2017-02-07 03:58:34 -06:00
|
|
|
float_to_exponential_common(fmt, self, true)
|
|
|
|
}
|
|
|
|
}
|
2019-11-24 03:43:32 -06:00
|
|
|
};
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
floating! { f32 }
|
|
|
|
floating! { f64 }
|