forked from zuoyebang/bitalosdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
compaction_iter.go
164 lines (140 loc) · 3.29 KB
/
compaction_iter.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
// Copyright 2021 The Bitalosdb author([email protected]) and other contributors.
//
// 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 bitalosdb
import (
"github.com/cockroachdb/errors"
"github.com/zuoyebang/bitalosdb/internal/base"
)
type compactionIter struct {
cmp Compare
iter internalIterator
err error
key InternalKey
value []byte
keyBuf []byte
valid bool
iterKey *InternalKey
iterValue []byte
skip bool
pos iterPos
first bool
end bool
}
func (i *compactionIter) IsVisitFirst() bool {
return i.first == true
}
func (i *compactionIter) SetVisitEnd() {
i.end = true
}
func (i *compactionIter) IsVisitEnd() bool {
return i.end == true
}
func (i *compactionIter) First() (*InternalKey, []byte) {
i.first = true
if i.err != nil {
return nil, nil
}
i.iterKey, i.iterValue = i.iter.First()
i.pos = iterPosNext
return i.Next()
}
func (i *compactionIter) Next() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if i.pos == iterPosCurForward {
if i.skip {
i.skipInStripe()
} else {
i.nextInStripe()
}
}
i.pos = iterPosCurForward
i.valid = false
for i.iterKey != nil {
switch i.iterKey.Kind() {
case InternalKeyKindSet, InternalKeyKindDelete, InternalKeyKindPrefixDelete:
i.saveKey()
i.value = i.iterValue
i.valid = true
i.skip = true
return &i.key, i.value
default:
i.err = errors.Errorf("bitalosdb: invalid internal key kind %d", i.iterKey.Kind())
i.valid = false
return nil, nil
}
}
return nil, nil
}
func (i *compactionIter) skipInStripe() {
i.skip = true
var change stripeChangeType
for {
change = i.nextInStripe()
if change == sameStripeNonSkippable || change == newStripe {
break
}
}
if change == newStripe {
i.skip = false
}
}
func (i *compactionIter) iterNext() bool {
i.iterKey, i.iterValue = i.iter.Next()
return i.iterKey != nil
}
type stripeChangeType int
const (
newStripe stripeChangeType = iota
sameStripeSkippable
sameStripeNonSkippable
)
func (i *compactionIter) nextInStripe() stripeChangeType {
if !i.iterNext() {
return newStripe
}
key := i.iterKey
if i.cmp(i.key.UserKey, key.UserKey) != 0 {
return newStripe
}
if key.Kind() == base.InternalKeyKindInvalid {
return sameStripeNonSkippable
}
return sameStripeSkippable
}
func (i *compactionIter) saveKey() {
i.keyBuf = append(i.keyBuf[:0], i.iterKey.UserKey...)
i.key.UserKey = i.keyBuf
i.key.Trailer = i.iterKey.Trailer
}
func (i *compactionIter) Key() InternalKey {
return i.key
}
func (i *compactionIter) Value() []byte {
return i.value
}
func (i *compactionIter) Valid() bool {
return i.valid
}
func (i *compactionIter) Error() error {
return i.err
}
func (i *compactionIter) Close() error {
err := i.iter.Close()
if i.err == nil {
i.err = err
}
return i.err
}