bytes.go 1.16 KB
Newer Older
Michael Yang's avatar
Michael Yang committed
1
2
package format

3
4
5
6
import (
	"fmt"
	"math"
)
Michael Yang's avatar
Michael Yang committed
7

Michael Yang's avatar
Michael Yang committed
8
const (
Michael Yang's avatar
Michael Yang committed
9
10
	Byte = 1

Michael Yang's avatar
Michael Yang committed
11
12
13
	KiloByte = Byte * 1000
	MegaByte = KiloByte * 1000
	GigaByte = MegaByte * 1000
Michael Yang's avatar
Michael Yang committed
14
	TeraByte = GigaByte * 1000
Michael Yang's avatar
Michael Yang committed
15
16
17

	KibiByte = Byte * 1024
	MebiByte = KibiByte * 1024
Daniel Hiltgen's avatar
Daniel Hiltgen committed
18
	GibiByte = MebiByte * 1024
Michael Yang's avatar
Michael Yang committed
19
20
)

Michael Yang's avatar
Michael Yang committed
21
func HumanBytes(b int64) string {
22
23
24
	var value float64
	var unit string

Michael Yang's avatar
Michael Yang committed
25
	switch {
26
27
28
29
30
31
32
33
34
35
36
37
	case b >= TeraByte:
		value = float64(b) / TeraByte
		unit = "TB"
	case b >= GigaByte:
		value = float64(b) / GigaByte
		unit = "GB"
	case b >= MegaByte:
		value = float64(b) / MegaByte
		unit = "MB"
	case b >= KiloByte:
		value = float64(b) / KiloByte
		unit = "KB"
Michael Yang's avatar
Michael Yang committed
38
39
40
	default:
		return fmt.Sprintf("%d B", b)
	}
41
42

	switch {
Michael Yang's avatar
Michael Yang committed
43
44
	case value >= 10:
		return fmt.Sprintf("%d %s", int(value), unit)
45
46
47
48
49
	case value != math.Trunc(value):
		return fmt.Sprintf("%.1f %s", value, unit)
	default:
		return fmt.Sprintf("%d %s", int(value), unit)
	}
Michael Yang's avatar
Michael Yang committed
50
}
Michael Yang's avatar
Michael Yang committed
51

Michael Yang's avatar
Michael Yang committed
52
func HumanBytes2(b uint64) string {
Michael Yang's avatar
Michael Yang committed
53
	switch {
Daniel Hiltgen's avatar
Daniel Hiltgen committed
54
55
	case b >= GibiByte:
		return fmt.Sprintf("%.1f GiB", float64(b)/GibiByte)
Michael Yang's avatar
Michael Yang committed
56
57
58
59
60
61
62
63
	case b >= MebiByte:
		return fmt.Sprintf("%.1f MiB", float64(b)/MebiByte)
	case b >= KibiByte:
		return fmt.Sprintf("%.1f KiB", float64(b)/KibiByte)
	default:
		return fmt.Sprintf("%d B", b)
	}
}