1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/runtime/expressions/func_call.go
Tim Voronov 549b4abd3b
Feature/#5 collect keyword alt (#141)
Implemented COLLECT key word
2018-10-24 21:30:05 -04:00

63 lines
1.2 KiB
Go

package expressions
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
)
type FunctionCallExpression struct {
src core.SourceMap
fun core.Function
args []core.Expression
}
func NewFunctionCallExpression(
src core.SourceMap,
fun core.Function,
args ...core.Expression,
) (*FunctionCallExpression, error) {
if fun == nil {
return nil, core.Error(core.ErrMissedArgument, "function")
}
return &FunctionCallExpression{src, fun, args}, nil
}
func (e *FunctionCallExpression) Arguments() []core.Expression {
return e.args
}
func (e *FunctionCallExpression) Function() core.Function {
return e.fun
}
func (e *FunctionCallExpression) Exec(ctx context.Context, scope *core.Scope) (core.Value, error) {
var out core.Value
var err error
if len(e.args) == 0 {
out, err = e.fun(ctx)
} else {
args := make([]core.Value, len(e.args))
for idx, arg := range e.args {
out, err := arg.Exec(ctx, scope)
if err != nil {
return values.None, core.SourceError(e.src, err)
}
args[idx] = out
}
out, err = e.fun(ctx, args...)
}
if err != nil {
return values.None, core.SourceError(e.src, err)
}
return out, nil
}