blob: 95b4c60e8284cfc81b6a43db35a8d4f71f11d2f6 [file] [log] [blame]
/*
* 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 (
log "github.com/dubbogo/gost/log/logger"
"github.com/knadh/koanf"
"github.com/knadh/koanf/parsers/json"
"github.com/knadh/koanf/parsers/toml"
"github.com/knadh/koanf/parsers/yaml"
"github.com/knadh/koanf/providers/confmap"
"github.com/knadh/koanf/providers/rawbytes"
"strings"
"github.com/pkg/errors"
)
import (
"dubbo.apache.org/dubbo-go/v3/common/constant/file"
"dubbo.apache.org/dubbo-go/v3/config/parsers/properties"
)
// GetConfigResolver get config resolver
func GetConfigResolver(conf *loaderConf) *koanf.Koanf {
var (
k *koanf.Koanf
err error
)
if len(conf.suffix) <= 0 {
conf.suffix = string(file.YAML)
}
if len(conf.delim) <= 0 {
conf.delim = "."
}
bytes := conf.bytes
if len(bytes) <= 0 {
panic(errors.New("bytes is nil,please set bytes or file path"))
}
k = koanf.New(conf.delim)
switch conf.suffix {
case "yaml", "yml":
err = k.Load(rawbytes.Provider(bytes), yaml.Parser())
case "json":
err = k.Load(rawbytes.Provider(bytes), json.Parser())
case "toml":
err = k.Load(rawbytes.Provider(bytes), toml.Parser())
case "properties":
err = k.Load(rawbytes.Provider(bytes), properties.Parser())
default:
err = errors.Errorf("no support %s file suffix", conf.suffix)
}
if err != nil {
panic(err)
}
return resolvePlaceholder(k)
}
const (
PlaceholderPrefix = "${"
PlaceholderSuffix = "}"
)
// resolvePlaceholder replace ${xx} with real value
func resolvePlaceholder(resolver *koanf.Koanf) *koanf.Koanf {
m := make(map[string]interface{})
for k, v := range resolver.All() {
if _, ok := v.(string); !ok {
continue
}
s := v.(string)
newKey := checkPlaceholder(s)
if newKey == "" {
continue
}
m[k] = resolver.Get(newKey)
}
err := resolver.Load(confmap.Provider(m, resolver.Delim()), nil)
if err != nil {
log.Errorf("resolvePlaceholder error %s", err)
}
return resolver
}
func checkPlaceholder(s string) string {
s = strings.Trim(s, " ")
if !strings.HasPrefix(s, PlaceholderPrefix) || !strings.HasSuffix(s, PlaceholderSuffix) {
return ""
}
return strings.Trim(s[len(PlaceholderPrefix):len(s)-len(PlaceholderSuffix)], " ")
}