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).
|
2015-02-05 06:39:45 +01:00
|
|
|
|
2017-04-06 04:02:00 +02:00
|
|
|
#include "monitoring/instrumented_mutex.h"
|
|
|
|
#include "monitoring/perf_context_imp.h"
|
|
|
|
#include "monitoring/thread_status_util.h"
|
2019-05-30 20:21:38 +02:00
|
|
|
#include "test_util/sync_point.h"
|
2015-02-05 06:39:45 +01:00
|
|
|
|
|
|
|
namespace rocksdb {
|
2016-01-26 02:07:37 +01:00
|
|
|
namespace {
|
2018-05-17 21:46:23 +02:00
|
|
|
Statistics* stats_for_report(Env* env, Statistics* stats) {
|
|
|
|
if (env != nullptr && stats != nullptr &&
|
2019-03-01 19:39:00 +01:00
|
|
|
stats->get_stats_level() > kExceptTimeForMutex) {
|
2018-05-17 21:46:23 +02:00
|
|
|
return stats;
|
|
|
|
} else {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2016-01-26 02:07:37 +01:00
|
|
|
}
|
|
|
|
} // namespace
|
|
|
|
|
2015-02-05 06:39:45 +01:00
|
|
|
void InstrumentedMutex::Lock() {
|
2018-05-17 21:46:23 +02:00
|
|
|
PERF_CONDITIONAL_TIMER_FOR_MUTEX_GUARD(
|
|
|
|
db_mutex_lock_nanos, stats_code_ == DB_MUTEX_WAIT_MICROS,
|
|
|
|
stats_for_report(env_, stats_), stats_code_);
|
|
|
|
LockInternal();
|
2015-02-05 06:39:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void InstrumentedMutex::LockInternal() {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
ThreadStatusUtil::TEST_StateDelay(ThreadStatus::STATE_MUTEX_WAIT);
|
|
|
|
#endif
|
|
|
|
mutex_.Lock();
|
|
|
|
}
|
|
|
|
|
|
|
|
void InstrumentedCondVar::Wait() {
|
2018-05-17 21:46:23 +02:00
|
|
|
PERF_CONDITIONAL_TIMER_FOR_MUTEX_GUARD(
|
|
|
|
db_condition_wait_nanos, stats_code_ == DB_MUTEX_WAIT_MICROS,
|
|
|
|
stats_for_report(env_, stats_), stats_code_);
|
|
|
|
WaitInternal();
|
2015-02-05 06:39:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void InstrumentedCondVar::WaitInternal() {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
ThreadStatusUtil::TEST_StateDelay(ThreadStatus::STATE_MUTEX_WAIT);
|
|
|
|
#endif
|
|
|
|
cond_.Wait();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool InstrumentedCondVar::TimedWait(uint64_t abs_time_us) {
|
2018-05-17 21:46:23 +02:00
|
|
|
PERF_CONDITIONAL_TIMER_FOR_MUTEX_GUARD(
|
|
|
|
db_condition_wait_nanos, stats_code_ == DB_MUTEX_WAIT_MICROS,
|
|
|
|
stats_for_report(env_, stats_), stats_code_);
|
|
|
|
return TimedWaitInternal(abs_time_us);
|
2015-02-05 06:39:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
bool InstrumentedCondVar::TimedWaitInternal(uint64_t abs_time_us) {
|
|
|
|
#ifndef NDEBUG
|
|
|
|
ThreadStatusUtil::TEST_StateDelay(ThreadStatus::STATE_MUTEX_WAIT);
|
|
|
|
#endif
|
2016-10-18 07:22:48 +02:00
|
|
|
|
|
|
|
TEST_SYNC_POINT_CALLBACK("InstrumentedCondVar::TimedWaitInternal",
|
|
|
|
&abs_time_us);
|
|
|
|
|
2015-02-05 06:39:45 +01:00
|
|
|
return cond_.TimedWait(abs_time_us);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace rocksdb
|