This is a giant refactor to move functions into a hierarchial module layout. While this isn't entirely implemented yet, it should work correctly once all the import bits have landed. What's broken at the moment is the template function, which currently doesn't understand the period separator.
395 lines
13 KiB
Go
395 lines
13 KiB
Go
// Mgmt
|
|
// Copyright (C) 2013-2018+ James Shubin and the project contributors
|
|
// Written by James Shubin <james@shubin.ca> and the project contributors
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
package core // TODO: should this be in its own individual package?
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"reflect"
|
|
"text/template"
|
|
|
|
"github.com/purpleidea/mgmt/lang/funcs"
|
|
"github.com/purpleidea/mgmt/lang/funcs/simple"
|
|
"github.com/purpleidea/mgmt/lang/interfaces"
|
|
"github.com/purpleidea/mgmt/lang/types"
|
|
|
|
errwrap "github.com/pkg/errors"
|
|
)
|
|
|
|
var (
|
|
// errorType represents a reflection type of error as seen in:
|
|
// https://github.com/golang/go/blob/ec62ee7f6d3839fe69aeae538dadc1c9dc3bf020/src/text/template/exec.go#L612
|
|
errorType = reflect.TypeOf((*error)(nil)).Elem()
|
|
)
|
|
|
|
func init() {
|
|
funcs.Register("template", func() interfaces.Func { return &TemplateFunc{} })
|
|
}
|
|
|
|
// TemplateName is the name of our template as required by the template library.
|
|
const TemplateName = "template"
|
|
|
|
// TemplateFunc is a static polymorphic function that compiles a template and
|
|
// returns the output as a string. It bases its output on the values passed in
|
|
// to it. It examines the type of the second argument (the input data vars) at
|
|
// compile time and then determines the static functions signature by including
|
|
// that in the overall signature.
|
|
// TODO: We *might* need to add events for internal function changes over time,
|
|
// but only if they are not pure. We currently only use simple, pure functions.
|
|
type TemplateFunc struct {
|
|
Type *types.Type // type of vars
|
|
|
|
init *interfaces.Init
|
|
last types.Value // last value received to use for diff
|
|
|
|
result string // last calculated output
|
|
|
|
closeChan chan struct{}
|
|
}
|
|
|
|
// Polymorphisms returns the possible type signatures for this template. In this
|
|
// case, since the second argument can be an infinite number of values, it
|
|
// instead returns either the final precise type (if it can be gleamed from the
|
|
// input partials) or if it cannot, it returns a single entry with the complete
|
|
// type but with the variable second argument specified as a `variant` type.
|
|
// If it encounters any partial type specifications which are not possible, then
|
|
// it errors out. This could happen if you specified a non string template arg.
|
|
// XXX: is there a better API than returning a buried `variant` type?
|
|
func (obj *TemplateFunc) Polymorphisms(partialType *types.Type, partialValues []types.Value) ([]*types.Type, error) {
|
|
// TODO: return `variant` as second arg for now -- maybe there's a better way?
|
|
variant := []*types.Type{types.NewType("func(a str, b variant) str")}
|
|
|
|
if partialType == nil {
|
|
return variant, nil
|
|
}
|
|
|
|
if partialType.Out != nil && partialType.Out.Cmp(types.TypeStr) != nil {
|
|
return nil, fmt.Errorf("return value of template must be str")
|
|
}
|
|
|
|
ord := partialType.Ord
|
|
if partialType.Map != nil {
|
|
if len(ord) != 2 {
|
|
return nil, fmt.Errorf("must have exactly two args in template func")
|
|
}
|
|
if t, exists := partialType.Map[ord[0]]; exists && t != nil {
|
|
if t.Cmp(types.TypeStr) != nil {
|
|
return nil, fmt.Errorf("first arg for template must be an str")
|
|
}
|
|
}
|
|
if t, exists := partialType.Map[ord[1]]; exists && t != nil {
|
|
// known vars type! w00t!
|
|
return []*types.Type{types.NewType(fmt.Sprintf("func(a str, b %s) str", t.String()))}, nil
|
|
}
|
|
}
|
|
|
|
return variant, nil
|
|
}
|
|
|
|
// Build takes the now known function signature and stores it so that this
|
|
// function can appear to be static. It extracts the type of the vars argument,
|
|
// which is the dynamic part which can change. That type is used to build our
|
|
// function statically.
|
|
func (obj *TemplateFunc) Build(typ *types.Type) error {
|
|
if typ.Kind != types.KindFunc {
|
|
return fmt.Errorf("input type must be of kind func")
|
|
}
|
|
if len(typ.Ord) != 2 {
|
|
return fmt.Errorf("the template function needs exactly two args")
|
|
}
|
|
if typ.Out == nil {
|
|
return fmt.Errorf("return type of function must be specified")
|
|
}
|
|
if typ.Out.Cmp(types.TypeStr) != nil {
|
|
return fmt.Errorf("return type of function must be an str")
|
|
}
|
|
if typ.Map == nil {
|
|
return fmt.Errorf("invalid input type")
|
|
}
|
|
|
|
t0, exists := typ.Map[typ.Ord[0]]
|
|
if !exists || t0 == nil {
|
|
return fmt.Errorf("first arg must be specified")
|
|
}
|
|
if t0.Cmp(types.TypeStr) != nil {
|
|
return fmt.Errorf("first arg for template must be an str")
|
|
}
|
|
|
|
t1, exists := typ.Map[typ.Ord[1]]
|
|
if !exists || t1 == nil {
|
|
return fmt.Errorf("second arg must be specified")
|
|
}
|
|
obj.Type = t1 // extracted vars type is now known!
|
|
|
|
return nil
|
|
}
|
|
|
|
// Validate makes sure we've built our struct properly. It is usually unused for
|
|
// normal functions that users can use directly.
|
|
func (obj *TemplateFunc) Validate() error {
|
|
if obj.Type == nil { // build must be run first
|
|
return fmt.Errorf("type is still unspecified")
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Info returns some static info about itself.
|
|
func (obj *TemplateFunc) Info() *interfaces.Info {
|
|
return &interfaces.Info{
|
|
Pure: true,
|
|
Memo: false,
|
|
Sig: types.NewType(fmt.Sprintf("func(template str, vars %s) str", obj.Type.String())),
|
|
Err: obj.Validate(),
|
|
}
|
|
}
|
|
|
|
// Init runs some startup code for this function.
|
|
func (obj *TemplateFunc) Init(init *interfaces.Init) error {
|
|
obj.init = init
|
|
obj.closeChan = make(chan struct{})
|
|
return nil
|
|
}
|
|
|
|
// run runs a template and returns the result.
|
|
func (obj *TemplateFunc) run(templateText string, vars types.Value) (string, error) {
|
|
// see: https://golang.org/pkg/text/template/#FuncMap for more info
|
|
// note: we can override any other functions by adding them here...
|
|
funcMap := map[string]interface{}{
|
|
//"test1": func(in interface{}) (interface{}, error) { // ok
|
|
// return fmt.Sprintf("got(%T): %+v", in, in), nil
|
|
//},
|
|
//"test2": func(in interface{}) interface{} { // NOT ok
|
|
// panic("panic") // a panic here brings down everything!
|
|
//},
|
|
//"test3": func(foo int64) (string, error) { // ok, but errors
|
|
// return "", fmt.Errorf("i am an error")
|
|
//},
|
|
//"test4": func(in1, in2 reflect.Value) (reflect.Value, error) { // ok
|
|
// s := fmt.Sprintf("got: %+v and: %+v", in1, in2)
|
|
// return reflect.ValueOf(s), nil
|
|
//},
|
|
}
|
|
|
|
// FIXME: should we do this once in init() instead, or in the Register
|
|
// function in the simple package?
|
|
// TODO: loop through this map in a sorted, deterministic order
|
|
// XXX: should this use the scope instead (so imports are used properly) ?
|
|
// XXX: dots are not valid here, so maybe replace dots with underscores so we can do fmt_print???
|
|
for name, fn := range simple.RegisteredFuncs {
|
|
if _, exists := funcMap[name]; exists {
|
|
obj.init.Logf("warning, existing function named: `%s` exists", name)
|
|
continue
|
|
}
|
|
|
|
// When template execution invokes a function with an argument
|
|
// list, that list must be assignable to the function's
|
|
// parameter types. Functions meant to apply to arguments of
|
|
// arbitrary type can use parameters of type interface{} or of
|
|
// type reflect.Value.
|
|
f := wrap(name, fn) // wrap it so that it meets API expectations
|
|
funcMap[name] = f // add it
|
|
}
|
|
|
|
var err error
|
|
tmpl := template.New(TemplateName)
|
|
tmpl = tmpl.Funcs(funcMap)
|
|
tmpl, err = tmpl.Parse(templateText)
|
|
if err != nil {
|
|
return "", errwrap.Wrapf(err, "template: parse error")
|
|
}
|
|
|
|
buf := new(bytes.Buffer)
|
|
// NOTE: any objects in here can have their methods called by the template!
|
|
var data interface{} // can be many types, eg a struct!
|
|
v := vars.Copy() // make a copy since we make modifications to it...
|
|
Loop:
|
|
// TODO: simplify with Type.Underlying()
|
|
for {
|
|
switch x := v.Type().Kind; x {
|
|
case types.KindBool:
|
|
fallthrough
|
|
case types.KindStr:
|
|
fallthrough
|
|
case types.KindInt:
|
|
fallthrough
|
|
case types.KindFloat:
|
|
// standalone values can be used in templates with a dot
|
|
data = v.Value()
|
|
break Loop
|
|
|
|
case types.KindList:
|
|
// TODO: can we improve on this to expose indexes?
|
|
data = v.Value()
|
|
break Loop
|
|
|
|
case types.KindMap:
|
|
if v.Type().Key.Cmp(types.TypeStr) != nil {
|
|
return "", errwrap.Wrapf(err, "template: map keys must be str")
|
|
}
|
|
m := make(map[string]interface{})
|
|
for k, v := range v.Map() { // map[Value]Value
|
|
m[k.Str()] = v.Value()
|
|
}
|
|
data = m
|
|
break Loop
|
|
|
|
case types.KindStruct:
|
|
m := make(map[string]interface{})
|
|
for k, v := range v.Struct() { // map[string]Value
|
|
m[k] = v.Value()
|
|
}
|
|
data = m
|
|
break Loop
|
|
|
|
// TODO: should we allow functions here?
|
|
//case types.KindFunc:
|
|
|
|
case types.KindVariant:
|
|
v = v.(*types.VariantValue).V // un-nest and recurse
|
|
continue Loop
|
|
|
|
default:
|
|
return "", fmt.Errorf("can't use `%+v` as vars input", x)
|
|
}
|
|
}
|
|
|
|
// run the template
|
|
if err := tmpl.Execute(buf, data); err != nil {
|
|
return "", errwrap.Wrapf(err, "template: execution error")
|
|
}
|
|
return buf.String(), nil
|
|
}
|
|
|
|
// Stream returns the changing values that this func has over time.
|
|
func (obj *TemplateFunc) Stream() error {
|
|
defer close(obj.init.Output) // the sender closes
|
|
for {
|
|
select {
|
|
case input, ok := <-obj.init.Input:
|
|
if !ok {
|
|
return nil // can't output any more
|
|
}
|
|
//if err := input.Type().Cmp(obj.Info().Sig.Input); err != nil {
|
|
// return errwrap.Wrapf(err, "wrong function input")
|
|
//}
|
|
|
|
if obj.last != nil && input.Cmp(obj.last) == nil {
|
|
continue // value didn't change, skip it
|
|
}
|
|
obj.last = input // store for next
|
|
|
|
tmpl := input.Struct()["template"].Str()
|
|
vars := input.Struct()["vars"]
|
|
|
|
result, err := obj.run(tmpl, vars)
|
|
if err != nil {
|
|
return err // no errwrap needed b/c helper func
|
|
}
|
|
|
|
if obj.result == result {
|
|
continue // result didn't change
|
|
}
|
|
obj.result = result // store new result
|
|
|
|
case <-obj.closeChan:
|
|
return nil
|
|
}
|
|
|
|
select {
|
|
case obj.init.Output <- &types.StrValue{
|
|
V: obj.result,
|
|
}:
|
|
case <-obj.closeChan:
|
|
return nil
|
|
}
|
|
}
|
|
}
|
|
|
|
// Close runs some shutdown code for this function and turns off the stream.
|
|
func (obj *TemplateFunc) Close() error {
|
|
close(obj.closeChan)
|
|
return nil
|
|
}
|
|
|
|
// wrap builds a function in the format expected by the template engine, and
|
|
// returns it as an interface{}. It does so by wrapping our type system and
|
|
// function API with what is expected from the reflection API. It returns a
|
|
// version that includes the optional second error return value so that our
|
|
// functions can return errors without causing a panic.
|
|
func wrap(name string, fn *types.FuncValue) interface{} {
|
|
if fn.T.Map == nil {
|
|
panic("malformed func type")
|
|
}
|
|
if len(fn.T.Map) != len(fn.T.Ord) {
|
|
panic("malformed func length")
|
|
}
|
|
in := []reflect.Type{}
|
|
for _, k := range fn.T.Ord {
|
|
t, ok := fn.T.Map[k]
|
|
if !ok {
|
|
panic("malformed func order")
|
|
}
|
|
if t == nil {
|
|
panic("malformed func arg")
|
|
}
|
|
|
|
in = append(in, t.Reflect())
|
|
}
|
|
out := []reflect.Type{fn.T.Out.Reflect(), errorType}
|
|
var variadic = false // currently not supported in our function value
|
|
typ := reflect.FuncOf(in, out, variadic)
|
|
|
|
// wrap our function with the translation that is necessary
|
|
f := func(args []reflect.Value) (results []reflect.Value) { // build
|
|
innerArgs := []types.Value{}
|
|
zeroValue := reflect.Zero(fn.T.Out.Reflect()) // zero value of return type
|
|
for _, x := range args {
|
|
v, err := types.ValueOf(x) // reflect.Value -> Value
|
|
if err != nil {
|
|
r := reflect.ValueOf(errwrap.Wrapf(err, "function `%s` errored", name))
|
|
if !r.Type().ConvertibleTo(errorType) { // for fun!
|
|
r = reflect.ValueOf(fmt.Errorf("function `%s` errored: %+v", name, err))
|
|
}
|
|
e := r.Convert(errorType) // must be seen as an `error`
|
|
return []reflect.Value{zeroValue, e}
|
|
}
|
|
innerArgs = append(innerArgs, v)
|
|
}
|
|
|
|
result, err := fn.Call(innerArgs) // call it
|
|
if err != nil { // function errored :(
|
|
// errwrap is a better way to report errors, if allowed!
|
|
r := reflect.ValueOf(errwrap.Wrapf(err, "function `%s` errored", name))
|
|
if !r.Type().ConvertibleTo(errorType) { // for fun!
|
|
r = reflect.ValueOf(fmt.Errorf("function `%s` errored: %+v", name, err))
|
|
}
|
|
e := r.Convert(errorType) // must be seen as an `error`
|
|
return []reflect.Value{zeroValue, e}
|
|
} else if result == nil { // someone wrote a bad function
|
|
r := reflect.ValueOf(fmt.Errorf("function `%s` returned nil", name))
|
|
e := r.Convert(errorType) // must be seen as an `error`
|
|
return []reflect.Value{zeroValue, e}
|
|
}
|
|
|
|
nilError := reflect.Zero(errorType)
|
|
return []reflect.Value{reflect.ValueOf(result.Value()), nilError}
|
|
}
|
|
val := reflect.MakeFunc(typ, f)
|
|
return val.Interface()
|
|
}
|