-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathiterator.go
79 lines (67 loc) · 1.85 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
package bitcask_go
import (
"bitcask-go/index"
"bytes"
)
// Iterator 迭代器
type Iterator struct {
indexIter index.Iterator // 索引迭代器
db *DB
options IteratorOptions
}
// NewIterator 初始化迭代器
func (db *DB) NewIterator(opts IteratorOptions) *Iterator {
indexIter := db.index.Iterator(opts.Reverse)
return &Iterator{
db: db,
indexIter: indexIter,
options: opts,
}
}
// Rewind 重新回到迭代器的起点,即第一个数据,在遍历数据之前需要调用这个方法,目的是初始化index,并且如果含有前缀的话,这个方法可以
// 将指针移动到前缀处。
func (it *Iterator) Rewind() {
it.indexIter.Rewind()
it.skipToNext()
}
// Seek 根据传入的 key 查找到第一个大于(或小于)等于的目标 key,根据从这个 key 开始遍历
func (it *Iterator) Seek(key []byte) {
it.indexIter.Seek(key)
it.skipToNext()
}
// Next 跳转到下一个 key
func (it *Iterator) Next() {
it.indexIter.Next()
it.skipToNext()
}
// Valid 是否有效,即是否已经遍历完了所有的 key,用于退出遍历
func (it *Iterator) Valid() bool {
return it.indexIter.Valid()
}
// Key 当前遍历位置的 Key 数据
func (it *Iterator) Key() []byte {
return it.indexIter.Key()
}
// Value 当前遍历位置的 Value 数据
func (it *Iterator) Value() ([]byte, error) {
logRecordPos := it.indexIter.Value()
it.db.mu.RLock()
defer it.db.mu.RUnlock()
return it.db.getValueByPosition(logRecordPos)
}
// Close 关闭迭代器,释放相应资源
func (it *Iterator) Close() {
it.indexIter.Close()
}
func (it *Iterator) skipToNext() {
prefixLen := len(it.options.Prefix)
if prefixLen == 0 {
return
}
for ; it.indexIter.Valid(); it.indexIter.Next() {
key := it.indexIter.Key()
if prefixLen <= len(key) && bytes.Compare(it.options.Prefix, key[:prefixLen]) == 0 {
break
}
}
}