-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathconf.go
262 lines (225 loc) · 5.8 KB
/
conf.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
/*
*
* Copyright (C) 2023 Antigloss Huang (https://github.com/antigloss) All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
// Package conf is a framework for reading configurations from variety of configuration Stores, such as ENV, files, and Apollo.
package conf
import (
"bytes"
"encoding/json"
"fmt"
"reflect"
"strconv"
"strings"
"sync"
"github.com/mitchellh/mapstructure"
"github.com/spf13/viper"
yaml "gopkg.in/yaml.v3"
"github.com/antigloss/go/conf/store"
)
// New creates a ConfigParser object
// - T is the struct for unmarshalling configuration data
func New[T any](opts ...option) *ConfigParser[T] {
isSlice := false
var t T
ty := reflect.TypeOf(t)
if ty.Kind() == reflect.Slice {
isSlice = true
}
c := &ConfigParser[T]{
isSlice: isSlice,
viper: viper.New(),
changesCh: make(chan *store.ConfigChanges, 20),
unwatchCh: make(chan int),
}
c.opts.apply(opts...)
return c
}
// ConfigParser is a configuration data parser. It supports variety of configuration Stores, mainstream configuration formats, watching, and templates
// - `T` is the struct for unmarshalling configuration data
type ConfigParser[T any] struct {
opts options
isSlice bool
sliceLen int
viper *viper.Viper
changesCh chan *store.ConfigChanges
unwatchCh chan int
watchOnce sync.Once
}
// Parse reads configuration data from all Stores, then unmarshal it to `T`.
func (c *ConfigParser[T]) Parse() (*T, error) {
var t T
err := c.initDefaultValues(reflect.ValueOf(t))
if err != nil {
return nil, err
}
for _, store := range c.opts.stores {
contents, err := store.Load()
if err != nil {
return nil, err
}
for _, cont := range contents {
err = c.transformArray(&cont)
if err != nil {
return nil, err
}
c.viper.SetConfigType(cont.Type)
err = c.viper.MergeConfig(bytes.NewReader(cont.Content))
if err != nil {
return nil, err
}
}
}
err = c.unmarshal(&t)
if err != nil {
return nil, err
}
return &t, nil
}
// Watch watches configuration changes from all Stores, unmarshal the latest configuration data into `T`, then notify the caller via `cb`
func (c *ConfigParser[T]) Watch(cb func(cfg *T, changes []store.ConfigChange)) error {
var err error
c.watchOnce.Do(func() {
for _, store := range c.opts.stores {
if err = store.Watch(c.changesCh); err != nil {
return
}
}
go func() {
for {
select {
case changes := <-c.changesCh:
e := c.transformArray(&changes.Config)
if e != nil {
continue
}
c.viper.SetConfigType(changes.Config.Type)
e = c.viper.MergeConfig(bytes.NewReader(changes.Config.Content))
if e != nil {
continue
}
var t T
e = c.unmarshal(&t)
if e != nil {
continue
}
cb(&t, changes.Changes)
case <-c.unwatchCh:
return
}
}
}()
})
return err
}
// Unwatch stops watching
func (c *ConfigParser[T]) Unwatch() {
for _, store := range c.opts.stores {
store.Unwatch()
}
close(c.unwatchCh)
}
func (c *ConfigParser[T]) initDefaultValues(v reflect.Value) error {
if v.Kind() == reflect.Struct {
m := map[string]interface{}{}
c.getDefaultValues(v.Type(), m)
c.viper.SetConfigType(store.ConfigTypeYAML)
return c.viper.MergeConfigMap(m)
}
return nil
}
func (c *ConfigParser[T]) getDefaultValues(t reflect.Type, m map[string]interface{}) {
for i := 0; i < t.NumField(); i++ {
ft := t.Field(i)
tagName := ft.Tag.Get(c.opts.tagName)
if tagName == "" {
tagName = strings.ToLower(ft.Name)
}
fv := t.Field(i).Type
if fv.Kind() == reflect.Pointer {
fv = fv.Elem()
}
if fv.Kind() != reflect.Struct {
defVal := ft.Tag.Get("default")
if defVal != "" {
m[tagName] = defVal
}
continue
}
mm := map[string]interface{}{}
c.getDefaultValues(fv, mm)
if len(mm) > 0 {
m[tagName] = mm
}
}
}
// transformArray 把数组格式的配置,转换成对象格式
func (c *ConfigParser[T]) transformArray(cont *store.ConfigContent) error {
if !c.isSlice {
return nil
}
var err error
var s []interface{}
switch cont.Type {
case store.ConfigTypeJSON:
err = json.Unmarshal(cont.Content, &s)
case store.ConfigTypeYAML, store.ConfigTypeYML:
err = yaml.Unmarshal(cont.Content, &s)
default:
err = fmt.Errorf("unsupported config format: %s", cont.Type)
}
if err != nil {
return err
}
m := map[int]interface{}{}
for k, v := range s {
m[k] = v
}
bs, err := json.Marshal(m)
if err != nil {
return err
}
c.sliceLen = len(s)
cont.Type = store.ConfigTypeJSON
cont.Content = bs
return nil
}
func (c *ConfigParser[T]) unmarshal(t *T) error {
if !c.isSlice {
return c.viper.Unmarshal(t, func(config *mapstructure.DecoderConfig) {
if c.opts.tagName != "" {
config.TagName = c.opts.tagName
}
}, viper.DecodeHook(decodeHook(c.opts.hook)))
}
ty := reflect.TypeOf(*t)
v := reflect.ValueOf(*t)
for i := 0; i < c.sliceLen; i++ {
elem := reflect.New(ty.Elem())
err := c.viper.UnmarshalKey(strconv.Itoa(i), elem.Interface(), func(config *mapstructure.DecoderConfig) {
if c.opts.tagName != "" {
config.TagName = c.opts.tagName
}
}, viper.DecodeHook(decodeHook(c.opts.hook)))
if err != nil {
return err
}
v = reflect.Append(v, elem.Elem())
}
*t = v.Interface().(T)
return nil
}