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

52 lines
1.1 KiB
Go
Raw Normal View History

2018-09-18 22:42:38 +02:00
package clauses
import (
"context"
"github.com/MontFerret/ferret/pkg/runtime/collections"
"github.com/MontFerret/ferret/pkg/runtime/core"
)
type LimitClause struct {
src core.SourceMap
dataSource collections.Iterable
count int
offset int
2018-09-18 22:42:38 +02:00
}
func NewLimitClause(
src core.SourceMap,
dataSource collections.Iterable,
2018-09-18 22:42:38 +02:00
count int,
offset int,
) (collections.Iterable, error) {
if dataSource == nil {
return nil, core.Error(core.ErrMissedArgument, "dataSource source")
}
return &LimitClause{src, dataSource, count, offset}, nil
}
func (clause *LimitClause) Variables() collections.Variables {
return clause.dataSource.Variables()
2018-09-18 22:42:38 +02:00
}
func (clause *LimitClause) Iterate(ctx context.Context, scope *core.Scope) (collections.Iterator, error) {
src, err := clause.dataSource.Iterate(ctx, scope)
if err != nil {
return nil, core.SourceError(clause.src, err)
}
iterator, err := collections.NewLimitIterator(
src,
clause.count,
clause.offset,
)
if err != nil {
return nil, core.SourceError(clause.src, err)
2018-09-18 22:42:38 +02:00
}
return iterator, nil
2018-09-18 22:42:38 +02:00
}