-
Notifications
You must be signed in to change notification settings - Fork 2
/
option.go
66 lines (53 loc) · 1.12 KB
/
option.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
package chaki
import (
"time"
)
type configOptions struct {
referencePaths map[string]string
path string
disabled bool
}
type options struct {
configOptions configOptions
timeout time.Duration
}
func getOptions(opt ...Option) *options {
def := &options{
timeout: 45 * time.Second,
configOptions: configOptions{
path: "resources/configs/application.yaml",
referencePaths: map[string]string{},
},
}
for _, o := range opt {
o.Apply(def)
}
return def
}
type Option interface {
Apply(*options)
}
type withOption func(*options)
func (wo withOption) Apply(opts *options) {
wo(opts)
}
func WithTimeout(t time.Duration) Option {
return withOption(func(o *options) {
o.timeout = t
})
}
func WithConfigDisabled(disabled bool) Option {
return withOption(func(o *options) {
o.configOptions.disabled = disabled
})
}
func WithConfigPath(path string) Option {
return withOption(func(o *options) {
o.configOptions.path = path
})
}
func WithConfigReferencePath(key, path string) Option {
return withOption(func(o *options) {
o.configOptions.referencePaths[key] = path
})
}