diff options
author | Laslo Hunhold <dev@frign.de> | 2018-05-19 22:52:17 +0200 |
---|---|---|
committer | Aaron Marcher <me@drkhsh.at> | 2018-05-19 22:58:21 +0200 |
commit | 46c4540dd2f6181e77b0800a4e007d78d0162487 (patch) | |
tree | 7fcec772ef1dd3dbb8bdcaf30aa48c2fea1d096f /components/netspeeds.c | |
parent | 74c4f4ebdae8a12fc95840954dde574692234b01 (diff) |
Implement fmt_human_2() and fmt_human_10()
These functions take the raw number and a unit and automatically
print it out "scaled down" to a proper SI-prefix, for powers of 2
and 10 respectively.
Apply them to the 2-power cases and keep the 10-power for a later
commit.
Diffstat (limited to 'components/netspeeds.c')
-rw-r--r-- | components/netspeeds.c | 28 |
1 files changed, 20 insertions, 8 deletions
diff --git a/components/netspeeds.c b/components/netspeeds.c index 32e78d6..f0f7455 100644 --- a/components/netspeeds.c +++ b/components/netspeeds.c @@ -25,9 +25,12 @@ if (pscanf(path, "%llu", &rxbytes) != 1) { return NULL; } + if (oldrxbytes == 0) { + return NULL; + } - return oldrxbytes ? fmt_scaled((rxbytes - oldrxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((rxbytes - oldrxbytes) * + 1000 / interval, "B/s"); } const char * @@ -48,9 +51,12 @@ if (pscanf(path, "%llu", &txbytes) != 1) { return NULL; } + if (oldtxbytes == 0) { + return NULL; + } - return oldtxbytes ? fmt_scaled((txbytes - oldtxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((txbytes - oldtxbytes) * + 1000 / interval, "B/s"); } #elif defined(__OpenBSD__) #include <string.h> @@ -87,9 +93,12 @@ warn("reading 'if_data' failed"); return NULL; } + if (oldrxbytes == 0) { + return NULL; + } - return oldrxbytes ? fmt_scaled((rxbytes - oldrxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((rxbytes - oldrxbytes) * + 1000 / interval, "B/s"); } const char * @@ -120,8 +129,11 @@ warn("reading 'if_data' failed"); return NULL; } + if (oldtxbytes == 0) { + return NULL; + } - return oldtxbytes ? fmt_scaled((txbytes - oldtxbytes) * - 1000 / interval) : NULL; + return fmt_human_2((txbytes - oldtxbytes) * + 1000 / interval, "B/s"); } #endif |