2019-05-18 18:50:04 +00:00
|
|
|
// Package mcfg implements the creation of different types of configuration
|
|
|
|
// parameters and various methods of filling those parameters from external
|
|
|
|
// configuration sources (e.g. the command line and environment variables).
|
|
|
|
//
|
2019-06-15 22:45:53 +00:00
|
|
|
// Parameters are registered onto a Component, and that same Component (or one
|
|
|
|
// of its ancestors) is used later to collect and fill those parameters.
|
2018-01-11 22:19:25 +00:00
|
|
|
package mcfg
|
|
|
|
|
|
|
|
import (
|
2019-01-25 22:33:36 +00:00
|
|
|
"crypto/md5"
|
|
|
|
"encoding/hex"
|
2018-01-11 22:19:25 +00:00
|
|
|
"encoding/json"
|
2019-01-25 22:33:36 +00:00
|
|
|
"fmt"
|
2019-01-08 19:21:55 +00:00
|
|
|
"sort"
|
|
|
|
|
2019-06-15 22:45:53 +00:00
|
|
|
"github.com/mediocregopher/mediocre-go-lib/mcmp"
|
2019-01-08 19:21:55 +00:00
|
|
|
"github.com/mediocregopher/mediocre-go-lib/mctx"
|
2019-01-25 03:02:04 +00:00
|
|
|
"github.com/mediocregopher/mediocre-go-lib/merr"
|
2018-01-11 22:19:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TODO Sources:
|
|
|
|
// - JSON file
|
|
|
|
// - YAML file
|
|
|
|
|
2019-04-04 18:21:44 +00:00
|
|
|
// TODO WithCLISubCommand does not play nice with the expected use-case of
|
|
|
|
// having CLI params overwrite Env ones. If Env is specified first in the
|
|
|
|
// Sources slice then it won't know about any extra Params which might get added
|
|
|
|
// due to a sub-command, but if it's specified second then Env values will
|
|
|
|
// overwrite CLI ones.
|
|
|
|
|
2019-01-08 19:21:55 +00:00
|
|
|
func sortParams(params []Param) {
|
|
|
|
sort.Slice(params, func(i, j int) bool {
|
|
|
|
a, b := params[i], params[j]
|
2019-06-15 22:45:53 +00:00
|
|
|
aPath, bPath := a.Component.Path(), b.Component.Path()
|
2019-01-08 19:21:55 +00:00
|
|
|
for {
|
|
|
|
switch {
|
|
|
|
case len(aPath) == 0 && len(bPath) == 0:
|
|
|
|
return a.Name < b.Name
|
|
|
|
case len(aPath) == 0 && len(bPath) > 0:
|
|
|
|
return false
|
|
|
|
case len(aPath) > 0 && len(bPath) == 0:
|
|
|
|
return true
|
|
|
|
case aPath[0] != bPath[0]:
|
|
|
|
return aPath[0] < bPath[0]
|
|
|
|
default:
|
|
|
|
aPath, bPath = aPath[1:], bPath[1:]
|
|
|
|
}
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
2019-01-08 19:21:55 +00:00
|
|
|
})
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
|
2019-06-15 22:45:53 +00:00
|
|
|
// CollectParams gathers all Params by recursively retrieving them from the
|
|
|
|
// given Component and its children. Returned Params are sorted according to
|
|
|
|
// their Path and Name.
|
|
|
|
func CollectParams(cmp *mcmp.Component) []Param {
|
2019-01-08 19:21:55 +00:00
|
|
|
var params []Param
|
2018-01-11 22:19:25 +00:00
|
|
|
|
2019-06-15 22:45:53 +00:00
|
|
|
var visit func(*mcmp.Component)
|
|
|
|
visit = func(cmp *mcmp.Component) {
|
|
|
|
for _, param := range getLocalParams(cmp) {
|
2019-01-08 19:21:55 +00:00
|
|
|
params = append(params, param)
|
|
|
|
}
|
2018-05-28 03:10:57 +00:00
|
|
|
|
2019-06-15 22:45:53 +00:00
|
|
|
for _, childCmp := range cmp.Children() {
|
|
|
|
visit(childCmp)
|
2019-01-08 19:21:55 +00:00
|
|
|
}
|
2018-05-28 03:10:57 +00:00
|
|
|
}
|
2019-06-15 22:45:53 +00:00
|
|
|
visit(cmp)
|
2018-05-28 03:10:57 +00:00
|
|
|
|
2019-01-08 19:21:55 +00:00
|
|
|
sortParams(params)
|
|
|
|
return params
|
2018-05-28 03:10:57 +00:00
|
|
|
}
|
|
|
|
|
2019-01-25 22:33:36 +00:00
|
|
|
func paramHash(path []string, name string) string {
|
|
|
|
h := md5.New()
|
|
|
|
for _, pathEl := range path {
|
|
|
|
fmt.Fprintf(h, "pathEl:%q\n", pathEl)
|
|
|
|
}
|
|
|
|
fmt.Fprintf(h, "name:%q\n", name)
|
|
|
|
hStr := hex.EncodeToString(h.Sum(nil))
|
|
|
|
// we add the displayName to it to make debugging easier
|
|
|
|
return paramFullName(path, name) + "/" + hStr
|
|
|
|
}
|
|
|
|
|
2019-04-04 16:20:40 +00:00
|
|
|
// Populate uses the Source to populate the values of all Params which were
|
2019-06-15 22:45:53 +00:00
|
|
|
// added to the given Component, and all of its children. Populate may be called
|
|
|
|
// multiple times with the same Component, each time will only affect the values
|
2019-04-04 16:20:40 +00:00
|
|
|
// of the Params which were provided by the respective Source.
|
|
|
|
//
|
|
|
|
// Source may be nil to indicate that no configuration is provided. Only default
|
|
|
|
// values will be used, and if any parameters are required this will error.
|
2019-06-15 22:45:53 +00:00
|
|
|
//
|
|
|
|
// Populating Params can affect the Component itself, for example in the case of
|
|
|
|
// sub-commands.
|
|
|
|
func Populate(cmp *mcmp.Component, src Source) error {
|
2019-01-11 22:44:53 +00:00
|
|
|
if src == nil {
|
2019-01-25 22:33:36 +00:00
|
|
|
src = ParamValues(nil)
|
|
|
|
}
|
|
|
|
|
2019-06-15 22:45:53 +00:00
|
|
|
pvs, err := src.Parse(cmp)
|
2019-04-04 18:21:44 +00:00
|
|
|
if err != nil {
|
2019-06-15 22:45:53 +00:00
|
|
|
return err
|
2019-04-04 18:21:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// map Params to their hash, so we can match them to their ParamValues.
|
2019-01-25 22:33:36 +00:00
|
|
|
// later. There should not be any duplicates here.
|
2019-06-15 22:45:53 +00:00
|
|
|
params := CollectParams(cmp)
|
2019-01-25 22:33:36 +00:00
|
|
|
pM := map[string]Param{}
|
|
|
|
for _, p := range params {
|
2019-06-15 22:45:53 +00:00
|
|
|
path := p.Component.Path()
|
2019-02-05 20:18:17 +00:00
|
|
|
hash := paramHash(path, p.Name)
|
2019-01-25 22:33:36 +00:00
|
|
|
if _, ok := pM[hash]; ok {
|
2019-02-05 20:18:17 +00:00
|
|
|
panic("duplicate Param: " + paramFullName(path, p.Name))
|
2019-01-25 22:33:36 +00:00
|
|
|
}
|
|
|
|
pM[hash] = p
|
2019-01-11 22:44:53 +00:00
|
|
|
}
|
|
|
|
|
2018-08-14 00:05:22 +00:00
|
|
|
// dedupe the ParamValues based on their hashes, with the last ParamValue
|
2019-01-25 22:33:36 +00:00
|
|
|
// taking precedence. Also filter out those with no corresponding Param.
|
2018-01-11 22:19:25 +00:00
|
|
|
pvM := map[string]ParamValue{}
|
|
|
|
for _, pv := range pvs {
|
2019-01-25 22:33:36 +00:00
|
|
|
hash := paramHash(pv.Path, pv.Name)
|
|
|
|
if _, ok := pM[hash]; !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
pvM[hash] = pv
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
|
2018-08-14 00:05:22 +00:00
|
|
|
// check for required params
|
2019-01-25 22:33:36 +00:00
|
|
|
for hash, p := range pM {
|
|
|
|
if !p.Required {
|
2018-08-14 00:05:22 +00:00
|
|
|
continue
|
2019-01-25 22:33:36 +00:00
|
|
|
} else if _, ok := pvM[hash]; !ok {
|
2019-06-15 22:45:53 +00:00
|
|
|
ctx := mctx.Annotate(p.Component.Annotated(),
|
|
|
|
"param", paramFullName(p.Component.Path(), p.Name))
|
|
|
|
return merr.New("required parameter is not set", ctx)
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-25 22:33:36 +00:00
|
|
|
// do the actual populating
|
|
|
|
for hash, pv := range pvM {
|
|
|
|
// at this point, all ParamValues in pvM have a corresponding pM Param
|
|
|
|
p := pM[hash]
|
|
|
|
if err := json.Unmarshal(pv.Value, p.Into); err != nil {
|
2019-06-15 22:45:53 +00:00
|
|
|
return err
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
2018-02-15 22:46:32 +00:00
|
|
|
|
2019-06-15 22:45:53 +00:00
|
|
|
return nil
|
2018-05-28 02:39:56 +00:00
|
|
|
}
|