libcruft-util/time.cpp
Danny Robson 52f53caee5 debug: drop support for CHECK_HARD
HARD vs SOFT assertions were never very well defined or supported.
Currently they just imply a level of functionality that isn't present;
it's better to remove them instead of expending the effort at this
point.
2015-01-28 14:49:34 +11:00

159 lines
3.7 KiB
C++

/*
* This file is part of libgim.
*
* libgim is free software: you can redistribute it and/or modify it under the
* terms of the GNU General Public License as published by the Free Software
* Foundation, either version 3 of the License, or (at your option) any later
* version.
*
* libgim is distributed in the hope that it will be useful, but WITHOUT ANY
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
* details.
*
* You should have received a copy of the GNU General Public License
* along with libgim. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright 2010 Danny Robson <danny@nerdcruft.net>
*/
#include "time.hpp"
#include "debug.hpp"
#include "log.hpp"
#include "platform.hpp"
#include "types/casts.hpp"
using namespace util;
// ----------------------------------------------------------------------------
static const uint64_t SECOND = 1000000000UL;
static const uint64_t MILLISECOND = 1000000UL;
// ----------------------------------------------------------------------------
#ifdef PLATFORM_WIN32
#include <windows.h>
uint64_t
util::nanoseconds (void) {
LARGE_INTEGER freq, count;
QueryPerformanceFrequency (&freq);
QueryPerformanceCounter (&count);
return ((double)count.QuadPart / freq.QuadPart) * SECOND;
}
void
util::sleep (uint64_t ns) {
Sleep (ns / MILLISECOND);
}
#else
#include <ctime>
uint64_t
util::nanoseconds (void) {
struct timespec t;
clock_gettime (CLOCK_MONOTONIC, &t);
CHECK_GT (t.tv_sec, 0);
CHECK_GT (t.tv_nsec, 0);
return static_cast<uint64_t> (t.tv_sec) * SECOND + static_cast<uint64_t> (t.tv_nsec);
}
void
util::sleep (uint64_t ns) {
struct timespec req, rem;
req.tv_sec = sign_cast<time_t> (ns / SECOND);
req.tv_nsec = sign_cast<long> (ns % SECOND);
while (nanosleep (&req, &rem)) {
req = rem;
}
}
#endif
// ----------------------------------------------------------------------------
delta_clock::delta_clock ():
time { util::nanoseconds (), util::nanoseconds () }
{ ; }
float
delta_clock::seconds (void) {
time.prev = time.curr;
time.curr = nanoseconds ();
return (time.curr - time.prev) / static_cast<float> (SECOND);
}
// ----------------------------------------------------------------------------
util::period_query::period_query (float seconds) {
m_time.start = nanoseconds ();
m_time.period = static_cast<uint64_t> (seconds * SECOND);
}
bool
util::period_query::poll (void) {
uint64_t now = nanoseconds ();
uint64_t diff = now - m_time.start;
if (diff < m_time.period)
return false;
m_time.start += diff % m_time.period;
return true;
}
// ----------------------------------------------------------------------------
util::rate_limiter::rate_limiter (unsigned rate):
m_last (nanoseconds ()),
m_target (SECOND / rate)
{ ; }
void
util::rate_limiter::poll (void) {
uint64_t now = nanoseconds ();
uint64_t total = now - m_last;
if (total < m_target)
sleep (m_target - total);
m_last = now;
}
// ----------------------------------------------------------------------------
util::polled_duration::polled_duration (std::string name, uint64_t interval):
m_name (name),
m_interval (interval),
m_next (nanoseconds () + interval)
{ ; }
void
util::polled_duration::start (void) {
m_last = nanoseconds ();
}
void
util::polled_duration::stop (void) {
uint64_t now = nanoseconds ();
uint64_t dt = now - m_last;
m_series.add (dt / MILLISECOND);
if (m_next < now) {
LOG_DEBUG ("timing: '%s'. %s", m_name, m_series);
m_series.reset ();
m_next = now + m_interval;
}
}