2017-02-07 03:58:34 -06:00
|
|
|
use fmt::{Formatter, Result, LowerExp, UpperExp, Display, Debug};
|
2018-10-10 04:48:13 -05:00
|
|
|
use mem::MaybeUninit;
|
2017-02-07 03:58:34 -06:00
|
|
|
use num::flt2dec;
|
|
|
|
|
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)]
|
|
|
|
fn float_to_decimal_common_exact<T>(fmt: &mut Formatter, num: &T,
|
|
|
|
sign: flt2dec::Sign, precision: usize) -> Result
|
|
|
|
where T: flt2dec::DecodableFloat
|
|
|
|
{
|
2017-04-14 15:25:49 -05:00
|
|
|
unsafe {
|
2019-03-18 16:45:02 -05:00
|
|
|
let mut buf = MaybeUninit::<[u8; 1024]>::uninit(); // enough for f32 and f64
|
|
|
|
let mut parts = MaybeUninit::<[flt2dec::Part; 4]>::uninit();
|
2018-12-02 05:29:54 -06:00
|
|
|
// FIXME(#53491): Technically, this is calling `get_mut` on an uninitialized
|
2018-11-27 09:12:08 -06:00
|
|
|
// `MaybeUninit` (here and elsewhere in this file). Revisit this once
|
|
|
|
// we decided whether that is valid or not.
|
2019-02-22 15:47:30 -06:00
|
|
|
// Using `freeze` is *not enough*; `flt2dec::Part` is an enum!
|
2017-04-14 15:25:49 -05:00
|
|
|
let formatted = flt2dec::to_exact_fixed_str(flt2dec::strategy::grisu::format_exact,
|
|
|
|
*num, sign, precision,
|
2018-10-10 04:48:13 -05:00
|
|
|
false, buf.get_mut(), parts.get_mut());
|
2017-04-14 15:25:49 -05:00
|
|
|
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)]
|
2017-12-18 17:16:00 -06:00
|
|
|
fn float_to_decimal_common_shortest<T>(fmt: &mut Formatter, num: &T,
|
|
|
|
sign: flt2dec::Sign, precision: usize) -> Result
|
2017-04-13 14:49:37 -05:00
|
|
|
where T: flt2dec::DecodableFloat
|
|
|
|
{
|
2017-04-14 15:25:49 -05:00
|
|
|
unsafe {
|
|
|
|
// enough for f32 and f64
|
2019-03-18 16:45:02 -05:00
|
|
|
let mut buf = MaybeUninit::<[u8; flt2dec::MAX_SIG_DIGITS]>::uninit();
|
|
|
|
let mut parts = MaybeUninit::<[flt2dec::Part; 4]>::uninit();
|
2019-02-22 15:47:30 -06:00
|
|
|
// FIXME(#53491)
|
2017-12-18 17:16:00 -06:00
|
|
|
let formatted = flt2dec::to_shortest_str(flt2dec::strategy::grisu::format_shortest, *num,
|
2018-10-10 04:48:13 -05:00
|
|
|
sign, precision, false, buf.get_mut(),
|
|
|
|
parts.get_mut());
|
2017-04-14 15:25:49 -05:00
|
|
|
fmt.pad_formatted_parts(&formatted)
|
|
|
|
}
|
2017-04-13 14:49:37 -05:00
|
|
|
}
|
|
|
|
|
2017-02-07 03:58:34 -06:00
|
|
|
// Common code of floating point Debug and Display.
|
2017-12-18 17:16:00 -06:00
|
|
|
fn float_to_decimal_common<T>(fmt: &mut Formatter, num: &T,
|
|
|
|
negative_zero: bool, min_precision: usize) -> Result
|
2017-02-07 03:58:34 -06:00
|
|
|
where T: flt2dec::DecodableFloat
|
|
|
|
{
|
|
|
|
let force_sign = fmt.sign_plus();
|
|
|
|
let sign = match (force_sign, negative_zero) {
|
|
|
|
(false, false) => flt2dec::Sign::Minus,
|
|
|
|
(false, true) => flt2dec::Sign::MinusRaw,
|
|
|
|
(true, false) => flt2dec::Sign::MinusPlus,
|
|
|
|
(true, true) => flt2dec::Sign::MinusPlusRaw,
|
|
|
|
};
|
|
|
|
|
2017-04-13 14:49:37 -05:00
|
|
|
if let Some(precision) = fmt.precision {
|
|
|
|
float_to_decimal_common_exact(fmt, num, sign, precision)
|
|
|
|
} else {
|
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)]
|
|
|
|
fn float_to_exponential_common_exact<T>(fmt: &mut Formatter, num: &T,
|
|
|
|
sign: flt2dec::Sign, precision: usize,
|
|
|
|
upper: bool) -> Result
|
|
|
|
where T: flt2dec::DecodableFloat
|
|
|
|
{
|
2017-04-14 15:25:49 -05:00
|
|
|
unsafe {
|
2019-03-18 16:45:02 -05:00
|
|
|
let mut buf = MaybeUninit::<[u8; 1024]>::uninit(); // enough for f32 and f64
|
|
|
|
let mut parts = MaybeUninit::<[flt2dec::Part; 6]>::uninit();
|
2019-02-22 15:47:30 -06:00
|
|
|
// FIXME(#53491)
|
2017-04-14 15:25:49 -05:00
|
|
|
let formatted = flt2dec::to_exact_exp_str(flt2dec::strategy::grisu::format_exact,
|
|
|
|
*num, sign, precision,
|
2018-10-10 04:48:13 -05:00
|
|
|
upper, buf.get_mut(), parts.get_mut());
|
2017-04-14 15:25:49 -05:00
|
|
|
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)]
|
|
|
|
fn float_to_exponential_common_shortest<T>(fmt: &mut Formatter,
|
|
|
|
num: &T, sign: flt2dec::Sign,
|
|
|
|
upper: bool) -> Result
|
|
|
|
where T: flt2dec::DecodableFloat
|
|
|
|
{
|
2017-04-14 15:25:49 -05:00
|
|
|
unsafe {
|
|
|
|
// enough for f32 and f64
|
2019-03-18 16:45:02 -05:00
|
|
|
let mut buf = MaybeUninit::<[u8; flt2dec::MAX_SIG_DIGITS]>::uninit();
|
|
|
|
let mut parts = MaybeUninit::<[flt2dec::Part; 6]>::uninit();
|
2019-02-22 15:47:30 -06:00
|
|
|
// FIXME(#53491)
|
2017-04-14 15:25:49 -05:00
|
|
|
let formatted = flt2dec::to_shortest_exp_str(flt2dec::strategy::grisu::format_shortest,
|
|
|
|
*num, sign, (0, 0), upper,
|
2018-10-10 04:48:13 -05:00
|
|
|
buf.get_mut(), parts.get_mut());
|
2017-04-14 15:25:49 -05:00
|
|
|
fmt.pad_formatted_parts(&formatted)
|
|
|
|
}
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
// Common code of floating point LowerExp and UpperExp.
|
|
|
|
fn float_to_exponential_common<T>(fmt: &mut Formatter, num: &T, upper: bool) -> Result
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
macro_rules! floating {
|
|
|
|
($ty:ident) => (
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl Debug for $ty {
|
|
|
|
fn fmt(&self, fmt: &mut Formatter) -> Result {
|
2017-12-18 17:16:00 -06:00
|
|
|
float_to_decimal_common(fmt, self, true, 1)
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl Display for $ty {
|
|
|
|
fn fmt(&self, fmt: &mut Formatter) -> Result {
|
2017-12-18 17:16:00 -06:00
|
|
|
float_to_decimal_common(fmt, self, false, 0)
|
2017-02-07 03:58:34 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl LowerExp for $ty {
|
|
|
|
fn fmt(&self, fmt: &mut Formatter) -> Result {
|
|
|
|
float_to_exponential_common(fmt, self, false)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[stable(feature = "rust1", since = "1.0.0")]
|
|
|
|
impl UpperExp for $ty {
|
|
|
|
fn fmt(&self, fmt: &mut Formatter) -> Result {
|
|
|
|
float_to_exponential_common(fmt, self, true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
floating! { f32 }
|
|
|
|
floating! { f64 }
|