Files
scylladb/utils/latency.hh
Avi Kivity f3eade2f62 treewide: relicense to ScyllaDB-Source-Available-1.0
Drop the AGPL license in favor of a source-available license.
See the blog post [1] for details.

[1] https://www.scylladb.com/2024/12/18/why-were-moving-to-a-source-available-license/
2024-12-18 17:45:13 +02:00

61 lines
1.1 KiB
C++

/*
* Copyright (C) 2015-present ScyllaDB
*/
/*
* SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0
*/
#pragma once
#include <chrono>
/**
* A helper class to keep track of latencies
*/
namespace utils {
class latency_counter {
public:
using clock = std::chrono::steady_clock;
using time_point = clock::time_point;
using duration = clock::duration;
private:
time_point _start;
time_point _stop;
public:
void start() {
_start = now();
}
bool is_start() const {
// if start is not set it is still zero
return _start.time_since_epoch().count();
}
latency_counter& stop() {
_stop = now();
return *this;
}
bool is_stopped() const {
// if stop was not set, it is still zero
return _stop.time_since_epoch().count();
}
duration latency() const {
return _stop - _start;
}
latency_counter& check_and_stop() {
if (!is_stopped()) {
return stop();
}
return *this;
}
static time_point now() {
return clock::now();
}
};
}