| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148 |
- // Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
- // This source code is licensed under both the GPLv2 (found in the
- // COPYING file in the root directory) and Apache 2.0 License
- // (found in the LICENSE.Apache file in the root directory).
- //
- // Copyright (c) 2011 The LevelDB Authors. All rights reserved.
- // Use of this source code is governed by a BSD-style license that can be
- // found in the LICENSE file. See the AUTHORS file for names of contributors.
- #pragma once
- #include <stdint.h>
- #include <string>
- #include "db/db_impl/db_impl.h"
- #include "db/db_iter.h"
- #include "db/range_del_aggregator.h"
- #include "memory/arena.h"
- #include "options/cf_options.h"
- #include "rocksdb/db.h"
- #include "rocksdb/iterator.h"
- namespace ROCKSDB_NAMESPACE {
- class Arena;
- class Version;
- // A wrapper iterator which wraps DB Iterator and the arena, with which the DB
- // iterator is supposed to be allocated. This class is used as an entry point of
- // a iterator hierarchy whose memory can be allocated inline. In that way,
- // accessing the iterator tree can be more cache friendly. It is also faster
- // to allocate.
- // When using the class's Iterator interface, the behavior is exactly
- // the same as the inner DBIter.
- class ArenaWrappedDBIter : public Iterator {
- public:
- ~ArenaWrappedDBIter() override {
- if (db_iter_ != nullptr) {
- db_iter_->~DBIter();
- } else {
- assert(false);
- }
- }
- // Get the arena to be used to allocate memory for DBIter to be wrapped,
- // as well as child iterators in it.
- virtual Arena* GetArena() { return &arena_; }
- const ReadOptions& GetReadOptions() { return read_options_; }
- // Set the internal iterator wrapped inside the DB Iterator. Usually it is
- // a merging iterator.
- virtual void SetIterUnderDBIter(InternalIterator* iter) {
- db_iter_->SetIter(iter);
- }
- void SetMemtableRangetombstoneIter(
- std::unique_ptr<TruncatedRangeDelIterator>* iter) {
- memtable_range_tombstone_iter_ = iter;
- }
- bool Valid() const override { return db_iter_->Valid(); }
- void SeekToFirst() override { db_iter_->SeekToFirst(); }
- void SeekToLast() override { db_iter_->SeekToLast(); }
- // 'target' does not contain timestamp, even if user timestamp feature is
- // enabled.
- void Seek(const Slice& target) override {
- MaybeAutoRefresh(true /* is_seek */, DBIter::kForward);
- db_iter_->Seek(target);
- }
- void SeekForPrev(const Slice& target) override {
- MaybeAutoRefresh(true /* is_seek */, DBIter::kReverse);
- db_iter_->SeekForPrev(target);
- }
- void Next() override {
- db_iter_->Next();
- MaybeAutoRefresh(false /* is_seek */, DBIter::kForward);
- }
- void Prev() override {
- db_iter_->Prev();
- MaybeAutoRefresh(false /* is_seek */, DBIter::kReverse);
- }
- Slice key() const override { return db_iter_->key(); }
- Slice value() const override { return db_iter_->value(); }
- const WideColumns& columns() const override { return db_iter_->columns(); }
- Status status() const override { return db_iter_->status(); }
- Slice timestamp() const override { return db_iter_->timestamp(); }
- bool IsBlob() const { return db_iter_->IsBlob(); }
- Status GetProperty(std::string prop_name, std::string* prop) override;
- Status Refresh() override;
- Status Refresh(const Snapshot*) override;
- bool PrepareValue() override { return db_iter_->PrepareValue(); }
- void Prepare(const MultiScanArgs& scan_opts) override {
- db_iter_->Prepare(scan_opts);
- }
- // FIXME: we could just pass SV in for mutable cf option, version and version
- // number, but this is used by SstFileReader which does not have a SV.
- void Init(Env* env, const ReadOptions& read_options,
- const ImmutableOptions& ioptions,
- const MutableCFOptions& mutable_cf_options, const Version* version,
- const SequenceNumber& sequence, uint64_t version_number,
- ReadCallback* read_callback, ColumnFamilyHandleImpl* cfh,
- bool expose_blob_index, bool allow_refresh,
- ReadOnlyMemTable* active_mem);
- // Store some parameters so we can refresh the iterator at a later point
- // with these same params
- void StoreRefreshInfo(ColumnFamilyHandleImpl* cfh,
- ReadCallback* read_callback, bool expose_blob_index) {
- cfh_ = cfh;
- read_callback_ = read_callback;
- expose_blob_index_ = expose_blob_index;
- }
- private:
- void DoRefresh(const Snapshot* snapshot, uint64_t sv_number);
- void MaybeAutoRefresh(bool is_seek, DBIter::Direction direction);
- DBIter* db_iter_ = nullptr;
- Arena arena_;
- uint64_t sv_number_;
- ColumnFamilyHandleImpl* cfh_ = nullptr;
- ReadOptions read_options_;
- ReadCallback* read_callback_;
- bool expose_blob_index_ = false;
- bool allow_refresh_ = true;
- bool allow_mark_memtable_for_flush_ = true;
- // If this is nullptr, it means the mutable memtable does not contain range
- // tombstone when added under this DBIter.
- std::unique_ptr<TruncatedRangeDelIterator>* memtable_range_tombstone_iter_ =
- nullptr;
- };
- ArenaWrappedDBIter* NewArenaWrappedDbIterator(
- Env* env, const ReadOptions& read_options, ColumnFamilyHandleImpl* cfh,
- SuperVersion* sv, const SequenceNumber& sequence,
- ReadCallback* read_callback, DBImpl* db_impl, bool expose_blob_index,
- bool allow_refresh, bool allow_mark_memtable_for_flush);
- } // namespace ROCKSDB_NAMESPACE
|