1 |
|
|
/* $OpenBSD: fmt_scaled.c,v 1.16 2017/03/16 02:40:46 dtucker Exp $ */ |
2 |
|
|
|
3 |
|
|
/* |
4 |
|
|
* Copyright (c) 2001, 2002, 2003 Ian F. Darwin. All rights reserved. |
5 |
|
|
* |
6 |
|
|
* Redistribution and use in source and binary forms, with or without |
7 |
|
|
* modification, are permitted provided that the following conditions |
8 |
|
|
* are met: |
9 |
|
|
* 1. Redistributions of source code must retain the above copyright |
10 |
|
|
* notice, this list of conditions and the following disclaimer. |
11 |
|
|
* 2. Redistributions in binary form must reproduce the above copyright |
12 |
|
|
* notice, this list of conditions and the following disclaimer in the |
13 |
|
|
* documentation and/or other materials provided with the distribution. |
14 |
|
|
* 3. The name of the author may not be used to endorse or promote products |
15 |
|
|
* derived from this software without specific prior written permission. |
16 |
|
|
* |
17 |
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR |
18 |
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES |
19 |
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
20 |
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
21 |
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
22 |
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 |
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 |
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 |
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
26 |
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 |
|
|
*/ |
28 |
|
|
|
29 |
|
|
/* |
30 |
|
|
* fmt_scaled: Format numbers scaled for human comprehension |
31 |
|
|
* scan_scaled: Scan numbers in this format. |
32 |
|
|
* |
33 |
|
|
* "Human-readable" output uses 4 digits max, and puts a unit suffix at |
34 |
|
|
* the end. Makes output compact and easy-to-read esp. on huge disks. |
35 |
|
|
* Formatting code was originally in OpenBSD "df", converted to library routine. |
36 |
|
|
* Scanning code written for OpenBSD libutil. |
37 |
|
|
*/ |
38 |
|
|
|
39 |
|
|
#include <stdio.h> |
40 |
|
|
#include <stdlib.h> |
41 |
|
|
#include <errno.h> |
42 |
|
|
#include <string.h> |
43 |
|
|
#include <ctype.h> |
44 |
|
|
#include <limits.h> |
45 |
|
|
|
46 |
|
|
#include "util.h" |
47 |
|
|
|
48 |
|
|
typedef enum { |
49 |
|
|
NONE = 0, KILO = 1, MEGA = 2, GIGA = 3, TERA = 4, PETA = 5, EXA = 6 |
50 |
|
|
} unit_type; |
51 |
|
|
|
52 |
|
|
/* These three arrays MUST be in sync! XXX make a struct */ |
53 |
|
|
static unit_type units[] = { NONE, KILO, MEGA, GIGA, TERA, PETA, EXA }; |
54 |
|
|
static char scale_chars[] = "BKMGTPE"; |
55 |
|
|
static long long scale_factors[] = { |
56 |
|
|
1LL, |
57 |
|
|
1024LL, |
58 |
|
|
1024LL*1024, |
59 |
|
|
1024LL*1024*1024, |
60 |
|
|
1024LL*1024*1024*1024, |
61 |
|
|
1024LL*1024*1024*1024*1024, |
62 |
|
|
1024LL*1024*1024*1024*1024*1024, |
63 |
|
|
}; |
64 |
|
|
#define SCALE_LENGTH (sizeof(units)/sizeof(units[0])) |
65 |
|
|
|
66 |
|
|
#define MAX_DIGITS (SCALE_LENGTH * 3) /* XXX strlen(sprintf("%lld", -1)? */ |
67 |
|
|
|
68 |
|
|
/* Convert the given input string "scaled" into numeric in "result". |
69 |
|
|
* Return 0 on success, -1 and errno set on error. |
70 |
|
|
*/ |
71 |
|
|
int |
72 |
|
|
scan_scaled(char *scaled, long long *result) |
73 |
|
|
{ |
74 |
|
|
char *p = scaled; |
75 |
|
|
int sign = 0; |
76 |
|
|
unsigned int i, ndigits = 0, fract_digits = 0; |
77 |
|
|
long long scale_fact = 1, whole = 0, fpart = 0; |
78 |
|
|
|
79 |
|
|
/* Skip leading whitespace */ |
80 |
✓✗✓✓
|
788 |
while (isascii((unsigned char)*p) && isspace((unsigned char)*p)) |
81 |
|
28 |
++p; |
82 |
|
|
|
83 |
|
|
/* Then at most one leading + or - */ |
84 |
✓✓✓✓
|
400 |
while (*p == '-' || *p == '+') { |
85 |
✓✓ |
56 |
if (*p == '-') { |
86 |
✓✓ |
48 |
if (sign) { |
87 |
|
4 |
errno = EINVAL; |
88 |
|
4 |
return -1; |
89 |
|
|
} |
90 |
|
|
sign = -1; |
91 |
|
44 |
++p; |
92 |
✗✓ |
52 |
} else if (*p == '+') { |
93 |
✓✓ |
8 |
if (sign) { |
94 |
|
4 |
errno = EINVAL; |
95 |
|
4 |
return -1; |
96 |
|
|
} |
97 |
|
|
sign = +1; |
98 |
|
4 |
++p; |
99 |
|
4 |
} |
100 |
|
|
} |
101 |
|
|
|
102 |
|
|
/* Main loop: Scan digits, find decimal point, if present. |
103 |
|
|
* We don't allow exponentials, so no scientific notation |
104 |
|
|
* (but note that E for Exa might look like e to some!). |
105 |
|
|
* Advance 'p' to end, to get scale factor. |
106 |
|
|
*/ |
107 |
✓✗✓✓
|
3728 |
for (; isascii((unsigned char)*p) && |
108 |
✓✓ |
3728 |
(isdigit((unsigned char)*p) || *p=='.'); ++p) { |
109 |
✓✓ |
1712 |
if (*p == '.') { |
110 |
✓✓ |
64 |
if (fract_digits > 0) { /* oops, more than one '.' */ |
111 |
|
4 |
errno = EINVAL; |
112 |
|
4 |
return -1; |
113 |
|
|
} |
114 |
|
|
fract_digits = 1; |
115 |
|
60 |
continue; |
116 |
|
|
} |
117 |
|
|
|
118 |
|
1648 |
i = (*p) - '0'; /* whew! finally a digit we can use */ |
119 |
✓✓ |
1648 |
if (fract_digits > 0) { |
120 |
✓✓ |
384 |
if (fract_digits >= MAX_DIGITS-1) |
121 |
|
|
/* ignore extra fractional digits */ |
122 |
|
|
continue; |
123 |
|
340 |
fract_digits++; /* for later scaling */ |
124 |
✗✓ |
340 |
if (fpart > LLONG_MAX / 10) { |
125 |
|
|
errno = ERANGE; |
126 |
|
|
return -1; |
127 |
|
|
} |
128 |
|
340 |
fpart *= 10; |
129 |
✗✓ |
340 |
if (i > LLONG_MAX - fpart) { |
130 |
|
|
errno = ERANGE; |
131 |
|
|
return -1; |
132 |
|
|
} |
133 |
|
340 |
fpart += i; |
134 |
|
340 |
} else { /* normal digit */ |
135 |
✗✓ |
1264 |
if (++ndigits >= MAX_DIGITS) { |
136 |
|
|
errno = ERANGE; |
137 |
|
|
return -1; |
138 |
|
|
} |
139 |
✓✓ |
1264 |
if (whole > LLONG_MAX / 10) { |
140 |
|
8 |
errno = ERANGE; |
141 |
|
8 |
return -1; |
142 |
|
|
} |
143 |
|
1256 |
whole *= 10; |
144 |
✓✓ |
1256 |
if (i > LLONG_MAX - whole) { |
145 |
|
20 |
errno = ERANGE; |
146 |
|
20 |
return -1; |
147 |
|
|
} |
148 |
|
1236 |
whole += i; |
149 |
|
|
} |
150 |
|
|
} |
151 |
|
|
|
152 |
✓✓ |
136 |
if (sign) { |
153 |
|
24 |
whole *= sign; |
154 |
|
24 |
fpart *= sign; |
155 |
|
24 |
} |
156 |
|
|
|
157 |
|
|
/* If no scale factor given, we're done. fraction is discarded. */ |
158 |
✓✓ |
136 |
if (!*p) { |
159 |
|
40 |
*result = whole; |
160 |
|
40 |
return 0; |
161 |
|
|
} |
162 |
|
|
|
163 |
|
|
/* Validate scale factor, and scale whole and fraction by it. */ |
164 |
✓✓ |
720 |
for (i = 0; i < SCALE_LENGTH; i++) { |
165 |
|
|
|
166 |
|
|
/* Are we there yet? */ |
167 |
✓✓✓✓
|
624 |
if (*p == scale_chars[i] || |
168 |
|
276 |
*p == tolower((unsigned char)scale_chars[i])) { |
169 |
|
|
|
170 |
|
|
/* If it ends with alphanumerics after the scale char, bad. */ |
171 |
✓✓ |
84 |
if (isalnum((unsigned char)*(p+1))) { |
172 |
|
8 |
errno = EINVAL; |
173 |
|
8 |
return -1; |
174 |
|
|
} |
175 |
|
76 |
scale_fact = scale_factors[i]; |
176 |
|
|
|
177 |
|
|
/* check for overflow and underflow after scaling */ |
178 |
✓✓✓✓
|
148 |
if (whole > LLONG_MAX / scale_fact || |
179 |
|
72 |
whole < LLONG_MIN / scale_fact) { |
180 |
|
8 |
errno = ERANGE; |
181 |
|
8 |
return -1; |
182 |
|
|
} |
183 |
|
|
|
184 |
|
|
/* scale whole part */ |
185 |
|
68 |
whole *= scale_fact; |
186 |
|
|
|
187 |
|
|
/* truncate fpart so it does't overflow. |
188 |
|
|
* then scale fractional part. |
189 |
|
|
*/ |
190 |
✓✓ |
224 |
while (fpart >= LLONG_MAX / scale_fact) { |
191 |
|
44 |
fpart /= 10; |
192 |
|
44 |
fract_digits--; |
193 |
|
|
} |
194 |
|
68 |
fpart *= scale_fact; |
195 |
✓✓ |
68 |
if (fract_digits > 0) { |
196 |
✓✓ |
624 |
for (i = 0; i < fract_digits -1; i++) |
197 |
|
272 |
fpart /= 10; |
198 |
|
|
} |
199 |
|
68 |
whole += fpart; |
200 |
|
68 |
*result = whole; |
201 |
|
68 |
return 0; |
202 |
|
|
} |
203 |
|
|
} |
204 |
|
|
|
205 |
|
|
/* Invalid unit or character */ |
206 |
|
12 |
errno = EINVAL; |
207 |
|
12 |
return -1; |
208 |
|
176 |
} |
209 |
|
|
|
210 |
|
|
/* Format the given "number" into human-readable form in "result". |
211 |
|
|
* Result must point to an allocated buffer of length FMT_SCALED_STRSIZE. |
212 |
|
|
* Return 0 on success, -1 and errno set if error. |
213 |
|
|
*/ |
214 |
|
|
int |
215 |
|
|
fmt_scaled(long long number, char *result) |
216 |
|
|
{ |
217 |
|
|
long long abval, fract = 0; |
218 |
|
|
unsigned int i; |
219 |
|
|
unit_type unit = NONE; |
220 |
|
|
|
221 |
|
312 |
abval = llabs(number); |
222 |
|
|
|
223 |
|
|
/* Not every negative long long has a positive representation. |
224 |
|
|
* Also check for numbers that are just too darned big to format |
225 |
|
|
*/ |
226 |
✓✓✗✓
|
308 |
if (abval < 0 || abval / 1024 >= scale_factors[SCALE_LENGTH-1]) { |
227 |
|
4 |
errno = ERANGE; |
228 |
|
4 |
return -1; |
229 |
|
|
} |
230 |
|
|
|
231 |
|
|
/* scale whole part; get unscaled fraction */ |
232 |
✓✗ |
728 |
for (i = 0; i < SCALE_LENGTH; i++) { |
233 |
✓✓ |
364 |
if (abval/1024 < scale_factors[i]) { |
234 |
|
152 |
unit = units[i]; |
235 |
✓✓ |
420 |
fract = (i == 0) ? 0 : abval % scale_factors[i]; |
236 |
|
152 |
number /= scale_factors[i]; |
237 |
✓✓ |
152 |
if (i > 0) |
238 |
|
116 |
fract /= scale_factors[i - 1]; |
239 |
|
|
break; |
240 |
|
|
} |
241 |
|
|
} |
242 |
|
|
|
243 |
|
152 |
fract = (10 * fract + 512) / 1024; |
244 |
|
|
/* if the result would be >= 10, round main number */ |
245 |
✓✓ |
152 |
if (fract == 10) { |
246 |
✓✓ |
12 |
if (number >= 0) |
247 |
|
8 |
number++; |
248 |
|
|
else |
249 |
|
4 |
number--; |
250 |
|
|
fract = 0; |
251 |
|
12 |
} |
252 |
|
|
|
253 |
✓✓ |
152 |
if (number == 0) |
254 |
|
4 |
strlcpy(result, "0B", FMT_SCALED_STRSIZE); |
255 |
✓✓ |
148 |
else if (unit == NONE || number >= 100 || number <= -100) { |
256 |
✓✓ |
64 |
if (fract >= 5) { |
257 |
✓✓ |
24 |
if (number >= 0) |
258 |
|
20 |
number++; |
259 |
|
|
else |
260 |
|
4 |
number--; |
261 |
|
|
} |
262 |
|
64 |
(void)snprintf(result, FMT_SCALED_STRSIZE, "%lld%c", |
263 |
|
64 |
number, scale_chars[unit]); |
264 |
|
64 |
} else |
265 |
|
84 |
(void)snprintf(result, FMT_SCALED_STRSIZE, "%lld.%1lld%c", |
266 |
|
84 |
number, fract, scale_chars[unit]); |
267 |
|
|
|
268 |
|
152 |
return 0; |
269 |
|
156 |
} |
270 |
|
|
|
271 |
|
|
#ifdef MAIN |
272 |
|
|
/* |
273 |
|
|
* This is the original version of the program in the man page. |
274 |
|
|
* Copy-and-paste whatever you need from it. |
275 |
|
|
*/ |
276 |
|
|
int |
277 |
|
|
main(int argc, char **argv) |
278 |
|
|
{ |
279 |
|
|
char *cinput = "1.5K", buf[FMT_SCALED_STRSIZE]; |
280 |
|
|
long long ninput = 10483892, result; |
281 |
|
|
|
282 |
|
|
if (scan_scaled(cinput, &result) == 0) |
283 |
|
|
printf("\"%s\" -> %lld\n", cinput, result); |
284 |
|
|
else |
285 |
|
|
perror(cinput); |
286 |
|
|
|
287 |
|
|
if (fmt_scaled(ninput, buf) == 0) |
288 |
|
|
printf("%lld -> \"%s\"\n", ninput, buf); |
289 |
|
|
else |
290 |
|
|
fprintf(stderr, "%lld invalid (%s)\n", ninput, strerror(errno)); |
291 |
|
|
|
292 |
|
|
return 0; |
293 |
|
|
} |
294 |
|
|
#endif |