blob: 05e7d86ec74949745fa568e1649b53c7846c8414 [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
Denis Vlasenkodefc1ea2008-06-27 02:52:20 +000033const char* FAST_FUNC make_human_readable_str(unsigned long long size,
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 Vlasenko6ca409e2007-08-12 20:58:27 +000036 /* The code will adjust for additional (appended) units */
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000037 static const char unit_chars[] ALIGN1 = {
38 '\0', 'K', 'M', 'G', 'T', 'P', 'E'
39 };
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000040 static const char fmt[] ALIGN1 = "%llu";
41 static const char fmt_tenths[] ALIGN1 = "%llu.%d%c";
Eric Andersenaad1a882001-03-16 22:47:14 +000042
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000043 static char str[21] ALIGN1; /* Sufficient for 64 bit unsigned integers */
Eric Andersenc7bda1c2004-03-15 08:29:22 +000044
Manuel Novoa III d877d442001-06-30 07:40:44 +000045 unsigned long long val;
46 int frac;
47 const char *u;
48 const char *f;
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000049 smallint no_tenths;
Eric Andersen91c93882001-04-03 23:14:29 +000050
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000051 if (size == 0)
52 return "0";
53
54 /* If block_size is 0 then do not print tenths */
55 no_tenths = 0;
56 if (block_size == 0) {
57 no_tenths = 1;
58 block_size = 1;
59 }
60
61 u = unit_chars;
62 val = size * block_size;
Manuel Novoa III d877d442001-06-30 07:40:44 +000063 f = fmt;
64 frac = 0;
65
Manuel Novoa III d877d442001-06-30 07:40:44 +000066 if (display_unit) {
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000067 val += display_unit/2; /* Deal with rounding */
Manuel Novoa III d877d442001-06-30 07:40:44 +000068 val /= display_unit; /* Don't combine with the line above!!! */
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000069 /* will just print it as ulonglong (below) */
Manuel Novoa III d877d442001-06-30 07:40:44 +000070 } else {
Denis Vlasenkodca0b702006-10-27 09:05:02 +000071 while ((val >= 1024)
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000072 && (u < unit_chars + sizeof(unit_chars) - 1)
Denis Vlasenkodca0b702006-10-27 09:05:02 +000073 ) {
Manuel Novoa III d877d442001-06-30 07:40:44 +000074 f = fmt_tenths;
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000075 u++;
Denis Vlasenkodca0b702006-10-27 09:05:02 +000076 frac = (((int)(val % 1024)) * 10 + 1024/2) / 1024;
77 val /= 1024;
Manuel Novoa III d877d442001-06-30 07:40:44 +000078 }
79 if (frac >= 10) { /* We need to round up here. */
80 ++val;
81 frac = 0;
82 }
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000083#if 1
Manuel Novoa III d877d442001-06-30 07:40:44 +000084 /* Sample code to omit decimal point and tenths digit. */
Denis Vlasenkod66aa3c2008-08-28 22:42:52 +000085 if (no_tenths) {
Denis Vlasenko219d14d2007-03-24 15:40:16 +000086 if (frac >= 5) {
Manuel Novoa III d877d442001-06-30 07:40:44 +000087 ++val;
88 }
Denis Vlasenkob71c6682007-07-21 15:08:09 +000089 f = "%llu%*c" /* fmt_no_tenths */;
Manuel Novoa III d877d442001-06-30 07:40:44 +000090 frac = 1;
91 }
92#endif
93 }
94
95 /* If f==fmt then 'frac' and 'u' are ignored. */
96 snprintf(str, sizeof(str), f, val, frac, *u);
97
98 return str;
99}