2018-11-27 21:59:27 +01:00
|
|
|
// 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).
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
|
|
|
#include "rocksdb/iterator.h"
|
2018-12-13 23:12:02 +01:00
|
|
|
#include "rocksdb/options.h"
|
|
|
|
#include "rocksdb/slice.h"
|
2018-11-27 21:59:27 +01:00
|
|
|
#include "rocksdb/table_properties.h"
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2018-11-27 21:59:27 +01:00
|
|
|
|
|
|
|
// SstFileReader is used to read sst files that are generated by DB or
|
|
|
|
// SstFileWriter.
|
|
|
|
class SstFileReader {
|
|
|
|
public:
|
|
|
|
SstFileReader(const Options& options);
|
|
|
|
|
|
|
|
~SstFileReader();
|
|
|
|
|
|
|
|
// Prepares to read from the file located at "file_path".
|
|
|
|
Status Open(const std::string& file_path);
|
|
|
|
|
|
|
|
// Returns a new iterator over the table contents.
|
|
|
|
// Most read options provide the same control as we read from DB.
|
|
|
|
// If "snapshot" is nullptr, the iterator returns only the latest keys.
|
|
|
|
Iterator* NewIterator(const ReadOptions& options);
|
|
|
|
|
|
|
|
std::shared_ptr<const TableProperties> GetTableProperties() const;
|
|
|
|
|
|
|
|
// Verifies whether there is corruption in this table.
|
2019-08-17 01:40:09 +02:00
|
|
|
Status VerifyChecksum(const ReadOptions& /*read_options*/);
|
|
|
|
|
|
|
|
Status VerifyChecksum() { return VerifyChecksum(ReadOptions()); }
|
2018-11-27 21:59:27 +01:00
|
|
|
|
|
|
|
private:
|
|
|
|
struct Rep;
|
|
|
|
std::unique_ptr<Rep> rep_;
|
|
|
|
};
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
2018-11-27 21:59:27 +01:00
|
|
|
|
|
|
|
#endif // !ROCKSDB_LITE
|