2011-03-19 06:37:00 +08: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.
|
|
|
|
|
|
|
|
#ifndef STORAGE_LEVELDB_DB_DB_ITER_H_
|
|
|
|
#define STORAGE_LEVELDB_DB_DB_ITER_H_
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2011-03-31 02:35:40 +08:00
|
|
|
#include "leveldb/db.h"
|
2011-03-19 06:37:00 +08:00
|
|
|
#include "db/dbformat.h"
|
|
|
|
|
|
|
|
namespace leveldb {
|
|
|
|
|
2013-08-22 02:12:47 +08:00
|
|
|
class DBImpl;
|
|
|
|
|
2011-03-19 06:37:00 +08:00
|
|
|
// Return a new iterator that converts internal keys (yielded by
|
|
|
|
// "*internal_iter") that were live at the specified "sequence" number
|
|
|
|
// into appropriate user keys.
|
2018-03-13 00:14:44 +08:00
|
|
|
Iterator* NewDBIterator(DBImpl* db,
|
|
|
|
const Comparator* user_key_comparator,
|
|
|
|
Iterator* internal_iter,
|
|
|
|
SequenceNumber sequence,
|
|
|
|
uint32_t seed);
|
2011-03-19 06:37:00 +08:00
|
|
|
|
2011-11-01 01:22:06 +08:00
|
|
|
} // namespace leveldb
|
2011-03-19 06:37:00 +08:00
|
|
|
|
|
|
|
#endif // STORAGE_LEVELDB_DB_DB_ITER_H_
|