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
|
|
|
|
2015-09-11 20:36:33 +02:00
|
|
|
Status NewTableReader(const TableReaderOptions& table_reader_options,
|
Move rate_limiter, write buffering, most perf context instrumentation and most random kill out of Env
Summary: We want to keep Env a think layer for better portability. Less platform dependent codes should be moved out of Env. In this patch, I create a wrapper of file readers and writers, and put rate limiting, write buffering, as well as most perf context instrumentation and random kill out of Env. It will make it easier to maintain multiple Env in the future.
Test Plan: Run all existing unit tests.
Reviewers: anthony, kradhakrishnan, IslamAbdelRahman, yhchiang, igor
Reviewed By: igor
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D42321
2015-07-18 01:16:11 +02:00
|
|
|
unique_ptr<RandomAccessFileReader>&& file,
|
|
|
|
uint64_t file_size,
|
2015-09-11 20:36:33 +02:00
|
|
|
unique_ptr<TableReader>* table_reader) const override;
|
2015-02-26 01:34:26 +01:00
|
|
|
|
|
|
|
// This is a variant of virtual member function NewTableReader function with
|
|
|
|
// added capability to disable pre-fetching of blocks on BlockBasedTable::Open
|
2015-09-11 20:36:33 +02:00
|
|
|
Status NewTableReader(const TableReaderOptions& table_reader_options,
|
Move rate_limiter, write buffering, most perf context instrumentation and most random kill out of Env
Summary: We want to keep Env a think layer for better portability. Less platform dependent codes should be moved out of Env. In this patch, I create a wrapper of file readers and writers, and put rate limiting, write buffering, as well as most perf context instrumentation and random kill out of Env. It will make it easier to maintain multiple Env in the future.
Test Plan: Run all existing unit tests.
Reviewers: anthony, kradhakrishnan, IslamAbdelRahman, yhchiang, igor
Reviewed By: igor
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D42321
2015-07-18 01:16:11 +02:00
|
|
|
unique_ptr<RandomAccessFileReader>&& file,
|
|
|
|
uint64_t file_size,
|
2015-02-26 01:34:26 +01:00
|
|
|
unique_ptr<TableReader>* table_reader,
|
|
|
|
bool prefetch_index_and_filter) const;
|
2013-10-29 01:54:09 +01:00
|
|
|
|
2014-01-27 22:53:22 +01:00
|
|
|
TableBuilder* NewTableBuilder(
|
A new call back to TablePropertiesCollector to allow users know the entry is add, delete or merge
Summary:
Currently users have no idea a key is add, delete or merge from TablePropertiesCollector call back. Add a new function to add it.
Also refactor the codes so that
(1) make table property collector and internal table property collector two separate data structures with the later one now exposed
(2) table builders only receive internal table properties
Test Plan: Add cases in table_properties_collector_test to cover both of old and new ways of using TablePropertiesCollector.
Reviewers: yhchiang, igor.sugak, rven, igor
Reviewed By: rven, igor
Subscribers: meyering, yoshinorim, maykov, leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D35373
2015-04-06 19:04:30 +02:00
|
|
|
const TableBuilderOptions& table_builder_options,
|
Move rate_limiter, write buffering, most perf context instrumentation and most random kill out of Env
Summary: We want to keep Env a think layer for better portability. Less platform dependent codes should be moved out of Env. In this patch, I create a wrapper of file readers and writers, and put rate limiting, write buffering, as well as most perf context instrumentation and random kill out of Env. It will make it easier to maintain multiple Env in the future.
Test Plan: Run all existing unit tests.
Reviewers: anthony, kradhakrishnan, IslamAbdelRahman, yhchiang, igor
Reviewed By: igor
Subscribers: leveldb, dhruba
Differential Revision: https://reviews.facebook.net/D42321
2015-07-18 01:16:11 +02:00
|
|
|
WritableFileWriter* file) const override;
|
2013-11-20 07:00:48 +01:00
|
|
|
|
2014-08-21 00:53:39 +02:00
|
|
|
// Sanitizes the specified DB Options.
|
2014-10-18 06:18:36 +02:00
|
|
|
Status SanitizeOptions(const DBOptions& db_opts,
|
|
|
|
const ColumnFamilyOptions& cf_opts) const override;
|
2014-08-21 00:53:39 +02:00
|
|
|
|
2014-08-25 23:24:09 +02:00
|
|
|
std::string GetPrintableTableOptions() const override;
|
|
|
|
|
2014-11-21 04:24:39 +01:00
|
|
|
const BlockBasedTableOptions& GetTableOptions() const;
|
|
|
|
|
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;
|
2015-02-05 02:03:57 +01:00
|
|
|
extern const std::string kPropTrue;
|
|
|
|
extern const std::string kPropFalse;
|
2014-05-15 23:09:03 +02:00
|
|
|
|
2013-10-29 01:54:09 +01:00
|
|
|
} // namespace rocksdb
|