-
Notifications
You must be signed in to change notification settings - Fork 472
/
Copy pathreader.go
1811 lines (1630 loc) · 48.6 KB
/
reader.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
// Copyright 2011 The LevelDB-Go and Pebble Authors. All rights reserved. Use
// of this source code is governed by a BSD-style license that can be found in
// the LICENSE file.
package sstable
import (
"bytes"
"encoding/binary"
"errors"
"fmt"
"io"
"os"
"runtime"
"sort"
"sync"
"unsafe"
"github.com/cockroachdb/pebble/internal/base"
"github.com/cockroachdb/pebble/internal/cache"
"github.com/cockroachdb/pebble/internal/crc"
"github.com/cockroachdb/pebble/internal/invariants"
"github.com/cockroachdb/pebble/internal/private"
"github.com/cockroachdb/pebble/internal/rangedel"
"github.com/cockroachdb/pebble/vfs"
"github.com/golang/snappy"
)
var errCorruptIndexEntry = errors.New("pebble/table: corrupt index entry")
// decodeBlockHandle returns the block handle encoded at the start of src, as
// well as the number of bytes it occupies. It returns zero if given invalid
// input.
func decodeBlockHandle(src []byte) (BlockHandle, int) {
offset, n := binary.Uvarint(src)
length, m := binary.Uvarint(src[n:])
if n == 0 || m == 0 {
return BlockHandle{}, 0
}
return BlockHandle{offset, length}, n + m
}
func encodeBlockHandle(dst []byte, b BlockHandle) int {
n := binary.PutUvarint(dst, b.Offset)
m := binary.PutUvarint(dst[n:], b.Length)
return n + m
}
// block is a []byte that holds a sequence of key/value pairs plus an index
// over those pairs.
type block []byte
// Iterator iterates over an entire table of data.
type Iterator interface {
base.InternalIterator
Init(r *Reader, lower, upper []byte) error
SetCloseHook(fn func(i Iterator) error)
}
// singleLevelIterator iterates over an entire table of data. To seek for a given
// key, it first looks in the index for the block that contains that key, and then
// looks inside that block.
type singleLevelIterator struct {
cmp Compare
// Global lower/upper bound for the iterator.
lower []byte
upper []byte
// Per-block lower/upper bound. Nil if the bound does not apply to the block
// because we determined the block lies completely within the bound.
blockLower []byte
blockUpper []byte
reader *Reader
index blockIter
data blockIter
dataBH BlockHandle
err error
closeHook func(i Iterator) error
}
// singleLevelIterator implements the base.InternalIterator interface.
var _ base.InternalIterator = (*singleLevelIterator)(nil)
var singleLevelIterPool = sync.Pool{
New: func() interface{} {
i := &singleLevelIterator{}
if invariants.Enabled {
runtime.SetFinalizer(i, checkSingleLevelIterator)
}
return i
},
}
var twoLevelIterPool = sync.Pool{
New: func() interface{} {
i := &twoLevelIterator{}
if invariants.Enabled {
runtime.SetFinalizer(i, checkTwoLevelIterator)
}
return i
},
}
func checkSingleLevelIterator(obj interface{}) {
i := obj.(*singleLevelIterator)
if p := i.data.cacheHandle.Get(); p != nil {
fmt.Fprintf(os.Stderr, "singleLevelIterator.data.cacheHandle is not nil: %p\n", p)
os.Exit(1)
}
if p := i.index.cacheHandle.Get(); p != nil {
fmt.Fprintf(os.Stderr, "singleLevelIterator.index.cacheHandle is not nil: %p\n", p)
os.Exit(1)
}
}
func checkTwoLevelIterator(obj interface{}) {
i := obj.(*twoLevelIterator)
if p := i.data.cacheHandle.Get(); p != nil {
fmt.Fprintf(os.Stderr, "singleLevelIterator.data.cacheHandle is not nil: %p\n", p)
os.Exit(1)
}
if p := i.index.cacheHandle.Get(); p != nil {
fmt.Fprintf(os.Stderr, "singleLevelIterator.index.cacheHandle is not nil: %p\n", p)
os.Exit(1)
}
}
// Init initializes a singleLevelIterator for reading from the table. It is
// synonmous with Reader.NewIter, but allows for reusing of the iterator
// between different Readers.
func (i *singleLevelIterator) Init(r *Reader, lower, upper []byte) error {
i.lower = lower
i.upper = upper
i.reader = r
i.err = r.err
if i.err == nil {
var index block
index, i.err = r.readIndex()
if i.err != nil {
return i.err
}
i.cmp = r.Compare
i.err = i.index.init(i.cmp, index, r.Properties.GlobalSeqNum)
}
return i.err
}
func (i *singleLevelIterator) resetForReuse() singleLevelIterator {
return singleLevelIterator{
index: i.index.resetForReuse(),
data: i.data.resetForReuse(),
}
}
func (i *singleLevelIterator) initBounds() {
// Trim the iteration bounds for the current block. We don't have to check
// the bounds on each iteration if the block is entirely contained within the
// iteration bounds.
i.blockLower = i.lower
if i.blockLower != nil {
key, _ := i.data.First()
if key != nil && i.cmp(i.blockLower, key.UserKey) < 0 {
// The lower-bound is less than the first key in the block. No need
// to check the lower-bound again for this block.
i.blockLower = nil
}
}
i.blockUpper = i.upper
if i.blockUpper != nil && i.cmp(i.blockUpper, i.index.Key().UserKey) > 0 {
// The upper-bound is greater than the index key which itself is greater
// than or equal to every key in the block. No need to check the
// upper-bound again for this block.
i.blockUpper = nil
}
}
// loadBlock loads the block at the current index position and leaves i.data
// unpositioned. If unsuccessful, it sets i.err to any error encountered, which
// may be nil if we have simply exhausted the entire table.
func (i *singleLevelIterator) loadBlock() bool {
// Ensure the data block iterator is invalidated even if loading of the block
// fails.
i.data.invalidate()
if !i.index.Valid() {
i.err = i.index.err
return false
}
// Load the next block.
v := i.index.Value()
var n int
i.dataBH, n = decodeBlockHandle(v)
if n == 0 || n != len(v) {
i.err = errCorruptIndexEntry
return false
}
block, err := i.reader.readBlock(i.dataBH, nil /* transform */, false /* weak */)
if err != nil {
i.err = err
return false
}
i.err = i.data.initHandle(i.cmp, block, i.reader.Properties.GlobalSeqNum)
if i.err != nil {
return false
}
i.initBounds()
return true
}
func (i *singleLevelIterator) recordOffset() uint64 {
offset := i.dataBH.Offset
if i.data.Valid() {
// - i.dataBH.Length/len(i.data.data) is the compression ratio. If
// uncompressed, this is 1.
// - i.data.nextOffset is the uncompressed position of the current record
// in the block.
// - i.dataBH.Offset is the offset of the block in the sstable before
// decompression.
offset += (uint64(i.data.nextOffset) * i.dataBH.Length) / uint64(len(i.data.data))
} else {
// Last entry in the block must increment bytes iterated by the size of the block trailer
// and restart points.
offset += i.dataBH.Length + blockTrailerLen
}
return offset
}
// SeekGE implements internalIterator.SeekGE, as documented in the pebble
// package. Note that SeekGE only checks the upper bound. It is up to the
// caller to ensure that key is greater than or equal to the lower bound.
func (i *singleLevelIterator) SeekGE(key []byte) (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.index.SeekGE(key); ikey == nil {
// The target key is greater than any key in the sstable. Invalidate the
// block iterator so that a subsequent call to Prev() will return the last
// key in the table.
i.data.invalidate()
return nil, nil
}
if !i.loadBlock() {
return nil, nil
}
if ikey, val := i.data.SeekGE(key); ikey != nil {
if i.blockUpper != nil && i.cmp(ikey.UserKey, i.blockUpper) >= 0 {
return nil, nil
}
return ikey, val
}
return i.skipForward()
}
// SeekPrefixGE implements internalIterator.SeekPrefixGE, as documented in the
// pebble package. Note that SeekPrefixGE only checks the upper bound. It is up
// to the caller to ensure that key is greater than or equal to the lower bound.
func (i *singleLevelIterator) SeekPrefixGE(prefix, key []byte) (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
// Check prefix bloom filter.
if i.reader.tableFilter != nil {
var data block
data, i.err = i.reader.readFilter()
if i.err != nil {
i.data.invalidate()
return nil, nil
}
if !i.reader.tableFilter.mayContain(data, prefix) {
i.data.invalidate()
return nil, nil
}
}
if ikey, _ := i.index.SeekGE(key); ikey == nil {
i.data.invalidate()
return nil, nil
}
if !i.loadBlock() {
return nil, nil
}
if ikey, val := i.data.SeekGE(key); ikey != nil {
if i.blockUpper != nil && i.cmp(ikey.UserKey, i.blockUpper) >= 0 {
return nil, nil
}
return ikey, val
}
return i.skipForward()
}
// SeekLT implements internalIterator.SeekLT, as documented in the pebble
// package. Note that SeekLT only checks the lower bound. It is up to the
// caller to ensure that key is less than the upper bound.
func (i *singleLevelIterator) SeekLT(key []byte) (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.index.SeekGE(key); ikey == nil {
i.index.Last()
}
if !i.loadBlock() {
return nil, nil
}
if ikey, val := i.data.SeekLT(key); ikey != nil {
if i.blockLower != nil && i.cmp(ikey.UserKey, i.blockLower) < 0 {
return nil, nil
}
return ikey, val
}
// The index contains separator keys which may lie between
// user-keys. Consider the user-keys:
//
// complete
// ---- new block ---
// complexion
//
// If these two keys end one block and start the next, the index key may
// be chosen as "compleu". The SeekGE in the index block will then point
// us to the block containing "complexion". If this happens, we want the
// last key from the previous data block.
return i.skipBackward()
}
// First implements internalIterator.First, as documented in the pebble
// package. Note that First only checks the upper bound. It is up to the caller
// to ensure that key is greater than or equal to the lower bound (e.g. via a
// call to SeekGE(lower)).
func (i *singleLevelIterator) First() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.index.First(); ikey == nil {
i.data.invalidate()
return nil, nil
}
if !i.loadBlock() {
return nil, nil
}
if ikey, val := i.data.First(); ikey != nil {
if i.blockUpper != nil && i.cmp(ikey.UserKey, i.blockUpper) >= 0 {
return nil, nil
}
return ikey, val
}
return i.skipForward()
}
// Last implements internalIterator.Last, as documented in the pebble
// package. Note that Last only checks the lower bound. It is up to the caller
// to ensure that key is less than the upper bound (e.g. via a call to
// SeekLT(upper))
func (i *singleLevelIterator) Last() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.index.Last(); ikey == nil {
i.data.invalidate()
return nil, nil
}
if !i.loadBlock() {
return nil, nil
}
if ikey, val := i.data.Last(); ikey != nil {
if i.blockLower != nil && i.cmp(ikey.UserKey, i.blockLower) < 0 {
return nil, nil
}
return ikey, val
}
return i.skipBackward()
}
// Next implements internalIterator.Next, as documented in the pebble
// package.
// Note: compactionIterator.Next mirrors the implementation of Iterator.Next
// due to performance. Keep the two in sync.
func (i *singleLevelIterator) Next() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if key, val := i.data.Next(); key != nil {
if i.blockUpper != nil && i.cmp(key.UserKey, i.blockUpper) >= 0 {
return nil, nil
}
return key, val
}
return i.skipForward()
}
// Prev implements internalIterator.Prev, as documented in the pebble
// package.
func (i *singleLevelIterator) Prev() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if key, val := i.data.Prev(); key != nil {
if i.blockLower != nil && i.cmp(key.UserKey, i.blockLower) < 0 {
return nil, nil
}
return key, val
}
return i.skipBackward()
}
func (i *singleLevelIterator) skipForward() (*InternalKey, []byte) {
for {
if i.data.err != nil {
i.err = i.data.err
break
}
if key, _ := i.index.Next(); key == nil {
i.data.invalidate()
break
}
if i.loadBlock() {
if key, val := i.data.First(); key != nil {
if i.blockUpper != nil && i.cmp(key.UserKey, i.blockUpper) >= 0 {
return nil, nil
}
return key, val
}
}
}
return nil, nil
}
func (i *singleLevelIterator) skipBackward() (*InternalKey, []byte) {
for {
if i.data.err != nil {
i.err = i.data.err
break
}
if key, _ := i.index.Prev(); key == nil {
i.data.invalidate()
break
}
if i.loadBlock() {
key, val := i.data.Last()
if key == nil {
return nil, nil
}
if i.blockLower != nil && i.cmp(key.UserKey, i.blockLower) < 0 {
return nil, nil
}
return key, val
}
}
return nil, nil
}
// Returns true if the data block iterator points to a valid entry. If a
// positioning operation (e.g. SeekGE, SeekLT, Next, Prev, etc) returns (nil,
// nil) and valid() is true, the iterator has reached either the upper or lower
// bound.
func (i *singleLevelIterator) valid() bool {
return i.data.Valid()
}
// Error implements internalIterator.Error, as documented in the pebble
// package.
func (i *singleLevelIterator) Error() error {
if err := i.data.Error(); err != nil {
return err
}
return i.err
}
// SetCloseHook sets a function that will be called when the iterator is
// closed.
func (i *singleLevelIterator) SetCloseHook(fn func(i Iterator) error) {
i.closeHook = fn
}
func firstError(err0, err1 error) error {
if err0 != nil {
return err0
}
return err1
}
// Close implements internalIterator.Close, as documented in the pebble
// package.
func (i *singleLevelIterator) Close() error {
var err error
if i.closeHook != nil {
err = firstError(err, i.closeHook(i))
}
err = firstError(err, i.data.Close())
err = firstError(err, i.index.Close())
err = firstError(err, i.err)
*i = i.resetForReuse()
singleLevelIterPool.Put(i)
return err
}
// SetBounds implements internalIterator.SetBounds, as documented in the pebble
// package.
func (i *singleLevelIterator) SetBounds(lower, upper []byte) {
i.lower = lower
i.upper = upper
i.blockLower = nil
i.blockUpper = nil
}
// compactionIterator is similar to Iterator but it increments the number of
// bytes that have been iterated through.
type compactionIterator struct {
*singleLevelIterator
bytesIterated *uint64
prevOffset uint64
}
// compactionIterator implements the base.InternalIterator interface.
var _ base.InternalIterator = (*compactionIterator)(nil)
func (i *compactionIterator) SeekGE(key []byte) (*InternalKey, []byte) {
panic("pebble: SeekGE unimplemented")
}
func (i *compactionIterator) SeekPrefixGE(prefix, key []byte) (*InternalKey, []byte) {
panic("pebble: SeekPrefixGE unimplemented")
}
func (i *compactionIterator) SeekLT(key []byte) (*InternalKey, []byte) {
panic("pebble: SeekLT unimplemented")
}
func (i *compactionIterator) First() (*InternalKey, []byte) {
return i.skipForward(i.singleLevelIterator.First())
}
func (i *compactionIterator) Last() (*InternalKey, []byte) {
panic("pebble: Last unimplemented")
}
// Note: compactionIterator.Next mirrors the implementation of Iterator.Next
// due to performance. Keep the two in sync.
func (i *compactionIterator) Next() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
return i.skipForward(i.data.Next())
}
func (i *compactionIterator) Prev() (*InternalKey, []byte) {
panic("pebble: Prev unimplemented")
}
func (i *compactionIterator) skipForward(key *InternalKey, val []byte) (*InternalKey, []byte) {
if key == nil {
for {
if i.data.err != nil {
i.err = i.data.err
return nil, nil
}
if key, _ := i.index.Next(); key == nil {
break
}
if i.loadBlock() {
if key, val = i.data.First(); key != nil {
break
}
}
}
}
curOffset := i.recordOffset()
*i.bytesIterated += uint64(curOffset - i.prevOffset)
i.prevOffset = curOffset
return key, val
}
type twoLevelIterator struct {
singleLevelIterator
topLevelIndex blockIter
}
// twoLevelIterator implements the base.InternalIterator interface.
var _ base.InternalIterator = (*twoLevelIterator)(nil)
// loadIndex loads the index block at the current top level index position and
// leaves i.index unpositioned. If unsuccessful, it gets i.err to any error
// encountered, which may be nil if we have simply exhausted the entire table.
// This is used for two level indexes.
func (i *twoLevelIterator) loadIndex() bool {
if !i.topLevelIndex.Valid() {
i.err = i.topLevelIndex.err
i.index.offset = 0
i.index.restarts = 0
return false
}
h, n := decodeBlockHandle(i.topLevelIndex.Value())
if n == 0 || n != len(i.topLevelIndex.Value()) {
i.err = errors.New("pebble/table: corrupt top level index entry")
return false
}
indexBlock, err := i.reader.readBlock(h, nil /* transform */, false /* weak */)
if err != nil {
i.err = err
return false
}
i.err = i.index.initHandle(i.cmp, indexBlock, i.reader.Properties.GlobalSeqNum)
return i.err == nil
}
func (i *twoLevelIterator) Init(r *Reader, lower, upper []byte) error {
i.lower = lower
i.upper = upper
i.reader = r
i.err = r.err
if i.err == nil {
topLevelIndex, err := r.readIndex()
if i.err != nil {
i.err = err
return i.err
}
i.cmp = r.Compare
i.err = i.topLevelIndex.init(i.cmp, topLevelIndex, r.Properties.GlobalSeqNum)
}
return i.err
}
// SeekGE implements internalIterator.SeekGE, as documented in the pebble
// package. Note that SeekGE only checks the upper bound. It is up to the
// caller to ensure that key is greater than or equal to the lower bound.
func (i *twoLevelIterator) SeekGE(key []byte) (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.topLevelIndex.SeekGE(key); ikey == nil {
return nil, nil
}
if !i.loadIndex() {
return nil, nil
}
if ikey, val := i.singleLevelIterator.SeekGE(key); ikey != nil {
return ikey, val
}
return i.skipForward()
}
// SeekPrefixGE implements internalIterator.SeekPrefixGE, as documented in the
// pebble package. Note that SeekPrefixGE only checks the upper bound. It is up
// to the caller to ensure that key is greater than or equal to the lower bound.
func (i *twoLevelIterator) SeekPrefixGE(prefix, key []byte) (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.topLevelIndex.SeekGE(key); ikey == nil {
return nil, nil
}
if !i.loadIndex() {
return nil, nil
}
if ikey, val := i.singleLevelIterator.SeekPrefixGE(prefix, key); ikey != nil {
return ikey, val
}
return i.skipForward()
}
// SeekLT implements internalIterator.SeekLT, as documented in the pebble
// package. Note that SeekLT only checks the lower bound. It is up to the
// caller to ensure that key is less than the upper bound.
func (i *twoLevelIterator) SeekLT(key []byte) (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.topLevelIndex.SeekGE(key); ikey == nil {
if ikey, _ := i.topLevelIndex.Last(); ikey == nil {
return nil, nil
}
if !i.loadIndex() {
return nil, nil
}
return i.singleLevelIterator.Last()
}
if !i.loadIndex() {
return nil, nil
}
if ikey, val := i.singleLevelIterator.SeekLT(key); ikey != nil {
return ikey, val
}
return i.skipBackward()
}
// First implements internalIterator.First, as documented in the pebble
// package. Note that First only checks the upper bound. It is up to the caller
// to ensure that key is greater than or equal to the lower bound (e.g. via a
// call to SeekGE(lower)).
func (i *twoLevelIterator) First() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.topLevelIndex.First(); ikey == nil {
return nil, nil
}
if !i.loadIndex() {
return nil, nil
}
if ikey, val := i.singleLevelIterator.First(); ikey != nil {
return ikey, val
}
return i.skipForward()
}
// Last implements internalIterator.Last, as documented in the pebble
// package. Note that Last only checks the lower bound. It is up to the caller
// to ensure that key is less than the upper bound (e.g. via a call to
// SeekLT(upper))
func (i *twoLevelIterator) Last() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if ikey, _ := i.topLevelIndex.Last(); ikey == nil {
return nil, nil
}
if !i.loadIndex() {
return nil, nil
}
if ikey, val := i.singleLevelIterator.Last(); ikey != nil {
return ikey, val
}
return i.skipBackward()
}
// Next implements internalIterator.Next, as documented in the pebble
// package.
// Note: twoLevelCompactionIterator.Next mirrors the implementation of
// twoLevelIterator.Next due to performance. Keep the two in sync.
func (i *twoLevelIterator) Next() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if key, val := i.singleLevelIterator.Next(); key != nil {
return key, val
}
return i.skipForward()
}
// Prev implements internalIterator.Prev, as documented in the pebble
// package.
func (i *twoLevelIterator) Prev() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
if key, val := i.singleLevelIterator.Prev(); key != nil {
return key, val
}
return i.skipBackward()
}
func (i *twoLevelIterator) skipForward() (*InternalKey, []byte) {
for {
if i.index.err != nil {
i.err = i.index.err
break
}
if i.singleLevelIterator.valid() {
// The iterator is positioned at valid record in the current data block
// which implies the previous positioning call reached the upper bound.
return nil, nil
}
if ikey, _ := i.topLevelIndex.Next(); ikey == nil {
return nil, nil
}
if !i.loadIndex() {
return nil, nil
}
if ikey, val := i.singleLevelIterator.First(); ikey != nil {
return ikey, val
}
}
return nil, nil
}
func (i *twoLevelIterator) skipBackward() (*InternalKey, []byte) {
for {
if i.index.err != nil {
i.err = i.index.err
break
}
if i.singleLevelIterator.valid() {
// The iterator is positioned at valid record in the current data block
// which implies the previous positioning call reached the lower bound.
return nil, nil
}
if ikey, _ := i.topLevelIndex.Prev(); ikey == nil {
return nil, nil
}
if !i.loadIndex() {
return nil, nil
}
if ikey, val := i.singleLevelIterator.Last(); ikey != nil {
return ikey, val
}
}
return nil, nil
}
// Close implements internalIterator.Close, as documented in the pebble
// package.
func (i *twoLevelIterator) Close() error {
var err error
if i.closeHook != nil {
err = firstError(err, i.closeHook(i))
}
err = firstError(err, i.data.Close())
err = firstError(err, i.index.Close())
err = firstError(err, i.err)
*i = twoLevelIterator{
singleLevelIterator: i.singleLevelIterator.resetForReuse(),
topLevelIndex: i.topLevelIndex.resetForReuse(),
}
twoLevelIterPool.Put(i)
return err
}
// Note: twoLevelCompactionIterator and compactionIterator are very similar but
// were separated due to performance.
type twoLevelCompactionIterator struct {
*twoLevelIterator
bytesIterated *uint64
prevOffset uint64
}
// twoLevelCompactionIterator implements the base.InternalIterator interface.
var _ base.InternalIterator = (*twoLevelCompactionIterator)(nil)
func (i *twoLevelCompactionIterator) Close() error {
return i.twoLevelIterator.Close()
}
func (i *twoLevelCompactionIterator) SeekGE(key []byte) (*InternalKey, []byte) {
panic("pebble: SeekGE unimplemented")
}
func (i *twoLevelCompactionIterator) SeekPrefixGE(prefix, key []byte) (*InternalKey, []byte) {
panic("pebble: SeekPrefixGE unimplemented")
}
func (i *twoLevelCompactionIterator) SeekLT(key []byte) (*InternalKey, []byte) {
panic("pebble: SeekLT unimplemented")
}
func (i *twoLevelCompactionIterator) First() (*InternalKey, []byte) {
return i.skipForward(i.twoLevelIterator.First())
}
func (i *twoLevelCompactionIterator) Last() (*InternalKey, []byte) {
panic("pebble: Last unimplemented")
}
// Note: twoLevelCompactionIterator.Next mirrors the implementation of
// twoLevelIterator.Next due to performance. Keep the two in sync.
func (i *twoLevelCompactionIterator) Next() (*InternalKey, []byte) {
if i.err != nil {
return nil, nil
}
return i.skipForward(i.singleLevelIterator.Next())
}
func (i *twoLevelCompactionIterator) Prev() (*InternalKey, []byte) {
panic("pebble: Prev unimplemented")
}
func (i *twoLevelCompactionIterator) skipForward(
key *InternalKey, val []byte,
) (*InternalKey, []byte) {
if key == nil {
for {
if i.index.err != nil {
i.err = i.index.err
return nil, nil
}
if key, _ := i.topLevelIndex.Next(); key == nil {
break
}
if i.loadIndex() {
if key, val = i.singleLevelIterator.First(); key != nil {
break
}
}
}
}
curOffset := i.recordOffset()
*i.bytesIterated += uint64(curOffset - i.prevOffset)
i.prevOffset = curOffset
return key, val
}
type weakCachedBlock struct {
bh BlockHandle
mu sync.RWMutex
handle *cache.WeakHandle
}
type blockTransform func([]byte) ([]byte, error)
// ReaderOption provide an interface to do work on Reader while it is being
// opened.
type ReaderOption interface {
// readerApply is called on the reader during opening in order to set internal
// parameters.
readerApply(*Reader)
}
// Comparers is a map from comparer name to comparer. It is used for debugging
// tools which may be used on multiple databases configured with different
// comparers. Comparers implements the OpenOption interface and can be passed
// as a parameter to NewReader.
type Comparers map[string]*Comparer
func (c Comparers) readerApply(r *Reader) {
if r.Compare != nil || r.Properties.ComparerName == "" {
return
}
if comparer, ok := c[r.Properties.ComparerName]; ok {
r.Compare = comparer.Compare
r.split = comparer.Split
}
}
// Mergers is a map from merger name to merger. It is used for debugging tools
// which may be used on multiple databases configured with different
// mergers. Mergers implements the OpenOption interface and can be passed as
// a parameter to NewReader.
type Mergers map[string]*Merger
func (m Mergers) readerApply(r *Reader) {
if r.mergerOK || r.Properties.MergerName == "" {
return
}
_, r.mergerOK = m[r.Properties.MergerName]
}
// cacheOpts is a Reader open option for specifying the cache ID and sstable file
// number. If not specified, a unique cache ID will be used.
type cacheOpts struct {
cacheID uint64
fileNum uint64
}
// Marker function to indicate the option should be applied before reading the
// sstable properties.
func (c *cacheOpts) preApply() {}
func (c *cacheOpts) readerApply(r *Reader) {
if r.cacheID == 0 {
r.cacheID = c.cacheID
}
if r.fileNum == 0 {
r.fileNum = c.fileNum
}
}
func (c *cacheOpts) writerApply(w *Writer) {
if w.cacheID == 0 {
w.cacheID = c.cacheID
}
if w.fileNum == 0 {
w.fileNum = c.fileNum
}
}
// rawTombstonesOpt is a Reader open option for specifying that range
// tombstones returned by Reader.NewRangeDelIter() should not be
// fragmented. Used by debug tools to get a raw view of the tombstones
// contained in an sstable.
type rawTombstonesOpt struct{}
func (rawTombstonesOpt) preApply() {}
func (rawTombstonesOpt) readerApply(r *Reader) {
r.rawTombstones = true
}
func init() {