-
Notifications
You must be signed in to change notification settings - Fork 6
/
bytes.go
57 lines (47 loc) · 879 Bytes
/
bytes.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package s3
import (
"fmt"
)
type Bytes int64
func (b Bytes) String() string {
if b < 1<<10 {
return b.Bytes()
}
if b < 1<<20 {
return b.Kilobytes()
}
if b < 1<<30 {
return b.Megabytes()
}
if b < 1<<40 {
return b.Gigabytes()
}
if b < 1<<50 {
return b.Terabytes()
}
if b < 1<<60 {
return b.Petabytes()
}
return b.Exabytes()
}
func (b Bytes) Bytes() string {
return fmt.Sprintf("%db", b)
}
func (b Bytes) Kilobytes() string {
return fmt.Sprintf("%dk", b/(1<<10))
}
func (b Bytes) Megabytes() string {
return fmt.Sprintf("%dm", b/(1<<20))
}
func (b Bytes) Gigabytes() string {
return fmt.Sprintf("%dg", b/(1<<30))
}
func (b Bytes) Terabytes() string {
return fmt.Sprintf("%dt", b/(1<<40))
}
func (b Bytes) Petabytes() string {
return fmt.Sprintf("%dp", b/(1<<50))
}
func (b Bytes) Exabytes() string {
return fmt.Sprintf("%dx", b/(1<<60))
}