1973fcba11
Summary: In order to support old-style regex function registration, restored the original "Register<T>(string, Factory)" method using regular expressions. The PatternEntry methods were left in place but renamed to AddFactory. The goal is to allow for the deprecation of the original regex Registry method in an upcoming release. Added modes to the PatternEntry kMatchZeroOrMore and kMatchAtLeastOne to match * or +, respectively (kMatchAtLeastOne was the original behavior). Pull Request resolved: https://github.com/facebook/rocksdb/pull/9362 Reviewed By: pdillinger Differential Revision: D33432562 Pulled By: mrambacher fbshipit-source-id: ed88ab3f9a2ad0d525c7bd1692873f9bb3209d02
66 lines
2.4 KiB
C++
66 lines
2.4 KiB
C++
// Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
|
|
// 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.
|
|
|
|
#include <mutex>
|
|
|
|
#include "rocksdb/convenience.h"
|
|
#include "rocksdb/table.h"
|
|
#include "rocksdb/utilities/customizable_util.h"
|
|
#include "rocksdb/utilities/object_registry.h"
|
|
#include "table/block_based/block_based_table_factory.h"
|
|
#include "table/cuckoo/cuckoo_table_factory.h"
|
|
#include "table/plain/plain_table_factory.h"
|
|
|
|
namespace ROCKSDB_NAMESPACE {
|
|
|
|
static void RegisterTableFactories(const std::string& /*arg*/) {
|
|
#ifndef ROCKSDB_LITE
|
|
static std::once_flag loaded;
|
|
std::call_once(loaded, []() {
|
|
auto library = ObjectLibrary::Default();
|
|
library->AddFactory<TableFactory>(
|
|
TableFactory::kBlockBasedTableName(),
|
|
[](const std::string& /*uri*/, std::unique_ptr<TableFactory>* guard,
|
|
std::string* /* errmsg */) {
|
|
guard->reset(new BlockBasedTableFactory());
|
|
return guard->get();
|
|
});
|
|
library->AddFactory<TableFactory>(
|
|
TableFactory::kPlainTableName(),
|
|
[](const std::string& /*uri*/, std::unique_ptr<TableFactory>* guard,
|
|
std::string* /* errmsg */) {
|
|
guard->reset(new PlainTableFactory());
|
|
return guard->get();
|
|
});
|
|
library->AddFactory<TableFactory>(
|
|
TableFactory::kCuckooTableName(),
|
|
[](const std::string& /*uri*/, std::unique_ptr<TableFactory>* guard,
|
|
std::string* /* errmsg */) {
|
|
guard->reset(new CuckooTableFactory());
|
|
return guard->get();
|
|
});
|
|
});
|
|
#endif // ROCKSDB_LITE
|
|
}
|
|
|
|
static bool LoadFactory(const std::string& name,
|
|
std::shared_ptr<TableFactory>* factory) {
|
|
if (name == TableFactory::kBlockBasedTableName()) {
|
|
factory->reset(new BlockBasedTableFactory());
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
Status TableFactory::CreateFromString(const ConfigOptions& config_options,
|
|
const std::string& value,
|
|
std::shared_ptr<TableFactory>* factory) {
|
|
RegisterTableFactories("");
|
|
return LoadSharedObject<TableFactory>(config_options, value, LoadFactory,
|
|
factory);
|
|
}
|
|
} // namespace ROCKSDB_NAMESPACE
|