human_readable.c 2.5 KB

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