-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.go
More file actions
494 lines (426 loc) · 12.2 KB
/
config.go
File metadata and controls
494 lines (426 loc) · 12.2 KB
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
package structconf
import (
"fmt"
"reflect"
"slices"
"strconv"
"strings"
"time"
"github.com/samber/lo"
"github.com/urfave/cli/v3"
)
type StructReflector interface {
Flags() []cli.Flag
Apply(*cli.Command)
}
type structReflector struct {
foundFlags []cli.Flag // flags found in the struct
applyFuncs []func(*cli.Command) // functions to call after flags are parsed, to apply values to the struct
tomlSources []cli.MapSource
}
func (r *structReflector) Flags() []cli.Flag {
return r.foundFlags
}
func (r *structReflector) Apply(command *cli.Command) {
for _, applyFunc := range r.applyFuncs {
applyFunc(command)
}
}
func (r *structReflector) processField(field reflect.StructField, fieldValue reflect.Value, tags *configFieldTags, parents []*configFieldTags) error {
if tags == nil || tags.flag == "-" {
return nil
}
valueSources := make([]cli.ValueSource, 0)
if tags.toml != "" && tags.toml != "-" && len(r.tomlSources) > 0 { // load from toml file unless explicitly set to "-"
tomlKey := tags.toml
if !tags.isGlobal {
tomlKeys := lo.Map(parents, func(parent *configFieldTags, _ int) string { return parent.toml })
tomlKeys = append(tomlKeys, tags.toml)
tomlKey = strings.Join(tomlKeys, ".")
}
valueSources = append(valueSources, NewValueSourceFromMaps(tomlKey, r.tomlSources...))
}
if tags.env != "-" { // load from env var unless it's explicitly set to "-"
envKey := tags.env
if !tags.isGlobal {
emvKeys := lo.Map(parents, func(parent *configFieldTags, _ int) string { return parent.env })
emvKeys = append(emvKeys, tags.env)
envKey = strings.Join(emvKeys, "_")
}
valueSources = append(valueSources, cli.EnvVar(envKey))
}
flagName := tags.flag
if !tags.isGlobal {
flagKeys := lo.Map(parents, func(parent *configFieldTags, _ int) string { return parent.flag })
flagKeys = append(flagKeys, tags.flag)
flagName = strings.Join(flagKeys, "-")
}
sources := cli.NewValueSourceChain(valueSources...)
var (
flag cli.Flag
apply func(*cli.Command)
)
switch field.Type.Kind() { //nolint:exhaustive // we have a default: clause that results in an error
case reflect.String:
flag = &cli.StringFlag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: tags.defaultValue,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetString(cmd.String(flagName))
}
case reflect.Int:
var value int
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseInt(tags.defaultValue, 10, strconv.IntSize)
if err != nil {
return fmt.Errorf("failed to parse int value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = int(valueParsed)
}
flag = &cli.IntFlag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetInt(int64(cmd.Int(flagName)))
}
case reflect.Int8:
var value int8
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseInt(tags.defaultValue, 10, 8)
if err != nil {
return fmt.Errorf("failed to parse int value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = int8(valueParsed)
}
flag = &cli.Int8Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetInt(int64(cmd.Int8(flagName)))
}
case reflect.Int16:
var value int16
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseInt(tags.defaultValue, 10, 16)
if err != nil {
return fmt.Errorf("failed to parse int value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = int16(valueParsed)
}
flag = &cli.Int16Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetInt(int64(cmd.Int16(flagName)))
}
case reflect.Int32:
var value int32
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseInt(tags.defaultValue, 10, 32)
if err != nil {
return fmt.Errorf("failed to parse int value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = int32(valueParsed)
}
flag = &cli.Int32Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetInt(int64(cmd.Int32(flagName)))
}
case reflect.Int64:
if _, ok := fieldValue.Interface().(time.Duration); ok { // special handling for time.Duration, which is a int64
var (
value time.Duration
err error
)
if tags.defaultValue != "" {
value, err = time.ParseDuration(tags.defaultValue)
if err != nil {
return fmt.Errorf("failed to parse duration %s for field %s: %w", tags.defaultValue, field.Name, err)
}
}
flag = &cli.DurationFlag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetInt(int64(cmd.Duration(flagName)))
}
} else {
var (
value int64
err error
)
if tags.defaultValue != "" {
value, err = strconv.ParseInt(tags.defaultValue, 10, 64)
if err != nil {
return fmt.Errorf("failed to parse int value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
}
flag = &cli.Int64Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetInt(cmd.Int64(flagName))
}
}
case reflect.Uint:
var (
value uint64
err error
)
if tags.defaultValue != "" {
value, err = strconv.ParseUint(tags.defaultValue, 10, strconv.IntSize)
if err != nil {
return fmt.Errorf("failed to parse uint value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
}
flag = &cli.UintFlag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: uint(value),
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetUint(uint64(cmd.Uint(flagName)))
}
case reflect.Uint8:
var value uint8
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseUint(tags.defaultValue, 10, 8)
if err != nil {
return fmt.Errorf("failed to parse uint value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = uint8(valueParsed)
}
flag = &cli.Uint8Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetUint(uint64(cmd.Uint8(flagName)))
}
case reflect.Uint16:
var value uint16
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseUint(tags.defaultValue, 10, 16)
if err != nil {
return fmt.Errorf("failed to parse uint value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = uint16(valueParsed)
}
flag = &cli.Uint16Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetUint(uint64(cmd.Uint16(flagName)))
}
case reflect.Uint32:
var value uint32
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseUint(tags.defaultValue, 10, 32)
if err != nil {
return fmt.Errorf("failed to parse uint value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = uint32(valueParsed)
}
flag = &cli.Uint32Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetUint(uint64(cmd.Uint32(flagName)))
}
case reflect.Uint64:
var (
value uint64
err error
)
if tags.defaultValue != "" {
value, err = strconv.ParseUint(tags.defaultValue, 10, 64)
if err != nil {
return fmt.Errorf("failed to parse uint value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
}
flag = &cli.Uint64Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetUint(cmd.Uint64(flagName))
}
case reflect.Float32:
var value float32
if tags.defaultValue != "" {
valueParsed, err := strconv.ParseFloat(tags.defaultValue, 32)
if err != nil {
return fmt.Errorf("failed to parse float value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
value = float32(valueParsed)
}
flag = &cli.Float32Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetFloat(float64(cmd.Float32(flagName)))
}
case reflect.Float64:
var (
value float64
err error
)
if tags.defaultValue != "" {
value, err = strconv.ParseFloat(tags.defaultValue, 64)
if err != nil {
return fmt.Errorf("failed to parse float value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
}
flag = &cli.Float64Flag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetFloat(cmd.Float64(flagName))
}
case reflect.Bool:
var (
value bool
err error
)
if tags.defaultValue != "" {
value, err = strconv.ParseBool(tags.defaultValue)
if err != nil {
return fmt.Errorf("failed to parse bool value %s for field %s: %w", tags.defaultValue, field.Name, err)
}
}
flag = &cli.BoolFlag{
Name: flagName,
Aliases: tags.aliases,
Usage: tags.help,
DefaultText: tags.defaultValue,
Value: value,
Sources: sources,
}
apply = func(cmd *cli.Command) {
fieldValue.SetBool(cmd.Bool(flagName))
}
default:
return fmt.Errorf("unknown field type %s", field.Type.Kind())
}
r.foundFlags = append(r.foundFlags, flag)
r.applyFuncs = append(r.applyFuncs, apply)
return nil
}
func (r *structReflector) recurseStruct(anyStruct any, parents []*configFieldTags) error {
structType := reflect.TypeOf(anyStruct)
structValues := reflect.ValueOf(anyStruct)
if structType.Kind() == reflect.Ptr {
structType = structType.Elem()
structValues = structValues.Elem()
}
for i := range structType.NumField() {
fieldType := structType.Field(i)
fieldValue := structValues.Field(i)
tags := parseTagsWithFieldNameDefault(&fieldType.Tag, fieldType.Name)
nested := slices.Clone(parents)
nested = append(nested, tags)
if fieldType.Type.Kind() == reflect.Struct {
// recurse using the pointer to the nested struct, so we can modify it
err := r.recurseStruct(fieldValue.Addr().Interface(), nested)
if err != nil {
return err
}
continue
}
if fieldType.Type.Kind() == reflect.Ptr && fieldType.Type.Elem().Kind() == reflect.Struct {
if fieldValue.IsNil() {
fieldValue.Set(reflect.New(fieldType.Type.Elem()))
}
err := r.recurseStruct(fieldValue.Interface(), nested)
if err != nil {
return err
}
continue
}
err := r.processField(fieldType, fieldValue, tags, parents)
if err != nil {
return err
}
}
return nil
}
func NewStructConfigurator(anyStruct any, tomlSources []cli.MapSource) (StructReflector, error) {
reflector := &structReflector{
foundFlags: make([]cli.Flag, 0),
applyFuncs: make([]func(*cli.Command), 0),
tomlSources: tomlSources,
}
err := reflector.recurseStruct(anyStruct, nil)
if err != nil {
return nil, err
}
return reflector, nil
}