-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_slice.go
62 lines (52 loc) · 1.49 KB
/
string_slice.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
package dynflags
import (
"fmt"
"strings"
)
type StringSlicesValue struct {
Bound *[]string
}
func (s *StringSlicesValue) GetBound() interface{} {
if s.Bound == nil {
return nil
}
return *s.Bound
}
func (s *StringSlicesValue) Parse(value string) (interface{}, error) {
return value, nil
}
func (s *StringSlicesValue) Set(value interface{}) error {
if str, ok := value.(string); ok {
*s.Bound = append(*s.Bound, str)
return nil
}
return fmt.Errorf("invalid value type: expected string")
}
// StringSlices defines a string slice flag with the specified name, default value, and usage description.
// The flag is added to the group's flag list and returned as a *Flag instance.
func (g *ConfigGroup) StringSlices(name string, value []string, usage string) *Flag {
bound := &value
flag := &Flag{
Type: FlagTypeStringSlice,
Default: strings.Join(value, ","),
Usage: usage,
value: &StringSlicesValue{Bound: bound},
}
g.Flags[name] = flag
g.flagOrder = append(g.flagOrder, name)
return flag
}
// GetStringSlices returns the []string value of a flag with the given name
func (pg *ParsedGroup) GetStringSlices(flagName string) ([]string, error) {
value, exists := pg.Values[flagName]
if !exists {
return nil, fmt.Errorf("flag '%s' not found in group '%s'", flagName, pg.Name)
}
if strSlice, ok := value.([]string); ok {
return strSlice, nil
}
if str, ok := value.(string); ok {
return []string{str}, nil
}
return nil, fmt.Errorf("flag '%s' is not a []string", flagName)
}