2015-03-10 07:20:31 +00:00
|
|
|
package util
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
import (
|
2020-01-29 17:09:55 +00:00
|
|
|
"strings"
|
|
|
|
|
2019-06-05 08:30:24 +00:00
|
|
|
"github.com/spf13/viper"
|
2020-01-29 17:09:55 +00:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2019-06-05 08:30:24 +00:00
|
|
|
)
|
|
|
|
|
2018-08-19 22:17:55 +00:00
|
|
|
type Configuration interface {
|
|
|
|
GetString(key string) string
|
|
|
|
GetBool(key string) bool
|
|
|
|
GetInt(key string) int
|
|
|
|
GetStringSlice(key string) []string
|
2019-12-21 04:56:14 +00:00
|
|
|
SetDefault(key string, value interface{})
|
2012-08-24 03:56:09 +00:00
|
|
|
}
|
2019-06-05 08:30:24 +00:00
|
|
|
|
|
|
|
func LoadConfiguration(configFileName string, required bool) (loaded bool) {
|
|
|
|
|
|
|
|
// find a filer store
|
|
|
|
viper.SetConfigName(configFileName) // name of config file (without extension)
|
|
|
|
viper.AddConfigPath(".") // optionally look for config in the working directory
|
|
|
|
viper.AddConfigPath("$HOME/.seaweedfs") // call multiple times to add many search paths
|
|
|
|
viper.AddConfigPath("/etc/seaweedfs/") // path to look for the config file in
|
|
|
|
|
|
|
|
glog.V(1).Infof("Reading %s.toml from %s", configFileName, viper.ConfigFileUsed())
|
|
|
|
|
|
|
|
if err := viper.MergeInConfig(); err != nil { // Handle errors reading the config file
|
2020-03-23 01:32:56 +00:00
|
|
|
glog.V(1).Infof("Reading %s: %v", viper.ConfigFileUsed(), err)
|
2019-06-05 08:30:24 +00:00
|
|
|
if required {
|
|
|
|
glog.Fatalf("Failed to load %s.toml file from current directory, or $HOME/.seaweedfs/, or /etc/seaweedfs/"+
|
2020-01-28 08:49:47 +00:00
|
|
|
"\n\nPlease use this command to generate the default %s.toml file\n"+
|
2019-06-05 08:30:24 +00:00
|
|
|
" weed scaffold -config=%s -output=.\n\n\n",
|
|
|
|
configFileName, configFileName, configFileName)
|
|
|
|
} else {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
2019-11-11 01:15:17 +00:00
|
|
|
}
|
2020-01-29 17:09:55 +00:00
|
|
|
|
|
|
|
func GetViper() *viper.Viper {
|
2020-04-14 02:22:40 +00:00
|
|
|
v := &viper.Viper{}
|
|
|
|
*v = *viper.GetViper()
|
2020-01-29 17:09:55 +00:00
|
|
|
v.AutomaticEnv()
|
|
|
|
v.SetEnvPrefix("weed")
|
|
|
|
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
|
|
|
return v
|
|
|
|
}
|