forked from cloudfoundry/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbytes_with_unlimited.go
60 lines (47 loc) · 1.15 KB
/
bytes_with_unlimited.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
58
59
60
package flag
import (
"math"
"regexp"
"strings"
"code.cloudfoundry.org/bytefmt"
"code.cloudfoundry.org/cli/types"
flags "github.com/jessevdk/go-flags"
)
type BytesWithUnlimited types.NullInt
var zeroBytes *regexp.Regexp = regexp.MustCompile(`^0[KMGT]?B?$`)
var negativeOneBytes *regexp.Regexp = regexp.MustCompile(`^-1[KMGT]?B?$`)
func (m *BytesWithUnlimited) UnmarshalFlag(val string) error {
if val == "" {
return nil
}
if negativeOneBytes.MatchString(val) {
m.Value = -1
m.IsSet = true
return nil
}
if zeroBytes.MatchString(val) {
m.Value = 0
m.IsSet = true
return nil
}
size, err := ConvertToBytes(val)
if err != nil {
return err
}
m.Value = size
m.IsSet = true
return nil
}
func (m *BytesWithUnlimited) IsValidValue(val string) error {
return m.UnmarshalFlag(val)
}
func ConvertToBytes(val string) (int, error) {
size, err := bytefmt.ToBytes(val)
if err != nil || strings.Contains(strings.ToLower(val), ".") || size > math.MaxInt {
return 0, &flags.Error{
Type: flags.ErrRequired,
Message: `Byte quantity must be an integer with a unit of measurement like B, K, KB, M, MB, G, or GB`,
}
}
return int(size), nil
}