diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-13 01:25:09 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-10-13 01:25:09 +0200 |
| commit | 0bf44d00a42dec70514c2e51926f4ca37b4b2367 (patch) | |
| tree | be01fbf44da8040c5ef271e0d0bba147ce0c525e /libbb | |
| parent | 76ace254e171ee9ca7a13f36335ccad9cc6ae6e1 (diff) | |
| download | busybox-w32-0bf44d00a42dec70514c2e51926f4ca37b4b2367.tar.gz busybox-w32-0bf44d00a42dec70514c2e51926f4ca37b4b2367.tar.bz2 busybox-w32-0bf44d00a42dec70514c2e51926f4ca37b4b2367.zip | |
libbb/human_readable.c: shrink; and reduce bss usage
also, move smart_ulltoaN there and comment usage locations
function old new delta
static.unit_chars 7 9 +2
utoa_to_buf 110 108 -2
make_human_readable_str 262 258 -4
fallbackSort 1723 1719 -4
static.fmt 97 92 -5
static.fmt_tenths 10 - -10
static.str 21 4 -17
------------------------------------------------------------------------------
(add/remove: 0/1 grow/shrink: 1/5 up/down: 2/-42) Total: -40 bytes
text data bss dec hex filename
820981 453 6932 828366 ca3ce busybox_old
820968 453 6916 828337 ca3b1 busybox_unstripped
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'libbb')
| -rw-r--r-- | libbb/human_readable.c | 162 | ||||
| -rw-r--r-- | libbb/xfuncs.c | 104 |
2 files changed, 130 insertions, 136 deletions
diff --git a/libbb/human_readable.c b/libbb/human_readable.c index 05e7d86ec..3050d7d1e 100644 --- a/libbb/human_readable.c +++ b/libbb/human_readable.c | |||
| @@ -30,70 +30,168 @@ | |||
| 30 | 30 | ||
| 31 | #include "libbb.h" | 31 | #include "libbb.h" |
| 32 | 32 | ||
| 33 | const char* FAST_FUNC make_human_readable_str(unsigned long long size, | 33 | const char* FAST_FUNC make_human_readable_str(unsigned long long val, |
| 34 | unsigned long block_size, unsigned long display_unit) | 34 | unsigned long block_size, unsigned long display_unit) |
| 35 | { | 35 | { |
| 36 | /* The code will adjust for additional (appended) units */ | ||
| 37 | static const char unit_chars[] ALIGN1 = { | 36 | static const char unit_chars[] ALIGN1 = { |
| 38 | '\0', 'K', 'M', 'G', 'T', 'P', 'E' | 37 | '\0', 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y' |
| 39 | }; | 38 | }; |
| 40 | static const char fmt[] ALIGN1 = "%llu"; | ||
| 41 | static const char fmt_tenths[] ALIGN1 = "%llu.%d%c"; | ||
| 42 | 39 | ||
| 43 | static char str[21] ALIGN1; /* Sufficient for 64 bit unsigned integers */ | 40 | static char *str; |
| 44 | 41 | ||
| 45 | unsigned long long val; | 42 | unsigned frac; /* 0..9 - the fractional digit */ |
| 46 | int frac; | ||
| 47 | const char *u; | 43 | const char *u; |
| 48 | const char *f; | 44 | const char *fmt; |
| 49 | smallint no_tenths; | ||
| 50 | 45 | ||
| 51 | if (size == 0) | 46 | if (val == 0) |
| 52 | return "0"; | 47 | return "0"; |
| 53 | 48 | ||
| 54 | /* If block_size is 0 then do not print tenths */ | 49 | fmt = "%llu"; |
| 55 | no_tenths = 0; | 50 | if (block_size > 1) |
| 56 | if (block_size == 0) { | 51 | val *= block_size; |
| 57 | no_tenths = 1; | ||
| 58 | block_size = 1; | ||
| 59 | } | ||
| 60 | |||
| 61 | u = unit_chars; | ||
| 62 | val = size * block_size; | ||
| 63 | f = fmt; | ||
| 64 | frac = 0; | 52 | frac = 0; |
| 53 | u = unit_chars; | ||
| 65 | 54 | ||
| 66 | if (display_unit) { | 55 | if (display_unit) { |
| 67 | val += display_unit/2; /* Deal with rounding */ | 56 | val += display_unit/2; /* Deal with rounding */ |
| 68 | val /= display_unit; /* Don't combine with the line above!!! */ | 57 | val /= display_unit; /* Don't combine with the line above! */ |
| 69 | /* will just print it as ulonglong (below) */ | 58 | /* will just print it as ulonglong (below) */ |
| 70 | } else { | 59 | } else { |
| 71 | while ((val >= 1024) | 60 | while ((val >= 1024) |
| 72 | && (u < unit_chars + sizeof(unit_chars) - 1) | 61 | /* && (u < unit_chars + sizeof(unit_chars) - 1) - never happens */ |
| 73 | ) { | 62 | ) { |
| 74 | f = fmt_tenths; | 63 | fmt = "%llu.%u%c"; |
| 75 | u++; | 64 | u++; |
| 76 | frac = (((int)(val % 1024)) * 10 + 1024/2) / 1024; | 65 | frac = (((unsigned)val % 1024) * 10 + 1024/2) / 1024; |
| 77 | val /= 1024; | 66 | val /= 1024; |
| 78 | } | 67 | } |
| 79 | if (frac >= 10) { /* We need to round up here. */ | 68 | if (frac >= 10) { /* we need to round up here */ |
| 80 | ++val; | 69 | ++val; |
| 81 | frac = 0; | 70 | frac = 0; |
| 82 | } | 71 | } |
| 83 | #if 1 | 72 | #if 1 |
| 84 | /* Sample code to omit decimal point and tenths digit. */ | 73 | /* If block_size is 0, dont print fractional part */ |
| 85 | if (no_tenths) { | 74 | if (block_size == 0) { |
| 86 | if (frac >= 5) { | 75 | if (frac >= 5) { |
| 87 | ++val; | 76 | ++val; |
| 88 | } | 77 | } |
| 89 | f = "%llu%*c" /* fmt_no_tenths */; | 78 | fmt = "%llu%*c"; |
| 90 | frac = 1; | 79 | frac = 1; |
| 91 | } | 80 | } |
| 92 | #endif | 81 | #endif |
| 93 | } | 82 | } |
| 94 | 83 | ||
| 95 | /* If f==fmt then 'frac' and 'u' are ignored. */ | 84 | if (!str) { |
| 96 | snprintf(str, sizeof(str), f, val, frac, *u); | 85 | /* sufficient for any width of val */ |
| 97 | 86 | str = xmalloc(sizeof(val)*3 + 2 + 3); | |
| 87 | } | ||
| 88 | sprintf(str, fmt, val, frac, *u); | ||
| 98 | return str; | 89 | return str; |
| 99 | } | 90 | } |
| 91 | |||
| 92 | |||
| 93 | /* vda's implementations of the similar idea */ | ||
| 94 | |||
| 95 | /* Convert unsigned long long value into compact 5-char representation. | ||
| 96 | * String is not terminated (buf[5] is untouched) */ | ||
| 97 | void FAST_FUNC smart_ulltoa5(unsigned long long ul, char buf[6], const char *scale) | ||
| 98 | { | ||
| 99 | const char *fmt; | ||
| 100 | char c; | ||
| 101 | unsigned v, u, idx = 0; | ||
| 102 | |||
| 103 | if (ul > 99999) { // do not scale if 99999 or less | ||
| 104 | ul *= 10; | ||
| 105 | do { | ||
| 106 | ul /= 1024; | ||
| 107 | idx++; | ||
| 108 | } while (ul >= 100000); | ||
| 109 | } | ||
| 110 | v = ul; // ullong divisions are expensive, avoid them | ||
| 111 | |||
| 112 | fmt = " 123456789"; | ||
| 113 | u = v / 10; | ||
| 114 | v = v % 10; | ||
| 115 | if (!idx) { | ||
| 116 | // 99999 or less: use "12345" format | ||
| 117 | // u is value/10, v is last digit | ||
| 118 | c = buf[0] = " 123456789"[u/1000]; | ||
| 119 | if (c != ' ') fmt = "0123456789"; | ||
| 120 | c = buf[1] = fmt[u/100%10]; | ||
| 121 | if (c != ' ') fmt = "0123456789"; | ||
| 122 | c = buf[2] = fmt[u/10%10]; | ||
| 123 | if (c != ' ') fmt = "0123456789"; | ||
| 124 | buf[3] = fmt[u%10]; | ||
| 125 | buf[4] = "0123456789"[v]; | ||
| 126 | } else { | ||
| 127 | // value has been scaled into 0..9999.9 range | ||
| 128 | // u is value, v is 1/10ths (allows for 92.1M format) | ||
| 129 | if (u >= 100) { | ||
| 130 | // value is >= 100: use "1234M', " 123M" formats | ||
| 131 | c = buf[0] = " 123456789"[u/1000]; | ||
| 132 | if (c != ' ') fmt = "0123456789"; | ||
| 133 | c = buf[1] = fmt[u/100%10]; | ||
| 134 | if (c != ' ') fmt = "0123456789"; | ||
| 135 | v = u % 10; | ||
| 136 | u = u / 10; | ||
| 137 | buf[2] = fmt[u%10]; | ||
| 138 | } else { | ||
| 139 | // value is < 100: use "92.1M" format | ||
| 140 | c = buf[0] = " 123456789"[u/10]; | ||
| 141 | if (c != ' ') fmt = "0123456789"; | ||
| 142 | buf[1] = fmt[u%10]; | ||
| 143 | buf[2] = '.'; | ||
| 144 | } | ||
| 145 | buf[3] = "0123456789"[v]; | ||
| 146 | buf[4] = scale[idx]; /* typically scale = " kmgt..." */ | ||
| 147 | } | ||
| 148 | } | ||
| 149 | |||
| 150 | /* Convert unsigned long long value into compact 4-char | ||
| 151 | * representation. Examples: "1234", "1.2k", " 27M", "123T" | ||
| 152 | * String is not terminated (buf[4] is untouched) */ | ||
| 153 | void FAST_FUNC smart_ulltoa4(unsigned long long ul, char buf[5], const char *scale) | ||
| 154 | { | ||
| 155 | const char *fmt; | ||
| 156 | char c; | ||
| 157 | unsigned v, u, idx = 0; | ||
| 158 | |||
| 159 | if (ul > 9999) { // do not scale if 9999 or less | ||
| 160 | ul *= 10; | ||
| 161 | do { | ||
| 162 | ul /= 1024; | ||
| 163 | idx++; | ||
| 164 | } while (ul >= 10000); | ||
| 165 | } | ||
| 166 | v = ul; // ullong divisions are expensive, avoid them | ||
| 167 | |||
| 168 | fmt = " 123456789"; | ||
| 169 | u = v / 10; | ||
| 170 | v = v % 10; | ||
| 171 | if (!idx) { | ||
| 172 | // 9999 or less: use "1234" format | ||
| 173 | // u is value/10, v is last digit | ||
| 174 | c = buf[0] = " 123456789"[u/100]; | ||
| 175 | if (c != ' ') fmt = "0123456789"; | ||
| 176 | c = buf[1] = fmt[u/10%10]; | ||
| 177 | if (c != ' ') fmt = "0123456789"; | ||
| 178 | buf[2] = fmt[u%10]; | ||
| 179 | buf[3] = "0123456789"[v]; | ||
| 180 | } else { | ||
| 181 | // u is value, v is 1/10ths (allows for 9.2M format) | ||
| 182 | if (u >= 10) { | ||
| 183 | // value is >= 10: use "123M', " 12M" formats | ||
| 184 | c = buf[0] = " 123456789"[u/100]; | ||
| 185 | if (c != ' ') fmt = "0123456789"; | ||
| 186 | v = u % 10; | ||
| 187 | u = u / 10; | ||
| 188 | buf[1] = fmt[u%10]; | ||
| 189 | } else { | ||
| 190 | // value is < 10: use "9.2M" format | ||
| 191 | buf[0] = "0123456789"[u]; | ||
| 192 | buf[1] = '.'; | ||
| 193 | } | ||
| 194 | buf[2] = "0123456789"[v]; | ||
| 195 | buf[3] = scale[idx]; /* typically scale = " kmgt..." */ | ||
| 196 | } | ||
| 197 | } | ||
diff --git a/libbb/xfuncs.c b/libbb/xfuncs.c index a86efc298..aa0812914 100644 --- a/libbb/xfuncs.c +++ b/libbb/xfuncs.c | |||
| @@ -48,110 +48,6 @@ char* FAST_FUNC strncpy_IFNAMSIZ(char *dst, const char *src) | |||
| 48 | return strncpy(dst, src, IFNAMSIZ); | 48 | return strncpy(dst, src, IFNAMSIZ); |
| 49 | } | 49 | } |
| 50 | 50 | ||
| 51 | /* Convert unsigned long long value into compact 4-char | ||
| 52 | * representation. Examples: "1234", "1.2k", " 27M", "123T" | ||
| 53 | * String is not terminated (buf[4] is untouched) */ | ||
| 54 | void FAST_FUNC smart_ulltoa4(unsigned long long ul, char buf[5], const char *scale) | ||
| 55 | { | ||
| 56 | const char *fmt; | ||
| 57 | char c; | ||
| 58 | unsigned v, u, idx = 0; | ||
| 59 | |||
| 60 | if (ul > 9999) { // do not scale if 9999 or less | ||
| 61 | ul *= 10; | ||
| 62 | do { | ||
| 63 | ul /= 1024; | ||
| 64 | idx++; | ||
| 65 | } while (ul >= 10000); | ||
| 66 | } | ||
| 67 | v = ul; // ullong divisions are expensive, avoid them | ||
| 68 | |||
| 69 | fmt = " 123456789"; | ||
| 70 | u = v / 10; | ||
| 71 | v = v % 10; | ||
| 72 | if (!idx) { | ||
| 73 | // 9999 or less: use "1234" format | ||
| 74 | // u is value/10, v is last digit | ||
| 75 | c = buf[0] = " 123456789"[u/100]; | ||
| 76 | if (c != ' ') fmt = "0123456789"; | ||
| 77 | c = buf[1] = fmt[u/10%10]; | ||
| 78 | if (c != ' ') fmt = "0123456789"; | ||
| 79 | buf[2] = fmt[u%10]; | ||
| 80 | buf[3] = "0123456789"[v]; | ||
| 81 | } else { | ||
| 82 | // u is value, v is 1/10ths (allows for 9.2M format) | ||
| 83 | if (u >= 10) { | ||
| 84 | // value is >= 10: use "123M', " 12M" formats | ||
| 85 | c = buf[0] = " 123456789"[u/100]; | ||
| 86 | if (c != ' ') fmt = "0123456789"; | ||
| 87 | v = u % 10; | ||
| 88 | u = u / 10; | ||
| 89 | buf[1] = fmt[u%10]; | ||
| 90 | } else { | ||
| 91 | // value is < 10: use "9.2M" format | ||
| 92 | buf[0] = "0123456789"[u]; | ||
| 93 | buf[1] = '.'; | ||
| 94 | } | ||
| 95 | buf[2] = "0123456789"[v]; | ||
| 96 | buf[3] = scale[idx]; /* typically scale = " kmgt..." */ | ||
| 97 | } | ||
| 98 | } | ||
| 99 | |||
| 100 | /* Convert unsigned long long value into compact 5-char representation. | ||
| 101 | * String is not terminated (buf[5] is untouched) */ | ||
| 102 | void FAST_FUNC smart_ulltoa5(unsigned long long ul, char buf[6], const char *scale) | ||
| 103 | { | ||
| 104 | const char *fmt; | ||
| 105 | char c; | ||
| 106 | unsigned v, u, idx = 0; | ||
| 107 | |||
| 108 | if (ul > 99999) { // do not scale if 99999 or less | ||
| 109 | ul *= 10; | ||
| 110 | do { | ||
| 111 | ul /= 1024; | ||
| 112 | idx++; | ||
| 113 | } while (ul >= 100000); | ||
| 114 | } | ||
| 115 | v = ul; // ullong divisions are expensive, avoid them | ||
| 116 | |||
| 117 | fmt = " 123456789"; | ||
| 118 | u = v / 10; | ||
| 119 | v = v % 10; | ||
| 120 | if (!idx) { | ||
| 121 | // 99999 or less: use "12345" format | ||
| 122 | // u is value/10, v is last digit | ||
| 123 | c = buf[0] = " 123456789"[u/1000]; | ||
| 124 | if (c != ' ') fmt = "0123456789"; | ||
| 125 | c = buf[1] = fmt[u/100%10]; | ||
| 126 | if (c != ' ') fmt = "0123456789"; | ||
| 127 | c = buf[2] = fmt[u/10%10]; | ||
| 128 | if (c != ' ') fmt = "0123456789"; | ||
| 129 | buf[3] = fmt[u%10]; | ||
| 130 | buf[4] = "0123456789"[v]; | ||
| 131 | } else { | ||
| 132 | // value has been scaled into 0..9999.9 range | ||
| 133 | // u is value, v is 1/10ths (allows for 92.1M format) | ||
| 134 | if (u >= 100) { | ||
| 135 | // value is >= 100: use "1234M', " 123M" formats | ||
| 136 | c = buf[0] = " 123456789"[u/1000]; | ||
| 137 | if (c != ' ') fmt = "0123456789"; | ||
| 138 | c = buf[1] = fmt[u/100%10]; | ||
| 139 | if (c != ' ') fmt = "0123456789"; | ||
| 140 | v = u % 10; | ||
| 141 | u = u / 10; | ||
| 142 | buf[2] = fmt[u%10]; | ||
| 143 | } else { | ||
| 144 | // value is < 100: use "92.1M" format | ||
| 145 | c = buf[0] = " 123456789"[u/10]; | ||
| 146 | if (c != ' ') fmt = "0123456789"; | ||
| 147 | buf[1] = fmt[u%10]; | ||
| 148 | buf[2] = '.'; | ||
| 149 | } | ||
| 150 | buf[3] = "0123456789"[v]; | ||
| 151 | buf[4] = scale[idx]; /* typically scale = " kmgt..." */ | ||
| 152 | } | ||
| 153 | } | ||
| 154 | |||
| 155 | 51 | ||
| 156 | // Convert unsigned integer to ascii, writing into supplied buffer. | 52 | // Convert unsigned integer to ascii, writing into supplied buffer. |
| 157 | // A truncated result contains the first few digits of the result ala strncpy. | 53 | // A truncated result contains the first few digits of the result ala strncpy. |
