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