human_readable.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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. * Licensed under GPLv2, see file LICENSE in this tarball for details.
  29. */
  30. #include "libbb.h"
  31. const char* FAST_FUNC make_human_readable_str(unsigned long long size,
  32. unsigned long block_size, unsigned long display_unit)
  33. {
  34. /* The code will adjust for additional (appended) units */
  35. static const char unit_chars[] ALIGN1 = {
  36. '\0', 'K', 'M', 'G', 'T', 'P', 'E'
  37. };
  38. static const char fmt[] ALIGN1 = "%llu";
  39. static const char fmt_tenths[] ALIGN1 = "%llu.%d%c";
  40. static char str[21] ALIGN1; /* Sufficient for 64 bit unsigned integers */
  41. unsigned long long val;
  42. int frac;
  43. const char *u;
  44. const char *f;
  45. smallint no_tenths;
  46. if (size == 0)
  47. return "0";
  48. /* If block_size is 0 then do not print tenths */
  49. no_tenths = 0;
  50. if (block_size == 0) {
  51. no_tenths = 1;
  52. block_size = 1;
  53. }
  54. u = unit_chars;
  55. val = size * block_size;
  56. f = fmt;
  57. frac = 0;
  58. if (display_unit) {
  59. val += display_unit/2; /* Deal with rounding */
  60. val /= display_unit; /* Don't combine with the line above!!! */
  61. /* will just print it as ulonglong (below) */
  62. } else {
  63. while ((val >= 1024)
  64. && (u < unit_chars + sizeof(unit_chars) - 1)
  65. ) {
  66. f = fmt_tenths;
  67. u++;
  68. frac = (((int)(val % 1024)) * 10 + 1024/2) / 1024;
  69. val /= 1024;
  70. }
  71. if (frac >= 10) { /* We need to round up here. */
  72. ++val;
  73. frac = 0;
  74. }
  75. #if 1
  76. /* Sample code to omit decimal point and tenths digit. */
  77. if (no_tenths) {
  78. if (frac >= 5) {
  79. ++val;
  80. }
  81. f = "%llu%*c" /* fmt_no_tenths */;
  82. frac = 1;
  83. }
  84. #endif
  85. }
  86. /* If f==fmt then 'frac' and 'u' are ignored. */
  87. snprintf(str, sizeof(str), f, val, frac, *u);
  88. return str;
  89. }