human_readable.c 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. /* vi: set sw=4 ts=4: */
  2. /*
  3. * June 30, 2001 Manuel Novoa III
  4. *
  5. * 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.
  8. *
  9. * 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.
  16. *
  17. * 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
  19. * to have a length of 5 or 6.
  20. *
  21. * 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.
  27. */
  28. #include "libbb.h"
  29. const char *make_human_readable_str(unsigned long long size,
  30. unsigned long block_size, unsigned long display_unit)
  31. {
  32. /* The code will adjust for additional (appended) units */
  33. static const char zero_and_units[] ALIGN1 = { '0', 0, 'k', 'M', 'G', 'T' };
  34. static const char fmt[] ALIGN1 = "%llu";
  35. static const char fmt_tenths[] ALIGN1 = "%llu.%d%c";
  36. static char str[21] ALIGN1; /* Sufficient for 64 bit unsigned integers */
  37. unsigned long long val;
  38. int frac;
  39. const char *u;
  40. const char *f;
  41. u = zero_and_units;
  42. f = fmt;
  43. frac = 0;
  44. val = size * block_size;
  45. if (val == 0) {
  46. return u;
  47. }
  48. if (display_unit) {
  49. val += display_unit/2; /* Deal with rounding */
  50. val /= display_unit; /* Don't combine with the line above!!! */
  51. } else {
  52. ++u;
  53. while ((val >= 1024)
  54. && (u < zero_and_units + sizeof(zero_and_units) - 1)
  55. ) {
  56. f = fmt_tenths;
  57. ++u;
  58. frac = (((int)(val % 1024)) * 10 + 1024/2) / 1024;
  59. val /= 1024;
  60. }
  61. if (frac >= 10) { /* We need to round up here. */
  62. ++val;
  63. frac = 0;
  64. }
  65. #if 0
  66. /* Sample code to omit decimal point and tenths digit. */
  67. if (/* no_tenths */ 1) {
  68. if (frac >= 5) {
  69. ++val;
  70. }
  71. f = "%llu%*c" /* fmt_no_tenths */;
  72. frac = 1;
  73. }
  74. #endif
  75. }
  76. /* If f==fmt then 'frac' and 'u' are ignored. */
  77. snprintf(str, sizeof(str), f, val, frac, *u);
  78. return str;
  79. }