2018-09-18 16:42:38 -04:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
)
|
|
|
|
|
2018-09-21 20:36:33 -04:00
|
|
|
const MaxArgs = 65536
|
|
|
|
|
2019-07-22 17:21:20 -04:00
|
|
|
type (
|
|
|
|
Function = func(ctx context.Context, args ...Value) (Value, error)
|
|
|
|
|
|
|
|
Functions map[string]Function
|
|
|
|
|
|
|
|
Namespace interface {
|
|
|
|
Namespace(name string) Namespace
|
|
|
|
RegisterFunction(name string, fun Function) error
|
|
|
|
RegisterFunctions(funs Functions) error
|
|
|
|
RegisteredFunctions() []string
|
|
|
|
RemoveFunction(name string)
|
|
|
|
}
|
|
|
|
)
|
2018-09-18 16:42:38 -04:00
|
|
|
|
2018-09-21 20:36:33 -04:00
|
|
|
func ValidateArgs(args []Value, minimum, maximum int) error {
|
|
|
|
count := len(args)
|
|
|
|
|
|
|
|
if count < minimum || count > maximum {
|
|
|
|
return Error(
|
|
|
|
ErrInvalidArgumentNumber,
|
|
|
|
fmt.Sprintf(
|
|
|
|
"expected number of arguments %d-%d, but got %d",
|
|
|
|
minimum,
|
|
|
|
maximum,
|
|
|
|
len(args)))
|
2018-09-18 16:42:38 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|