2019-04-18 19:51:19 +02:00
|
|
|
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
2014-06-17 05:06:18 +02: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.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
|
2014-08-25 23:24:09 +02:00
|
|
|
#include <string>
|
2014-06-17 05:06:18 +02:00
|
|
|
#include "rocksdb/options.h"
|
|
|
|
#include "rocksdb/table.h"
|
|
|
|
|
|
|
|
namespace rocksdb {
|
|
|
|
|
|
|
|
struct EnvOptions;
|
|
|
|
|
|
|
|
class Status;
|
|
|
|
class RandomAccessFile;
|
|
|
|
class WritableFile;
|
|
|
|
class Table;
|
|
|
|
class TableBuilder;
|
|
|
|
|
|
|
|
class AdaptiveTableFactory : public TableFactory {
|
|
|
|
public:
|
|
|
|
~AdaptiveTableFactory() {}
|
|
|
|
|
|
|
|
explicit AdaptiveTableFactory(
|
2014-06-18 07:04:37 +02:00
|
|
|
std::shared_ptr<TableFactory> table_factory_to_write,
|
2014-06-17 05:06:18 +02:00
|
|
|
std::shared_ptr<TableFactory> block_based_table_factory,
|
2014-08-12 05:21:07 +02:00
|
|
|
std::shared_ptr<TableFactory> plain_table_factory,
|
|
|
|
std::shared_ptr<TableFactory> cuckoo_table_factory);
|
2014-09-05 01:18:36 +02:00
|
|
|
|
2014-06-17 05:06:18 +02:00
|
|
|
const char* Name() const override { return "AdaptiveTableFactory"; }
|
2014-09-05 01:18:36 +02:00
|
|
|
|
2016-07-20 20:23:31 +02:00
|
|
|
Status NewTableReader(
|
|
|
|
const TableReaderOptions& table_reader_options,
|
2018-11-09 20:17:34 +01:00
|
|
|
std::unique_ptr<RandomAccessFileReader>&& file, uint64_t file_size,
|
|
|
|
std::unique_ptr<TableReader>* table,
|
2016-07-20 20:23:31 +02:00
|
|
|
bool prefetch_index_and_filter_in_cache = true) const override;
|
2014-09-05 01:18:36 +02:00
|
|
|
|
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
|
|
|
TableBuilder* NewTableBuilder(
|
|
|
|
const TableBuilderOptions& table_builder_options,
|
2015-10-09 01:57:35 +02:00
|
|
|
uint32_t column_family_id, WritableFileWriter* file) const override;
|
2014-06-17 05:06:18 +02:00
|
|
|
|
2014-08-21 00:53:39 +02:00
|
|
|
// Sanitizes the specified DB Options.
|
2018-03-05 22:08:17 +01:00
|
|
|
Status SanitizeOptions(
|
|
|
|
const DBOptions& /*db_opts*/,
|
|
|
|
const ColumnFamilyOptions& /*cf_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;
|
2014-08-21 00:53:39 +02:00
|
|
|
|
2014-06-17 05:06:18 +02:00
|
|
|
private:
|
2014-06-18 07:04:37 +02:00
|
|
|
std::shared_ptr<TableFactory> table_factory_to_write_;
|
2014-06-17 05:06:18 +02:00
|
|
|
std::shared_ptr<TableFactory> block_based_table_factory_;
|
|
|
|
std::shared_ptr<TableFactory> plain_table_factory_;
|
2014-08-12 05:21:07 +02:00
|
|
|
std::shared_ptr<TableFactory> cuckoo_table_factory_;
|
2014-06-17 05:06:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace rocksdb
|
|
|
|
#endif // ROCKSDB_LITE
|