Documentation ¶
Overview ¶
Package config provides a versatile configuration management system.
Index ¶
- Constants
- Variables
- func CleanFlattenedConfig(flattenedConfig map[string]interface{})
- func CleanHierarchicalConfig(config map[string]interface{})
- func Expand(flattenedConfig map[string]interface{}) (config map[string]interface{})
- func Flatten(config map[string]interface{}) (flattenedConfig map[string]interface{})
- func ForEachOption(fn func(opt *Option) error) error
- func GetExpertiseLevel() uint8
- func JSONToMap(jsonData []byte) (map[string]interface{}, error)
- func MapToJSON(config map[string]interface{}) ([]byte, error)
- func PutValueIntoHierarchicalConfig(config map[string]interface{}, key string, value interface{})
- func Register(option *Option) error
- func SetConfigOption(key string, value interface{}) error
- func SetDataRoot(root *utils.DirStructure)
- func SetDefaultConfigOption(key string, value interface{}) error
- type Annotations
- type BoolOption
- type ExpertiseLevel
- type IntOption
- type Option
- type OptionType
- type Perspective
- func (p *Perspective) GetAsBool(name string) (value bool, ok bool)
- func (p *Perspective) GetAsInt(name string) (value int64, ok bool)
- func (p *Perspective) GetAsString(name string) (value string, ok bool)
- func (p *Perspective) GetAsStringArray(name string) (value []string, ok bool)
- func (p *Perspective) Has(name string) bool
- type PossibleValue
- type QuickSetting
- type QuickSettingsAction
- type ReleaseLevel
- type StorageInterface
- func (s *StorageInterface) Delete(key string) error
- func (s *StorageInterface) Get(key string) (record.Record, error)
- func (s *StorageInterface) Put(r record.Record) (record.Record, error)
- func (s *StorageInterface) Query(q *query.Query, local, internal bool) (*iterator.Iterator, error)
- func (s *StorageInterface) ReadOnly() bool
- type StringArrayOption
- type StringOption
- type ValidationError
- type ValidityFlag
- type ValueRequirement
Constants ¶
const ( ExpertiseLevelUser ExpertiseLevel = 0 ExpertiseLevelExpert ExpertiseLevel = 1 ExpertiseLevelDeveloper ExpertiseLevel = 2 ExpertiseLevelNameUser = "user" ExpertiseLevelNameExpert = "expert" ExpertiseLevelNameDeveloper = "developer" )
Expertise Level constants.
const ( // DisplayHintAnnotation provides a hint for the user // interface on how to render an option. // The value of DisplayHintAnnotation is expected to // be a string. See DisplayHintXXXX constants below // for a list of well-known display hint annotations. DisplayHintAnnotation = "safing/portbase:ui:display-hint" // DisplayOrderAnnotation provides a hint for the user // interface in which order settings should be displayed. // The value of DisplayOrderAnnotations is expected to be // an number (int). DisplayOrderAnnotation = "safing/portbase:ui:order" // UnitAnnotations defines the SI unit of an option (if any). UnitAnnotation = "safing/portbase:ui:unit" // CategoryAnnotations can provide an additional category // to each settings. This category can be used by a user // interface to group certain options together. // User interfaces should treat a CategoryAnnotation, if // supported, with higher priority as a DisplayOrderAnnotation. CategoryAnnotation = "safing/portbase:ui:category" // SubsystemAnnotation can be used to mark an option as part // of a module subsystem. SubsystemAnnotation = "safing/portbase:module:subsystem" // StackableAnnotation can be set on configuration options that // stack on top of the default (or otherwise related) options. // The value of StackableAnnotaiton is expected to be a boolean but // may be extended to hold references to other options in the // future. StackableAnnotation = "safing/portbase:options:stackable" // RestartPendingAnnotation is automatically set on a configuration option // that requires a restart and has been changed. // The value must always be a boolean with value "true". RestartPendingAnnotation = "safing/portbase:options:restart-pending" // QuickSettingAnnotation can be used to add quick settings to // a configuration option. A quick setting can support the user // by switching between pre-configured values. // The type of a quick-setting annotation is []QuickSetting or QuickSetting. QuickSettingsAnnotation = "safing/portbase:ui:quick-setting" // RequiresAnnotation can be used to mark another option as a // requirement. The type of RequiresAnnotation is []ValueRequirement // or ValueRequirement. RequiresAnnotation = "safing/portbase:config:requires" )
Well known annotations defined by this package.
const ( // QuickReplace replaces the current setting with the one from // the quick setting. QuickReplace = QuickSettingsAction("replace") // QuickMergeTop merges the value of the quick setting with the // already configured one adding new values on the top. Merging // is only supported for OptTypeStringArray. QuickMergeTop = QuickSettingsAction("merge-top") // QuickMergeBottom merges the value of the quick setting with the // already configured one adding new values at the bottom. Merging // is only supported for OptTypeStringArray. QuickMergeBottom = QuickSettingsAction("merge-bottom") )
const ( // DisplayHintOneOf is used to mark an option // as a "select"-style option. That is, only one of // the supported values may be set. This option makes // only sense together with the PossibleValues property // of Option. DisplayHintOneOf = "one-of" // DisplayHintOrdered Used to mark a list option as ordered. // That is, the order of items is important and a user interface // is encouraged to provide the user with re-ordering support // (like drag'n'drop). DisplayHintOrdered = "ordered" )
Values for the DisplayHintAnnotation.
const ( ReleaseLevelStable ReleaseLevel = 0 ReleaseLevelBeta ReleaseLevel = 1 ReleaseLevelExperimental ReleaseLevel = 2 ReleaseLevelNameStable = "stable" ReleaseLevelNameBeta = "beta" ReleaseLevelNameExperimental = "experimental" )
Release Level constants.
Variables ¶
var ( CfgDevModeKey = "core/devMode" CfgLogLevel = "core/log/level" )
Configuration Keys.
var ( // ErrInvalidJSON is returned by SetConfig and SetDefaultConfig if they receive invalid json. ErrInvalidJSON = errors.New("json string invalid") // ErrInvalidOptionType is returned by SetConfigOption and SetDefaultConfigOption if given an unsupported option type. ErrInvalidOptionType = errors.New("invalid option value type") )
var Concurrent = &safe{}
Concurrent makes concurrency safe get methods available.
Functions ¶
func CleanFlattenedConfig ¶ added in v0.5.1
func CleanFlattenedConfig(flattenedConfig map[string]interface{})
CleanFlattenedConfig removes all inexistent configuration options from the given flattened config map.
func CleanHierarchicalConfig ¶ added in v0.5.1
func CleanHierarchicalConfig(config map[string]interface{})
CleanHierarchicalConfig removes all inexistent configuration options from the given hierarchical config map.
func ForEachOption ¶ added in v0.9.0
ForEachOption calls fn for each defined option. If fn returns and error the iteration is stopped and the error is returned. Note that ForEachOption does not guarantee a stable order of iteration between multiple calles. ForEachOption does NOT lock opt when calling fn.
func GetExpertiseLevel ¶ added in v0.4.0
func GetExpertiseLevel() uint8
GetExpertiseLevel returns the current active expertise level.
func PutValueIntoHierarchicalConfig ¶ added in v0.5.1
PutValueIntoHierarchicalConfig injects a configuration entry into an hierarchical config map. Conflicting entries will be replaced.
func SetConfigOption ¶
SetConfigOption sets a single value in the (prioritized) user defined config.
func SetDataRoot ¶ added in v0.3.0
func SetDataRoot(root *utils.DirStructure)
SetDataRoot sets the data root from which the updates module derives its paths.
func SetDefaultConfigOption ¶
SetDefaultConfigOption sets a single value in the (fallback) default config.
Types ¶
type Annotations ¶ added in v0.9.0
type Annotations map[string]interface{}
Annotations can be attached to configuration options to provide hints for user interfaces or other systems working or setting configuration options. Annotation keys should follow the below format to ensure future well-known annotation additions do not conflict with vendor/product/package specific annoations.
Format: <vendor/package>:<scope>:<identifier> //.
type BoolOption ¶
type BoolOption func() bool
BoolOption defines the returned function by GetAsBool.
func GetAsBool ¶
func GetAsBool(name string, fallback bool) BoolOption
GetAsBool returns a function that returns the wanted int with high performance.
type ExpertiseLevel ¶ added in v0.9.0
type ExpertiseLevel uint8
ExpertiseLevel allows to group settings by user expertise. It's useful if complex or technical settings should be hidden from the average user while still allowing experts and developers to change deep configuration settings.
type Option ¶
type Option struct { sync.Mutex // Name holds the name of the configuration options. // It should be human readable and is mainly used for // presentation purposes. // Name is considered immutable after the option has // been created. Name string // Key holds the database path for the option. It should // follow the path format `category/sub/key`. // Key is considered immutable after the option has // been created. Key string // Description holds a human readable description of the // option and what is does. The description should be short. // Use the Help property for a longer support text. // Description is considered immutable after the option has // been created. Description string // Help may hold a long version of the description providing // assistance with the configuration option. // Help is considered immutable after the option has // been created. Help string // OptType defines the type of the option. // OptType is considered immutable after the option has // been created. OptType OptionType // ExpertiseLevel can be used to set the required expertise // level for the option to be displayed to a user. // ExpertiseLevel is considered immutable after the option has // been created. ExpertiseLevel ExpertiseLevel // ReleaseLevel is used to mark the stability of the option. // ReleaseLevel is considered immutable after the option has // been created. ReleaseLevel ReleaseLevel // RequiresRestart should be set to true if a modification of // the options value requires a restart of the whole application // to take effect. // RequiresRestart is considered immutable after the option has // been created. RequiresRestart bool // DefaultValue holds the default value of the option. Note that // this value can be overwritten during runtime (see activeDefaultValue // and activeFallbackValue). // DefaultValue is considered immutable after the option has // been created. DefaultValue interface{} // ValidationRegex may contain a regular expression used to validate // the value of option. If the option type is set to OptTypeStringArray // the validation regex is applied to all entries of the string slice. // Note that it is recommended to keep the validation regex simple so // it can also be used in other languages (mainly JavaScript) to provide // a better user-experience by pre-validating the expression. // ValidationRegex is considered immutable after the option has // been created. ValidationRegex string // ValidationFunc may contain a function to validate more complex values. // The error is returned beyond the scope of this package and may be // displayed to a user. ValidationFunc func(value interface{}) error `json:"-"` // PossibleValues may be set to a slice of values that are allowed // for this configuration setting. Note that PossibleValues makes most // sense when ExternalOptType is set to HintOneOf // PossibleValues is considered immutable after the option has // been created. PossibleValues []PossibleValue `json:",omitempty"` // Annotations adds additional annotations to the configuration options. // See documentation of Annotations for more information. // Annotations is considered mutable and setting/reading annotation keys // must be performed while the option is locked. Annotations Annotations // contains filtered or unexported fields }
Option describes a configuration option.
func ExportOptions ¶ added in v0.9.4
func ExportOptions() []*Option
ExportOptions exports the registered options. The returned data must be treated as immutable. The data does not include the current active or default settings.
func GetOption ¶ added in v0.9.0
GetOption returns the option with name or an error if the option does not exist. The caller should lock the returned option itself for further processing.
func (*Option) AddAnnotation ¶ added in v0.9.0
AddAnnotation adds the annotation key to option if it's not already set.
func (*Option) GetAnnotation ¶ added in v0.9.0
GetAnnotation returns the value of the annotation key.
func (*Option) SetAnnotation ¶ added in v0.9.0
SetAnnotation sets the value of the annotation key overwritting an existing value if required.
type OptionType ¶ added in v0.9.0
type OptionType uint8
OptionType defines the value type of an option.
const ( OptTypeString OptionType = 1 OptTypeStringArray OptionType = 2 OptTypeInt OptionType = 3 OptTypeBool OptionType = 4 )
Various attribute options. Use ExternalOptType for extended types in the frontend.
type Perspective ¶ added in v0.5.0
type Perspective struct {
// contains filtered or unexported fields
}
Perspective is a view on configuration data without interfering with the configuration system.
func NewPerspective ¶ added in v0.5.0
func NewPerspective(config map[string]interface{}) (*Perspective, error)
NewPerspective parses the given config and returns it as a new perspective.
func (*Perspective) GetAsBool ¶ added in v0.5.0
func (p *Perspective) GetAsBool(name string) (value bool, ok bool)
GetAsBool returns a function that returns the wanted int with high performance.
func (*Perspective) GetAsInt ¶ added in v0.5.0
func (p *Perspective) GetAsInt(name string) (value int64, ok bool)
GetAsInt returns a function that returns the wanted int with high performance.
func (*Perspective) GetAsString ¶ added in v0.5.0
func (p *Perspective) GetAsString(name string) (value string, ok bool)
GetAsString returns a function that returns the wanted string with high performance.
func (*Perspective) GetAsStringArray ¶ added in v0.5.0
func (p *Perspective) GetAsStringArray(name string) (value []string, ok bool)
GetAsStringArray returns a function that returns the wanted string with high performance.
func (*Perspective) Has ¶ added in v0.9.0
func (p *Perspective) Has(name string) bool
Has returns whether the given option is set in the perspective.
type PossibleValue ¶ added in v0.9.0
type PossibleValue struct { // Name is a human readable name of the option. Name string // Description is a human readable description of // this value. Description string // Value is the actual value of the option. The type // must match the option's value type. Value interface{} }
PossibleValue defines a value that is possible for a configuration setting.
type QuickSetting ¶ added in v0.9.0
type QuickSetting struct { // Name is the name of the quick setting. Name string // Value is the value that the quick-setting configures. It must match // the expected value type of the annotated option. Value interface{} // Action defines the action of the quick setting. Action QuickSettingsAction }
QuickSetting defines a quick setting for a configuration option and should be used together with the QuickSettingsAnnotation.
type QuickSettingsAction ¶ added in v0.9.0
type QuickSettingsAction string
QuickSettingsAction defines the action of a quick setting.
type ReleaseLevel ¶ added in v0.9.0
type ReleaseLevel uint8
ReleaseLevel is used to define the maturity of a configuration setting.
type StorageInterface ¶ added in v0.3.0
type StorageInterface struct {
storage.InjectBase
}
StorageInterface provices a storage.Interface to the configuration manager.
func (*StorageInterface) Delete ¶ added in v0.3.0
func (s *StorageInterface) Delete(key string) error
Delete deletes a record from the database.
func (*StorageInterface) Get ¶ added in v0.3.0
func (s *StorageInterface) Get(key string) (record.Record, error)
Get returns a database record.
func (*StorageInterface) Query ¶ added in v0.3.0
Query returns a an iterator for the supplied query.
func (*StorageInterface) ReadOnly ¶ added in v0.3.0
func (s *StorageInterface) ReadOnly() bool
ReadOnly returns whether the database is read only.
type StringArrayOption ¶
type StringArrayOption func() []string
StringArrayOption defines the returned function by GetAsStringArray.
func GetAsStringArray ¶
func GetAsStringArray(name string, fallback []string) StringArrayOption
GetAsStringArray returns a function that returns the wanted string with high performance.
type StringOption ¶
type StringOption func() string
StringOption defines the returned function by GetAsString.
func GetAsString ¶
func GetAsString(name string, fallback string) StringOption
GetAsString returns a function that returns the wanted string with high performance.
type ValidationError ¶ added in v0.14.0
ValidationError error holds details about a config option value validation error.
func GetLoadedConfigValidationErrors ¶ added in v0.14.0
func GetLoadedConfigValidationErrors() []*ValidationError
GetLoadedConfigValidationErrors returns the encountered validation errors from the last time loading config from disk.
func (*ValidationError) Error ¶ added in v0.14.0
func (ve *ValidationError) Error() string
Error returns the formatted error.
func (*ValidationError) Unwrap ¶ added in v0.14.0
func (ve *ValidationError) Unwrap() error
Unwrap returns the wrapped error.
type ValidityFlag ¶ added in v0.5.0
type ValidityFlag struct {
// contains filtered or unexported fields
}
ValidityFlag is a flag that signifies if the configuration has been changed. It is not safe for concurrent use.
func NewValidityFlag ¶ added in v0.5.0
func NewValidityFlag() *ValidityFlag
NewValidityFlag returns a flag that signifies if the configuration has been changed. It always starts out as invalid. Refresh to start with the current value.
func (*ValidityFlag) IsValid ¶ added in v0.5.0
func (vf *ValidityFlag) IsValid() bool
IsValid returns if the configuration is still valid.
func (*ValidityFlag) Refresh ¶ added in v0.5.0
func (vf *ValidityFlag) Refresh()
Refresh refreshes the flag and makes it reusable.
type ValueRequirement ¶ added in v0.9.0
type ValueRequirement struct { // Key is the key of the configuration option that is required. Key string // Value that is required. Value interface{} }
ValueRequirement defines a requirement on another configuration option.