Documentation ¶
Overview ¶
Package config is an interface for dynamic configuration.
Index ¶
- Variables
- func Load(ctx context.Context, cs []Config, opts ...LoadOption) error
- func NewContext(ctx context.Context, c Config) context.Context
- func Validate(ctx context.Context, cfg interface{}) error
- type Config
- type LoadOption
- type LoadOptions
- type Option
- func AfterInit(fn ...func(context.Context, Config) error) Option
- func AfterLoad(fn ...func(context.Context, Config) error) Option
- func AfterSave(fn ...func(context.Context, Config) error) Option
- func AllowFail(b bool) Option
- func BeforeInit(fn ...func(context.Context, Config) error) Option
- func BeforeLoad(fn ...func(context.Context, Config) error) Option
- func BeforeSave(fn ...func(context.Context, Config) error) Option
- func Codec(c codec.Codec) Option
- func Context(ctx context.Context) Option
- func Logger(l logger.Logger) Option
- func Name(n string) Option
- func SetOption(k, v interface{}) Option
- func Struct(v interface{}) Option
- func StructTag(name string) Option
- func Tracer(t tracer.Tracer) Option
- type Options
- type SaveOption
- type SaveOptions
- type Validator
- type WatchOption
- type WatchOptions
- type Watcher
Constants ¶
This section is empty.
Variables ¶
var ( // ErrCodecMissing is returned when codec needed and not specified ErrCodecMissing = errors.New("codec missing") // ErrInvalidStruct is returned when the target struct is invalid ErrInvalidStruct = errors.New("invalid struct specified") // ErrWatcherStopped is returned when source watcher has been stopped ErrWatcherStopped = errors.New("watcher stopped") // ErrWatcherNotImplemented returned when config does not implement watch ErrWatcherNotImplemented = errors.New("watcher not implemented") )
var ( // DefaultBeforeLoad default func that runs before config Load DefaultBeforeLoad = func(ctx context.Context, c Config) error { if c.Options().BeforeLoad == nil { return nil } for _, fn := range c.Options().BeforeLoad { if err := fn(ctx, c); err != nil { c.Options().Logger.Errorf(ctx, "%s BeforeLoad err: %v", c.String(), err) if !c.Options().AllowFail { return err } } } return nil } // DefaultAfterLoad default func that runs after config Load DefaultAfterLoad = func(ctx context.Context, c Config) error { if c.Options().AfterLoad == nil { return nil } for _, fn := range c.Options().AfterLoad { if err := fn(ctx, c); err != nil { c.Options().Logger.Errorf(ctx, "%s AfterLoad err: %v", c.String(), err) if !c.Options().AllowFail { return err } } } return nil } // DefaultBeforeSave default func that runs befora config Save DefaultBeforeSave = func(ctx context.Context, c Config) error { if c.Options().BeforeSave == nil { return nil } for _, fn := range c.Options().BeforeSave { if err := fn(ctx, c); err != nil { c.Options().Logger.Errorf(ctx, "%s BeforeSave err: %v", c.String(), err) if !c.Options().AllowFail { return err } } } return nil } // DefaultAfterSave default func that runs after config Save DefaultAfterSave = func(ctx context.Context, c Config) error { if c.Options().AfterSave == nil { return nil } for _, fn := range c.Options().AfterSave { if err := fn(ctx, c); err != nil { c.Options().Logger.Errorf(ctx, "%s AfterSave err: %v", c.String(), err) if !c.Options().AllowFail { return err } } } return nil } // DefaultBeforeInit default func that runs befora config Init DefaultBeforeInit = func(ctx context.Context, c Config) error { if c.Options().BeforeInit == nil { return nil } for _, fn := range c.Options().BeforeInit { if err := fn(ctx, c); err != nil { c.Options().Logger.Errorf(ctx, "%s BeforeInit err: %v", c.String(), err) if !c.Options().AllowFail { return err } } } return nil } // DefaultAfterInit default func that runs after config Init DefaultAfterInit = func(ctx context.Context, c Config) error { if c.Options().AfterInit == nil { return nil } for _, fn := range c.Options().AfterSave { if err := fn(ctx, c); err != nil { c.Options().Logger.Errorf(ctx, "%s AfterInit err: %v", c.String(), err) if !c.Options().AllowFail { return err } } } return nil } )
var DefaultConfig = NewConfig()
DefaultConfig default config
var DefaultWatcherMaxInterval = 9 * time.Second
DefaultWatcherMaxInterval default max interval for poll changes
var DefaultWatcherMinInterval = 5 * time.Second
DefaultWatcherMinInterval default min interval for poll changes
Functions ¶
func Load ¶
func Load(ctx context.Context, cs []Config, opts ...LoadOption) error
Load loads config from config sources
func NewContext ¶
NewContext put store in context
Types ¶
type Config ¶
type Config interface { // Name returns name of config Name() string // Init the config Init(opts ...Option) error // Options in the config Options() Options // Load config from sources Load(context.Context, ...LoadOption) error // Save config to sources Save(context.Context, ...SaveOption) error // Watch a config for changes Watch(context.Context, ...WatchOption) (Watcher, error) // String returns config type name String() string }
Config is an interface abstraction for dynamic configuration
func FromContext ¶
FromContext returns store from context
type LoadOption ¶
type LoadOption func(o *LoadOptions)
LoadOption function signature
func LoadStruct ¶
func LoadStruct(src interface{}) LoadOption
LoadStruct override struct for loading
func SetLoadOption ¶ added in v3.8.8
func SetLoadOption(k, v interface{}) LoadOption
SetLoadOption returns a function to setup a context with given value
type LoadOptions ¶
LoadOptions struct
func NewLoadOptions ¶
func NewLoadOptions(opts ...LoadOption) LoadOptions
NewLoadOptions create LoadOptions struct with provided opts
type Option ¶
type Option func(o *Options)
Option function signature
func BeforeInit ¶ added in v3.10.15
BeforeInit run funcs before config Init
func BeforeLoad ¶
BeforeLoad run funcs before config load
func BeforeSave ¶
BeforeSave run funcs before save
func SetOption ¶
func SetOption(k, v interface{}) Option
SetOption returns a function to setup a context with given value
type Options ¶
type Options struct { // Struct holds the destination config struct Struct interface{} // Codec that used for load/save Codec codec.Codec // Tracer that will be used Tracer tracer.Tracer // Meter that will be used Meter meter.Meter // Logger that will be used Logger logger.Logger // Context used for external options Context context.Context // Name of the config Name string // StructTag name StructTag string // BeforeSave contains slice of funcs that runs before Save BeforeSave []func(context.Context, Config) error // AfterSave contains slice of funcs that runs after Save AfterSave []func(context.Context, Config) error // BeforeLoad contains slice of funcs that runs before Load BeforeLoad []func(context.Context, Config) error // AfterLoad contains slice of funcs that runs after Load AfterLoad []func(context.Context, Config) error // BeforeInit contains slice of funcs that runs before Init BeforeInit []func(context.Context, Config) error // AfterInit contains slice of funcs that runs after Init AfterInit []func(context.Context, Config) error // AllowFail flag to allow fail in config source AllowFail bool }
Options hold the config options
func NewOptions ¶
NewOptions new options struct with filed values
type SaveOption ¶
type SaveOption func(o *SaveOptions)
SaveOption function signature
func SaveStruct ¶
func SaveStruct(src interface{}) SaveOption
SaveStruct override struct for save to config
func SetSaveOption ¶ added in v3.8.8
func SetSaveOption(k, v interface{}) SaveOption
SetSaveOption returns a function to setup a context with given value
type SaveOptions ¶
SaveOptions struct
func NewSaveOptions ¶
func NewSaveOptions(opts ...SaveOption) SaveOptions
NewSaveOptions fill SaveOptions struct
type WatchOption ¶
type WatchOption func(*WatchOptions)
WatchOption func signature
func SetWatchOption ¶ added in v3.8.9
func SetWatchOption(k, v interface{}) WatchOption
SetWatchOption returns a function to setup a context with given value
func WatchCoalesce ¶
func WatchCoalesce(b bool) WatchOption
WatchCoalesce controls watch event combining
func WatchInterval ¶
func WatchInterval(min, max time.Duration) WatchOption
WatchInterval specifies min and max time.Duration for pulling changes
func WatchStruct ¶
func WatchStruct(src interface{}) WatchOption
WatchStruct overrides struct for fill
type WatchOptions ¶
type WatchOptions struct { // Context used by non default options Context context.Context // Struct for filling Struct interface{} // MinInterval specifies the min time.Duration interval for poll changes MinInterval time.Duration // MaxInterval specifies the max time.Duration interval for poll changes MaxInterval time.Duration // Coalesce multiple events to one Coalesce bool }
WatchOptions struuct
func NewWatchOptions ¶
func NewWatchOptions(opts ...WatchOption) WatchOptions
NewWatchOptions create WatchOptions struct with provided opts