-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwatcher.go
216 lines (192 loc) · 4.76 KB
/
watcher.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
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
package config
import (
"bytes"
"context"
"crypto/tls"
"crypto/x509"
"fmt"
"os"
"reflect"
"sync"
"text/template"
"time"
clientv3 "go.etcd.io/etcd/client/v3"
"go.uber.org/zap"
"golang.org/x/exp/maps"
)
type Options struct {
RefreshInterval time.Duration
PathParameters map[string]string
EtcdUsername string
EtcdPassword string
EtcdCaPath string
EtcdEndpoints []string
}
type Option func(*Options)
func WithEtcdConnection(username, password, caPath string, endpoints []string) Option {
return func(o *Options) {
o.EtcdUsername = username
o.EtcdPassword = password
o.EtcdCaPath = caPath
o.EtcdEndpoints = endpoints
}
}
func WithPathParameter(name string, value string) Option {
return func(o *Options) {
o.PathParameters[name] = value
}
}
func WithRefreshInterval(refreshInterval time.Duration) Option {
return func(o *Options) {
o.RefreshInterval = refreshInterval
}
}
type Watcher struct {
logger *zap.Logger
cli *clientv3.Client
pathParameters map[string]string
refreshInterval time.Duration
etcdTimeout time.Duration
fields map[string]any
mu sync.RWMutex
valueConfigs map[string]valueConfig
subscribers map[string]chan string
}
type valueConfig struct {
Path string
Default string
}
func NewWatcher(logger *zap.Logger, conf any, options ...Option) (*Watcher, error) {
opts := &Options{
RefreshInterval: 5 * time.Second,
PathParameters: make(map[string]string),
}
for _, o := range options {
o(opts)
}
val := reflect.ValueOf(conf)
if val.Kind() != reflect.Pointer {
return nil, fmt.Errorf("conf must be a pointer to a struct")
}
etcdFields := make(map[string]any)
valueConfigs := make(map[string]valueConfig)
typ := reflect.TypeOf(conf).Elem()
for i := 0; i < val.Elem().NumField(); i++ {
fieldTag := typ.Field(i).Tag
etcdPath := fieldTag.Get("etcd")
if len(etcdPath) == 0 {
continue
}
name := typ.Field(i).Name
address := val.Elem().Field(i).Addr().Interface()
// Store the field name and its address in the map
etcdFields[name] = address
valueConfigs[name] = valueConfig{
Path: etcdPath,
Default: fieldTag.Get("etcdDefault"),
}
}
var tlsConfig *tls.Config
if opts.EtcdCaPath != "DISABLE" && len(opts.EtcdCaPath) > 0 {
caCert, err := os.ReadFile(opts.EtcdCaPath)
if err != nil {
return nil, err
}
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
tlsConfig = &tls.Config{
RootCAs: caCertPool,
}
}
cli, err := clientv3.New(clientv3.Config{
Endpoints: opts.EtcdEndpoints,
DialTimeout: 2 * time.Second,
Username: opts.EtcdUsername,
Password: opts.EtcdPassword,
TLS: tlsConfig,
})
if err != nil {
return nil, err
}
return &Watcher{
logger: logger,
cli: cli,
fields: etcdFields,
valueConfigs: valueConfigs,
pathParameters: opts.PathParameters,
subscribers: map[string]chan string{},
refreshInterval: opts.RefreshInterval,
etcdTimeout: 2 * time.Second,
}, nil
}
func (w *Watcher) subscribe(name string, ch chan string, defaultValue *string) bool {
w.mu.Lock()
defer w.mu.Unlock()
if _, ok := w.subscribers[name]; ok {
return false
}
w.subscribers[name] = ch
if defaultValue != nil {
w.valueConfigs[name] = valueConfig{
Path: w.valueConfigs[name].Path,
Default: *defaultValue,
}
}
return true
}
func (w *Watcher) getSubscriber(name string) (chan string, bool) {
w.mu.RLock()
defer w.mu.RUnlock()
ch, ok := w.subscribers[name]
return ch, ok
}
func (w *Watcher) readCurrentValue(ctx context.Context, name, path string, defaultValue string) (string, error) {
ctx, cancel := context.WithTimeout(ctx, w.etcdTimeout)
defer cancel()
tmpl, err := template.New(fmt.Sprintf("config-value-%s", name)).Parse(path)
if err != nil {
return "", err
}
buf := bytes.Buffer{}
if err = tmpl.Execute(&buf, w.pathParameters); err != nil {
return "", err
}
response, err := w.cli.Get(ctx, buf.String())
if err != nil {
return "", err
}
if len(response.Kvs) == 0 {
return defaultValue, nil
}
return string(response.Kvs[0].Value), nil
}
func (w *Watcher) configs() map[string]valueConfig {
w.mu.RLock()
defer w.mu.RUnlock()
return maps.Clone(w.valueConfigs)
}
func (w *Watcher) Run(ctx context.Context) {
prevValues := map[string]string{}
for {
for name, valueConfig := range w.configs() {
subCh, ok := w.getSubscriber(name)
if !ok {
continue
}
currentValue, err := w.readCurrentValue(ctx, name, valueConfig.Path, valueConfig.Default)
if err != nil {
continue
}
if prevValue, ok := prevValues[name]; ok && prevValue == currentValue {
continue
}
prevValues[name] = currentValue
subCh <- currentValue
}
select {
case <-ctx.Done():
return
case <-time.After(w.refreshInterval):
}
}
}