blob: 7469e7999422bf1b4004d5ce1d58ced934b172b5 [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.
Eric Andersenaad1a882001-03-16 22:47:14 +000027 */
28
29#include <stdio.h>
30#include "libbb.h"
31
Eric Andersenc7bda1c2004-03-15 08:29:22 +000032const char *make_human_readable_str(unsigned long long size,
Eric Andersen97e24262003-08-22 23:08:37 +000033 unsigned long block_size, 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' };
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +000037 static const char fmt[] = "%llu";
38 static const char fmt_tenths[] = "%llu.%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 Andersenc7bda1c2004-03-15 08:29:22 +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
Eric Andersen97e24262003-08-22 23:08:37 +000051 val = size * block_size;
Manuel Novoa III d877d442001-06-30 07:40:44 +000052 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;
Denis Vlasenkodca0b702006-10-27 09:05:02 +000061 while ((val >= 1024)
62 && (u < zero_and_units + sizeof(zero_and_units) - 1)
63 ) {
Manuel Novoa III d877d442001-06-30 07:40:44 +000064 f = fmt_tenths;
65 ++u;
Denis Vlasenkodca0b702006-10-27 09:05:02 +000066 frac = (((int)(val % 1024)) * 10 + 1024/2) / 1024;
67 val /= 1024;
Manuel Novoa III d877d442001-06-30 07:40:44 +000068 }
69 if (frac >= 10) { /* We need to round up here. */
70 ++val;
71 frac = 0;
72 }
73#if 0
74 /* Sample code to omit decimal point and tenths digit. */
Denis Vlasenko219d14d2007-03-24 15:40:16 +000075 if (/* no_tenths */ 1) {
76 if (frac >= 5) {
Manuel Novoa III d877d442001-06-30 07:40:44 +000077 ++val;
78 }
Bernhard Reutner-Fischerd409c3a2006-03-29 22:34:47 +000079 f = "%llu%*c" /* fmt_no_tenths */ ;
Manuel Novoa III d877d442001-06-30 07:40:44 +000080 frac = 1;
81 }
82#endif
83 }
84
85 /* If f==fmt then 'frac' and 'u' are ignored. */
86 snprintf(str, sizeof(str), f, val, frac, *u);
87
88 return str;
89}