blob: 8179905efc2b839f582058c9e4b12277fcad0433 [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 (
"fmt"
"os"
"path/filepath"
"runtime"
"sort"
"strings"
)
import (
"github.com/pkg/errors"
)
import (
"dubbo.apache.org/dubbo-go/v3/common/constant"
)
type loaderConf struct {
// loaderConf file type default yaml
genre string
// loaderConf file path default ./conf
path string
// loaderConf file delim default .
delim string
}
func NewLoaderConf(opts ...LoaderConfOption) *loaderConf {
configFilePath := "../conf/dubbogo.yaml"
if configFilePathFromEnv := os.Getenv(constant.CONFIG_FILE_ENV_KEY); configFilePathFromEnv != "" {
configFilePath = configFilePathFromEnv
}
conf := &loaderConf{
genre: "yaml",
path: configFilePath,
delim: ".",
}
for _, opt := range opts {
opt.apply(conf)
}
return conf
}
type LoaderConfOption interface {
apply(vc *loaderConf)
}
type loaderConfigFunc func(*loaderConf)
func (fn loaderConfigFunc) apply(vc *loaderConf) {
fn(vc)
}
// WithGenre set loaderConf Genre
func WithGenre(genre string) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
g := strings.ToLower(genre)
if err := checkGenre(g); err != nil {
panic(err)
}
conf.genre = g
})
}
// WithPath set loaderConf path
func WithPath(path string) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
conf.path = absolutePath(path)
})
}
func WithDelim(delim string) LoaderConfOption {
return loaderConfigFunc(func(conf *loaderConf) {
conf.delim = delim
})
}
// 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")
}
// checkGenre check Genre
func checkGenre(genre string) error {
genres := []string{"json", "toml", "yaml", "yml"}
sort.Strings(genres)
idx := sort.SearchStrings(genres, genre)
if genres[idx] != genre {
return errors.New(fmt.Sprintf("no support %s", genre))
}
return nil
}