2018-02-04 03:22:01 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
2018-01-12 11:52:45 +01:00
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2018-02-04 03:22:01 +01:00
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
2018-01-12 11:52:45 +01:00
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
2018-02-04 03:22:01 +01:00
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
2016-09-11 02:20:11 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_UTIL_TIMER_H
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::util
|
|
|
|
{
|
|
|
|
struct timer;
|
|
|
|
}
|
2016-09-11 02:20:11 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::util::timer
|
2016-09-11 02:20:11 +02:00
|
|
|
{
|
2017-09-24 04:51:06 +02:00
|
|
|
IRCD_OVERLOAD(nostart)
|
2016-09-11 02:20:11 +02:00
|
|
|
using clock = std::chrono::steady_clock;
|
|
|
|
|
2018-10-25 22:39:41 +02:00
|
|
|
nanoseconds accumulator {0ns};
|
|
|
|
clock::time_point start {clock::now()};
|
2016-09-11 02:20:11 +02:00
|
|
|
|
2017-09-24 04:36:32 +02:00
|
|
|
bool stopped() const;
|
2016-09-11 02:20:11 +02:00
|
|
|
template<class duration = std::chrono::seconds> duration get() const;
|
2017-09-23 10:12:30 +02:00
|
|
|
template<class duration = std::chrono::seconds> duration at() const;
|
2016-10-29 05:46:10 +02:00
|
|
|
void cont();
|
|
|
|
void stop();
|
2016-09-11 02:20:11 +02:00
|
|
|
|
|
|
|
timer(const std::function<void ()> &);
|
2017-09-24 04:51:06 +02:00
|
|
|
timer(nostart_t);
|
2018-10-25 22:39:41 +02:00
|
|
|
timer() = default;
|
2016-09-11 02:20:11 +02:00
|
|
|
};
|
|
|
|
|
2017-09-24 04:36:32 +02:00
|
|
|
inline
|
2017-09-24 04:51:06 +02:00
|
|
|
ircd::util::timer::timer(nostart_t)
|
2018-10-25 22:39:41 +02:00
|
|
|
:start{clock::time_point::min()}
|
2016-09-11 02:20:11 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-09-23 10:12:30 +02:00
|
|
|
template<class duration>
|
|
|
|
duration
|
|
|
|
ircd::util::timer::at()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
const auto now(clock::now());
|
|
|
|
return duration_cast<duration>(now - start);
|
|
|
|
}
|
|
|
|
|
2016-09-11 02:20:11 +02:00
|
|
|
template<class duration>
|
|
|
|
duration
|
2017-08-28 23:51:22 +02:00
|
|
|
ircd::util::timer::get()
|
2016-09-11 02:20:11 +02:00
|
|
|
const
|
|
|
|
{
|
2016-10-29 05:46:10 +02:00
|
|
|
return std::chrono::duration_cast<duration>(accumulator);
|
2016-09-11 02:20:11 +02:00
|
|
|
}
|