-
Notifications
You must be signed in to change notification settings - Fork 4
/
ints.go
119 lines (108 loc) · 2.47 KB
/
ints.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package flagvar
import (
"fmt"
"strconv"
"strings"
)
// Ints is a `flag.Value` for `int` arguments.
// The `Base` and `BitSize` fields are used for parsing when set.
type Ints struct {
Base int
BitSize int
Values []int64
Texts []string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *Ints) Help() string {
var base, bitSize string
if fv.Base != 0 {
base = fmt.Sprintf("base %d ", fv.Base)
}
if fv.BitSize != 0 {
bitSize = fmt.Sprintf("%d-bit ", fv.BitSize)
}
if base != "" || bitSize != "" {
return fmt.Sprintf("a %s%sinteger", bitSize, base)
}
return "an integer"
}
// Set is flag.Value.Set
func (fv *Ints) Set(v string) error {
base := fv.Base
if base == 0 {
base = 10
}
bitSize := fv.BitSize
if bitSize == 0 {
bitSize = 64
}
n, err := strconv.ParseInt(v, base, bitSize)
if err == nil {
fv.Values = append(fv.Values, n)
fv.Texts = append(fv.Texts, v)
}
return err
}
func (fv *Ints) String() string {
return strings.Join(fv.Texts, ",")
}
// IntsCSV is a `flag.Value` for comma-separated `int` arguments.
// If `Accumulate` is set, the values of all instances of the flag are accumulated.
// The `Base` and `BitSize` fields are used for parsing when set.
// The `Separator` field is used instead of the comma when set.
type IntsCSV struct {
Base int
BitSize int
Separator string
Accumulate bool
Values []int64
Texts []string
}
// Help returns a string suitable for inclusion in a flag help message.
func (fv *IntsCSV) Help() string {
var base, bitSize string
if fv.Base != 0 {
base = fmt.Sprintf("base %d ", fv.Base)
}
if fv.BitSize != 0 {
bitSize = fmt.Sprintf("%d-bit ", fv.BitSize)
}
separator := ","
if fv.Separator != "" {
separator = fv.Separator
}
return fmt.Sprintf("%q-separated list of %s%sintegers", separator, bitSize, base)
}
// Set is flag.Value.Set
func (fv *IntsCSV) Set(v string) error {
base := fv.Base
if base == 0 {
base = 10
}
bitSize := fv.BitSize
if bitSize == 0 {
bitSize = 64
}
separator := fv.Separator
if separator == "" {
separator = ","
}
if !fv.Accumulate {
fv.Values = fv.Values[:0]
fv.Texts = fv.Texts[:0]
}
parts := strings.Split(v, separator)
for _, part := range parts {
part = strings.TrimSpace(part)
n, err := strconv.ParseInt(part, base, bitSize)
if err != nil {
return err
}
fv.Values = append(fv.Values, n)
fv.Texts = append(fv.Texts, part)
}
return nil
}
func (fv *IntsCSV) String() string {
return strings.Join(fv.Texts, ",")
}