1 /* human.c -- print human readable file size
3 Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 Free Software
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software Foundation,
18 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
20 /* Originally contributed by lm@sgi.com;
21 --si, output block size selection, and large file support
22 added by eggert@twinsun.com. */
28 #include <sys/types.h>
48 #ifndef HAVE_DECL_GETENV
49 "this configure-time declaration test was not run"
57 # define _(Text) gettext (Text)
68 static const char suffixes
[] =
71 'K', /* kibi ('k' for kilo is a special case) */
72 'M', /* mega or mebi */
73 'G', /* giga or gibi */
74 'T', /* tera or tebi */
75 'P', /* peta or pebi */
76 'E', /* exa or exbi */
77 'Z', /* zetta or 2**70 */
78 'Y' /* yotta or 2**80 */
81 /* Generate into P[-1] (and possibly P[-2]) the proper suffix for
82 POWER and BASE. Return the address of the generated suffix. */
84 generate_suffix_backwards (char *p
, int power
, int base
)
86 char letter
= suffixes
[power
];
99 /* If INEXACT_STYLE is not human_round_to_even, and if easily
100 possible, adjust VALUE according to the style. */
102 adjust_value (enum human_inexact_style inexact_style
, double value
)
104 /* Do not use the floor or ceil functions, as that would mean
105 linking with the standard math library, which is a porting pain.
106 So leave the value alone if it is too large to easily round. */
107 if (inexact_style
!= human_round_to_even
&& value
< (uintmax_t) -1)
110 value
= u
+ (inexact_style
== human_ceiling
&& u
!= value
);
116 /* Like human_readable_inexact, except always round to even. */
118 human_readable (uintmax_t n
, char *buf
,
119 int from_block_size
, int output_block_size
)
121 return human_readable_inexact (n
, buf
, from_block_size
, output_block_size
,
122 human_round_to_even
);
125 /* Convert N to a human readable format in BUF.
127 N is expressed in units of FROM_BLOCK_SIZE. FROM_BLOCK_SIZE must
130 OUTPUT_BLOCK_SIZE must be nonzero. If it is positive, use units of
131 OUTPUT_BLOCK_SIZE in the output number.
133 Use INEXACT_STYLE to determine whether to take the ceiling or floor
134 of any result that cannot be expressed exactly.
136 If OUTPUT_BLOCK_SIZE is negative, use a format like "127K" if
137 possible, using powers of -OUTPUT_BLOCK_SIZE; otherwise, use
138 ordinary decimal format. Normally -OUTPUT_BLOCK_SIZE is either
139 1000 or 1024; it must be at least 2. Most people visually process
140 strings of 3-4 digits effectively, but longer strings of digits are
141 more prone to misinterpretation. Hence, converting to an
142 abbreviated form usually improves readability. Use a suffix
143 indicating which power is being used. For example, assuming
144 -OUTPUT_BLOCK_SIZE is 1024, 8500 would be converted to 8.3K,
145 133456345 to 127M, 56990456345 to 53G, and so on. Numbers smaller
146 than -OUTPUT_BLOCK_SIZE aren't modified. If -OUTPUT_BLOCK_SIZE is
147 1024, append a "B" after any size letter. */
150 human_readable_inexact (uintmax_t n
, char *buf
,
151 int from_block_size
, int output_block_size
,
152 enum human_inexact_style inexact_style
)
161 /* 0 means adjusted N == AMT.TENTHS;
162 1 means AMT.TENTHS < adjusted N < AMT.TENTHS + 0.05;
163 2 means adjusted N == AMT.TENTHS + 0.05;
164 3 means AMT.TENTHS + 0.05 < adjusted N < AMT.TENTHS + 0.1. */
167 if (output_block_size
< 0)
169 base
= -output_block_size
;
175 to_block_size
= output_block_size
;
178 p
= buf
+ LONGEST_HUMAN_READABLE
;
182 /* Suppress `used before initialized' warning. */
186 /* Adjust AMT out of FROM_BLOCK_SIZE units and into TO_BLOCK_SIZE units. */
193 if (to_block_size
<= from_block_size
194 ? (from_block_size
% to_block_size
!= 0
195 || (multiplier
= from_block_size
/ to_block_size
,
196 (amt
= n
* multiplier
) / multiplier
!= n
))
197 : (from_block_size
== 0
198 || to_block_size
% from_block_size
!= 0
199 || (divisor
= to_block_size
/ from_block_size
,
200 r10
= (n
% divisor
) * 10,
201 r2
= (r10
% divisor
) * 2,
203 tenths
= r10
/ divisor
,
204 rounding
= r2
< divisor
? 0 < r2
: 2 + (divisor
< r2
),
207 /* Either the result cannot be computed easily using uintmax_t,
208 or from_block_size is zero. Fall back on floating point.
209 FIXME: This can yield answers that are slightly off. */
211 double damt
= n
* (from_block_size
/ (double) to_block_size
);
214 sprintf (buf
, "%.0f", adjust_value (inexact_style
, damt
));
227 while (e
* base
<= damt
&& power
< sizeof suffixes
- 1);
232 psuffix
= generate_suffix_backwards (suffix
+ 2, power
, base
);
233 sprintf (buf
, "%.1f%s",
234 adjust_value (inexact_style
, damt
), psuffix
);
235 if (4 + (base
== 1000) < strlen (buf
))
236 sprintf (buf
, "%.0f%s",
237 adjust_value (inexact_style
, damt
* 10) / 10, psuffix
);
244 /* Use power of BASE notation if adjusted AMT is large enough. */
246 if (base
&& base
<= amt
)
252 int r10
= (amt
% base
) * 10 + tenths
;
253 int r2
= (r10
% base
) * 2 + (rounding
>> 1);
256 rounding
= (r2
< base
258 : 2 + (base
< r2
+ rounding
));
261 while (base
<= amt
&& power
< sizeof suffixes
- 1);
263 p
= generate_suffix_backwards (p
, power
, base
);
267 if (2 * (1 - (int) inexact_style
)
268 < rounding
+ (tenths
& (inexact_style
== human_round_to_even
)))
284 tenths
= rounding
= 0;
289 if (inexact_style
== human_ceiling
290 ? 0 < tenths
+ rounding
291 : inexact_style
== human_round_to_even
292 ? 5 < tenths
+ (2 < rounding
+ (amt
& 1))
293 : /* inexact_style == human_floor */ 0)
297 if (amt
== base
&& power
< sizeof suffixes
- 1)
299 *p
= suffixes
[power
+ 1];
307 *--p
= '0' + (int) (amt
% 10);
308 while ((amt
/= 10) != 0);
314 /* The default block size used for output. This number may change in
315 the future as disks get larger. */
316 #ifndef DEFAULT_BLOCK_SIZE
317 # define DEFAULT_BLOCK_SIZE 1024
320 static char const *const block_size_args
[] = { "human-readable", "si", 0 };
321 static int const block_size_types
[] = { -1024, -1000 };
324 default_block_size (void)
326 return getenv ("POSIXLY_CORRECT") ? 512 : DEFAULT_BLOCK_SIZE
;
330 humblock (char const *spec
, int *block_size
)
334 if (! spec
&& ! (spec
= getenv ("BLOCK_SIZE")))
335 *block_size
= default_block_size ();
336 else if (0 <= (i
= ARGMATCH (spec
, block_size_args
, block_size_types
)))
337 *block_size
= block_size_types
[i
];
342 strtol_error e
= xstrtoul (spec
, &ptr
, 0, &val
, "eEgGkKmMpPtTyYzZ0");
346 return LONGINT_INVALID_SUFFIX_CHAR
;
347 if ((int) val
< 0 || val
!= (int) val
)
348 return LONGINT_OVERFLOW
;
349 *block_size
= (int) val
;
356 human_block_size (char const *spec
, int report_errors
, int *block_size
)
358 strtol_error e
= humblock (spec
, block_size
);
359 if (*block_size
== 0)
361 *block_size
= default_block_size ();
364 if (e
!= LONGINT_OK
&& report_errors
)
365 STRTOL_FATAL_ERROR (spec
, _("block size"), e
);