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
//! The `format_value` macro.
/// Formats a [`Value`][`crate::value::Value`]'s mantissa and unit prefix (but
/// not the unit itself). Because it simply delegates to
/// [`format_args!()`][`std::format_args`], the output should be consumed by
/// macros such as `println!()`, `write!()`, etc.
///
/// It provides more control than the `Display` implementation in
/// [`Value`][`crate::value::Value`] because you can provide the number
/// formatting.
///
/// # Example
///
/// ```
/// use si_scale::{value::Value, format_value};
///
/// let x = 3.4e-12f32;
/// let v: Value = x.into();
/// let unit = "F"; // just something displayable.
///
/// let actual = format!("result is {}{u}",
/// format_value!(v, "{:>8.2}"), u = unit
/// );
/// let expected = "result is 3.40 pF";
/// assert_eq!(actual, expected);
///
/// // left alignment
///
/// let actual = format!("result is {}{u}",
/// format_value!(v, "{:<8.3}"), u = unit
/// );
/// let expected = "result is 3.400 pF";
/// assert_eq!(actual, expected);
/// ```
///
/// Additionally, you can provide a symbol for thousands' groupings.
///
/// # Example
///
/// In this example, the number `x` is converted into a value and displayed
/// using the most appropriate SI prefix. The user chose to constrain the
/// prefix to be anything lower than `Unit` (1) because kilo-seconds make
/// no sense.
///
/// ```
/// use si_scale::format_value;
/// # fn main() {
/// use si_scale::{value::Value, base::Base, prefix::Constraint};
///
/// let x = 1234.5678;
/// let v = Value::new_with(x, Base::B1000, Constraint::UnitAndBelow);
/// let unit = "s";
///
/// let actual = format!(
/// "result is {}{u}",
/// format_value!(v, "{:.5}", groupings: '_'),
/// u = unit
/// );
/// let expected = "result is 1_234.567_80 s";
/// assert_eq!(actual, expected);
/// # }
/// ```
///
#[macro_export]
macro_rules! format_value {
($name:ident, $fmt_str:literal) => {
format_args! {
concat!($fmt_str, " {}{}"),
$name.mantissa,
$name.prefix,
match $name.base {
$crate::base::Base::B1000 => "",
$crate::base::Base::B1024 => if $name.prefix == $crate::prefix::Prefix::Unit {""} else {"i"},
},
}
};
($name:ident, $fmt_str:literal, groupings: $separator:expr) => {
format_args! {
"{} {}{}",
$crate::format::separated_float(&format!($fmt_str, $name.mantissa), $separator),
$name.prefix,
match $name.base {
$crate::base::Base::B1000 => "",
$crate::base::Base::B1024 => if $name.prefix == $crate::prefix::Prefix::Unit {""} else {"i"},
},
}
};
($name:ident, $fmt_str:literal, groupings: $separator:expr, no_unit) => {
format_args! {
"{}{}{}{}",
$crate::format::separated_float(&format!($fmt_str, $name.mantissa), $separator),
match $name.prefix {
$crate::prefix::Prefix::Unit => "",
_=> " "
},
$name.prefix,
match $name.base {
$crate::base::Base::B1000 => "",
$crate::base::Base::B1024 => if $name.prefix == $crate::prefix::Prefix::Unit {""} else {"i"},
},
}
};
}
/// Given a input `&str` representing a digit (float or int), this function
/// returns a `String` in which thousands separators are inserted both on the
/// integral part and the fractional part.
///
pub fn separated_float(input: &str, separator: char) -> String {
let idx = match input.find('.') {
Some(i) => i,
None => input.len(),
};
let int_part = &input[..idx];
let frac_part = &input[idx..];
let int_part_separated = separate_thousands_backward(int_part, separator);
let frac_part_separated = separate_thousands_forward(frac_part, separator);
int_part_separated + &frac_part_separated
}
fn separate_thousands_backward(input: &str, separator: char) -> String {
let mut output = String::with_capacity(input.len() + input.len() / 4);
let mut pos = 0;
for ch in input.chars().rev() {
if ch.is_ascii_digit() {
// don't push a sep on first char
if pos > 1 && pos % 3 == 0 {
output.push(separator);
}
pos += 1;
}
output.push(ch);
}
output.chars().rev().collect()
}
fn separate_thousands_forward(input: &str, separator: char) -> String {
let mut output = String::with_capacity(input.len() + input.len() / 4);
let mut pos = 0;
for ch in input.chars() {
if ch.is_ascii_digit() {
// don't push a sep on first char
if pos > 1 && pos % 3 == 0 {
output.push(separator);
}
pos += 1;
}
output.push(ch);
}
output
}
#[cfg(test)]
mod tests {
use super::*;
use crate::format_value;
use crate::value::Value;
#[test]
fn format_value_without_groupings() {
let x = 3.4e-12f32;
let v: Value = x.into();
let unit = "F"; // just something displayable.
let actual = format!("result is {}{u}", format_value!(v, "{:>8.2}"), u = unit);
let expected = "result is 3.40 pF";
assert_eq!(actual, expected);
let actual = format!("result is {}{u}", format_value!(v, "{:<8.3}"), u = unit);
let expected = "result is 3.400 pF";
assert_eq!(actual, expected);
}
#[test]
fn format_value_with_groupings() {
let x = 1234.5678;
let v: Value = x.into();
let unit = "m"; // just something displayable.
let actual = format!(
"result is {}{u}",
format_value!(v, "{:.7}", groupings: '_'),
u = unit
);
let expected = "result is 1.234_567_8 km";
assert_eq!(actual, expected);
use crate::base::Base;
use crate::prefix::Constraint;
let v = Value::new_with(x, Base::B1000, Constraint::UnitAndBelow);
let unit = "s";
let actual = format!(
"result is {}{u}",
format_value!(v, "{:.5}", groupings: '_'),
u = unit
);
let expected = "result is 1_234.567_80 s";
assert_eq!(actual, expected);
}
#[test]
fn separate_float() {
let actual: String = separated_float("123456.123456", '_');
let expected = "123_456.123_456";
assert_eq!(actual, expected);
let actual: String = separated_float("123456789.123456789", '_');
let expected = "123_456_789.123_456_789";
assert_eq!(actual, expected);
let actual: String = separated_float("1234567.1234567", '_');
let expected = "1_234_567.123_456_7";
assert_eq!(actual, expected);
let actual: String = separated_float("--1234567.1234567++", '_');
let expected = "--1_234_567.123_456_7++";
assert_eq!(actual, expected);
}
#[test]
fn int_part_with_separate_thousands_backward() {
let actual = separate_thousands_backward("123456", '_');
let expected = "123_456";
assert_eq!(actual, expected);
let actual = separate_thousands_backward(" 123456..", '_');
let expected = " 123_456..";
assert_eq!(actual, expected);
}
#[test]
fn frac_part_with_separate_thousands_forward() {
let actual = separate_thousands_forward(".123456789", '_');
let expected = ".123_456_789";
assert_eq!(actual, expected);
let actual = separate_thousands_forward(".1234567--", '_');
let expected = ".123_456_7--";
assert_eq!(actual, expected);
}
#[test]
fn format_zero_value() {
let x = 0.0f32;
let v: Value = x.into();
let unit = "F"; // just something displayable.
let actual = format!("result is {}{u}", format_value!(v, "{:>8.2}"), u = unit);
let expected = "result is 0.00 F";
assert_eq!(actual, expected);
let actual = format!("result is {}{u}", format_value!(v, "{:<8.3}"), u = unit);
let expected = "result is 0.000 F";
assert_eq!(actual, expected);
}
}
// macro_rules! format_scale {
// ($name:ident $fmtstr:literal groupings $groupings:expr) => {
// pub fn $name(value: Value) -> String {
// match value.prefix {
// Some(prefix) => format!(concat!($fmtstr, " {}"), value.mantissa, prefix),
// None => format!($fmtstr, value.mantissa),
// }
// }
// };
// }
//
// format_scale!(scafmt1 "{:<8.3}" groupings "_");