2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// 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).
|
2014-11-20 19:49:32 +01:00
|
|
|
|
|
|
|
#include <mutex>
|
|
|
|
|
|
|
|
#include "db/column_family.h"
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "monitoring/thread_status_updater.h"
|
2020-07-03 04:24:25 +02:00
|
|
|
#include "util/cast_util.h"
|
2014-11-20 19:49:32 +01:00
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2015-01-13 09:04:08 +01:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2016-12-14 03:22:00 +01:00
|
|
|
#ifdef ROCKSDB_USING_THREAD_STATUS
|
2014-12-22 21:20:17 +01:00
|
|
|
void ThreadStatusUpdater::TEST_VerifyColumnFamilyInfoMap(
|
2018-04-13 02:55:14 +02:00
|
|
|
const std::vector<ColumnFamilyHandle*>& handles, bool check_exist) {
|
2014-11-20 19:49:32 +01:00
|
|
|
std::unique_lock<std::mutex> lock(thread_list_mutex_);
|
2014-11-21 06:13:18 +01:00
|
|
|
if (check_exist) {
|
|
|
|
assert(cf_info_map_.size() == handles.size());
|
|
|
|
}
|
2014-11-20 19:49:32 +01:00
|
|
|
for (auto* handle : handles) {
|
2020-07-03 04:24:25 +02:00
|
|
|
auto* cfd = static_cast_with_check<ColumnFamilyHandleImpl>(handle)->cfd();
|
2018-02-02 21:14:42 +01:00
|
|
|
auto iter __attribute__((__unused__)) = cf_info_map_.find(cfd);
|
2014-11-21 06:13:18 +01:00
|
|
|
if (check_exist) {
|
|
|
|
assert(iter != cf_info_map_.end());
|
2017-09-28 23:22:06 +02:00
|
|
|
assert(iter->second.cf_name == cfd->GetName());
|
2014-11-21 06:13:18 +01:00
|
|
|
} else {
|
|
|
|
assert(iter == cf_info_map_.end());
|
|
|
|
}
|
2014-11-20 19:49:32 +01:00
|
|
|
}
|
|
|
|
}
|
2015-01-13 09:04:08 +01:00
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
void ThreadStatusUpdater::TEST_VerifyColumnFamilyInfoMap(
|
2018-04-13 02:55:14 +02:00
|
|
|
const std::vector<ColumnFamilyHandle*>& /*handles*/, bool /*check_exist*/) {
|
2015-01-13 09:04:08 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 19:49:32 +01:00
|
|
|
#endif // ROCKSDB_USING_THREAD_STATUS
|
2015-01-13 09:04:08 +01:00
|
|
|
#endif // !NDEBUG
|
|
|
|
|
2020-02-20 21:07:53 +01:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|