mirror of
https://github.com/uutils/coreutils
synced 2024-12-18 17:14:42 +00:00
some more work on printf spec
This commit is contained in:
parent
66eb64e41f
commit
407bccc54f
1 changed files with 60 additions and 18 deletions
|
@ -358,20 +358,28 @@ impl Spec {
|
||||||
return Err(FormatError::InvalidArgument(arg));
|
return Err(FormatError::InvalidArgument(arg));
|
||||||
};
|
};
|
||||||
|
|
||||||
match positive_sign {
|
if f.is_sign_positive() {
|
||||||
PositiveSign::None => Ok(()),
|
match positive_sign {
|
||||||
PositiveSign::Plus => write!(writer, "+"),
|
PositiveSign::None => Ok(()),
|
||||||
PositiveSign::Space => write!(writer, " "),
|
PositiveSign::Plus => write!(writer, "+"),
|
||||||
|
PositiveSign::Space => write!(writer, " "),
|
||||||
|
}
|
||||||
|
.map_err(FormatError::IoError)?;
|
||||||
}
|
}
|
||||||
.map_err(FormatError::IoError)?;
|
|
||||||
|
|
||||||
let s = match variant {
|
let s = match variant {
|
||||||
FloatVariant::Decimal => format_float_decimal(f, precision, case, force_decimal),
|
FloatVariant::Decimal => {
|
||||||
|
format_float_decimal(f, precision, case, force_decimal)
|
||||||
|
}
|
||||||
FloatVariant::Scientific => {
|
FloatVariant::Scientific => {
|
||||||
format_float_scientific(f, precision, case, force_decimal)
|
format_float_scientific(f, precision, case, force_decimal)
|
||||||
}
|
}
|
||||||
FloatVariant::Shortest => format_float_shortest(f, precision, case, force_decimal),
|
FloatVariant::Shortest => {
|
||||||
FloatVariant::Hexadecimal => todo!(),
|
format_float_shortest(f, precision, case, force_decimal)
|
||||||
|
}
|
||||||
|
FloatVariant::Hexadecimal => {
|
||||||
|
format_float_hexadecimal(f, precision, case, force_decimal)
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
match alignment {
|
match alignment {
|
||||||
|
@ -385,6 +393,15 @@ impl Spec {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn format_float_nonfinite(f: f64, case: Case) -> String {
|
||||||
|
debug_assert!(!f.is_finite());
|
||||||
|
let mut s = format!("{f}");
|
||||||
|
if case == Case::Uppercase {
|
||||||
|
s.make_ascii_uppercase();
|
||||||
|
}
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
fn format_float_decimal(
|
fn format_float_decimal(
|
||||||
f: f64,
|
f: f64,
|
||||||
precision: usize,
|
precision: usize,
|
||||||
|
@ -392,11 +409,7 @@ fn format_float_decimal(
|
||||||
force_decimal: ForceDecimal,
|
force_decimal: ForceDecimal,
|
||||||
) -> String {
|
) -> String {
|
||||||
if !f.is_finite() {
|
if !f.is_finite() {
|
||||||
let mut s = format!("{f}");
|
return format_float_nonfinite(f, case);
|
||||||
if case == Case::Lowercase {
|
|
||||||
s.make_ascii_uppercase();
|
|
||||||
}
|
|
||||||
return s;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if precision == 0 && force_decimal == ForceDecimal::Yes {
|
if precision == 0 && force_decimal == ForceDecimal::Yes {
|
||||||
|
@ -414,11 +427,7 @@ fn format_float_scientific(
|
||||||
) -> String {
|
) -> String {
|
||||||
// If the float is NaN, -Nan, Inf or -Inf, format like any other float
|
// If the float is NaN, -Nan, Inf or -Inf, format like any other float
|
||||||
if !f.is_finite() {
|
if !f.is_finite() {
|
||||||
let mut s = format!("{f}");
|
return format_float_nonfinite(f, case);
|
||||||
if case == Case::Lowercase {
|
|
||||||
s.make_ascii_uppercase();
|
|
||||||
}
|
|
||||||
return s;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let exponent: i32 = f.log10().floor() as i32;
|
let exponent: i32 = f.log10().floor() as i32;
|
||||||
|
@ -458,6 +467,39 @@ fn format_float_shortest(
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn format_float_hexadecimal(
|
||||||
|
f: f64,
|
||||||
|
precision: usize,
|
||||||
|
case: Case,
|
||||||
|
force_decimal: ForceDecimal,
|
||||||
|
) -> String {
|
||||||
|
if !f.is_finite() {
|
||||||
|
return format_float_nonfinite(f, case);
|
||||||
|
}
|
||||||
|
|
||||||
|
let (first_digit, mantissa, exponent) = if f == 0.0 {
|
||||||
|
(0, 0, 0)
|
||||||
|
} else {
|
||||||
|
let bits = f.to_bits();
|
||||||
|
let exponent_bits = ((bits >> 52) & 0x7fff) as i64;
|
||||||
|
let exponent = exponent_bits - 1023;
|
||||||
|
let mantissa = bits & 0xf_ffff_ffff_ffff;
|
||||||
|
(1, mantissa, exponent)
|
||||||
|
};
|
||||||
|
|
||||||
|
let mut s = match (precision, force_decimal) {
|
||||||
|
(0, ForceDecimal::No) => format!("0x{first_digit}p{exponent:+x}"),
|
||||||
|
(0, ForceDecimal::Yes) => format!("0x{first_digit}.p{exponent:+x}"),
|
||||||
|
_ => format!("0x{first_digit}.{mantissa:0>13x}p{exponent:+x}")
|
||||||
|
};
|
||||||
|
|
||||||
|
if case == Case::Uppercase {
|
||||||
|
s.make_ascii_uppercase();
|
||||||
|
}
|
||||||
|
|
||||||
|
return s;
|
||||||
|
}
|
||||||
|
|
||||||
fn resolve_asterisk(
|
fn resolve_asterisk(
|
||||||
option: Option<CanAsterisk<usize>>,
|
option: Option<CanAsterisk<usize>>,
|
||||||
args: impl Iterator<Item = FormatArgument>,
|
args: impl Iterator<Item = FormatArgument>,
|
||||||
|
|
Loading…
Reference in a new issue