2016-02-09 23:12:00 +00:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-15 23:03:42 +00: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-06-02 09:07:58 +00:00
|
|
|
//
|
|
|
|
#pragma once
|
2017-04-06 02:02:00 +00:00
|
|
|
#include "monitoring/perf_level_imp.h"
|
2021-01-26 06:07:26 +00:00
|
|
|
#include "monitoring/statistics.h"
|
|
|
|
#include "rocksdb/system_clock.h"
|
2015-06-02 09:07:58 +00:00
|
|
|
|
2020-02-20 20:07:53 +00:00
|
|
|
namespace ROCKSDB_NAMESPACE {
|
2015-06-02 09:07:58 +00:00
|
|
|
|
|
|
|
class PerfStepTimer {
|
|
|
|
public:
|
2018-12-20 20:00:40 +00:00
|
|
|
explicit PerfStepTimer(
|
2021-01-26 06:07:26 +00:00
|
|
|
uint64_t* metric, const std::shared_ptr<SystemClock>& clock = nullptr,
|
|
|
|
bool use_cpu_time = false,
|
2018-12-20 20:00:40 +00:00
|
|
|
PerfLevel enable_level = PerfLevel::kEnableTimeExceptForMutex,
|
|
|
|
Statistics* statistics = nullptr, uint32_t ticker_type = 0)
|
|
|
|
: perf_counter_enabled_(perf_level >= enable_level),
|
|
|
|
use_cpu_time_(use_cpu_time),
|
2021-01-26 06:07:26 +00:00
|
|
|
clock_((perf_counter_enabled_ || statistics != nullptr)
|
|
|
|
? ((clock.get() != nullptr) ? clock : SystemClock::Default())
|
|
|
|
: nullptr),
|
2016-01-21 21:55:56 +00:00
|
|
|
start_(0),
|
2018-05-17 19:46:23 +00:00
|
|
|
metric_(metric),
|
|
|
|
statistics_(statistics),
|
|
|
|
ticker_type_(ticker_type) {}
|
2015-06-02 09:07:58 +00:00
|
|
|
|
|
|
|
~PerfStepTimer() {
|
|
|
|
Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Start() {
|
2018-05-17 19:46:23 +00:00
|
|
|
if (perf_counter_enabled_ || statistics_ != nullptr) {
|
2018-12-20 20:00:40 +00:00
|
|
|
start_ = time_now();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-02 09:07:58 +00:00
|
|
|
void Measure() {
|
|
|
|
if (start_) {
|
2018-12-20 20:00:40 +00:00
|
|
|
uint64_t now = time_now();
|
2015-06-02 09:07:58 +00:00
|
|
|
*metric_ += now - start_;
|
|
|
|
start_ = now;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Stop() {
|
|
|
|
if (start_) {
|
2018-12-20 20:00:40 +00:00
|
|
|
uint64_t duration = time_now() - start_;
|
2018-05-17 19:46:23 +00:00
|
|
|
if (perf_counter_enabled_) {
|
|
|
|
*metric_ += duration;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (statistics_ != nullptr) {
|
|
|
|
RecordTick(statistics_, ticker_type_, duration);
|
|
|
|
}
|
2015-06-02 09:07:58 +00:00
|
|
|
start_ = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
2021-01-26 06:07:26 +00:00
|
|
|
uint64_t time_now() {
|
|
|
|
if (!use_cpu_time_) {
|
|
|
|
return clock_->NowNanos();
|
|
|
|
} else {
|
|
|
|
return clock_->CPUNanos();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-17 19:46:23 +00:00
|
|
|
const bool perf_counter_enabled_;
|
2018-12-20 20:00:40 +00:00
|
|
|
const bool use_cpu_time_;
|
2021-01-26 06:07:26 +00:00
|
|
|
std::shared_ptr<SystemClock> clock_;
|
2015-06-02 09:07:58 +00:00
|
|
|
uint64_t start_;
|
|
|
|
uint64_t* metric_;
|
2018-05-17 19:46:23 +00:00
|
|
|
Statistics* statistics_;
|
|
|
|
uint32_t ticker_type_;
|
2015-06-02 09:07:58 +00:00
|
|
|
};
|
|
|
|
|
2020-02-20 20:07:53 +00:00
|
|
|
} // namespace ROCKSDB_NAMESPACE
|