2016-09-11 02:20:11 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Charybdis Development Team
|
|
|
|
* Copyright (C) 2016 Jason Volk <jason@zemos.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice is present in all copies.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
|
|
|
|
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
|
|
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
|
|
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#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;
|
|
|
|
|
2016-10-29 05:46:10 +02:00
|
|
|
nanoseconds accumulator;
|
2016-09-11 02:20:11 +02:00
|
|
|
clock::time_point start;
|
|
|
|
|
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);
|
2016-09-11 02:20:11 +02:00
|
|
|
timer();
|
|
|
|
};
|
|
|
|
|
2017-09-24 04:36:32 +02:00
|
|
|
|
|
|
|
/// Default construction will start the timer.
|
2016-09-11 02:20:11 +02:00
|
|
|
inline
|
2017-08-28 23:51:22 +02:00
|
|
|
ircd::util::timer::timer()
|
2016-10-29 05:46:10 +02:00
|
|
|
:accumulator{0ns}
|
|
|
|
,start{clock::now()}
|
2016-09-11 02:20:11 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-09-24 04:51:06 +02:00
|
|
|
/// timer(timer::nostart)
|
2017-09-24 04:36:32 +02:00
|
|
|
inline
|
2017-09-24 04:51:06 +02:00
|
|
|
ircd::util::timer::timer(nostart_t)
|
2017-09-24 04:36:32 +02:00
|
|
|
:accumulator{0ns}
|
|
|
|
,start{clock::time_point::min()}
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2016-09-11 02:20:11 +02:00
|
|
|
inline
|
2017-08-28 23:51:22 +02:00
|
|
|
ircd::util::timer::timer(const std::function<void ()> &func)
|
2016-09-11 02:20:11 +02:00
|
|
|
:timer{}
|
|
|
|
{
|
|
|
|
func();
|
2016-10-29 05:46:10 +02:00
|
|
|
stop();
|
2016-09-11 02:20:11 +02:00
|
|
|
}
|
|
|
|
|
2016-10-29 05:46:10 +02:00
|
|
|
inline void
|
2017-08-28 23:51:22 +02:00
|
|
|
ircd::util::timer::stop()
|
2016-09-11 02:20:11 +02:00
|
|
|
{
|
2017-09-24 04:36:32 +02:00
|
|
|
if(stopped())
|
2016-10-29 05:46:10 +02:00
|
|
|
return;
|
|
|
|
|
2017-09-24 04:36:32 +02:00
|
|
|
const auto now(clock::now());
|
2016-10-29 05:46:10 +02:00
|
|
|
accumulator += std::chrono::duration_cast<decltype(accumulator)>(now - start);
|
|
|
|
start = clock::time_point::min();
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void
|
2017-08-28 23:51:22 +02:00
|
|
|
ircd::util::timer::cont()
|
2016-10-29 05:46:10 +02:00
|
|
|
{
|
2017-09-24 04:36:32 +02:00
|
|
|
if(!stopped())
|
2016-10-29 05:46:10 +02:00
|
|
|
{
|
|
|
|
const auto now(clock::now());
|
|
|
|
accumulator += std::chrono::duration_cast<decltype(accumulator)>(now - start);
|
|
|
|
}
|
|
|
|
|
|
|
|
start = clock::now();
|
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
|
|
|
}
|
2017-09-24 04:36:32 +02:00
|
|
|
|
2017-09-24 04:51:06 +02:00
|
|
|
inline bool
|
2017-09-24 04:36:32 +02:00
|
|
|
ircd::util::timer::stopped()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return start == clock::time_point::min();
|
|
|
|
}
|