-
Notifications
You must be signed in to change notification settings - Fork 10
/
nodedb.go
1199 lines (1007 loc) · 30.4 KB
/
nodedb.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package iavl
import (
"bytes"
"crypto/sha256"
"fmt"
"math"
"sort"
"strconv"
"strings"
"sync"
"github.com/cosmos/iavl/cache"
ibytes "github.com/cosmos/iavl/internal/bytes"
"github.com/cosmos/iavl/internal/logger"
"github.com/pkg/errors"
dbm "github.com/tendermint/tm-db"
)
const (
int64Size = 8
hashSize = sha256.Size
genesisVersion = 1
storageVersionKey = "storage_version"
// We store latest saved version together with storage version delimited by the constant below.
// This delimiter is valid only if fast storage is enabled (i.e. storageVersion >= fastStorageVersionValue).
// The latest saved version is needed for protection against downgrade and re-upgrade. In such a case, it would
// be possible to observe mismatch between the latest version state and the fast nodes on disk.
// Therefore, we would like to detect that and overwrite fast nodes on disk with the latest version state.
fastStorageVersionDelimiter = "-"
// Using semantic versioning: https://semver.org/
defaultStorageVersionValue = "1.0.0"
fastStorageVersionValue = "1.1.0"
fastNodeCacheSize = 100000
)
var (
// All node keys are prefixed with the byte 'n'. This ensures no collision is
// possible with the other keys, and makes them easier to traverse. They are indexed by the node hash.
nodeKeyFormat = NewKeyFormat('n', hashSize) // n<hash>
// Orphans are keyed in the database by their expected lifetime.
// The first number represents the *last* version at which the orphan needs
// to exist, while the second number represents the *earliest* version at
// which it is expected to exist - which starts out by being the version
// of the node being orphaned.
// To clarify:
// When I write to key {X} with value V and old value O, we orphan O with <last-version>=time of write
// and <first-version> = version O was created at.
orphanKeyFormat = NewKeyFormat('o', int64Size, int64Size, hashSize) // o<last-version><first-version><hash>
// Key Format for making reads and iterates go through a data-locality preserving db.
// The value at an entry will list what version it was written to.
// Then to query values, you first query state via this fast method.
// If its present, then check the tree version. If tree version >= result_version,
// return result_version. Else, go through old (slow) IAVL get method that walks through tree.
fastKeyFormat = NewKeyFormat('f', 0) // f<keystring>
// Key Format for storing metadata about the chain such as the vesion number.
// The value at an entry will be in a variable format and up to the caller to
// decide how to parse.
metadataKeyFormat = NewKeyFormat('m', 0) // v<keystring>
// Root nodes are indexed separately by their version
rootKeyFormat = NewKeyFormat('r', int64Size) // r<version>
)
var (
errInvalidFastStorageVersion = fmt.Sprintf("Fast storage version must be in the format <storage version>%s<latest fast cache version>", fastStorageVersionDelimiter)
)
type nodeDB struct {
mtx sync.Mutex // Read/write lock.
db dbm.DB // Persistent node storage.
batch dbm.Batch // Batched writing buffer.
opts Options // Options to customize for pruning/writing
versionReaders map[int64]uint32 // Number of active version readers
storageVersion string // Storage version
firstVersion int64 // First version of nodeDB.
latestVersion int64 // Latest version of nodeDB.
nodeCache cache.Cache // Cache for nodes in the regular tree that consists of key-value pairs at any version.
fastNodeCache cache.Cache // Cache for nodes in the fast index that represents only key-value pairs at the latest version.
}
func newNodeDB(db dbm.DB, cacheSize int, opts *Options) *nodeDB {
if opts == nil {
o := DefaultOptions()
opts = &o
}
storeVersion, err := db.Get(metadataKeyFormat.Key(unsafeToBz(storageVersionKey)))
if err != nil || storeVersion == nil {
storeVersion = []byte(defaultStorageVersionValue)
}
return &nodeDB{
db: db,
batch: db.NewBatch(),
opts: *opts,
firstVersion: 0,
latestVersion: 0, // initially invalid
nodeCache: cache.New(cacheSize),
fastNodeCache: cache.New(fastNodeCacheSize),
versionReaders: make(map[int64]uint32, 8),
storageVersion: string(storeVersion),
}
}
// GetNode gets a node from memory or disk. If it is an inner node, it does not
// load its children.
func (ndb *nodeDB) GetNode(hash []byte) (*Node, error) {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
if len(hash) == 0 {
return nil, ErrNodeMissingHash
}
// Check the cache.
if cachedNode := ndb.nodeCache.Get(hash); cachedNode != nil {
ndb.opts.Stat.IncCacheHitCnt()
return cachedNode.(*Node), nil
}
ndb.opts.Stat.IncCacheMissCnt()
// Doesn't exist, load.
buf, err := ndb.db.Get(ndb.nodeKey(hash))
if err != nil {
return nil, fmt.Errorf("can't get node %X: %v", hash, err)
}
if buf == nil {
return nil, fmt.Errorf("Value missing for hash %x corresponding to nodeKey %x", hash, ndb.nodeKey(hash))
}
node, err := MakeNode(buf)
if err != nil {
return nil, fmt.Errorf("Error reading Node. bytes: %x, error: %v", buf, err)
}
node.SetHash(hash)
node.SetPersisted(true)
ndb.nodeCache.Add(node)
return node, nil
}
func (ndb *nodeDB) GetFastNode(key []byte) (*FastNode, error) {
if !ndb.hasUpgradedToFastStorage() {
return nil, errors.New("storage version is not fast")
}
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
if len(key) == 0 {
return nil, fmt.Errorf("nodeDB.GetFastNode() requires key, len(key) equals 0")
}
if cachedFastNode := ndb.fastNodeCache.Get(key); cachedFastNode != nil {
ndb.opts.Stat.IncFastCacheHitCnt()
return cachedFastNode.(*FastNode), nil
}
ndb.opts.Stat.IncFastCacheMissCnt()
// Doesn't exist, load.
buf, err := ndb.db.Get(ndb.fastNodeKey(key))
if err != nil {
return nil, fmt.Errorf("can't get FastNode %X: %w", key, err)
}
if buf == nil {
return nil, nil
}
fastNode, err := DeserializeFastNode(key, buf)
if err != nil {
return nil, fmt.Errorf("error reading FastNode. bytes: %x, error: %w", buf, err)
}
ndb.fastNodeCache.Add(fastNode)
return fastNode, nil
}
// SaveNode saves a node to disk.
func (ndb *nodeDB) SaveNode(node *Node) error {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
if node.GetHash() == nil {
return ErrNodeMissingHash
}
if node.GetPersisted() {
return ErrNodeAlreadyPersisted
}
// Save node bytes to db.
var buf bytes.Buffer
buf.Grow(node.encodedSize())
if err := node.writeBytes(&buf); err != nil {
return err
}
if err := ndb.batch.Set(ndb.nodeKey(node.GetHash()), buf.Bytes()); err != nil {
return err
}
logger.Debug("BATCH SAVE %X %p\n", node.GetHash(), node)
node.SetPersisted(true)
ndb.nodeCache.Add(node)
return nil
}
// SaveNode saves a FastNode to disk and add to cache.
func (ndb *nodeDB) SaveFastNode(node *FastNode) error {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
return ndb.saveFastNodeUnlocked(node, true)
}
// SaveNode saves a FastNode to disk without adding to cache.
func (ndb *nodeDB) SaveFastNodeNoCache(node *FastNode) error {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
return ndb.saveFastNodeUnlocked(node, false)
}
// setFastStorageVersionToBatch sets storage version to fast where the version is
// 1.1.0-<version of the current live state>. Returns error if storage version is incorrect or on
// db error, nil otherwise. Requires changes to be committed after to be persisted.
func (ndb *nodeDB) setFastStorageVersionToBatch() error {
var newVersion string
if ndb.storageVersion >= fastStorageVersionValue {
// Storage version should be at index 0 and latest fast cache version at index 1
versions := strings.Split(ndb.storageVersion, fastStorageVersionDelimiter)
if len(versions) > 2 {
return errors.New(errInvalidFastStorageVersion)
}
newVersion = versions[0]
} else {
newVersion = fastStorageVersionValue
}
latestVersion, err := ndb.getLatestVersion()
if err != nil {
return err
}
newVersion += fastStorageVersionDelimiter + strconv.Itoa(int(latestVersion))
if err := ndb.batch.Set(metadataKeyFormat.Key([]byte(storageVersionKey)), []byte(newVersion)); err != nil {
return err
}
ndb.storageVersion = newVersion
return nil
}
func (ndb *nodeDB) getStorageVersion() string {
return ndb.storageVersion
}
// Returns true if the upgrade to latest storage version has been performed, false otherwise.
func (ndb *nodeDB) hasUpgradedToFastStorage() bool {
return ndb.getStorageVersion() >= fastStorageVersionValue
}
// Returns true if the upgrade to fast storage has occurred but it does not match the live state, false otherwise.
// When the live state is not matched, we must force reupgrade.
// We determine this by checking the version of the live state and the version of the live state when
// latest storage was updated on disk the last time.
func (ndb *nodeDB) shouldForceFastStorageUpgrade() (bool, error) {
versions := strings.Split(ndb.storageVersion, fastStorageVersionDelimiter)
if len(versions) == 2 {
latestVersion, err := ndb.getLatestVersion()
if err != nil {
// TODO: should be true or false as default? (removed panic here)
return false, err
}
if versions[1] != strconv.Itoa(int(latestVersion)) {
return true, nil
}
}
return false, nil
}
// SaveNode saves a FastNode to disk.
func (ndb *nodeDB) saveFastNodeUnlocked(node *FastNode, shouldAddToCache bool) error {
if node.key == nil {
return fmt.Errorf("cannot have FastNode with a nil value for key")
}
// Save node bytes to db.
var buf bytes.Buffer
buf.Grow(node.encodedSize())
if err := node.writeBytes(&buf); err != nil {
return fmt.Errorf("error while writing fastnode bytes. Err: %w", err)
}
if err := ndb.batch.Set(ndb.fastNodeKey(node.key), buf.Bytes()); err != nil {
return fmt.Errorf("error while writing key/val to nodedb batch. Err: %w", err)
}
if shouldAddToCache {
ndb.fastNodeCache.Add(node)
}
return nil
}
// Has checks if a hash exists in the database.
func (ndb *nodeDB) Has(hash []byte) (bool, error) {
key := ndb.nodeKey(hash)
if ldb, ok := ndb.db.(*dbm.GoLevelDB); ok {
exists, err := ldb.DB().Has(key, nil)
if err != nil {
return false, err
}
return exists, nil
}
value, err := ndb.db.Get(key)
if err != nil {
return false, err
}
return value != nil, nil
}
// SaveBranch saves the given node and all of its descendants.
// NOTE: This function clears leftNode/rigthNode recursively and
// calls _hash() on the given node.
// TODO refactor, maybe use hashWithCount() but provide a callback.
func (ndb *nodeDB) SaveBranch(node *Node) ([]byte, error) {
if node.GetPersisted() {
return node.GetHash(), nil
}
var err error
if node.GetLeftNode() != nil {
leftHash, err := ndb.SaveBranch(node.GetLeftNode())
if err != nil {
return nil, err
}
node.SetLeftHash(leftHash)
}
if node.GetRightNode() != nil {
rightHash, err := ndb.SaveBranch(node.GetRightNode())
if err != nil {
return nil, err
}
node.SetRightHash(rightHash)
}
_, err = node._hash()
if err != nil {
return nil, err
}
err = ndb.SaveNode(node)
if err != nil {
return nil, err
}
// resetBatch only working on generate a genesis block
if node.GetVersion() <= genesisVersion {
if err = ndb.resetBatch(); err != nil {
return nil, err
}
}
node.SetLeftNode(nil)
node.SetRightNode(nil)
return node.GetHash(), nil
}
// resetBatch reset the db batch, keep low memory used
func (ndb *nodeDB) resetBatch() error {
var err error
if ndb.opts.Sync {
err = ndb.batch.WriteSync()
} else {
err = ndb.batch.Write()
}
if err != nil {
return err
}
err = ndb.batch.Close()
if err != nil {
return err
}
ndb.batch = ndb.db.NewBatch()
return nil
}
// DeleteVersion deletes a tree version from disk.
// calls deleteOrphans(version), deleteRoot(version, checkLatestVersion)
func (ndb *nodeDB) DeleteVersion(version int64, checkLatestVersion bool) error {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
if ndb.versionReaders[version] > 0 {
return errors.Errorf("unable to delete version %v, it has %v active readers", version, ndb.versionReaders[version])
}
err := ndb.deleteOrphans(version)
if err != nil {
return err
}
err = ndb.deleteRoot(version, checkLatestVersion)
if err != nil {
return err
}
return err
}
// DeleteVersionsFrom permanently deletes all tree versions from the given version upwards.
func (ndb *nodeDB) DeleteVersionsFrom(version int64) error {
latest, err := ndb.getLatestVersion()
if err != nil {
return err
}
if latest < version {
return nil
}
root, err := ndb.getRoot(latest)
if err != nil {
return err
}
if root == nil {
return errors.Errorf("root for version %v not found", latest)
}
for v, r := range ndb.versionReaders {
if v >= version && r != 0 {
return errors.Errorf("unable to delete version %v with %v active readers", v, r)
}
}
// First, delete all active nodes in the current (latest) version whose node version is after
// the given version.
err = ndb.deleteNodesFrom(version, root)
if err != nil {
return err
}
// Next, delete orphans:
// - Delete orphan entries *and referred nodes* with fromVersion >= version
// - Delete orphan entries with toVersion >= version-1 (since orphans at latest are not orphans)
err = ndb.traverseOrphans(func(key, hash []byte) error {
var fromVersion, toVersion int64
orphanKeyFormat.Scan(key, &toVersion, &fromVersion)
if fromVersion >= version {
if err = ndb.batch.Delete(key); err != nil {
return err
}
if err = ndb.batch.Delete(ndb.nodeKey(hash)); err != nil {
return err
}
ndb.nodeCache.Remove(hash)
} else if toVersion >= version-1 {
if err = ndb.batch.Delete(key); err != nil {
return err
}
}
return nil
})
if err != nil {
return err
}
// Delete the version root entries
err = ndb.traverseRange(rootKeyFormat.Key(version), rootKeyFormat.Key(int64(math.MaxInt64)), func(k, v []byte) error {
if err = ndb.batch.Delete(k); err != nil {
return err
}
return nil
})
if err != nil {
return err
}
// Delete fast node entries
err = ndb.traverseFastNodes(func(keyWithPrefix, v []byte) error {
key := keyWithPrefix[1:]
fastNode, err := DeserializeFastNode(key, v)
if err != nil {
return err
}
if version <= fastNode.versionLastUpdatedAt {
if err = ndb.batch.Delete(keyWithPrefix); err != nil {
return err
}
ndb.fastNodeCache.Remove(key)
}
return nil
})
if err != nil {
return err
}
return nil
}
// DeleteVersionsRange deletes versions from an interval (not inclusive).
func (ndb *nodeDB) DeleteVersionsRange(fromVersion, toVersion int64) error {
if fromVersion >= toVersion {
return errors.New("toVersion must be greater than fromVersion")
}
if toVersion == 0 {
return errors.New("toVersion must be greater than 0")
}
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
latest, err := ndb.getLatestVersion()
if err != nil {
return err
}
first, err := ndb.getFirstVersion()
if err != nil {
return err
}
if latest < toVersion {
return errors.Errorf("cannot delete latest saved version (%d)", latest)
}
predecessor, err := ndb.getPreviousVersion(fromVersion)
if err != nil {
return err
}
for v, r := range ndb.versionReaders {
if v < toVersion && v > predecessor && r != 0 {
return errors.Errorf("unable to delete version %v with %v active readers", v, r)
}
}
// If the predecessor is earlier than the beginning of the lifetime, we can delete the orphan.
// Otherwise, we shorten its lifetime, by moving its endpoint to the predecessor version.
for version := fromVersion; version < toVersion; version++ {
err := ndb.traverseOrphansVersion(version, func(key, hash []byte) error {
var from, to int64
orphanKeyFormat.Scan(key, &to, &from)
if err := ndb.batch.Delete(key); err != nil {
return err
}
if from > predecessor {
if err := ndb.batch.Delete(ndb.nodeKey(hash)); err != nil {
return err
}
ndb.nodeCache.Remove(hash)
} else {
if err := ndb.saveOrphan(hash, from, predecessor); err != nil {
return err
}
}
return nil
})
if err != nil {
return err
}
}
// Delete the version root entries
err = ndb.traverseRange(rootKeyFormat.Key(fromVersion), rootKeyFormat.Key(toVersion), func(k, v []byte) error {
if err := ndb.batch.Delete(k); err != nil {
return err
}
return nil
})
if first < toVersion && first >= fromVersion {
// Reset first version if we are deleting all versions from first -> toVersion
ndb.resetFirstVersion(toVersion)
}
if latest <= toVersion-1 {
// Reset latest version if we are deleting all versions from fromVersion -> latest
ndb.resetLatestVersion(fromVersion + 1)
}
if err != nil {
return err
}
return nil
}
func (ndb *nodeDB) DeleteFastNode(key []byte) error {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
if err := ndb.batch.Delete(ndb.fastNodeKey(key)); err != nil {
return err
}
ndb.fastNodeCache.Remove(key)
return nil
}
// deleteNodesFrom deletes the given node and any descendants that have versions after the given
// (inclusive). It is mainly used via LoadVersionForOverwriting, to delete the current version.
func (ndb *nodeDB) deleteNodesFrom(version int64, hash []byte) error {
if len(hash) == 0 {
return nil
}
node, err := ndb.GetNode(hash)
if err != nil {
return err
}
if node.GetLeftHash() != nil {
if err := ndb.deleteNodesFrom(version, node.GetLeftHash()); err != nil {
return err
}
}
if node.GetRightHash() != nil {
if err := ndb.deleteNodesFrom(version, node.GetRightHash()); err != nil {
return err
}
}
if node.GetVersion() >= version {
if err := ndb.batch.Delete(ndb.nodeKey(hash)); err != nil {
return err
}
ndb.nodeCache.Remove(hash)
}
return nil
}
// Saves orphaned nodes to disk under a special prefix.
// version: the new version being saved.
// orphans: the orphan nodes created since version-1
func (ndb *nodeDB) SaveOrphans(version int64, orphans map[string]int64) error {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
toVersion, err := ndb.getPreviousVersion(version)
if err != nil {
return err
}
for hash, fromVersion := range orphans {
logger.Debug("SAVEORPHAN %v-%v %X\n", fromVersion, toVersion, hash)
err := ndb.saveOrphan([]byte(hash), fromVersion, toVersion)
if err != nil {
return err
}
}
return nil
}
func (ndb *nodeDB) deleteOrphanedData(hash []byte) error {
if err := ndb.batch.Delete(ndb.nodeKey(hash)); err != nil {
return err
}
ndb.nodeCache.Remove(hash)
return nil
}
// Saves a single orphan to disk.
func (ndb *nodeDB) saveOrphan(hash []byte, fromVersion, toVersion int64) error {
if fromVersion > toVersion {
return fmt.Errorf("orphan expires before it comes alive. %d > %d", fromVersion, toVersion)
}
key := ndb.orphanKey(fromVersion, toVersion, hash)
if err := ndb.batch.Set(key, hash); err != nil {
return err
}
return nil
}
// deleteOrphans deletes orphaned nodes from disk, and the associated orphan
// entries.
func (ndb *nodeDB) deleteOrphans(version int64) error {
// Will be zero if there is no previous version.
predecessor, err := ndb.getPreviousVersion(version)
if err != nil {
return err
}
// Traverse orphans with a lifetime ending at the version specified.
// TODO optimize.
return ndb.traverseOrphansVersion(version, func(key, hash []byte) error {
var fromVersion, toVersion int64
// See comment on `orphanKeyFmt`. Note that here, `version` and
// `toVersion` are always equal.
orphanKeyFormat.Scan(key, &toVersion, &fromVersion)
// Delete orphan key and reverse-lookup key.
if err := ndb.batch.Delete(key); err != nil {
return err
}
// If there is no predecessor, or the predecessor is earlier than the
// beginning of the lifetime (ie: negative lifetime), or the lifetime
// spans a single version and that version is the one being deleted, we
// can delete the orphan. Otherwise, we shorten its lifetime, by
// moving its endpoint to the previous version.
if predecessor < fromVersion || fromVersion == toVersion {
logger.Debug("DELETE predecessor:%v fromVersion:%v toVersion:%v %X\n", predecessor, fromVersion, toVersion, hash)
if err := ndb.batch.Delete(ndb.nodeKey(hash)); err != nil {
return err
}
ndb.nodeCache.Remove(hash)
} else {
logger.Debug("MOVE predecessor:%v fromVersion:%v toVersion:%v %X\n", predecessor, fromVersion, toVersion, hash)
ndb.saveOrphan(hash, fromVersion, predecessor)
}
return nil
})
}
func (ndb *nodeDB) nodeKey(hash []byte) []byte {
return nodeKeyFormat.KeyBytes(hash)
}
func (ndb *nodeDB) fastNodeKey(key []byte) []byte {
return fastKeyFormat.KeyBytes(key)
}
func (ndb *nodeDB) orphanKey(fromVersion, toVersion int64, hash []byte) []byte {
return orphanKeyFormat.Key(toVersion, fromVersion, hash)
}
func (ndb *nodeDB) rootKey(version int64) []byte {
return rootKeyFormat.Key(version)
}
func (ndb *nodeDB) getLatestVersion() (int64, error) {
if ndb.latestVersion == 0 {
var err error
ndb.latestVersion, err = ndb.getPreviousVersion(1<<63 - 1)
if err != nil {
return 0, err
}
}
return ndb.latestVersion, nil
}
// Get the iterator for a given prefix.
func (ndb *nodeDB) getPrefixIterator(prefix []byte) (dbm.Iterator, error) {
var start, end []byte
if len(prefix) == 0 {
start = nil
end = nil
} else {
start = ibytes.Cp(prefix)
end = ibytes.CpIncr(prefix)
}
return ndb.db.Iterator(start, end)
}
func (ndb *nodeDB) getFirstVersion() (int64, error) {
firstVersion := ndb.firstVersion
if firstVersion > 0 {
return firstVersion, nil
}
// Check if we have a legacy version
itr, err := ndb.getPrefixIterator(rootKeyFormat.Key())
if err != nil {
return 0, err
}
defer itr.Close()
if itr.Valid() {
var version int64
rootKeyFormat.Scan(itr.Key(), &version)
return version, nil
}
// Find the first version
latestVersion, err := ndb.getLatestVersion()
if err != nil {
return 0, err
}
for firstVersion < latestVersion {
version := (latestVersion + firstVersion) >> 1
has, err := ndb.hasVersion(version)
if err != nil {
return 0, err
}
if has {
latestVersion = version
} else {
firstVersion = version + 1
}
}
ndb.resetFirstVersion(latestVersion)
return latestVersion, nil
}
func (ndb *nodeDB) resetFirstVersion(version int64) {
ndb.firstVersion = version
}
func (ndb *nodeDB) updateLatestVersion(version int64) {
if ndb.latestVersion < version {
ndb.latestVersion = version
}
}
func (ndb *nodeDB) resetLatestVersion(version int64) {
ndb.latestVersion = version
}
func (ndb *nodeDB) getPreviousVersion(version int64) (int64, error) {
itr, err := ndb.db.ReverseIterator(
rootKeyFormat.Key(1),
rootKeyFormat.Key(version),
)
if err != nil {
return 0, err
}
defer itr.Close()
pversion := int64(-1)
for ; itr.Valid(); itr.Next() {
k := itr.Key()
rootKeyFormat.Scan(k, &pversion)
return pversion, nil
}
if err := itr.Error(); err != nil {
return 0, err
}
return 0, nil
}
// deleteRoot deletes the root entry from disk, but not the node it points to.
func (ndb *nodeDB) deleteRoot(version int64, checkLatestVersion bool) error {
latestVersion, err := ndb.getLatestVersion()
if err != nil {
return err
}
if checkLatestVersion && version == latestVersion {
return errors.New("tried to delete latest version")
}
if err := ndb.batch.Delete(ndb.rootKey(version)); err != nil {
return err
}
return nil
}
// Traverse orphans and return error if any, nil otherwise
func (ndb *nodeDB) traverseOrphans(fn func(keyWithPrefix, v []byte) error) error {
return ndb.traversePrefix(orphanKeyFormat.Key(), fn)
}
// Traverse fast nodes and return error if any, nil otherwise
func (ndb *nodeDB) traverseFastNodes(fn func(k, v []byte) error) error {
return ndb.traversePrefix(fastKeyFormat.Key(), fn)
}
// Traverse orphans ending at a certain version. return error if any, nil otherwise
func (ndb *nodeDB) traverseOrphansVersion(version int64, fn func(k, v []byte) error) error {
return ndb.traversePrefix(orphanKeyFormat.Key(version), fn)
}
// Traverse all keys and return error if any, nil otherwise
// nolint: unused
func (ndb *nodeDB) traverse(fn func(key, value []byte) error) error {
return ndb.traverseRange(nil, nil, fn)
}
// Traverse all keys between a given range (excluding end) and return error if any, nil otherwise
func (ndb *nodeDB) traverseRange(start []byte, end []byte, fn func(k, v []byte) error) error {
itr, err := ndb.db.Iterator(start, end)
if err != nil {
return err
}
defer itr.Close()
for ; itr.Valid(); itr.Next() {
if err := fn(itr.Key(), itr.Value()); err != nil {
return err
}
}
if err := itr.Error(); err != nil {
return err
}
return nil
}
// Traverse all keys with a certain prefix. Return error if any, nil otherwise
func (ndb *nodeDB) traversePrefix(prefix []byte, fn func(k, v []byte) error) error {
itr, err := dbm.IteratePrefix(ndb.db, prefix)
if err != nil {
return err
}
defer itr.Close()
for ; itr.Valid(); itr.Next() {
if err := fn(itr.Key(), itr.Value()); err != nil {
return err
}
}
return nil
}
// Get iterator for fast prefix and error, if any
func (ndb *nodeDB) getFastIterator(start, end []byte, ascending bool) (dbm.Iterator, error) {
var startFormatted, endFormatted []byte
if start != nil {
startFormatted = fastKeyFormat.KeyBytes(start)
} else {
startFormatted = fastKeyFormat.Key()
}
if end != nil {
endFormatted = fastKeyFormat.KeyBytes(end)
} else {
endFormatted = fastKeyFormat.Key()
endFormatted[0]++
}
if ascending {
return ndb.db.Iterator(startFormatted, endFormatted)
}
return ndb.db.ReverseIterator(startFormatted, endFormatted)
}
// Write to disk.
func (ndb *nodeDB) Commit() error {
ndb.mtx.Lock()
defer ndb.mtx.Unlock()
var err error
if ndb.opts.Sync {
err = ndb.batch.WriteSync()
} else {
err = ndb.batch.Write()
}
if err != nil {
return errors.Wrap(err, "failed to write batch")
}
ndb.batch.Close()
ndb.batch = ndb.db.NewBatch()
return nil
}
func (ndb *nodeDB) HasRoot(version int64) (bool, error) {
return ndb.db.Has(ndb.rootKey(version))
}
// hasVersion checks if the given version exists.
func (ndb *nodeDB) hasVersion(version int64) (bool, error) {
return ndb.HasRoot(version)
}
func (ndb *nodeDB) getRoot(version int64) ([]byte, error) {
return ndb.db.Get(ndb.rootKey(version))
}
func (ndb *nodeDB) getRoots() (roots map[int64][]byte, err error) {
roots = make(map[int64][]byte)
err = ndb.traversePrefix(rootKeyFormat.Key(), func(k, v []byte) error {
var version int64
rootKeyFormat.Scan(k, &version)
roots[version] = v
return nil
})
return roots, err
}
// SaveRoot creates an entry on disk for the given root, so that it can be
// loaded later.
func (ndb *nodeDB) SaveRoot(root *Node, version int64) error {
if len(root.GetHash()) == 0 {
return ErrRootMissingHash
}
return ndb.saveRoot(root.GetHash(), version)
}