| Crates.io | human-repr |
| lib.rs | human-repr |
| version | 1.1.0 |
| created_at | 2022-06-01 05:08:50.150066+00 |
| updated_at | 2023-04-19 08:27:52.382176+00 |
| description | Generate beautiful human representations of bytes, durations, and even throughputs! |
| homepage | |
| repository | https://github.com/rsalmei/human-repr |
| max_upload_size | |
| id | 597890 |
| size | 41,141 |
Generate beautiful human-readable representations of bytes, durations and even throughputs!
This crate provides a whole suite of:
k, M, G, T, P, E, Z, and Y, including optional IEC prefixes and "mixed" ones (see Rust features).ns, µs, and ms for sub-second values, in addition to some custom formats like M:SS.s (minutes:seconds with 1 decimal) and H:MM:SS (hours:minutes:seconds) for values higher than 60 seconds./d, /h, /min, and /s, and it even gets SI prefixes when on per second, the fastest one.Also, this crate doesn't have any dependencies, is well-tested, and is blazing fast, taking less than 50ns to generate a representation! Checked with criterion benchmarks.
They work with any Rust primitive numbers and also Durations!
// counts (bytes, bare, or any custom unit).
use human_repr::HumanCount;
assert_eq!("43.21GB", 43214321123_u64.human_count_bytes());
assert_eq!("74.9M", 74893200.human_count_bare());
assert_eq!("540.5kPackets", 540464_u32.human_count("Packets"));
assert_eq!("48.1°C", 48.132323432.human_count("°C"));
assert_eq!("123k🦀", 123e3.human_count("🦀"));
// durations with primitives.
use human_repr::HumanDuration;
assert_eq!("1.8ns", 0.0000000018.human_duration());
assert_eq!("15.6µs", 0.0000156.human_duration());
assert_eq!("10ms", 0.01.human_duration());
assert_eq!("3.44s", 3.435999.human_duration());
assert_eq!("19:20.4", 1160.36.human_duration());
assert_eq!("1:14:48", 4488u16.human_duration());
// durations with std's Duration.
use std::time::Duration;
assert_eq!("15.6µs", Duration::from_nanos(15_600).human_duration());
assert_eq!("10ms", Duration::from_secs_f64(0.01).human_duration());
assert_eq!("1:14:48", Duration::new(4488, 395_000_000).human_duration());
// throughputs (bytes, bare, or any custom unit).
use human_repr::HumanThroughput;
assert_eq!("1.2MB/s", 1248632.human_throughput_bytes());
assert_eq!("9/d", 0.000104166666667.human_throughput_bare());
assert_eq!("6.1tests/min", 0.101265.human_throughput("tests"));
assert_eq!("54°C/h", 0.015.human_throughput("°C"));
assert_eq!("123M⭐/s", 123e6.human_throughput("⭐"));
This version mainly:
serde;Cow instead of generics for units (possibly more optimized binary);m to min (it seems this is the actual SI accepted symbol).
This crate gets to 1.0! 🎉 Lots of improvements to get here...
Since 1.0, the HumanRepr trait was removed. Now there are separate traits for each concept.
I've realized that separate traits were more flexible, so I could implement them only where practicable, as well as evolve them independently.
The trait names also got simpler: HumanCount, HumanDuration, and HumanThroughput.
Since version 0.11, the PartialEq impls for &str do not allocate any Strings too!
I've developed a particularly interesting Write impl, which compares partial sequences with what the Display impl would be generating!
Since version 0.10, the Debug impl will show both the raw value and the final representation! Very, very cool:
# use human_repr::{HumanDuration, HumanThroughput};
assert_eq!("HumanDuration { val: 1.56e-5 } -> 15.6µs", format!("{:?}", 0.0000156.human_duration()));
assert_eq!(r#"HumanThroughput { val: 0.015, unit: "°C" } -> 54°C/h"#, format!("{:?}", 0.015.human_throughput("°C")));
Since version 0.4, I do not allocate any Strings to generate the output! I've returned structs that implement Display, so you can print them with no heap allocations at all! And if you do need the String, a simple .to_string() will do.
Add this dependency to your Cargo.toml file:
human-repr = "1"
Then just use the needed traits!
use human_repr::{HumanCount, HumanDuration, HumanThroughput};
3000_u16.human_count("bytes");
(-5i8).human_count_bytes();
4244.32_f32.human_duration();
0.000000000004432_f64.human_duration();
# use std::time::Duration;
Duration::from_secs_f64(0.00432).human_duration();
8987_isize.human_throughput("transactions");
93321_usize.human_throughput_bytes();
They work on all Rust primitive number types: u8, u16, u32, u64, u128, usize, f32,
f64, i8, i16, i32, i64, i128, isize, as well as Duration types.
Note that
std'sDurationdoes provide aDebugimpl that does something similar, but it is not very human:# use human_repr::HumanDuration; # use std::time::Duration; let default = format!("{:?}", Duration::new(0, 14184293)); assert_eq!("14.184293ms", default); // 😫👎 assert_eq!("14.2ms", Duration::new(0, 14184293).human_duration()); // 😃👍And of course, I have the minutes and hours views which it doesn't...
# use human_repr::HumanDuration; # use std::time::Duration; let default = format!("{:?}", Duration::new(10000, 1)); assert_eq!("10000.000000001s", default); // 😫👎 assert_eq!("2:46:40", Duration::new(10000, 1).human_duration()); // 😃👍
The unit parameter some methods make available means the entity you're dealing with, like "bytes", "Tasks", "it", "°C", "🍎", whatever you'd like!
Bytes (as "B") and bare units have dedicated methods for your convenience.
According to the SI standard, there are 1000 bytes in a kilobyte.
There is another standard called IEC that has 1024 bytes in a kibibyte, but this is only useful when measuring things that are naturally a power of two, e.g. a stick of RAM. Even file sizes in a filesystem are being changed to use the 1000 divisor in major OSs.
Be careful not to render IEC quantities with SI prefixes, which would be incorrect.
But I still support it, if you'd really want to ;)
By default, human-repr uses SI prefixes, 1000 divisor, and no space between prefixes/units.
This crate supports these optional features:
space => include a space between values and prefixes/units: 48 B instead of 48B, 15.6 µs instead of 15.6µs, and 12.4 kB/s instead of 12.4kB/s;
iec => use IEC instead of SI prefixes: Ki, Mi, Gi, Ti, Pi, Ei, Zi, Yi (implies 1024);
1024 => use 1024 divisor, regardless of iec — if iec is not enabled (thus in SI mode), the lowercase k turns into an upper 'K';
serde => enables serialize and deserialize support.
I've used just one key concept in designing the human duration behavior: clearness.
3.44sis more meaningful than3.43584783784s, and14.1µsis much, much nicer than.0000141233333s.
So, what I do is: I round values to at most two decimal places (larger values have more decimals), and find the best prefix to represent them, minimizing output values smaller than 1. The search for the best prefix considers even the rounding been applied!
0.000999999does not end up as999.9µs(truncate) nor1000µs(bad prefix), it is auto-upgraded to the next one1ms!
The human duration prefix changes seamlessly from nanoseconds to hours!
values smaller than 60 seconds get rendered as SS[.ss]prefix, with up to two decimals;
from 1 minute onward it changes to M:SS[.s];
from 1 hour onward it changes to H:MM:SS;
.0 and .00 are efficiently not generated instead of removed from the output -> this is handled directly in the algorithm.
I've made the human throughput with a similar logic. It is funny how much trickier "throughput" is to the human brain!
If something took 1165263 seconds to handle 123 items, how fast did it go? It's not obvious...
It doesn't help much even if we divide the duration by the number of items: 9473 seconds/item still does not seem that good. How fast was that? We can't say for sure.
Hmm, how many items did we do per time?
Oh, we just need to invert it, so 0.000105555569858 items/second, there it is! 😂
To make some sense of it we now need to multiply that by 3600 (seconds in an hour) to get 0.38 per hour, which is much better, and again by 24 (hours in a day) to finally get 9.12 per day!! Now we know how fast that process was! \o/
As you see, it's not easy at all for our brains to estimate that...
The human throughput prefix changes seamlessly from per second to per day!
.0 and .00 are efficiently not generated too, much like the duration magic;
it also automatically inserts SI prefixes when in the fastest prefix (per second), so we get 2.4MB/s or 6.42Gitems/s 👍
This is the simplest of them all, I just continually divide by the current divisor (1000 or 1024) until the value gets smaller than that. No funny business like logs or exponential at all.
Rounding is also handled so there's no truncation or bad prefixes, the number of decimals also increase the larger the prefix gets, and .0 and .00 are also never generated.
1.1.x Apr 19, 2023: new optional feature for serde, use Cow instead of generics for units, change minute's symbol in throughputs from m to min, overall polish up
1.0.x Jul 26, 2022: HumanRepr trait was removed, now there are separate traits for each concept: HumanCount, HumanDuration, and HumanThroughput
0.11.x Jul 22, 2022: new PartialEq impls for &str, which is even faster and does not allocate any Strings
0.10.x Jul 17, 2022: new Debug impl with raw and rendered values, new "bare unit" method variations, remove space from default features
0.9.x Jun 22, 2022: do not use captured identifiers in format strings, to support much broader Rust versions instead of only >= 1.58
0.8.x Jun 12, 2022: change nospace feature to space, to avoid the negative logic (it is now default, to maintain behavior)
0.7.x Jun 04, 2022: support for std::time::Duration via a new trait HumanReprDuration, include one decimal in the minutes representation
0.6.x Jun 04, 2022: improve signed support with new ops::Neg impl
0.5.x Jun 03, 2022: new minutes representation M:SS, between seconds and complete H:MM:SS
0.4.x Jun 03, 2022: new render engine via Display, which is even faster and does not allocate any Strings
0.3.x Jun 01, 2022: support for a new group of prefixes for 1024 only (without iec)
0.2.x Jun 01, 2022: more flexible API (impl AsRef<str>), greatly improved documentation
0.1.x Jun 01, 2022: first release, include readme, method and module docs, describe features already implemented
This software is licensed under the MIT License. See the LICENSE file in the top distribution directory for the full license text.
Maintaining an open source project is hard and time-consuming, and I've put much ❤️ and effort into this.
If you've appreciated my work, you can back me up with a donation! Thank you 😊