| | |
| |
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| |
|
| | #include <sys/cdefs.h> |
| | __FBSDID("$FreeBSD: head/lib/libutil/humanize_number.c 220582 2011-04-12 22:48:03Z delphij $"); |
| |
|
| | #include <sys/types.h> |
| | #include <assert.h> |
| | #include <inttypes.h> |
| | #include <stdio.h> |
| | #include <stdlib.h> |
| | #include <string.h> |
| | #include <locale.h> |
| | |
| |
|
| | static const int maxscale = 7; |
| |
|
| | int |
| | humanize_number(char *buf, size_t len, int64_t quotient, |
| | const char *suffix, int scale, int flags) |
| | { |
| | const char *prefixes, *sep; |
| | int i, r, remainder, s1, s2, sign; |
| | int64_t divisor, max; |
| | size_t baselen; |
| |
|
| | assert(buf != NULL); |
| | assert(suffix != NULL); |
| | assert(scale >= 0); |
| | assert(scale < maxscale || (((scale & (HN_AUTOSCALE | HN_GETSCALE)) != 0))); |
| | assert(!((flags & HN_DIVISOR_1000) && (flags & HN_IEC_PREFIXES))); |
| |
|
| | remainder = 0; |
| |
|
| | if (flags & HN_IEC_PREFIXES) { |
| | baselen = 2; |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | divisor = 1024; |
| | if (flags & HN_B) |
| | prefixes = "B\0\0Ki\0Mi\0Gi\0Ti\0Pi\0Ei"; |
| | else |
| | prefixes = "\0\0Ki\0Mi\0Gi\0Ti\0Pi\0Ei"; |
| | } else { |
| | baselen = 1; |
| | if (flags & HN_DIVISOR_1000) |
| | divisor = 1000; |
| | else |
| | divisor = 1024; |
| |
|
| | if (flags & HN_B) |
| | prefixes = "B\0\0k\0\0M\0\0G\0\0T\0\0P\0\0E"; |
| | else |
| | prefixes = "\0\0\0k\0\0M\0\0G\0\0T\0\0P\0\0E"; |
| | } |
| |
|
| | #define SCALE2PREFIX(scale) (&prefixes[(scale) * 3]) |
| |
|
| | if (scale < 0 || (scale >= maxscale && |
| | (scale & (HN_AUTOSCALE | HN_GETSCALE)) == 0)) |
| | return (-1); |
| |
|
| | if (buf == NULL || suffix == NULL) |
| | return (-1); |
| |
|
| | if (len > 0) |
| | buf[0] = '\0'; |
| | if (quotient < 0) { |
| | sign = -1; |
| | quotient = -quotient; |
| | baselen += 2; |
| | } else { |
| | sign = 1; |
| | baselen += 1; |
| | } |
| | if (flags & HN_NOSPACE) |
| | sep = ""; |
| | else { |
| | sep = " "; |
| | baselen++; |
| | } |
| | baselen += strlen(suffix); |
| |
|
| | |
| | if (len < baselen + 1) |
| | return (-1); |
| |
|
| | if (scale & (HN_AUTOSCALE | HN_GETSCALE)) { |
| | |
| | for (max = 1, i = len - baselen; i-- > 0;) |
| | max *= 10; |
| |
|
| | |
| | |
| | |
| | |
| | |
| | for (i = 0; |
| | (quotient >= max || (quotient == max - 1 && remainder >= 950)) && |
| | i < maxscale; i++) { |
| | remainder = quotient % divisor; |
| | quotient /= divisor; |
| | } |
| |
|
| | if (scale & HN_GETSCALE) |
| | return (i); |
| | } else { |
| | for (i = 0; i < scale && i < maxscale; i++) { |
| | remainder = quotient % divisor; |
| | quotient /= divisor; |
| | } |
| | } |
| |
|
| | |
| | if (quotient <= 9 && remainder < 950 && i > 0 && flags & HN_DECIMAL) { |
| | |
| | if (len < baselen + 1 + 2) |
| | return (-1); |
| | s1 = (int)quotient + ((remainder + 50) / 1000); |
| | s2 = ((remainder + 50) / 100) % 10; |
| | r = snprintf(buf, len, "%d%s%d%s%s%s", |
| | sign * s1, localeconv()->decimal_point, s2, |
| | sep, SCALE2PREFIX(i), suffix); |
| | } else |
| | r = snprintf(buf, len, "%" PRId64 "%s%s%s", |
| | sign * (quotient + (remainder + 50) / 1000), |
| | sep, SCALE2PREFIX(i), suffix); |
| |
|
| | return (r); |
| | } |
| |
|
| |
|