blob: 4228aaf4229bd35f3a4f92785931283434054a5e [file] [log] [blame]
"Robert P. J. Day"63fc1a92006-07-02 19:47:05 +00001/* vi: set sw=4 ts=4: */
Eric Andersenaad1a882001-03-16 22:47:14 +00002/*
Manuel Novoa III d877d442001-06-30 07:40:44 +00003 * June 30, 2001 Manuel Novoa III
Eric Andersenaad1a882001-03-16 22:47:14 +00004 *
Manuel Novoa III d877d442001-06-30 07:40:44 +00005 * All-integer version (hey, not everyone has floating point) of
6 * make_human_readable_str, modified from similar code I had written
7 * for busybox several months ago.
Eric Andersenaad1a882001-03-16 22:47:14 +00008 *
Manuel Novoa III d877d442001-06-30 07:40:44 +00009 * Notes:
10 * 1) I'm using an unsigned long long to hold the product size * block_size,
11 * as df (which calls this routine) could request a representation of a
12 * partition size in bytes > max of unsigned long. If long longs aren't
13 * available, it would be possible to do what's needed using polynomial
14 * representations (say, powers of 1024) and manipulating coefficients.
15 * The base ten "bytes" output could be handled similarly.
Eric Andersenaad1a882001-03-16 22:47:14 +000016 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +000017 * 2) This routine always outputs a decimal point and a tenths digit when
18 * display_unit != 0. Hence, it isn't uncommon for the returned string
Eric Andersen01595972001-06-30 18:08:36 +000019 * to have a length of 5 or 6.
Eric Andersenaad1a882001-03-16 22:47:14 +000020 *
Manuel Novoa III d877d442001-06-30 07:40:44 +000021 * It might be nice to add a flag to indicate no decimal digits in
22 * that case. This could be either an additional parameter, or a
23 * special value of display_unit. Such a flag would also be nice for du.
24 *
25 * Some code to omit the decimal point and tenths digit is sketched out
26 * and "#if 0"'d below.
Denis Vlasenkodb12d1d2008-12-07 00:52:58 +000027 *
28 * Licensed under GPLv2, see file LICENSE in this tarball for details.
Eric Andersenaad1a882001-03-16 22:47:14 +000029 */
30
Eric Andersenaad1a882001-03-16 22:47:14 +000031#include "libbb.h"
32
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020033const char* FAST_FUNC make_human_readable_str(unsigned long long val,
Eric Andersen97e24262003-08-22 23:08:37 +000034 unsigned long block_size, unsigned long display_unit)
Eric Andersenaad1a882001-03-16 22:47:14 +000035{
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000036 static const char unit_chars[] ALIGN1 = {
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020037 '\0', 'K', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000038 };
Eric Andersenaad1a882001-03-16 22:47:14 +000039
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020040 static char *str;
Eric Andersenc7bda1c2004-03-15 08:29:22 +000041
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020042 unsigned frac; /* 0..9 - the fractional digit */
Manuel Novoa III d877d442001-06-30 07:40:44 +000043 const char *u;
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020044 const char *fmt;
Eric Andersen91c93882001-04-03 23:14:29 +000045
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020046 if (val == 0)
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000047 return "0";
48
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020049 fmt = "%llu";
50 if (block_size > 1)
51 val *= block_size;
Manuel Novoa III d877d442001-06-30 07:40:44 +000052 frac = 0;
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020053 u = unit_chars;
Manuel Novoa III d877d442001-06-30 07:40:44 +000054
Manuel Novoa III d877d442001-06-30 07:40:44 +000055 if (display_unit) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000056 val += display_unit/2; /* Deal with rounding */
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020057 val /= display_unit; /* Don't combine with the line above! */
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000058 /* will just print it as ulonglong (below) */
Manuel Novoa III d877d442001-06-30 07:40:44 +000059 } else {
Denis Vlasenkodca0b702006-10-27 09:05:02 +000060 while ((val >= 1024)
Denys Vlasenko9c3b84a2010-01-18 01:55:00 +010061 /* && (u < unit_chars + sizeof(unit_chars) - 1) - always true */
Denis Vlasenkodca0b702006-10-27 09:05:02 +000062 ) {
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020063 fmt = "%llu.%u%c";
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000064 u++;
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020065 frac = (((unsigned)val % 1024) * 10 + 1024/2) / 1024;
Denis Vlasenkodca0b702006-10-27 09:05:02 +000066 val /= 1024;
Manuel Novoa III d877d442001-06-30 07:40:44 +000067 }
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020068 if (frac >= 10) { /* we need to round up here */
Manuel Novoa III d877d442001-06-30 07:40:44 +000069 ++val;
70 frac = 0;
71 }
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000072#if 1
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020073 /* If block_size is 0, dont print fractional part */
74 if (block_size == 0) {
Denis Vlasenko219d14d2007-03-24 15:40:16 +000075 if (frac >= 5) {
Manuel Novoa III d877d442001-06-30 07:40:44 +000076 ++val;
77 }
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020078 fmt = "%llu%*c";
Manuel Novoa III d877d442001-06-30 07:40:44 +000079 frac = 1;
80 }
81#endif
82 }
83
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020084 if (!str) {
85 /* sufficient for any width of val */
86 str = xmalloc(sizeof(val)*3 + 2 + 3);
87 }
88 sprintf(str, fmt, val, frac, *u);
Manuel Novoa III d877d442001-06-30 07:40:44 +000089 return str;
90}
Denys Vlasenko0bf44d02009-10-13 01:25:09 +020091
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) */
97void 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) */
153void 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}