56 lines
1.5 KiB
Go
56 lines
1.5 KiB
Go
package mcfg
|
|
|
|
import (
|
|
"encoding/json"
|
|
)
|
|
|
|
// ParamValue describes a value for a parameter which has been parsed by a
|
|
// Source
|
|
type ParamValue struct {
|
|
Param
|
|
Value json.RawMessage
|
|
}
|
|
|
|
// Source parses ParamValues out of a particular configuration source. The
|
|
// returned []ParamValue may contain duplicates of the same Param's value.
|
|
type Source interface {
|
|
Parse(*Cfg) ([]ParamValue, error)
|
|
}
|
|
|
|
// Sources combines together multiple Source instances into one. It will call
|
|
// Parse on each element individually. Later Sources take precedence over
|
|
// previous ones in the slice.
|
|
type Sources []Source
|
|
|
|
// Parse implements the method for the Source interface.
|
|
func (ss Sources) Parse(c *Cfg) ([]ParamValue, error) {
|
|
var pvs []ParamValue
|
|
for _, s := range ss {
|
|
innerPVs, err := s.Parse(c)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
pvs = append(pvs, innerPVs...)
|
|
}
|
|
return pvs, nil
|
|
}
|
|
|
|
// SourceMap implements the Source interface by mapping parameter names to
|
|
// values for them. The names are comprised of the path and name of a Param
|
|
// joined by "-" characters, i.e. `strings.Join(append(p.Path, p.Name), "-")`.
|
|
// Values will be parsed in the same way that SourceEnv parses its variables.
|
|
type SourceMap map[string]string
|
|
|
|
func (m SourceMap) Parse(c *Cfg) ([]ParamValue, error) {
|
|
pvs := make([]ParamValue, 0, len(m))
|
|
for _, p := range c.allParams() {
|
|
if v, ok := m[p.fullName()]; ok {
|
|
pvs = append(pvs, ParamValue{
|
|
Param: p,
|
|
Value: p.fuzzyParse(v),
|
|
})
|
|
}
|
|
}
|
|
return pvs, nil
|
|
}
|