0
0
bleve/index/store/boltdb/iterator.go

90 lines
1.8 KiB
Go
Raw Normal View History

2014-08-24 09:06:44 +02:00
// 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.
2014-08-24 09:06:44 +02:00
package boltdb
import (
"github.com/boltdb/bolt"
)
2014-09-04 01:16:46 +02:00
type Iterator struct {
store *Store
ownTx bool
2014-08-24 09:06:44 +02:00
tx *bolt.Tx
cursor *bolt.Cursor
valid bool
key []byte
val []byte
}
2014-09-04 01:16:46 +02:00
func newIterator(store *Store) *Iterator {
2014-08-24 09:06:44 +02:00
tx, _ := store.db.Begin(false)
b := tx.Bucket([]byte(store.bucket))
cursor := b.Cursor()
return &Iterator{
store: store,
tx: tx,
ownTx: true,
cursor: cursor,
}
}
func newIteratorExistingTx(store *Store, tx *bolt.Tx) *Iterator {
b := tx.Bucket([]byte(store.bucket))
cursor := b.Cursor()
2014-09-04 01:16:46 +02:00
return &Iterator{
2014-08-24 09:06:44 +02:00
store: store,
tx: tx,
cursor: cursor,
}
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) SeekFirst() {
2014-08-24 09:06:44 +02:00
i.key, i.val = i.cursor.First()
i.valid = (i.key != nil)
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) Seek(k []byte) {
2014-08-24 09:06:44 +02:00
i.key, i.val = i.cursor.Seek(k)
i.valid = (i.key != nil)
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) Next() {
2014-08-24 09:06:44 +02:00
i.key, i.val = i.cursor.Next()
i.valid = (i.key != nil)
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) Current() ([]byte, []byte, bool) {
2014-08-24 09:06:44 +02:00
return i.key, i.val, i.valid
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) Key() []byte {
2014-08-24 09:06:44 +02:00
return i.key
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) Value() []byte {
2014-08-24 09:06:44 +02:00
return i.val
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) Valid() bool {
2014-08-24 09:06:44 +02:00
return i.valid
}
2014-09-04 01:16:46 +02:00
func (i *Iterator) Close() {
// only close the transaction if we opened it
if i.ownTx {
i.tx.Rollback()
}
2014-08-24 09:06:44 +02:00
}