2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// 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).
|
2013-10-16 23:59:46 +02:00
|
|
|
//
|
2011-03-18 23:37:00 +01:00
|
|
|
// 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.
|
|
|
|
|
2013-10-05 07:32:05 +02:00
|
|
|
#pragma once
|
2013-08-23 17:38:13 +02:00
|
|
|
#include "rocksdb/iterator.h"
|
|
|
|
#include "rocksdb/env.h"
|
2014-04-25 21:22:23 +02:00
|
|
|
#include "table/iterator_wrapper.h"
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
namespace rocksdb {
|
2011-03-18 23:37:00 +01:00
|
|
|
|
|
|
|
struct ReadOptions;
|
2014-01-27 22:53:22 +01:00
|
|
|
class InternalKeyComparator;
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2018-04-16 02:19:57 +02:00
|
|
|
// TwoLevelIteratorState expects iterators are not created using the arena
|
2014-04-25 21:22:23 +02:00
|
|
|
struct TwoLevelIteratorState {
|
2018-02-13 01:57:56 +01:00
|
|
|
TwoLevelIteratorState() {}
|
2014-04-25 21:22:23 +02:00
|
|
|
|
|
|
|
virtual ~TwoLevelIteratorState() {}
|
2015-10-13 00:06:38 +02:00
|
|
|
virtual InternalIterator* NewSecondaryIterator(const Slice& handle) = 0;
|
2014-04-25 21:22:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-03-18 23:37:00 +01:00
|
|
|
// Return a new two level iterator. A two-level iterator contains an
|
|
|
|
// index iterator whose values point to a sequence of blocks where
|
|
|
|
// each block is itself a sequence of key,value pairs. The returned
|
|
|
|
// two-level iterator yields the concatenation of all key/value pairs
|
|
|
|
// in the sequence of blocks. Takes ownership of "index_iter" and
|
|
|
|
// will delete it when no longer needed.
|
|
|
|
//
|
|
|
|
// Uses a supplied function to convert an index_iter value into
|
|
|
|
// an iterator over the contents of the corresponding block.
|
2018-04-16 02:19:57 +02:00
|
|
|
// Note: this function expects first_level_iter was not created using the arena
|
2015-10-13 00:06:38 +02:00
|
|
|
extern InternalIterator* NewTwoLevelIterator(
|
2018-02-13 01:57:56 +01:00
|
|
|
TwoLevelIteratorState* state, InternalIterator* first_level_iter);
|
2011-03-18 23:37:00 +01:00
|
|
|
|
2013-10-04 06:49:15 +02:00
|
|
|
} // namespace rocksdb
|