forked from cosmos/iavl
-
Notifications
You must be signed in to change notification settings - Fork 4
/
immutable_tree.go
295 lines (258 loc) · 9.17 KB
/
immutable_tree.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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
package iavl
import (
"fmt"
"strings"
dbm "github.com/tendermint/tm-db"
)
// ImmutableTree contains the immutable tree at a given version. It is typically created by calling
// MutableTree.GetImmutable(), in which case the returned tree is safe for concurrent access as
// long as the version is not deleted via DeleteVersion() or the tree's pruning settings.
//
// Returned key/value byte slices must not be modified, since they may point to data located inside
// IAVL which would also be modified.
type ImmutableTree struct {
root *Node
ndb *nodeDB
version int64
}
// NewImmutableTree creates both in-memory and persistent instances
func NewImmutableTree(db dbm.DB, cacheSize int) *ImmutableTree {
if db == nil {
// In-memory Tree.
return &ImmutableTree{}
}
return &ImmutableTree{
// NodeDB-backed Tree.
ndb: newNodeDB(db, cacheSize, nil),
}
}
// NewImmutableTreeWithOpts creates an ImmutableTree with the given options.
func NewImmutableTreeWithOpts(db dbm.DB, cacheSize int, opts *Options) *ImmutableTree {
return &ImmutableTree{
// NodeDB-backed Tree.
ndb: newNodeDB(db, cacheSize, opts),
}
}
// String returns a string representation of Tree.
func (t *ImmutableTree) String() string {
leaves := []string{}
t.Iterate(func(key []byte, val []byte) (stop bool) {
leaves = append(leaves, fmt.Sprintf("%x: %x", key, val))
return false
})
return "Tree{" + strings.Join(leaves, ", ") + "}"
}
// RenderShape provides a nested tree shape, ident is prepended in each level
// Returns an array of strings, one per line, to join with "\n" or display otherwise
func (t *ImmutableTree) RenderShape(indent string, encoder NodeEncoder) []string {
if encoder == nil {
encoder = defaultNodeEncoder
}
return t.renderNode(t.root, indent, 0, encoder)
}
// NodeEncoder will take an id (hash, or key for leaf nodes), the depth of the node,
// and whether or not this is a leaf node.
// It returns the string we wish to print, for iaviwer
type NodeEncoder func(id []byte, depth int, isLeaf bool) string
// defaultNodeEncoder can encode any node unless the client overrides it
func defaultNodeEncoder(id []byte, depth int, isLeaf bool) string {
prefix := "- "
if isLeaf {
prefix = "* "
}
if len(id) == 0 {
return fmt.Sprintf("%s<nil>", prefix)
}
return fmt.Sprintf("%s%X", prefix, id)
}
func (t *ImmutableTree) renderNode(node *Node, indent string, depth int, encoder func([]byte, int, bool) string) []string {
prefix := strings.Repeat(indent, depth)
// handle nil
if node == nil {
return []string{fmt.Sprintf("%s<nil>", prefix)}
}
// handle leaf
if node.isLeaf() {
here := fmt.Sprintf("%s%s", prefix, encoder(node.key, depth, true))
return []string{here}
}
// recurse on inner node
here := fmt.Sprintf("%s%s", prefix, encoder(node.hash, depth, false))
left := t.renderNode(node.getLeftNode(t), indent, depth+1, encoder)
right := t.renderNode(node.getRightNode(t), indent, depth+1, encoder)
result := append(left, here)
result = append(result, right...)
return result
}
// Size returns the number of leaf nodes in the tree.
func (t *ImmutableTree) Size() int64 {
if t.root == nil {
return 0
}
return t.root.size
}
// Version returns the version of the tree.
func (t *ImmutableTree) Version() int64 {
return t.version
}
// Height returns the height of the tree.
func (t *ImmutableTree) Height() int8 {
if t.root == nil {
return 0
}
return t.root.height
}
// Has returns whether or not a key exists.
func (t *ImmutableTree) Has(key []byte) bool {
if t.root == nil {
return false
}
return t.root.has(t, key)
}
// Hash returns the root hash.
func (t *ImmutableTree) Hash() []byte {
hash, _ := t.root.hashWithCount()
return hash
}
// hashWithCount returns the root hash and hash count.
func (t *ImmutableTree) hashWithCount() ([]byte, int64) {
return t.root.hashWithCount()
}
// Export returns an iterator that exports tree nodes as ExportNodes. These nodes can be
// imported with MutableTree.Import() to recreate an identical tree.
func (t *ImmutableTree) Export() *Exporter {
return newExporter(t)
}
// GetWithIndex returns the index and value of the specified key if it exists, or nil and the next index
// otherwise. The returned value must not be modified, since it may point to data stored within
// IAVL.
//
// The index is the index in the list of leaf nodes sorted lexicographically by key. The leftmost leaf has index 0.
// It's neighbor has index 1 and so on.
func (t *ImmutableTree) GetWithIndex(key []byte) (int64, []byte) {
if t.root == nil {
return 0, nil
}
return t.root.get(t, key)
}
// Get returns the value of the specified key if it exists, or nil.
// The returned value must not be modified, since it may point to data stored within IAVL.
// Get potentially employs a more performant strategy than GetWithIndex for retrieving the value.
func (t *ImmutableTree) Get(key []byte) []byte {
if t.root == nil {
return nil
}
// attempt to get a FastNode directly from db/cache.
// if call fails, fall back to the original IAVL logic in place.
fastNode, err := t.ndb.GetFastNode(key)
if err != nil {
debug("failed to get FastNode with key: %X, falling back to regular IAVL logic\n", key)
_, result := t.root.get(t, key)
return result
}
if fastNode == nil {
// If the tree is of the latest version and fast node is not in the tree
// then the regular node is not in the tree either because fast node
// represents live state.
if t.version == t.ndb.latestVersion {
debug("latest version with no fast node for key: %X. The node must not exist, return nil. Tree version: %d\n", key, t.version)
return nil
}
debug("old version with no fast node for key: %X, falling back to regular IAVL logic. Tree version: %d\n", key, t.version)
_, result := t.root.get(t, key)
return result
}
// cache node was updated later than the current tree. Use regular strategy for reading from the current tree
if fastNode.versionLastUpdatedAt > t.version {
debug("last updated version %d is too new for FastNode where tree is of version %d with key %X, falling back to regular IAVL logic\n", fastNode.versionLastUpdatedAt, t.version, key)
_, result := t.root.get(t, key)
return result
}
return fastNode.value
}
// GetByIndex gets the key and value at the specified index.
func (t *ImmutableTree) GetByIndex(index int64) (key []byte, value []byte) {
if t.root == nil {
return nil, nil
}
return t.root.getByIndex(t, index)
}
// Iterate iterates over all keys of the tree. The keys and values must not be modified,
// since they may point to data stored within IAVL. Returns true if stopped by callback, false otherwise
func (t *ImmutableTree) Iterate(fn func(key []byte, value []byte) bool) bool {
if t.root == nil {
return false
}
itr := t.Iterator(nil, nil, true)
defer itr.Close()
for ; itr.Valid(); itr.Next() {
if fn(itr.Key(), itr.Value()) {
return true
}
}
return false
}
// Iterator returns an iterator over the immutable tree.
func (t *ImmutableTree) Iterator(start, end []byte, ascending bool) dbm.Iterator {
if t.IsFastCacheEnabled() {
return NewFastIterator(start, end, ascending, t.ndb)
} else {
return NewIterator(start, end, ascending, t)
}
}
// IterateRange makes a callback for all nodes with key between start and end non-inclusive.
// If either are nil, then it is open on that side (nil, nil is the same as Iterate). The keys and
// values must not be modified, since they may point to data stored within IAVL.
func (t *ImmutableTree) IterateRange(start, end []byte, ascending bool, fn func(key []byte, value []byte) bool) (stopped bool) {
if t.root == nil {
return false
}
return t.root.traverseInRange(t, start, end, ascending, false, false, func(node *Node) bool {
if node.height == 0 {
return fn(node.key, node.value)
}
return false
})
}
// IterateRangeInclusive makes a callback for all nodes with key between start and end inclusive.
// If either are nil, then it is open on that side (nil, nil is the same as Iterate). The keys and
// values must not be modified, since they may point to data stored within IAVL.
func (t *ImmutableTree) IterateRangeInclusive(start, end []byte, ascending bool, fn func(key, value []byte, version int64) bool) (stopped bool) {
if t.root == nil {
return false
}
return t.root.traverseInRange(t, start, end, ascending, true, false, func(node *Node) bool {
if node.height == 0 {
return fn(node.key, node.value, node.version)
}
return false
})
}
// IsFastCacheEnabled returns true if fast cache is enabled, false otherwise.
// For fast cache to be enabled, the following 2 conditions must be met:
// 1. The tree is of the latest version.
// 2. The underlying storage has been upgraded to fast cache
func (t *ImmutableTree) IsFastCacheEnabled() bool {
return t.isLatestTreeVersion() && t.ndb.hasUpgradedToFastStorage()
}
func (t *ImmutableTree) isLatestTreeVersion() bool {
return t.version == t.ndb.getLatestVersion()
}
// Clone creates a clone of the tree.
// Used internally by MutableTree.
func (t *ImmutableTree) clone() *ImmutableTree {
return &ImmutableTree{
root: t.root,
ndb: t.ndb,
version: t.version,
}
}
// nodeSize is like Size, but includes inner nodes too.
func (t *ImmutableTree) nodeSize() int {
size := 0
t.root.traverse(t, true, func(n *Node) bool {
size++
return false
})
return size
}