1
0
mirror of https://github.com/MontFerret/ferret.git synced 2024-12-16 11:37:36 +02:00
ferret/pkg/runtime/expressions/param.go

48 lines
1.0 KiB
Go
Raw Normal View History

2018-09-29 03:04:16 +02:00
package expressions
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/collections"
"github.com/MontFerret/ferret/pkg/runtime/core"
"github.com/MontFerret/ferret/pkg/runtime/values"
)
type ParameterExpression struct {
src core.SourceMap
name string
}
func NewParameterExpression(src core.SourceMap, name string) (*ParameterExpression, error) {
if name == "" {
return nil, core.Error(core.ErrMissedArgument, "name")
}
return &ParameterExpression{src, name}, nil
}
func (e *ParameterExpression) Iterate(ctx context.Context, scope *core.Scope) (collections.Iterator, error) {
value, err := e.Exec(ctx, scope)
if err != nil {
return nil, core.SourceError(e.src, err)
}
iter, err := collections.ToIterator(value)
if err != nil {
return nil, core.SourceError(e.src, err)
}
return iter, nil
}
2018-10-05 23:20:48 +02:00
func (e *ParameterExpression) Exec(ctx context.Context, _ *core.Scope) (core.Value, error) {
2018-09-29 03:04:16 +02:00
param, err := core.ParamFrom(ctx, e.name)
if err != nil {
return values.None, core.SourceError(e.src, err)
}
return param, nil
}