ab3ef7110e
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
74 lines
1.4 KiB
Go
74 lines
1.4 KiB
Go
package config
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/nspcc-dev/neofs-node/cmd/neofs-node/config/internal"
|
|
"github.com/spf13/viper"
|
|
)
|
|
|
|
// Config represents a group of named values structured
|
|
// by tree type.
|
|
//
|
|
// Sub-trees are named configuration sub-sections,
|
|
// leaves are named configuration values.
|
|
// Names are of string type.
|
|
type Config struct {
|
|
v *viper.Viper
|
|
|
|
opts opts
|
|
|
|
defaultPath []string
|
|
path []string
|
|
}
|
|
|
|
const separator = "."
|
|
|
|
// Prm groups required parameters of the Config.
|
|
type Prm struct{}
|
|
|
|
// New creates a new Config instance.
|
|
//
|
|
// If file option is provided (WithConfigFile),
|
|
// configuration values are read from it.
|
|
// Otherwise, Config is a degenerate tree.
|
|
func New(_ Prm, opts ...Option) *Config {
|
|
v := viper.New()
|
|
|
|
v.SetEnvPrefix(internal.EnvPrefix)
|
|
v.AutomaticEnv()
|
|
v.SetEnvKeyReplacer(strings.NewReplacer(separator, internal.EnvSeparator))
|
|
|
|
o := defaultOpts()
|
|
for i := range opts {
|
|
opts[i](o)
|
|
}
|
|
|
|
if o.path != "" {
|
|
v.SetConfigFile(o.path)
|
|
|
|
err := v.ReadInConfig()
|
|
if err != nil {
|
|
panic(fmt.Errorf("failed to read config: %w", err))
|
|
}
|
|
}
|
|
|
|
return &Config{
|
|
v: v,
|
|
opts: *o,
|
|
}
|
|
}
|
|
|
|
// Reload reads configuration path if any was provided
|
|
// to the New. Returns any
|
|
func (x *Config) Reload() error {
|
|
if x.opts.path != "" {
|
|
err := x.v.ReadInConfig()
|
|
if err != nil {
|
|
return fmt.Errorf("rereading configuration file: %w", err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|