blob: 7bdad36a9f3ffe2773a0858d2509ce730b7a35b9 [file] [log] [blame]
Eric Andersenaad1a882001-03-16 22:47:14 +00001/*
Manuel Novoa III d877d442001-06-30 07:40:44 +00002 * June 30, 2001 Manuel Novoa III
Eric Andersenaad1a882001-03-16 22:47:14 +00003 *
Manuel Novoa III d877d442001-06-30 07:40:44 +00004 * All-integer version (hey, not everyone has floating point) of
5 * make_human_readable_str, modified from similar code I had written
6 * for busybox several months ago.
Eric Andersenaad1a882001-03-16 22:47:14 +00007 *
Manuel Novoa III d877d442001-06-30 07:40:44 +00008 * Notes:
9 * 1) I'm using an unsigned long long to hold the product size * block_size,
10 * as df (which calls this routine) could request a representation of a
11 * partition size in bytes > max of unsigned long. If long longs aren't
12 * available, it would be possible to do what's needed using polynomial
13 * representations (say, powers of 1024) and manipulating coefficients.
14 * The base ten "bytes" output could be handled similarly.
Eric Andersenaad1a882001-03-16 22:47:14 +000015 *
Eric Andersen01595972001-06-30 18:08:36 +000016 * 2) This routine always outputs a decimal point and a tenths digit when
17 * display_unit != 0. Hence, it isn't uncommon for the returned string
18 * to have a length of 5 or 6.
Eric Andersenaad1a882001-03-16 22:47:14 +000019 *
Manuel Novoa III d877d442001-06-30 07:40:44 +000020 * It might be nice to add a flag to indicate no decimal digits in
21 * that case. This could be either an additional parameter, or a
22 * special value of display_unit. Such a flag would also be nice for du.
23 *
24 * Some code to omit the decimal point and tenths digit is sketched out
25 * and "#if 0"'d below.
Eric Andersenaad1a882001-03-16 22:47:14 +000026 */
27
28#include <stdio.h>
29#include "libbb.h"
30
Eric Andersenf429bac2001-06-13 08:02:45 +000031const char *make_human_readable_str(unsigned long size,
Manuel Novoa III d877d442001-06-30 07:40:44 +000032 unsigned long block_size,
33 unsigned long display_unit)
Eric Andersenaad1a882001-03-16 22:47:14 +000034{
Manuel Novoa III d877d442001-06-30 07:40:44 +000035 /* The code will adjust for additional (appended) units. */
36 static const char zero_and_units[] = { '0', 0, 'k', 'M', 'G', 'T' };
37 static const char fmt[] = "%Lu";
38 static const char fmt_tenths[] = "%Lu.%d%c";
Eric Andersenaad1a882001-03-16 22:47:14 +000039
Manuel Novoa III d877d442001-06-30 07:40:44 +000040 static char str[21]; /* Sufficient for 64 bit unsigned integers. */
Eric Andersenf429bac2001-06-13 08:02:45 +000041
Manuel Novoa III d877d442001-06-30 07:40:44 +000042 unsigned long long val;
43 int frac;
44 const char *u;
45 const char *f;
Eric Andersen91c93882001-04-03 23:14:29 +000046
Manuel Novoa III d877d442001-06-30 07:40:44 +000047 u = zero_and_units;
48 f = fmt;
49 frac = 0;
50
51 val = ((unsigned long long) size) * block_size;
52 if (val == 0) {
53 return u;
54 }
55
56 if (display_unit) {
57 val += display_unit/2; /* Deal with rounding. */
58 val /= display_unit; /* Don't combine with the line above!!! */
59 } else {
60 ++u;
61 while ((val >= KILOBYTE)
62 && (u < zero_and_units + sizeof(zero_and_units) - 1)) {
63 f = fmt_tenths;
64 ++u;
65 frac = ((((int)(val % KILOBYTE)) * 10) + (KILOBYTE/2)) / KILOBYTE;
66 val /= KILOBYTE;
67 }
68 if (frac >= 10) { /* We need to round up here. */
69 ++val;
70 frac = 0;
71 }
72#if 0
73 /* Sample code to omit decimal point and tenths digit. */
74 if ( /* no_tenths */ 1 ) {
75 if ( frac >= 5 ) {
76 ++val;
77 }
78 f = "%Lu%*c" /* fmt_no_tenths */ ;
79 frac = 1;
80 }
81#endif
82 }
83
84 /* If f==fmt then 'frac' and 'u' are ignored. */
85 snprintf(str, sizeof(str), f, val, frac, *u);
86
87 return str;
88}