-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.go
421 lines (370 loc) · 8.67 KB
/
values.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
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
package gflag
import (
"encoding"
"fmt"
"net"
"strconv"
"strings"
"time"
"unsafe"
"github.com/spf13/pflag"
"golang.org/x/exp/constraints"
)
var (
// type guards: Value implements pflag.Value
_ pflag.Value = &Value[string]{}
_ pflag.Value = &Value[time.Duration]{}
_ encoding.TextMarshaler = &Value[string]{}
_ encoding.TextUnmarshaler = &Value[string]{}
)
type (
// FlaggableTypes is a type constraint that holds all types supported by pflag, besides primitive types.
FlaggableTypes interface {
time.Duration |
time.Time |
net.IP |
net.IPNet |
net.IPMask |
// for extended types
~struct{}
}
// FlaggablePrimitives is a type constraint that holds all primitive types supported by pflag, and then some.
FlaggablePrimitives interface {
constraints.Integer |
constraints.Float |
constraints.Complex |
~string |
~bool |
~[]byte // aka: ~[]uint8
}
// Value is a generic type that implements github.com/spf13/pflag.Value.
//
// The underlying value, as T, may be retrieved using GetValue().
Value[T FlaggablePrimitives | FlaggableTypes] struct {
Value *T
NoOptDefVal string
*options
}
)
// NewFlagValue constructs a generic flag compatible with github.com/spf13/pflag.Value.
//
// Since the flag type is inferred from the underlying data type, some flexibility allowed by pflag is not
// always possible at this point.
//
// For example, when T = []byte, NewFlagValue adopts by default the semantics of the pflag.BytesHex flag.
//
// Similarly, when T = int, we adopt by default the semantics of pflag.Int and not pflag.Count.
//
// In order to cover the full range of semantics offered by the pflag package, some options are available.
func NewFlagValue[T FlaggablePrimitives | FlaggableTypes](addr *T, defaultValue T, opts ...Option) *Value[T] {
if addr == nil {
addr = new(T)
}
m := &Value[T]{
Value: addr,
options: defaultOptions(opts),
}
*m.Value = defaultValue
// bool flag implies true when set without arg
v := any(m.Value)
if _, isBool := v.(*bool); isBool {
m.NoOptDefVal = "true"
}
if _, isInt := v.(*int); isInt && m.semanticsForInt == intIsCount {
m.NoOptDefVal = "+1"
}
return m
}
// GetValue returns the underlying value of the flag.
func (m Value[T]) GetValue() T {
return *m.Value
}
// GetNoOptDefVal returns the default value to consider whenever there is no argument added to the flag.
//
// Example:
// for a Value[bool], NoOptDefVal defaults to "true".
func (m Value[T]) GetNoOptDefVal() string {
asAny := any(m.Value)
if withNoOpt, ok := asAny.(interface{ GetNoOptDefVal() string }); ok {
return withNoOpt.GetNoOptDefVal()
}
return m.NoOptDefVal
}
// IsBoolFlag indicates to the "flag" standard lib package that this is a boolean flag.
func (m Value[T]) IsBoolFlag() bool {
asAny := any(m.Value)
switch v := asAny.(type) {
case interface{ IsBoolFlag() bool }:
return v.IsBoolFlag()
case *bool:
return true
default:
return false
}
}
// Get implements the flag.Getter interface for programs using this Value from the
// standard "flag" package.
func (m Value[T]) Get() any {
return m.Value
}
// String knows how to yield a string representation of type T.
func (m Value[T]) String() string {
if m.Value == nil {
return ""
}
asAny := any(m.Value)
switch v := asAny.(type) {
case pflag.Value:
return v.String()
case *string:
return *v
case *int:
return formatInt(*v)
case *int8:
return formatInt(*v)
case *int16:
return formatInt(*v)
case *int32:
return formatInt(*v)
case *int64:
return formatInt(*v)
case *uint:
return formatUint(*v)
case *uint8:
return formatUint(*v)
case *uint16:
return formatUint(*v)
case *uint32:
return formatUint(*v)
case *uint64:
return formatUint(*v)
case *float32:
return floatFormatter[float32](32)(*v)
case *float64:
return floatFormatter[float64](64)(*v)
case *complex64:
return complexFormatter[complex64](64)(*v)
case *complex128:
return complexFormatter[complex128](128)(*v)
case *bool:
return strconv.FormatBool(*v)
case *[]byte:
return bytesFormatter(*v, m.semanticsForBytes)
case *time.Duration:
return v.String()
case *time.Time:
return timeFormatter(m.timeFormats[0])(*v)
case *net.IP:
return v.String()
case *net.IPNet:
return v.String()
case *net.IPMask:
return v.String()
case fmt.Stringer:
return v.String()
default:
panic(fmt.Sprintf("unsupported type: %T", v))
}
}
// Set knows how to config a string representation of the Value into a type T.
func (m *Value[T]) Set(strValue string) error {
return m.set(strValue)
}
func (m *Value[T]) set(strValue string) error {
asAny := any(m.Value)
switch v := asAny.(type) {
case pflag.Value:
return v.Set(strValue)
case *string:
val := strValue
*m.Value = *cast[T](&val)
case *int:
if m.semanticsForInt == intIsCount {
m.NoOptDefVal = "+1"
if strValue == "+1" {
*v++
*m.Value = *cast[T](v)
return nil
}
}
val, err := intParser[int](0)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *int8:
val, err := intParser[int8](8)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *int16:
val, err := intParser[int16](16)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *int32:
val, err := intParser[int32](32)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *int64:
val, err := intParser[int64](64)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *uint:
val, err := uintParser[uint](0)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *uint8:
val, err := uintParser[uint8](8)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *uint16:
val, err := uintParser[uint16](16)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *uint32:
val, err := uintParser[uint32](32)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *uint64:
val, err := uintParser[uint64](64)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *float32:
val, err := floatParser[float32](32)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *float64:
val, err := floatParser[float64](64)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *complex64:
val, err := complexParser[complex64](64)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *complex128:
val, err := complexParser[complex128](128)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *bool:
val, err := strconv.ParseBool(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
m.NoOptDefVal = "true"
case *[]byte:
val, err := parseBytes(strings.TrimSpace(strValue), m.semanticsForBytes)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *time.Duration:
val, err := time.ParseDuration(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *time.Time:
val, err := timeParser(m.timeFormats)(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *net.IP:
val, err := parseIP(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *net.IPMask:
val, err := parseIPMask(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
case *net.IPNet:
val, err := parseIPNet(strValue)
if err != nil {
return err
}
*m.Value = *cast[T](&val)
default:
panic(fmt.Sprintf("unsupported type: %T", v))
}
return nil
}
func (m *Value[T]) Type() string {
asAny := any(m.Value)
switch v := asAny.(type) {
case pflag.Value:
return v.Type()
case *int:
switch m.semanticsForInt {
case intIsCount:
return "count"
default:
return "int"
}
case *time.Duration:
return "duration"
case *time.Time:
return "time"
case *net.IP:
return "ip"
case *net.IPMask:
return "ipMask"
case *net.IPNet:
return "ipNet"
case *[]byte:
switch m.semanticsForBytes {
case bytesIsBase64:
return "bytesBase64"
default:
return "bytesHex"
}
default:
return fmt.Sprintf("%T", *m.Value)
}
}
// MarshalFlag implements github.com/jessevdk/go-flags.Marshaler interface
func (m *Value[T]) MarshalFlag() (string, error) {
return m.String(), nil
}
func (m *Value[T]) MarshalText() ([]byte, error) {
return []byte(m.String()), nil
}
// UnmarshalFlag implements github.com/jessevdk/go-flags.Unmarshaler interface
func (m *Value[T]) UnmarshalFlag(value string) error {
return m.set(value)
}
func (m *Value[T]) UnmarshalText(text []byte) error {
return m.set(string(text))
}
func cast[U any, T any](v *T) *U {
return (*U)(unsafe.Pointer(v))
}