This repository has been archived by the owner on Apr 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
rocksdb_iterator.go
136 lines (116 loc) · 2.48 KB
/
rocksdb_iterator.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
//go:build rocksdb
// +build rocksdb
package db
import (
"github.com/line/gorocksdb"
)
type rocksDBIterator struct {
source *gorocksdb.Iterator
opts *gorocksdb.ReadOptions
isReverse bool
isInvalid bool
key []byte
value []byte
}
var _ Iterator = (*rocksDBIterator)(nil)
func newRockDBRangeOptions(start, end []byte) *gorocksdb.ReadOptions {
ro := gorocksdb.NewDefaultReadOptions()
if start != nil {
ro.SetIterateLowerBound(start)
}
if end != nil {
ro.SetIterateUpperBound(end)
}
return ro
}
func newRocksDBIterator(source *gorocksdb.Iterator, opts *gorocksdb.ReadOptions, isReverse bool) *rocksDBIterator {
if !isReverse {
source.SeekToFirst()
} else {
source.SeekToLast()
}
return &rocksDBIterator{
source: source,
opts: opts,
isReverse: isReverse,
isInvalid: false,
}
}
// Valid implements Iterator.
func (itr *rocksDBIterator) Valid() bool {
// Once invalid, forever invalid.
if itr.isInvalid {
return false
}
// If source is invalid, invalid.
if !itr.source.Valid() {
itr.invalidate()
return false
}
// It's valid.
return true
}
func (itr *rocksDBIterator) invalidate() {
itr.isInvalid = true
itr.key = nil
itr.value = nil
}
// Key implements Iterator.
func (itr *rocksDBIterator) Key() []byte {
itr.assertIsValid()
if itr.key == nil {
itr.key = moveSliceToBytes(itr.source.Key())
}
return itr.key
}
// Value implements Iterator.
func (itr *rocksDBIterator) Value() []byte {
itr.assertIsValid()
if itr.value == nil {
itr.value = moveSliceToBytes(itr.source.Value())
}
return itr.value
}
// Next implements Iterator.
func (itr *rocksDBIterator) Next() {
itr.assertIsValid()
itr.key = nil
itr.value = nil
if !itr.isReverse {
itr.source.Next()
} else {
itr.source.Prev()
}
}
// Error implements Iterator.
func (itr *rocksDBIterator) Error() error {
return itr.source.Err()
}
// Close implements Iterator.
func (itr *rocksDBIterator) Close() error {
if itr.source != nil {
itr.source.Close()
itr.source = nil
}
if itr.opts != nil {
itr.opts.Destroy()
itr.opts = nil
}
return nil
}
func (itr *rocksDBIterator) assertIsValid() {
if itr.isInvalid {
panic("iterator is invalid")
}
}
// moveSliceToBytes will free the slice and copy out a go []byte
// This function can be applied on *Slice returned from Key() and Value()
// of an Iterator, because they are marked as freed.
func moveSliceToBytes(s *gorocksdb.Slice) []byte {
var bz []byte
if s.Exists() {
bz = cp(s.Data())
}
s.Free()
return bz
}