forked from yihuang/go-block-stm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mvdata.go
234 lines (193 loc) · 5.48 KB
/
mvdata.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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
package block_stm
import (
"bytes"
storetypes "cosmossdk.io/store/types"
)
const (
// Since we do copy-on-write a lot, smaller degree means smaller allocations
OuterBTreeDegree = 4
InnerBTreeDegree = 4
)
type MVData = GMVData[[]byte]
func NewMVData() *MVData {
return NewGMVData(BytesIsZero, BytesLen)
}
type GMVData[V any] struct {
BTree[dataItem[V]]
isZero func(V) bool
valueLen func(V) int
}
func NewMVStore(key storetypes.StoreKey) MVStore {
switch key.(type) {
case *storetypes.ObjectStoreKey:
return NewGMVData(ObjIsZero, ObjLen)
default:
return NewGMVData(BytesIsZero, BytesLen)
}
}
func NewGMVData[V any](isZero func(V) bool, valueLen func(V) int) *GMVData[V] {
return &GMVData[V]{
BTree: *NewBTree(KeyItemLess[dataItem[V]], OuterBTreeDegree),
isZero: isZero,
valueLen: valueLen,
}
}
// getTree returns `nil` if not found
func (d *GMVData[V]) getTree(key Key) *BTree[secondaryDataItem[V]] {
outer, _ := d.Get(dataItem[V]{Key: key})
return outer.Tree
}
// getTreeOrDefault set a new tree atomically if not found.
func (d *GMVData[V]) getTreeOrDefault(key Key) *BTree[secondaryDataItem[V]] {
return d.GetOrDefault(dataItem[V]{Key: key}, func(item *dataItem[V]) {
if item.Tree == nil {
item.Tree = NewBTree(secondaryLesser[V], InnerBTreeDegree)
}
}).Tree
}
func (d *GMVData[V]) Write(key Key, value V, version TxnVersion) {
tree := d.getTreeOrDefault(key)
tree.Set(secondaryDataItem[V]{Index: version.Index, Incarnation: version.Incarnation, Value: value})
}
func (d *GMVData[V]) WriteEstimate(key Key, txn TxnIndex) {
tree := d.getTreeOrDefault(key)
tree.Set(secondaryDataItem[V]{Index: txn, Estimate: true})
}
func (d *GMVData[V]) Delete(key Key, txn TxnIndex) {
tree := d.getTreeOrDefault(key)
tree.Delete(secondaryDataItem[V]{Index: txn})
}
// Read returns the value and the version of the value that's less than the given txn.
// If the key is not found, returns `(nil, InvalidTxnVersion, false)`.
// If the key is found but value is an estimate, returns `(nil, BlockingTxn, true)`.
// If the key is found, returns `(value, version, false)`, `value` can be `nil` which means deleted.
func (d *GMVData[V]) Read(key Key, txn TxnIndex) (V, TxnVersion, bool) {
var zero V
if txn == 0 {
return zero, InvalidTxnVersion, false
}
tree := d.getTree(key)
if tree == nil {
return zero, InvalidTxnVersion, false
}
// find the closing txn that's less than the given txn
item, ok := seekClosestTxn(tree, txn)
if !ok {
return zero, InvalidTxnVersion, false
}
return item.Value, item.Version(), item.Estimate
}
func (d *GMVData[V]) Iterator(
opts IteratorOptions, txn TxnIndex,
waitFn func(TxnIndex),
) *MVIterator[V] {
return NewMVIterator(opts, txn, d.Iter(), waitFn)
}
// ValidateReadSet validates the read descriptors,
// returns true if valid.
func (d *GMVData[V]) ValidateReadSet(txn TxnIndex, rs *ReadSet) bool {
for _, desc := range rs.Reads {
_, version, estimate := d.Read(desc.Key, txn)
if estimate {
// previously read entry from data, now ESTIMATE
return false
}
if version != desc.Version {
// previously read entry from data, now NOT_FOUND,
// or read some entry, but not the same version as before
return false
}
}
for _, desc := range rs.Iterators {
if !d.validateIterator(desc, txn) {
return false
}
}
return true
}
// validateIterator validates the iteration descriptor by replaying and compare the recorded reads.
// returns true if valid.
func (d *GMVData[V]) validateIterator(desc IteratorDescriptor, txn TxnIndex) bool {
it := NewMVIterator(desc.IteratorOptions, txn, d.Iter(), nil)
defer it.Close()
var i int
for ; it.Valid(); it.Next() {
if desc.Stop != nil {
if BytesBeyond(it.Key(), desc.Stop, desc.Ascending) {
break
}
}
if i >= len(desc.Reads) {
return false
}
read := desc.Reads[i]
if read.Version != it.Version() || !bytes.Equal(read.Key, it.Key()) {
return false
}
i++
}
// we read an estimate value, fail the validation.
if it.ReadEstimateValue() {
return false
}
return i == len(desc.Reads)
}
func (d *GMVData[V]) Snapshot() (snapshot []GKVPair[V]) {
d.SnapshotTo(func(key Key, value V) bool {
snapshot = append(snapshot, GKVPair[V]{key, value})
return true
})
return
}
func (d *GMVData[V]) SnapshotTo(cb func(Key, V) bool) {
d.Scan(func(outer dataItem[V]) bool {
item, ok := outer.Tree.Max()
if !ok {
return true
}
if item.Estimate {
return true
}
return cb(outer.Key, item.Value)
})
}
func (d *GMVData[V]) SnapshotToStore(store storetypes.Store) {
kv := store.(storetypes.GKVStore[V])
d.SnapshotTo(func(key Key, value V) bool {
if d.isZero(value) {
kv.Delete(key)
} else {
kv.Set(key, value)
}
return true
})
}
type GKVPair[V any] struct {
Key Key
Value V
}
type KVPair = GKVPair[[]byte]
type dataItem[V any] struct {
Key Key
Tree *BTree[secondaryDataItem[V]]
}
var _ KeyItem = dataItem[[]byte]{}
func (item dataItem[V]) GetKey() []byte {
return item.Key
}
type secondaryDataItem[V any] struct {
Index TxnIndex
Incarnation Incarnation
Value V
Estimate bool
}
func secondaryLesser[V any](a, b secondaryDataItem[V]) bool {
return a.Index < b.Index
}
func (item secondaryDataItem[V]) Version() TxnVersion {
return TxnVersion{Index: item.Index, Incarnation: item.Incarnation}
}
// seekClosestTxn returns the closest txn that's less than the given txn.
func seekClosestTxn[V any](tree *BTree[secondaryDataItem[V]], txn TxnIndex) (secondaryDataItem[V], bool) {
return tree.ReverseSeek(secondaryDataItem[V]{Index: txn - 1})
}