mirror of
https://github.com/Llewellynvdm/exa.git
synced 2024-11-05 20:37:52 +00:00
26 lines
722 B
Rust
26 lines
722 B
Rust
static METRIC_PREFIXES: &'static [&'static str] = &[
|
|
"", "K", "M", "G", "T", "P", "E", "Z", "Y"
|
|
];
|
|
|
|
static IEC_PREFIXES: &'static [&'static str] = &[
|
|
"", "Ki", "Mi", "Gi", "Ti", "Pi", "Ei", "Zi", "Yi"
|
|
];
|
|
|
|
fn format_bytes(mut amount: u64, kilo: u64, prefixes: &[&str]) -> (String, String) {
|
|
let mut prefix = 0;
|
|
while amount > kilo {
|
|
amount /= kilo;
|
|
prefix += 1;
|
|
}
|
|
return (format!("{}", amount), prefixes[prefix].to_string());
|
|
}
|
|
|
|
#[allow(non_snake_case_functions)]
|
|
pub fn format_IEC_bytes(amount: u64) -> (String, String) {
|
|
format_bytes(amount, 1024, IEC_PREFIXES)
|
|
}
|
|
|
|
pub fn format_metric_bytes(amount: u64) -> (String, String) {
|
|
format_bytes(amount, 1000, METRIC_PREFIXES)
|
|
}
|