2018-01-11 22:19:25 +00:00
|
|
|
// Package mcfg provides a simple foundation for complex service/binary
|
|
|
|
// configuration, initialization, and destruction
|
|
|
|
package mcfg
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
2018-05-28 03:10:57 +00:00
|
|
|
"strings"
|
2018-01-11 22:19:25 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// TODO Sources:
|
|
|
|
// - Env
|
|
|
|
// - Env file
|
|
|
|
// - JSON file
|
|
|
|
// - YAML file
|
|
|
|
|
|
|
|
// Hook describes a function which can have other Hook functions appended to it
|
|
|
|
// via the Then method. A Hook is expected to return context.Canceled on context
|
|
|
|
// cancellation.
|
|
|
|
type Hook func(context.Context) error
|
|
|
|
|
|
|
|
// Nop returns a Hook which does nothing
|
|
|
|
func Nop() Hook {
|
|
|
|
return func(context.Context) error { return nil }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then modifies the called upon Hook such that it will first perform whatever
|
|
|
|
// it's original functionality was, and then if that doesn't return an error it
|
|
|
|
// will subsequently perform the given Hook.
|
|
|
|
func (h *Hook) Then(h2 Hook) {
|
|
|
|
oldh := *h
|
|
|
|
*h = func(ctx context.Context) error {
|
|
|
|
if err := oldh(ctx); err != nil {
|
|
|
|
return err
|
2018-05-28 02:39:56 +00:00
|
|
|
} else if err := ctx.Err(); err != nil {
|
|
|
|
// in case the previous hook doesn't respect the context
|
|
|
|
return err
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
return h2(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Also modifies the called upon Hook such that it will perform the original
|
|
|
|
// functionality at the same time as the given Hook, wait for both to complete,
|
|
|
|
// and return an error if there is one.
|
|
|
|
func (h *Hook) Also(h2 Hook) {
|
|
|
|
oldh := *h
|
|
|
|
*h = func(ctx context.Context) error {
|
|
|
|
errCh := make(chan error, 1)
|
|
|
|
go func() {
|
|
|
|
errCh <- oldh(ctx)
|
|
|
|
}()
|
2018-05-28 02:39:56 +00:00
|
|
|
err := h2(ctx) // don't immediately return this, wait for h2 or ctx
|
|
|
|
if err := ctx.Err(); err != nil {
|
|
|
|
// in case the previous hook doesn't respect the context
|
|
|
|
return err
|
|
|
|
} else if err := <-errCh; err != nil {
|
2018-01-11 22:19:25 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ParamValue describes a value for a parameter which has been parsed by a
|
|
|
|
// Source
|
|
|
|
type ParamValue struct {
|
|
|
|
Param
|
|
|
|
Path []string // nil if root
|
|
|
|
Value json.RawMessage
|
|
|
|
}
|
|
|
|
|
|
|
|
// Source parses ParamValues out of a particular configuration source
|
|
|
|
type Source interface {
|
|
|
|
Parse(*Cfg) ([]ParamValue, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Cfg describes a set of configuration parameters and run-time behaviors.
|
|
|
|
// Parameters are defined using the Param* methods, and run-time behaviors by
|
|
|
|
// the Hook fields on this struct.
|
|
|
|
//
|
|
|
|
// Each Cfg can have child Cfg's spawned off of it using the Child method, which
|
|
|
|
// allows for namespacing related params/behaviors into heirarchies.
|
|
|
|
type Cfg struct {
|
|
|
|
// Read-only. The set of names passed into Child methods used to generate
|
|
|
|
// this Cfg and all of its parents. Path will be nil if this Cfg was created
|
|
|
|
// with New and not a Child call.
|
|
|
|
//
|
|
|
|
// Examples:
|
|
|
|
// New().Path is nil
|
|
|
|
// New().Child("foo").Path is []string{"foo"}
|
|
|
|
// New().Child("foo").Child("bar").Path is []string{"foo", "bar"}
|
|
|
|
Path []string
|
|
|
|
|
|
|
|
// Read-only. The set of children spawned off of this Cfg via the Child
|
|
|
|
// method, keyed by the children's names.
|
|
|
|
Children map[string]*Cfg
|
|
|
|
|
|
|
|
// Read-only. The set of Params which have been added to the Cfg instance
|
|
|
|
// via its Add method.
|
|
|
|
Params map[string]Param
|
|
|
|
|
|
|
|
// Start hook is performed after configuration variables have been parsed
|
|
|
|
// and populated. All Start hooks are expected to run in a finite amount of
|
|
|
|
// time, any long running processes spun off from them should do so in a
|
|
|
|
// separate go-routine
|
|
|
|
Start Hook
|
|
|
|
|
|
|
|
// Stop hook is performed on interrupt signal, and should stop all
|
|
|
|
// go-routines and close all resource handlers created during Start
|
|
|
|
Stop Hook
|
|
|
|
}
|
|
|
|
|
|
|
|
// New initializes and returns an empty Cfg with default values filled in
|
|
|
|
func New() *Cfg {
|
|
|
|
return &Cfg{
|
2018-05-28 02:39:56 +00:00
|
|
|
Children: map[string]*Cfg{},
|
|
|
|
Params: map[string]Param{},
|
|
|
|
Start: Nop(),
|
|
|
|
Stop: Nop(),
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-28 03:10:57 +00:00
|
|
|
// IsRoot returns true if this is the root instance of a Cfg (i.e. the one
|
|
|
|
// returned by New)
|
|
|
|
func (c *Cfg) IsRoot() bool {
|
|
|
|
return len(c.Path) == 0
|
|
|
|
}
|
|
|
|
|
|
|
|
// Name returns the name given to this instance when it was created via Child.
|
|
|
|
// if this instance was created via New (i.e. it is the root instance) then
|
|
|
|
// empty string is returned.
|
|
|
|
func (c *Cfg) Name() string {
|
|
|
|
if c.IsRoot() {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return c.Path[len(c.Path)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
// FullName returns a string representing the full path of the instance.
|
|
|
|
func (c *Cfg) FullName() string {
|
|
|
|
return "/" + strings.Join(c.Path, "/")
|
|
|
|
}
|
|
|
|
|
2018-01-11 22:19:25 +00:00
|
|
|
func (c *Cfg) populateParams(src Source) error {
|
2018-02-15 22:46:32 +00:00
|
|
|
// we allow for nil Source here for tests
|
|
|
|
// TODO make Source stub type which tests could use here instead
|
|
|
|
var pvs []ParamValue
|
|
|
|
if src != nil {
|
|
|
|
var err error
|
|
|
|
if pvs, err = src.Parse(c); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// first dedupe the params. We use this param struct as the key by which to
|
|
|
|
// dedupe by. Its use depends on the json.Marshaler always ordering fields
|
|
|
|
// in a marshaled struct the same way, which isn't the best assumption but
|
|
|
|
// it's ok for now
|
|
|
|
type param struct {
|
|
|
|
Path []string `json:",omitempty"`
|
|
|
|
Name string
|
|
|
|
}
|
|
|
|
|
|
|
|
pvM := map[string]ParamValue{}
|
|
|
|
for _, pv := range pvs {
|
|
|
|
keyB, err := json.Marshal(param{Path: pv.Path, Name: pv.Name})
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
pvM[string(keyB)] = pv
|
|
|
|
}
|
|
|
|
|
|
|
|
// check for required params, again using the param struct and the existing
|
|
|
|
// pvM
|
|
|
|
var requiredParams func(*Cfg) []param
|
|
|
|
requiredParams = func(c *Cfg) []param {
|
|
|
|
var out []param
|
|
|
|
for _, p := range c.Params {
|
|
|
|
if !p.Required {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
out = append(out, param{Path: c.Path, Name: p.Name})
|
|
|
|
}
|
|
|
|
for _, child := range c.Children {
|
|
|
|
out = append(out, requiredParams(child)...)
|
|
|
|
}
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, reqP := range requiredParams(c) {
|
|
|
|
keyB, err := json.Marshal(reqP)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if _, ok := pvM[string(keyB)]; !ok {
|
|
|
|
return fmt.Errorf("param %s is required but wasn't populated by any configuration source", keyB)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, pv := range pvM {
|
|
|
|
if pv.Into == nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal(pv.Value, pv.Into); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2018-02-15 22:46:32 +00:00
|
|
|
func (c *Cfg) runPreBlock(ctx context.Context, src Source) error {
|
|
|
|
if err := c.populateParams(src); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-05-28 02:39:56 +00:00
|
|
|
return c.Start(ctx)
|
2018-02-15 22:46:32 +00:00
|
|
|
}
|
|
|
|
|
2018-05-28 02:39:56 +00:00
|
|
|
// StartRun blocks while performing all steps of a Cfg run. The steps, in order,
|
|
|
|
// are:
|
2018-01-11 22:19:25 +00:00
|
|
|
// * Populate all configuration parameters
|
2018-05-28 02:39:56 +00:00
|
|
|
// * Perform Start hooks
|
2018-01-11 22:19:25 +00:00
|
|
|
//
|
|
|
|
// If any step returns an error then everything returns that error immediately.
|
2018-05-28 02:39:56 +00:00
|
|
|
func (c *Cfg) StartRun(ctx context.Context, src Source) error {
|
|
|
|
return c.runPreBlock(ctx, src)
|
2018-01-11 22:19:25 +00:00
|
|
|
}
|
|
|
|
|
2018-05-28 02:39:56 +00:00
|
|
|
// StartTestRun is like StartRun, except it's intended to only be used during
|
|
|
|
// tests to initialize other entities which are going to actually be tested. It
|
|
|
|
// assumes all default configuration param values, and will return after the
|
|
|
|
// Start hook has completed. It will panic on any errors.
|
|
|
|
func (c *Cfg) StartTestRun() {
|
2018-02-15 22:46:32 +00:00
|
|
|
if err := c.runPreBlock(context.Background(), nil); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-28 02:39:56 +00:00
|
|
|
// StopRun blocks while calling the Stop hook of the Cfg, returning any error
|
|
|
|
// that it does.
|
|
|
|
func (c *Cfg) StopRun(ctx context.Context) error {
|
|
|
|
return c.Stop(ctx)
|
|
|
|
}
|
|
|
|
|
2018-01-11 22:19:25 +00:00
|
|
|
// Child returns a sub-Cfg of the callee with the given name. The name will be
|
|
|
|
// prepended to all configuration options created in the returned sub-Cfg, and
|
|
|
|
// must not be empty.
|
|
|
|
func (c *Cfg) Child(name string) *Cfg {
|
|
|
|
if _, ok := c.Children[name]; ok {
|
|
|
|
panic(fmt.Sprintf("child Cfg named %q already exists", name))
|
|
|
|
}
|
|
|
|
c2 := New()
|
|
|
|
c2.Path = make([]string, 0, len(c.Path)+1)
|
|
|
|
c2.Path = append(c2.Path, c.Path...)
|
|
|
|
c2.Path = append(c2.Path, name)
|
|
|
|
c.Children[name] = c2
|
2018-05-27 07:58:51 +00:00
|
|
|
c.Start.Then(func(ctx context.Context) error { return c2.Start(ctx) })
|
|
|
|
c.Stop.Then(func(ctx context.Context) error { return c2.Stop(ctx) })
|
2018-01-11 22:19:25 +00:00
|
|
|
return c2
|
|
|
|
}
|