forked from spf13/pflag
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bytes.go
293 lines (231 loc) · 10.9 KB
/
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
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
package pflag
import (
"encoding/base64"
"encoding/hex"
"fmt"
"strings"
)
// BytesHex adapts []byte for use as a flag. Value of flag is HEX encoded
type bytesHexValue []byte
// String implements pflag.Value.String.
func (bytesHex bytesHexValue) String() string {
return fmt.Sprintf("%X", []byte(bytesHex))
}
// Set implements pflag.Value.Set.
func (bytesHex *bytesHexValue) Set(value string) error {
bin, err := hex.DecodeString(strings.TrimSpace(value))
if err != nil {
return err
}
*bytesHex = bin
return nil
}
// Type implements pflag.Value.Type.
func (*bytesHexValue) Type() string {
return "bytesHex"
}
func newBytesHexValue(val []byte, p *[]byte) *bytesHexValue {
*p = val
return (*bytesHexValue)(p)
}
func bytesHexConv(sval string) (interface{}, error) {
bin, err := hex.DecodeString(sval)
if err == nil {
return bin, nil
}
return nil, fmt.Errorf("invalid string being converted to Bytes: %s %s", sval, err)
}
// GetBytesHex return the []byte value of a flag with the given name
func (f *FlagSet) GetBytesHex(name string) ([]byte, error) {
val, err := f.getFlagType(name, "bytesHex", bytesHexConv)
if err != nil {
return []byte{}, err
}
return val.([]byte), nil
}
// BytesHexVar defines an []byte flag with specified name, default value, and usage string.
// The argument p points to an []byte variable in which to store the value of the flag.
func (f *FlagSet) BytesHexVar(p *[]byte, name string, value []byte, usage string) {
f.BytesHexVarP(p, name, "", value, usage)
}
// BytesHexVarN is like BytesHexVarP, but adds the name as shorthand (non-posix).
func (f *FlagSet) BytesHexVarN(p *[]byte, name, shorthand string, value []byte, usage string) {
f.VarN(newBytesHexValue(value, p), name, shorthand, usage)
}
// BytesHexVarP is like BytesHexVar, but accepts a shorthand letter that can be used after a single dash.
func (f *FlagSet) BytesHexVarP(p *[]byte, name, shorthand string, value []byte, usage string) {
f.VarP(newBytesHexValue(value, p), name, shorthand, usage)
}
// BytesHexVarS is like BytesHexVarP, but accepts a shorthand letter that can be used after a single dash, alone.
func (f *FlagSet) BytesHexVarS(p *[]byte, name, shorthand string, value []byte, usage string) {
f.VarS(newBytesHexValue(value, p), name, shorthand, usage)
}
// BytesHexVar defines an []byte flag with specified name, default value, and usage string.
// The argument p points to an []byte variable in which to store the value of the flag.
func BytesHexVar(p *[]byte, name string, value []byte, usage string) {
CommandLine.BytesHexVar(p, name, value, usage)
}
// BytesHexVarN is like BytesHexVarP, but adds the name as shorthand (non-posix).
func BytesHexVarN(p *[]byte, name, shorthand string, value []byte, usage string) {
CommandLine.BytesHexVarN(p, name, shorthand, value, usage)
}
// BytesHexVarP is like BytesHexVar, but accepts a shorthand letter that can be used after a single dash.
func BytesHexVarP(p *[]byte, name, shorthand string, value []byte, usage string) {
CommandLine.BytesHexVarP(p, name, shorthand, value, usage)
}
// BytesHexVarS is like BytesHexVarP, but accepts a shorthand letter that can be used after a single dash, alone.
func BytesHexVarS(p *[]byte, name, shorthand string, value []byte, usage string) {
CommandLine.BytesHexVarS(p, name, shorthand, value, usage)
}
// BytesHex defines an []byte flag with specified name, default value, and usage string.
// The return value is the address of an []byte variable that stores the value of the flag.
func (f *FlagSet) BytesHex(name string, value []byte, usage string) *[]byte {
return f.BytesHexP(name, "", value, usage)
}
// BytesHexN is like BytesHexP, but adds the name as shorthand (non-posix).
func (f *FlagSet) BytesHexN(name, shorthand string, value []byte, usage string) *[]byte {
p := new([]byte)
f.BytesHexVarN(p, name, shorthand, value, usage)
return p
}
// BytesHexP is like BytesHex, but accepts a shorthand letter that can be used after a single dash.
func (f *FlagSet) BytesHexP(name, shorthand string, value []byte, usage string) *[]byte {
p := new([]byte)
f.BytesHexVarP(p, name, shorthand, value, usage)
return p
}
// BytesHexS is like BytesHexP, but accepts a shorthand letter that can be used after a single dash, alone.
func (f *FlagSet) BytesHexS(name, shorthand string, value []byte, usage string) *[]byte {
p := new([]byte)
f.BytesHexVarS(p, name, shorthand, value, usage)
return p
}
// BytesHex defines an []byte flag with specified name, default value, and usage string.
// The return value is the address of an []byte variable that stores the value of the flag.
func BytesHex(name string, value []byte, usage string) *[]byte {
return CommandLine.BytesHexP(name, "", value, usage)
}
// BytesHexN is like BytesHexP, but adds the name as shorthand (non-posix).
func BytesHexN(name, shorthand string, value []byte, usage string) *[]byte {
return CommandLine.BytesHexN(name, shorthand, value, usage)
}
// BytesHexP is like BytesHex, but accepts a shorthand letter that can be used after a single dash.
func BytesHexP(name, shorthand string, value []byte, usage string) *[]byte {
return CommandLine.BytesHexP(name, shorthand, value, usage)
}
// BytesHexS is like BytesHexP, but accepts a shorthand letter that can be used after a single dash, alone.
func BytesHexS(name, shorthand string, value []byte, usage string) *[]byte {
return CommandLine.BytesHexS(name, shorthand, value, usage)
}
// BytesBase64 adapts []byte for use as a flag. Value of flag is Base64 encoded
type bytesBase64Value []byte
// String implements pflag.Value.String.
func (bytesBase64 bytesBase64Value) String() string {
return base64.StdEncoding.EncodeToString([]byte(bytesBase64))
}
// Set implements pflag.Value.Set.
func (bytesBase64 *bytesBase64Value) Set(value string) error {
bin, err := base64.StdEncoding.DecodeString(strings.TrimSpace(value))
if err != nil {
return err
}
*bytesBase64 = bin
return nil
}
// Type implements pflag.Value.Type.
func (*bytesBase64Value) Type() string {
return "bytesBase64"
}
func newBytesBase64Value(val []byte, p *[]byte) *bytesBase64Value {
*p = val
return (*bytesBase64Value)(p)
}
func bytesBase64ValueConv(sval string) (interface{}, error) {
bin, err := base64.StdEncoding.DecodeString(sval)
if err == nil {
return bin, nil
}
return nil, fmt.Errorf("invalid string being converted to Bytes: %s %s", sval, err)
}
// GetBytesBase64 return the []byte value of a flag with the given name
func (f *FlagSet) GetBytesBase64(name string) ([]byte, error) {
val, err := f.getFlagType(name, "bytesBase64", bytesBase64ValueConv)
if err != nil {
return []byte{}, err
}
return val.([]byte), nil
}
// BytesBase64Var defines an []byte flag with specified name, default value, and usage string.
// The argument p points to an []byte variable in which to store the value of the flag.
func (f *FlagSet) BytesBase64Var(p *[]byte, name string, value []byte, usage string) {
f.BytesBase64VarP(p, name, "", value, usage)
}
// BytesBase64VarN is like BytesBase64VarP, but adds the name as shorthand (non-posix).
func (f *FlagSet) BytesBase64VarN(p *[]byte, name, shorthand string, value []byte, usage string) {
f.VarN(newBytesBase64Value(value, p), name, shorthand, usage)
}
// BytesBase64VarP is like BytesBase64Var, but accepts a shorthand letter that can be used after a single dash.
func (f *FlagSet) BytesBase64VarP(p *[]byte, name, shorthand string, value []byte, usage string) {
f.VarP(newBytesBase64Value(value, p), name, shorthand, usage)
}
// BytesBase64VarS is like BytesBase64Var, but accepts a shorthand letter that can be used after a single dash, alone.
func (f *FlagSet) BytesBase64VarS(p *[]byte, name, shorthand string, value []byte, usage string) {
f.VarS(newBytesBase64Value(value, p), name, shorthand, usage)
}
// BytesBase64Var defines an []byte flag with specified name, default value, and usage string.
// The argument p points to an []byte variable in which to store the value of the flag.
func BytesBase64Var(p *[]byte, name string, value []byte, usage string) {
CommandLine.BytesBase64Var(p, name, value, usage)
}
// BytesBase64VarN is like BytesBase64VarP, but adds the name as shorthand (non-posix).
func BytesBase64VarN(p *[]byte, name, shorthand string, value []byte, usage string) {
CommandLine.BytesBase64VarN(p, name, shorthand, value, usage)
}
// BytesBase64VarP is like BytesBase64Var, but accepts a shorthand letter that can be used after a single dash.
func BytesBase64VarP(p *[]byte, name, shorthand string, value []byte, usage string) {
CommandLine.BytesBase64VarP(p, name, shorthand, value, usage)
}
// BytesBase64VarS is like BytesBase64Var, but accepts a shorthand letter that can be used after a single dash, alone.
func BytesBase64VarS(p *[]byte, name, shorthand string, value []byte, usage string) {
CommandLine.BytesBase64VarS(p, name, shorthand, value, usage)
}
// BytesBase64 defines an []byte flag with specified name, default value, and usage string.
// The return value is the address of an []byte variable that stores the value of the flag.
func (f *FlagSet) BytesBase64(name string, value []byte, usage string) *[]byte {
return f.BytesBase64P(name, "", value, usage)
}
// BytesBase64N is like BytesBase64P, but adds the name as shorthand (non-posix).
func (f *FlagSet) BytesBase64N(name, shorthand string, value []byte, usage string) *[]byte {
p := new([]byte)
f.BytesBase64VarN(p, name, shorthand, value, usage)
return p
}
// BytesBase64P is like BytesBase64, but accepts a shorthand letter that can be used after a single dash.
func (f *FlagSet) BytesBase64P(name, shorthand string, value []byte, usage string) *[]byte {
p := new([]byte)
f.BytesBase64VarP(p, name, shorthand, value, usage)
return p
}
// BytesBase64S is like BytesBase64, but accepts a shorthand letter that can be used after a single dash, alone.
func (f *FlagSet) BytesBase64S(name, shorthand string, value []byte, usage string) *[]byte {
p := new([]byte)
f.BytesBase64VarS(p, name, shorthand, value, usage)
return p
}
// BytesBase64 defines an []byte flag with specified name, default value, and usage string.
// The return value is the address of an []byte variable that stores the value of the flag.
func BytesBase64(name string, value []byte, usage string) *[]byte {
return CommandLine.BytesBase64P(name, "", value, usage)
}
// BytesBase64N is like BytesBase64P, but adds the name as shorthand (non-posix).
func BytesBase64N(name, shorthand string, value []byte, usage string) *[]byte {
return CommandLine.BytesBase64N(name, shorthand, value, usage)
}
// BytesBase64P is like BytesBase64, but accepts a shorthand letter that can be used after a single dash.
func BytesBase64P(name, shorthand string, value []byte, usage string) *[]byte {
return CommandLine.BytesBase64P(name, shorthand, value, usage)
}
// BytesBase64S is like BytesBase64, but accepts a shorthand letter that can be used after a single dash, alone.
func BytesBase64S(name, shorthand string, value []byte, usage string) *[]byte {
return CommandLine.BytesBase64S(name, shorthand, value, usage)
}