4cbc19d2a1
Summary: The methods in convenience.h are used to compare/convert objects to/from strings. There is a mishmash of parameters in use here with more needed in the future. This PR replaces those parameters with a single structure. Pull Request resolved: https://github.com/facebook/rocksdb/pull/6389 Reviewed By: siying Differential Revision: D21163707 Pulled By: zhichao-cao fbshipit-source-id: f807b4cc7e2b0af3871536b69546b2604dfa81bd
40 lines
1.2 KiB
C++
40 lines
1.2 KiB
C++
// 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).
|
|
|
|
#ifndef ROCKSDB_LITE
|
|
|
|
#include "options/options_sanity_check.h"
|
|
|
|
namespace ROCKSDB_NAMESPACE {
|
|
|
|
namespace {
|
|
ConfigOptions::SanityLevel SanityCheckLevelHelper(
|
|
const std::unordered_map<std::string, ConfigOptions::SanityLevel>& smap,
|
|
const std::string& name) {
|
|
auto iter = smap.find(name);
|
|
return iter != smap.end() ? iter->second
|
|
: ConfigOptions::kSanityLevelExactMatch;
|
|
}
|
|
}
|
|
|
|
ConfigOptions::SanityLevel DBOptionSanityCheckLevel(
|
|
const std::string& option_name) {
|
|
return SanityCheckLevelHelper(sanity_level_db_options, option_name);
|
|
}
|
|
|
|
ConfigOptions::SanityLevel CFOptionSanityCheckLevel(
|
|
const std::string& option_name) {
|
|
return SanityCheckLevelHelper(sanity_level_cf_options, option_name);
|
|
}
|
|
|
|
ConfigOptions::SanityLevel BBTOptionSanityCheckLevel(
|
|
const std::string& option_name) {
|
|
return SanityCheckLevelHelper(sanity_level_bbt_options, option_name);
|
|
}
|
|
|
|
} // namespace ROCKSDB_NAMESPACE
|
|
|
|
#endif // !ROCKSDB_LITE
|