-
Notifications
You must be signed in to change notification settings - Fork 0
/
options.go
99 lines (82 loc) · 2.13 KB
/
options.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
package logger
// options keep settings for loggers/sweepers
// Indexed by the logger unique name
type options struct {
values map[string][]OptionItem
}
// Option represents settings of the logger
type Option struct {
// Apply logger option
Apply func(op *options)
}
// BackendOption creates option for the specified backend.
func BackendOption(name string, level string, settings map[string]interface{}) Option {
return Option{func(op *options) {
vals := make([]OptionItem, 0)
vals = append(vals, OptionItem{"level", level})
// Append extra settings if existing
if len(settings) > 0 {
for k, v := range settings {
vals = append(vals, OptionItem{k, v})
}
}
// Append with overriding way
op.values[name] = vals
}}
}
// SweeperOption creates option for the sweeper.
func SweeperOption(name string, duration int, settings map[string]interface{}) Option {
return Option{func(op *options) {
vals := make([]OptionItem, 0)
vals = append(vals, OptionItem{"duration", duration})
// Append settings if existing
if len(settings) > 0 {
for k, v := range settings {
vals = append(vals, OptionItem{k, v})
}
}
// Append with overriding way
op.values[name] = vals
}}
}
// GetterOption creates option for the getter.
func GetterOption(name string, settings map[string]interface{}) Option {
return Option{func(op *options) {
vals := make([]OptionItem, 0)
// Append settings if existing
if len(settings) > 0 {
for k, v := range settings {
vals = append(vals, OptionItem{k, v})
}
}
// Append with overriding way
op.values[name] = vals
}}
}
// OptionItem is a simple wrapper of property and value
type OptionItem struct {
field string
val interface{}
}
// Field returns name of the option
func (o *OptionItem) Field() string {
return o.field
}
// Int returns the integer value of option
func (o *OptionItem) Int() int {
if o.val == nil {
return 0
}
return o.val.(int)
}
// String returns the string value of option
func (o *OptionItem) String() string {
if o.val == nil {
return ""
}
return o.val.(string)
}
// Raw returns the raw value
func (o *OptionItem) Raw() interface{} {
return o.val
}