-
Notifications
You must be signed in to change notification settings - Fork 929
/
config_loader_options.go
228 lines (200 loc) · 5.63 KB
/
config_loader_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
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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package config
import (
"io/ioutil"
"os"
"path/filepath"
"runtime"
"strings"
)
import (
"github.com/dubbogo/gost/log/logger"
"github.com/knadh/koanf"
"github.com/pkg/errors"
)
import (
"dubbo.apache.org/dubbo-go/v3/common/constant"
"dubbo.apache.org/dubbo-go/v3/common/constant/file"
)
type loaderConf struct {
suffix string // loaderConf file extension default yaml
path string // loaderConf file path default ./conf/dubbogo.yaml
delim string // loaderConf file delim default .
bytes []byte // config bytes
rc *RootConfig // user provide rootConfig built by config api
name string // config file name
}
func NewLoaderConf(opts ...LoaderConfOption) *loaderConf {
configFilePath := "../conf/dubbogo.yaml"
if configFilePathFromEnv := os.Getenv(constant.ConfigFileEnvKey); configFilePathFromEnv != "" {
configFilePath = configFilePathFromEnv
}
name, suffix := resolverFilePath(configFilePath)
conf := &loaderConf{
suffix: suffix,
path: absolutePath(configFilePath),
delim: ".",
name: name,
}
for _, opt := range opts {
opt.apply(conf)
}
if conf.rc != nil {
return conf
}
if len(conf.bytes) <= 0 {
if bytes, err := ioutil.ReadFile(conf.path); err != nil {
panic(err)
} else {
conf.bytes = bytes
}
}
return conf
}
type LoaderConfOption interface {
apply(vc *loaderConf)
}
type loaderConfigFunc func(*loaderConf)
func (fn loaderConfigFunc) apply(vc *loaderConf) {
fn(vc)
}
// WithGenre set load config file suffix
//Deprecated: replaced by WithSuffix
func WithGenre(suffix string) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
g := strings.ToLower(suffix)
if err := checkFileSuffix(g); err != nil {
panic(err)
}
conf.suffix = g
})
}
// WithSuffix set load config file suffix
func WithSuffix(suffix file.Suffix) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
conf.suffix = string(suffix)
})
}
// WithPath set load config path
func WithPath(path string) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
conf.path = absolutePath(path)
if bytes, err := ioutil.ReadFile(path); err != nil {
panic(err)
} else {
conf.bytes = bytes
}
name, suffix := resolverFilePath(path)
conf.suffix = suffix
conf.name = name
})
}
func WithRootConfig(rc *RootConfig) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
conf.rc = rc
})
}
func WithDelim(delim string) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
conf.delim = delim
})
}
// WithBytes set load config bytes
func WithBytes(bytes []byte) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
conf.bytes = bytes
})
}
// absolutePath get absolut path
func absolutePath(inPath string) string {
if inPath == "$HOME" || strings.HasPrefix(inPath, "$HOME"+string(os.PathSeparator)) {
inPath = userHomeDir() + inPath[5:]
}
if filepath.IsAbs(inPath) {
return filepath.Clean(inPath)
}
p, err := filepath.Abs(inPath)
if err == nil {
return filepath.Clean(p)
}
return ""
}
//userHomeDir get gopath
func userHomeDir() string {
if runtime.GOOS == "windows" {
home := os.Getenv("HOMEDRIVE") + os.Getenv("HOMEPATH")
if home == "" {
home = os.Getenv("USERPROFILE")
}
return home
}
return os.Getenv("HOME")
}
// checkFileSuffix check file suffix
func checkFileSuffix(suffix string) error {
for _, g := range []string{"json", "toml", "yaml", "yml", "properties"} {
if g == suffix {
return nil
}
}
return errors.Errorf("no support file suffix: %s", suffix)
}
//resolverFilePath resolver file path
// eg: give a ./conf/dubbogo.yaml return dubbogo and yaml
func resolverFilePath(path string) (name, suffix string) {
paths := strings.Split(path, "/")
fileName := strings.Split(paths[len(paths)-1], ".")
if len(fileName) < 2 {
return fileName[0], string(file.YAML)
}
return fileName[0], fileName[1]
}
//MergeConfig merge config file
func (conf *loaderConf) MergeConfig(koan *koanf.Koanf) *koanf.Koanf {
var (
activeKoan *koanf.Koanf
activeConf *loaderConf
)
active := koan.String("dubbo.profiles.active")
active = getLegalActive(active)
logger.Infof("The following profiles are active: %s", active)
if defaultActive != active {
path := conf.getActiveFilePath(active)
if !pathExists(path) {
logger.Debugf("Config file:%s not exist skip config merge", path)
return koan
}
activeConf = NewLoaderConf(WithPath(path))
activeKoan = GetConfigResolver(activeConf)
if err := koan.Merge(activeKoan); err != nil {
logger.Debugf("Config merge err %s", err)
}
}
return koan
}
func (conf *loaderConf) getActiveFilePath(active string) string {
suffix := constant.DotSeparator + conf.suffix
return strings.ReplaceAll(conf.path, suffix, "") + "-" + active + suffix
}
func pathExists(path string) bool {
if _, err := os.Stat(path); err == nil {
return true
} else {
return !os.IsNotExist(err)
}
}