/vendor/github.com/hashicorp/consul/vendor/github.com/docker/go-units/size.go

https://github.com/backstage/backstage · Go · 96 lines · 63 code · 17 blank · 16 comment · 7 complexity · 85e09da18b3eef6b4713c38ec02866fd MD5 · raw file

  1. package units
  2. import (
  3. "fmt"
  4. "regexp"
  5. "strconv"
  6. "strings"
  7. )
  8. // See: http://en.wikipedia.org/wiki/Binary_prefix
  9. const (
  10. // Decimal
  11. KB = 1000
  12. MB = 1000 * KB
  13. GB = 1000 * MB
  14. TB = 1000 * GB
  15. PB = 1000 * TB
  16. // Binary
  17. KiB = 1024
  18. MiB = 1024 * KiB
  19. GiB = 1024 * MiB
  20. TiB = 1024 * GiB
  21. PiB = 1024 * TiB
  22. )
  23. type unitMap map[string]int64
  24. var (
  25. decimalMap = unitMap{"k": KB, "m": MB, "g": GB, "t": TB, "p": PB}
  26. binaryMap = unitMap{"k": KiB, "m": MiB, "g": GiB, "t": TiB, "p": PiB}
  27. sizeRegex = regexp.MustCompile(`^(\d+(\.\d+)*) ?([kKmMgGtTpP])?[bB]?$`)
  28. )
  29. var decimapAbbrs = []string{"B", "kB", "MB", "GB", "TB", "PB", "EB", "ZB", "YB"}
  30. var binaryAbbrs = []string{"B", "KiB", "MiB", "GiB", "TiB", "PiB", "EiB", "ZiB", "YiB"}
  31. // CustomSize returns a human-readable approximation of a size
  32. // using custom format.
  33. func CustomSize(format string, size float64, base float64, _map []string) string {
  34. i := 0
  35. unitsLimit := len(_map) - 1
  36. for size >= base && i < unitsLimit {
  37. size = size / base
  38. i++
  39. }
  40. return fmt.Sprintf(format, size, _map[i])
  41. }
  42. // HumanSize returns a human-readable approximation of a size
  43. // capped at 4 valid numbers (eg. "2.746 MB", "796 KB").
  44. func HumanSize(size float64) string {
  45. return CustomSize("%.4g %s", size, 1000.0, decimapAbbrs)
  46. }
  47. // BytesSize returns a human-readable size in bytes, kibibytes,
  48. // mebibytes, gibibytes, or tebibytes (eg. "44kiB", "17MiB").
  49. func BytesSize(size float64) string {
  50. return CustomSize("%.4g %s", size, 1024.0, binaryAbbrs)
  51. }
  52. // FromHumanSize returns an integer from a human-readable specification of a
  53. // size using SI standard (eg. "44kB", "17MB").
  54. func FromHumanSize(size string) (int64, error) {
  55. return parseSize(size, decimalMap)
  56. }
  57. // RAMInBytes parses a human-readable string representing an amount of RAM
  58. // in bytes, kibibytes, mebibytes, gibibytes, or tebibytes and
  59. // returns the number of bytes, or -1 if the string is unparseable.
  60. // Units are case-insensitive, and the 'b' suffix is optional.
  61. func RAMInBytes(size string) (int64, error) {
  62. return parseSize(size, binaryMap)
  63. }
  64. // Parses the human-readable size string into the amount it represents.
  65. func parseSize(sizeStr string, uMap unitMap) (int64, error) {
  66. matches := sizeRegex.FindStringSubmatch(sizeStr)
  67. if len(matches) != 4 {
  68. return -1, fmt.Errorf("invalid size: '%s'", sizeStr)
  69. }
  70. size, err := strconv.ParseFloat(matches[1], 64)
  71. if err != nil {
  72. return -1, err
  73. }
  74. unitPrefix := strings.ToLower(matches[3])
  75. if mul, ok := uMap[unitPrefix]; ok {
  76. size *= float64(mul)
  77. }
  78. return int64(size), nil
  79. }