0
0
bleve/index/store/forestdb/iterator.go
2014-10-31 09:42:32 -04:00

87 lines
1.9 KiB
Go

// Copyright (c) 2014 Couchbase, Inc.
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
// except in compliance with the License. You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software distributed under the
// License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
// either express or implied. See the License for the specific language governing permissions
// and limitations under the License.
// +build forestdb
package forestdb
import (
"github.com/couchbaselabs/goforestdb"
)
type Iterator struct {
store *Store
snapshot *forestdb.Database
iterator *forestdb.Iterator
curr *forestdb.Doc
valid bool
}
func newIterator(store *Store) *Iterator {
itr, err := store.db.IteratorInit([]byte{}, nil, forestdb.ITR_NONE)
rv := Iterator{
store: store,
iterator: itr,
valid: err == nil,
}
return &rv
}
func newIteratorWithSnapshot(store *Store, snapshot *forestdb.Database) *Iterator {
itr, err := snapshot.IteratorInit([]byte{}, nil, forestdb.ITR_NONE)
rv := Iterator{
store: store,
iterator: itr,
valid: err == nil,
}
return &rv
}
func (i *Iterator) SeekFirst() {
i.iterator.Seek([]byte{})
i.Next()
}
func (i *Iterator) Seek(key []byte) {
i.iterator.Seek(key)
i.Next()
}
func (i *Iterator) Next() {
var err error
i.curr, err = i.iterator.Next()
if err != nil {
i.valid = false
}
}
func (i *Iterator) Current() ([]byte, []byte, bool) {
if i.Valid() {
return i.Key(), i.Value(), true
}
return nil, nil, false
}
func (i *Iterator) Key() []byte {
return i.curr.Key()
}
func (i *Iterator) Value() []byte {
return i.curr.Body()
}
func (i *Iterator) Valid() bool {
return i.valid
}
func (i *Iterator) Close() error {
i.valid = false
return i.iterator.Close()
}