2021-05-21 11:50:40 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
2021-05-21 17:28:06 +00:00
|
|
|
"strings"
|
2021-05-21 11:50:40 +00:00
|
|
|
)
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// Sub returns a subsection of the Config by name.
|
2021-05-21 17:28:06 +00:00
|
|
|
//
|
2022-04-21 11:28:05 +00:00
|
|
|
// Returns nil if subsection is missing.
|
2021-05-21 11:50:40 +00:00
|
|
|
func (x *Config) Sub(name string) *Config {
|
2021-06-01 17:12:00 +00:00
|
|
|
// copy path in order to prevent consequent violations
|
|
|
|
ln := len(x.path)
|
|
|
|
|
|
|
|
path := make([]string, ln, ln+1)
|
|
|
|
|
|
|
|
copy(path, x.path)
|
|
|
|
|
2021-10-18 13:36:56 +00:00
|
|
|
var defaultPath []string
|
|
|
|
if x.defaultPath != nil {
|
|
|
|
ln := len(x.defaultPath)
|
|
|
|
defaultPath = make([]string, ln, ln+1)
|
|
|
|
copy(defaultPath, x.defaultPath)
|
|
|
|
}
|
|
|
|
|
2021-05-21 17:28:06 +00:00
|
|
|
return &Config{
|
2021-10-18 13:36:56 +00:00
|
|
|
v: x.v,
|
|
|
|
path: append(path, name),
|
|
|
|
defaultPath: append(defaultPath, name),
|
2021-05-21 17:28:06 +00:00
|
|
|
}
|
2021-05-21 11:50:40 +00:00
|
|
|
}
|
|
|
|
|
2022-04-21 11:28:05 +00:00
|
|
|
// Value returns the configuration value by name.
|
2021-05-21 11:50:40 +00:00
|
|
|
//
|
|
|
|
// Result can be casted to a particular type
|
|
|
|
// via corresponding function (e.g. StringSlice).
|
|
|
|
// Note: casting via Go `.()` operator is not
|
|
|
|
// recommended.
|
|
|
|
//
|
|
|
|
// Returns nil if config is nil.
|
|
|
|
func (x *Config) Value(name string) interface{} {
|
2021-10-18 13:36:56 +00:00
|
|
|
value := x.v.Get(strings.Join(append(x.path, name), separator))
|
|
|
|
if value != nil || x.defaultPath == nil {
|
|
|
|
return value
|
|
|
|
}
|
|
|
|
return x.v.Get(strings.Join(append(x.defaultPath, name), separator))
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetDefault sets fallback config for missing values.
|
|
|
|
//
|
|
|
|
// It supports only one level of nesting and is intended to be used
|
|
|
|
// to provide default values.
|
|
|
|
func (x *Config) SetDefault(from *Config) {
|
|
|
|
x.defaultPath = make([]string, len(from.path))
|
|
|
|
copy(x.defaultPath, from.path)
|
2021-05-21 11:50:40 +00:00
|
|
|
}
|