2013-10-29 01:54:09 +01:00
|
|
|
// Copyright (c) 2013, Facebook, Inc. All rights reserved.
|
|
|
|
// This source code is licensed under the BSD-style license found in the
|
|
|
|
// LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
// of patent rights can be found in the PATENTS file in the same 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>
|
|
|
|
|
2014-05-15 23:09:03 +02:00
|
|
|
#include <memory>
|
|
|
|
#include <string>
|
|
|
|
|
2013-11-20 07:00:48 +01:00
|
|
|
#include "rocksdb/flush_block_policy.h"
|
2013-10-29 01:54:09 +01:00
|
|
|
#include "rocksdb/table.h"
|
2014-08-25 23:22:05 +02:00
|
|
|
#include "db/dbformat.h"
|
2013-10-29 01:54:09 +01:00
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
struct EnvOptions;
|
|
|
|
|
|
|
|
using std::unique_ptr;
|
|
|
|
class BlockBasedTableBuilder;
|
|
|
|
|
2014-01-28 06:58:46 +01:00
|
|
|
class BlockBasedTableFactory : public TableFactory {
|
2014-01-24 19:57:15 +01:00
|
|
|
public:
|
2014-01-28 06:58:46 +01:00
|
|
|
explicit BlockBasedTableFactory(
|
2014-03-01 01:39:27 +01:00
|
|
|
const BlockBasedTableOptions& table_options = BlockBasedTableOptions());
|
2013-11-21 03:42:12 +01:00
|
|
|
|
2014-01-24 19:57:15 +01:00
|
|
|
~BlockBasedTableFactory() {}
|
2013-11-20 07:00:48 +01:00
|
|
|
|
2014-01-24 19:57:15 +01:00
|
|
|
const char* Name() const override { return "BlockBasedTable"; }
|
2013-11-20 07:00:48 +01:00
|
|
|
|
2014-09-05 01:18:36 +02:00
|
|
|
Status NewTableReader(
|
|
|
|
const ImmutableCFOptions& ioptions, const EnvOptions& soptions,
|
|
|
|
const InternalKeyComparator& internal_comparator,
|
|
|
|
unique_ptr<RandomAccessFile>&& file, uint64_t file_size,
|
|
|
|
unique_ptr<TableReader>* table_reader) const override;
|
2013-10-29 01:54:09 +01:00
|
|
|
|
2014-01-27 22:53:22 +01:00
|
|
|
TableBuilder* NewTableBuilder(
|
2014-09-05 01:18:36 +02:00
|
|
|
const ImmutableCFOptions& ioptions,
|
|
|
|
const InternalKeyComparator& internal_comparator,
|
|
|
|
WritableFile* file, const CompressionType compression_type,
|
|
|
|
const CompressionOptions& compression_opts) const override;
|
2013-11-20 07:00:48 +01:00
|
|
|
|
2014-08-21 00:53:39 +02:00
|
|
|
// Sanitizes the specified DB Options.
|
2014-09-02 23:42:23 +02:00
|
|
|
Status SanitizeDBOptions(const DBOptions* db_opts) const override {
|
2014-08-21 00:53:39 +02:00
|
|
|
return Status::OK();
|
|
|
|
}
|
|
|
|
|
2014-08-25 23:24:09 +02:00
|
|
|
std::string GetPrintableTableOptions() const override;
|
|
|
|
|
2013-11-20 07:00:48 +01:00
|
|
|
private:
|
2014-01-24 19:57:15 +01:00
|
|
|
BlockBasedTableOptions table_options_;
|
2013-10-29 01:54:09 +01:00
|
|
|
};
|
|
|
|
|
2014-05-15 23:09:03 +02:00
|
|
|
extern const std::string kHashIndexPrefixesBlock;
|
|
|
|
extern const std::string kHashIndexPrefixesMetadataBlock;
|
|
|
|
|
2013-10-29 01:54:09 +01:00
|
|
|
} // namespace rocksdb
|