3
0

human_readable.c 2.7 KB

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