-
Notifications
You must be signed in to change notification settings - Fork 24
/
dynstringslice.go
92 lines (80 loc) · 2.95 KB
/
dynstringslice.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
// Copyright 2015 Michal Witkowski. All Rights Reserved.
// See LICENSE for licensing terms.
package flagz
import (
"encoding/csv"
"fmt"
"strings"
"sync/atomic"
"unsafe"
flag "github.com/spf13/pflag"
)
// DynStringSlice creates a `Flag` that represents `[]string` which is safe to change dynamically at runtime.
// Unlike `pflag.StringSlice`, consecutive sets don't append to the slice, but override it.
func DynStringSlice(flagSet *flag.FlagSet, name string, value []string, usage string) *DynStringSliceValue {
dynValue := &DynStringSliceValue{ptr: unsafe.Pointer(&value)}
flag := flagSet.VarPF(dynValue, name, "", usage)
MarkFlagDynamic(flag)
return dynValue
}
// DynStringSliceValue is a flag-related `time.Duration` value wrapper.
type DynStringSliceValue struct {
ptr unsafe.Pointer
validator func([]string) error
notifier func(oldValue []string, newValue []string)
}
// Get retrieves the value in a thread-safe manner.
func (d *DynStringSliceValue) Get() []string {
p := (*[]string)(atomic.LoadPointer(&d.ptr))
return *p
}
// Set updates the value from a string representation in a thread-safe manner.
// This operation may return an error if the provided `input` doesn't parse, or the resulting value doesn't pass an
// optional validator.
// If a notifier is set on the value, it will be invoked in a separate go-routine.
func (d *DynStringSliceValue) Set(val string) error {
v, err := csv.NewReader(strings.NewReader(val)).Read()
if err != nil {
return err
}
if d.validator != nil {
if err := d.validator(v); err != nil {
return err
}
}
oldPtr := atomic.SwapPointer(&d.ptr, unsafe.Pointer(&v))
if d.notifier != nil {
go d.notifier(*(*[]string)(oldPtr), v)
}
return nil
}
// WithValidator adds a function that checks values before they're set.
// Any error returned by the validator will lead to the value being rejected.
// Validators are executed on the same go-routine as the call to `Set`.
func (d *DynStringSliceValue) WithValidator(validator func([]string) error) *DynStringSliceValue {
d.validator = validator
return d
}
// WithNotifier adds a function that is called every time a new value is successfully set.
// Each notifier is executed asynchronously in a new go-routine.
func (d *DynStringSliceValue) WithNotifier(notifier func(oldValue []string, newValue []string)) *DynStringSliceValue {
d.notifier = notifier
return d
}
// Type is an indicator of what this flag represents.
func (d *DynStringSliceValue) Type() string {
return "dyn_stringslice"
}
// String represents the canonical representation of the type.
func (d *DynStringSliceValue) String() string {
return fmt.Sprintf("%v", d.Get())
}
// ValidateDynStringSliceMinElements validates that the given string slice has at least x elements.
func ValidateDynStringSliceMinElements(count int) func([]string) error {
return func(value []string) error {
if len(value) < count {
return fmt.Errorf("value slice %v must have at least %v elements", value, count)
}
return nil
}
}