lang: interfaces, funcs: Implement fmt.Stringer for functions
This adds the requirement that all function implementations provider a String() string method so that these can be used as vertices in the pgraph library. If we eventually move to generics for the pgraph DAG, then this might not matter, but it's not bad that these have names either.
This commit is contained in:
@@ -25,6 +25,11 @@ import (
|
||||
//"github.com/purpleidea/mgmt/util/errwrap"
|
||||
)
|
||||
|
||||
const (
|
||||
// VarFuncName is the unique name identifier for this function.
|
||||
VarFuncName = "var"
|
||||
)
|
||||
|
||||
// VarFunc is a function that passes through a function that came from a bind
|
||||
// lookup. It exists so that the reactive function engine type checks correctly.
|
||||
type VarFunc struct {
|
||||
@@ -39,6 +44,12 @@ type VarFunc struct {
|
||||
closeChan chan struct{}
|
||||
}
|
||||
|
||||
// String returns a simple name for this function. This is needed so this struct
|
||||
// can satisfy the pgraph.Vertex interface.
|
||||
func (obj *VarFunc) String() string {
|
||||
return VarFuncName
|
||||
}
|
||||
|
||||
// Validate makes sure we've built our struct properly.
|
||||
func (obj *VarFunc) Validate() error {
|
||||
if obj.Type == nil {
|
||||
|
||||
Reference in New Issue
Block a user