156 lines
3.7 KiB
Go
156 lines
3.7 KiB
Go
// Package mcfg provides a simple foundation for complex service/binary
|
|
// configuration, initialization, and destruction
|
|
package mcfg
|
|
|
|
import (
|
|
"crypto/md5"
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"fmt"
|
|
"sort"
|
|
|
|
"github.com/mediocregopher/mediocre-go-lib/mctx"
|
|
"github.com/mediocregopher/mediocre-go-lib/merr"
|
|
)
|
|
|
|
// TODO Sources:
|
|
// - JSON file
|
|
// - YAML file
|
|
|
|
type ctxCfg struct {
|
|
path []string
|
|
params map[string]Param
|
|
}
|
|
|
|
type ctxKey int
|
|
|
|
func get(ctx mctx.Context) *ctxCfg {
|
|
return mctx.GetSetMutableValue(ctx, true, ctxKey(0),
|
|
func(interface{}) interface{} {
|
|
return &ctxCfg{
|
|
path: mctx.Path(ctx),
|
|
params: map[string]Param{},
|
|
}
|
|
},
|
|
).(*ctxCfg)
|
|
}
|
|
|
|
func sortParams(params []Param) {
|
|
sort.Slice(params, func(i, j int) bool {
|
|
a, b := params[i], params[j]
|
|
aPath, bPath := a.Path, b.Path
|
|
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:]
|
|
}
|
|
}
|
|
})
|
|
}
|
|
|
|
// returns all Params gathered by recursively retrieving them from this Context
|
|
// and its children. Returned Params are sorted according to their Path and
|
|
// Name.
|
|
func collectParams(ctx mctx.Context) []Param {
|
|
var params []Param
|
|
|
|
var visit func(mctx.Context)
|
|
visit = func(ctx mctx.Context) {
|
|
for _, param := range get(ctx).params {
|
|
params = append(params, param)
|
|
}
|
|
|
|
for _, childCtx := range mctx.Children(ctx) {
|
|
visit(childCtx)
|
|
}
|
|
}
|
|
visit(ctx)
|
|
|
|
sortParams(params)
|
|
return params
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func populate(params []Param, src Source) error {
|
|
if src == nil {
|
|
src = ParamValues(nil)
|
|
}
|
|
|
|
// map Params to their hash, so we can match them to their ParamValues
|
|
// later. There should not be any duplicates here.
|
|
pM := map[string]Param{}
|
|
for _, p := range params {
|
|
hash := paramHash(p.Path, p.Name)
|
|
if _, ok := pM[hash]; ok {
|
|
panic("duplicate Param: " + paramFullName(p.Path, p.Name))
|
|
}
|
|
pM[hash] = p
|
|
}
|
|
|
|
pvs, err := src.Parse(params)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
// dedupe the ParamValues based on their hashes, with the last ParamValue
|
|
// taking precedence. Also filter out those with no corresponding Param.
|
|
pvM := map[string]ParamValue{}
|
|
for _, pv := range pvs {
|
|
hash := paramHash(pv.Path, pv.Name)
|
|
if _, ok := pM[hash]; !ok {
|
|
continue
|
|
}
|
|
pvM[hash] = pv
|
|
}
|
|
|
|
// check for required params
|
|
for hash, p := range pM {
|
|
if !p.Required {
|
|
continue
|
|
} else if _, ok := pvM[hash]; !ok {
|
|
return merr.New("required parameter is not set",
|
|
"param", paramFullName(p.Path, p.Name))
|
|
}
|
|
}
|
|
|
|
// 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 {
|
|
return err
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Populate uses the Source to populate the values of all Params which were
|
|
// added to the given mctx.Context, and all of its children. Populate may be
|
|
// called multiple times with the same mctx.Context, each time will only affect
|
|
// the values 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 paramaters are required this will error.
|
|
func Populate(ctx mctx.Context, src Source) error {
|
|
return populate(collectParams(ctx), src)
|
|
}
|