forked from spf13/pflag
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
int.go
126 lines (102 loc) · 4.39 KB
/
int.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
120
121
122
123
124
125
126
package pflag
import "strconv"
// -- int Value
type intValue int
func newIntValue(val int, p *int) *intValue {
*p = val
return (*intValue)(p)
}
func (i *intValue) Set(s string) error {
v, err := strconv.ParseInt(s, 0, 64)
*i = intValue(v)
return err
}
func (i *intValue) Type() string {
return "int"
}
func (i *intValue) String() string { return strconv.Itoa(int(*i)) }
func intConv(sval string) (interface{}, error) {
return strconv.Atoi(sval)
}
// GetInt return the int value of a flag with the given name
func (f *FlagSet) GetInt(name string) (int, error) {
val, err := f.getFlagType(name, "int", intConv)
if err != nil {
return 0, err
}
return val.(int), nil
}
// IntVar defines an int flag with specified name, default value, and usage string.
// The argument p points to an int variable in which to store the value of the flag.
func (f *FlagSet) IntVar(p *int, name string, value int, usage string) {
f.IntVarP(p, name, "", value, usage)
}
// IntVarN is like IntVarP, but adds the name as shorthand (non-posix).
func (f *FlagSet) IntVarN(p *int, name, shorthand string, value int, usage string) {
f.VarN(newIntValue(value, p), name, shorthand, usage)
}
// IntVarP is like IntVar, but accepts a shorthand letter that can be used after a single dash.
func (f *FlagSet) IntVarP(p *int, name, shorthand string, value int, usage string) {
f.VarP(newIntValue(value, p), name, shorthand, usage)
}
// IntVarS is like IntVar, but accepts a shorthand letter that can be used after a single dash, alone.
func (f *FlagSet) IntVarS(p *int, name, shorthand string, value int, usage string) {
f.VarS(newIntValue(value, p), name, shorthand, usage)
}
// IntVar defines an int flag with specified name, default value, and usage string.
// The argument p points to an int variable in which to store the value of the flag.
func IntVar(p *int, name string, value int, usage string) {
CommandLine.IntVar(p, name, value, usage)
}
// IntVarN is like IntVarP, but adds the name as shorthand (non-posix).
func IntVarN(p *int, name, shorthand string, value int, usage string) {
CommandLine.IntVarN(p, name, shorthand, value, usage)
}
// IntVarP is like IntVar, but accepts a shorthand letter that can be used after a single dash.
func IntVarP(p *int, name, shorthand string, value int, usage string) {
CommandLine.IntVarP(p, name, shorthand, value, usage)
}
// IntVarS is like IntVar, but accepts a shorthand letter that can be used after a single dash, alone.
func IntVarS(p *int, name, shorthand string, value int, usage string) {
CommandLine.IntVarS(p, name, shorthand, value, usage)
}
// Int defines an int flag with specified name, default value, and usage string.
// The return value is the address of an int variable that stores the value of the flag.
func (f *FlagSet) Int(name string, value int, usage string) *int {
return f.IntP(name, "", value, usage)
}
// IntN is like IntP, but adds the name as shorthand (non-posix).
func (f *FlagSet) IntN(name, shorthand string, value int, usage string) *int {
p := new(int)
f.IntVarN(p, name, shorthand, value, usage)
return p
}
// IntP is like Int, but accepts a shorthand letter that can be used after a single dash.
func (f *FlagSet) IntP(name, shorthand string, value int, usage string) *int {
p := new(int)
f.IntVarP(p, name, shorthand, value, usage)
return p
}
// IntS is like Int, but accepts a shorthand letter that can be used after a single dash, alone.
func (f *FlagSet) IntS(name, shorthand string, value int, usage string) *int {
p := new(int)
f.IntVarS(p, name, shorthand, value, usage)
return p
}
// Int defines an int flag with specified name, default value, and usage string.
// The return value is the address of an int variable that stores the value of the flag.
func Int(name string, value int, usage string) *int {
return CommandLine.Int(name, value, usage)
}
// IntN is like IntP, but adds the name as shorthand (non-posix).
func IntN(name, shorthand string, value int, usage string) *int {
return CommandLine.IntN(name, shorthand, value, usage)
}
// IntP is like Int, but accepts a shorthand letter that can be used after a single dash.
func IntP(name, shorthand string, value int, usage string) *int {
return CommandLine.IntP(name, shorthand, value, usage)
}
// IntS is like Int, but accepts a shorthand letter that can be used after a single dash, alone.
func IntS(name, shorthand string, value int, usage string) *int {
return CommandLine.IntS(name, shorthand, value, usage)
}