forked from nutsdb/nutsdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
iterator.go
167 lines (141 loc) · 3.89 KB
/
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
// Copyright 2022 The nutsdb Author. All rights reserved.
//
// 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.
package nutsdb
import "fmt"
type Iterator struct {
tx *Tx
options IteratorOptions
current *Node
i int
bucket string
entry *Entry
}
type IteratorOptions struct {
Reverse bool
}
func NewIterator(tx *Tx, bucket string, options IteratorOptions) *Iterator {
return &Iterator{
tx: tx,
bucket: bucket,
options: options,
}
}
// SetNext would set the next Entry item, and would return (true, nil) if the next item is available
// Otherwise if the next item is not available it would return (false, nil)
// If it faces error it would return (false, err)
func (it *Iterator) SetNext() (bool, error) {
if it.tx.db.opt.EntryIdxMode == HintBPTSparseIdxMode {
return false, fmt.Errorf("%s mode is not supported in iterators", "HintBPTSparseIdxMode")
}
if err := it.tx.checkTxIsClosed(); err != nil {
return false, err
}
if it.i == -2 {
return false, nil
}
if it.current == nil && (it.tx.db.opt.EntryIdxMode == HintKeyAndRAMIdxMode ||
it.tx.db.opt.EntryIdxMode == HintKeyValAndRAMIdxMode) {
if index, ok := it.tx.db.BPTreeIdx[it.bucket]; ok {
if it.options.Reverse {
err := it.Seek(index.LastKey)
if err != nil {
return false, err
}
} else {
err := it.Seek(index.FirstKey)
if err != nil {
return false, err
}
}
}
}
if it.options.Reverse {
if it.i < 0 {
it.current, _ = it.current.pointers[order].(*Node)
if it.current == nil {
return false, nil
}
it.i = it.current.KeysNum - 1
}
} else {
if it.current == nil {
return false, nil
}
if it.i >= it.current.KeysNum {
it.current, _ = it.current.pointers[order-1].(*Node)
if it.current == nil {
return false, nil
}
it.i = 0
}
}
if it.current == nil {
return false, nil
}
pointer := it.current.pointers[it.i]
record := pointer.(*Record)
if it.options.Reverse {
it.i--
} else {
it.i++
}
if record.H.Meta.Flag == DataDeleteFlag || record.IsExpired() {
return it.SetNext()
}
if it.tx.db.opt.EntryIdxMode == HintKeyAndRAMIdxMode {
path := it.tx.db.getDataPath(record.H.FileID)
df, err := it.tx.db.fm.getDataFile(path, it.tx.db.opt.SegmentSize)
if err != nil {
return false, err
}
if item, err := df.ReadAt(int(record.H.DataPos)); err == nil {
err = df.rwManager.Release()
if err != nil {
return false, err
}
it.entry = item
return true, nil
} else {
releaseErr := df.rwManager.Release()
if releaseErr != nil {
return false, releaseErr
}
return false, fmt.Errorf("HintIdx r.Hi.dataPos %d, err %s", record.H.DataPos, err)
}
}
if it.tx.db.opt.EntryIdxMode == HintKeyValAndRAMIdxMode {
it.entry = record.E
return true, nil
}
return false, nil
}
// Seek would seek to the key,
// If the key is not available it would seek to the first smallest greater key than the input key.
func (it *Iterator) Seek(key []byte) error {
if it.tx.db.opt.EntryIdxMode == HintBPTSparseIdxMode {
return fmt.Errorf("%s mode is not supported in iterators", "HintBPTSparseIdxMode")
}
it.current = it.tx.db.BPTreeIdx[it.bucket].FindLeaf(key)
if it.current == nil {
it.i = -2
}
for it.i = 0; it.i < it.current.KeysNum && compare(it.current.Keys[it.i], key) < 0; {
it.i++
}
return nil
}
// Entry would return the current Entry item after calling SetNext
func (it *Iterator) Entry() *Entry {
return it.entry
}