2011-08-29 15:28:11 +10:00
|
|
|
/*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-08-29 15:28:11 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-08-29 15:28:11 +10:00
|
|
|
*
|
2015-04-13 18:05:28 +10:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
2011-08-29 15:28:11 +10:00
|
|
|
*
|
2012-04-23 13:06:41 +10:00
|
|
|
* Copyright 2010 Danny Robson <danny@nerdcruft.net>
|
2011-08-29 15:28:11 +10:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "time.hpp"
|
|
|
|
|
2011-09-16 22:55:56 +10:00
|
|
|
#include "debug.hpp"
|
2012-08-07 18:35:38 +10:00
|
|
|
#include "log.hpp"
|
2012-05-01 12:14:38 +10:00
|
|
|
#include "platform.hpp"
|
2012-05-25 15:19:07 +10:00
|
|
|
#include "types/casts.hpp"
|
2011-09-16 22:55:56 +10:00
|
|
|
|
2011-08-29 15:28:11 +10:00
|
|
|
|
|
|
|
using namespace util;
|
|
|
|
|
2013-08-08 10:48:29 +10:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
static const uint64_t SECOND = 1000000000UL;
|
|
|
|
static const uint64_t MILLISECOND = 1000000UL;
|
|
|
|
|
2013-08-05 16:40:43 +10:00
|
|
|
// ----------------------------------------------------------------------------
|
2012-05-01 12:14:38 +10:00
|
|
|
#ifdef PLATFORM_WIN32
|
2011-09-25 14:24:53 +10:00
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
uint64_t
|
|
|
|
util::nanoseconds (void) {
|
|
|
|
LARGE_INTEGER freq, count;
|
|
|
|
QueryPerformanceFrequency (&freq);
|
2015-04-13 18:06:08 +10:00
|
|
|
QueryPerformanceCounter (&count);
|
2011-09-25 14:24:53 +10:00
|
|
|
|
2013-08-08 10:48:29 +10:00
|
|
|
return ((double)count.QuadPart / freq.QuadPart) * SECOND;
|
2011-09-25 14:24:53 +10:00
|
|
|
}
|
2012-05-08 15:02:25 +10:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
util::sleep (uint64_t ns) {
|
2013-08-08 10:48:29 +10:00
|
|
|
Sleep (ns / MILLISECOND);
|
2012-05-08 15:02:25 +10:00
|
|
|
}
|
|
|
|
|
2011-09-25 14:24:53 +10:00
|
|
|
#else
|
|
|
|
#include <ctime>
|
2011-08-29 15:28:11 +10:00
|
|
|
|
|
|
|
uint64_t
|
|
|
|
util::nanoseconds (void) {
|
|
|
|
struct timespec t;
|
2015-01-19 19:11:57 +11:00
|
|
|
clock_gettime (CLOCK_MONOTONIC, &t);
|
2011-08-29 15:28:11 +10:00
|
|
|
|
2015-01-28 14:49:34 +11:00
|
|
|
CHECK_GT (t.tv_sec, 0);
|
|
|
|
CHECK_GT (t.tv_nsec, 0);
|
2011-09-16 22:55:56 +10:00
|
|
|
|
2013-08-08 10:48:29 +10:00
|
|
|
return static_cast<uint64_t> (t.tv_sec) * SECOND + static_cast<uint64_t> (t.tv_nsec);
|
2011-08-29 15:28:11 +10:00
|
|
|
}
|
2012-05-01 12:14:38 +10:00
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
util::sleep (uint64_t ns) {
|
|
|
|
struct timespec req, rem;
|
|
|
|
|
2013-08-08 10:48:29 +10:00
|
|
|
req.tv_sec = sign_cast<time_t> (ns / SECOND);
|
|
|
|
req.tv_nsec = sign_cast<long> (ns % SECOND);
|
2012-05-01 12:14:38 +10:00
|
|
|
|
|
|
|
while (nanosleep (&req, &rem)) {
|
|
|
|
req = rem;
|
|
|
|
}
|
|
|
|
}
|
2011-09-25 14:24:53 +10:00
|
|
|
#endif
|
2012-05-01 12:14:38 +10:00
|
|
|
|
2013-08-05 16:40:43 +10:00
|
|
|
// ----------------------------------------------------------------------------
|
2015-01-19 19:11:41 +11:00
|
|
|
delta_clock::delta_clock ():
|
2013-08-05 16:40:43 +10:00
|
|
|
time { util::nanoseconds (), util::nanoseconds () }
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
2015-01-19 19:11:41 +11:00
|
|
|
float
|
2013-08-05 16:40:43 +10:00
|
|
|
delta_clock::seconds (void) {
|
|
|
|
time.prev = time.curr;
|
|
|
|
time.curr = nanoseconds ();
|
|
|
|
|
2015-01-19 19:11:41 +11:00
|
|
|
return (time.curr - time.prev) / static_cast<float> (SECOND);
|
2013-08-05 16:40:43 +10:00
|
|
|
}
|
|
|
|
|
2013-09-20 17:33:08 +10:00
|
|
|
// ----------------------------------------------------------------------------
|
2015-01-19 19:11:41 +11:00
|
|
|
util::period_query::period_query (float seconds) {
|
2013-09-20 17:33:08 +10:00
|
|
|
m_time.start = nanoseconds ();
|
2014-07-02 15:47:09 +10:00
|
|
|
m_time.period = static_cast<uint64_t> (seconds * SECOND);
|
2013-09-20 17:33:08 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2012-05-01 12:14:38 +10:00
|
|
|
|
2013-08-08 10:48:44 +10:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
util::rate_limiter::rate_limiter (unsigned rate):
|
|
|
|
m_last (nanoseconds ()),
|
2014-07-02 15:45:06 +10:00
|
|
|
m_target (SECOND / rate)
|
2013-08-08 10:48:44 +10:00
|
|
|
{ ; }
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-08-05 16:40:43 +10:00
|
|
|
// ----------------------------------------------------------------------------
|
2012-08-07 18:35:38 +10:00
|
|
|
util::polled_duration::polled_duration (std::string name, uint64_t interval):
|
|
|
|
m_name (name),
|
|
|
|
m_interval (interval),
|
2015-04-13 18:06:08 +10:00
|
|
|
m_next (nanoseconds () + interval)
|
2012-08-07 18:35:38 +10:00
|
|
|
{ ; }
|
2012-05-01 12:14:38 +10:00
|
|
|
|
2012-08-07 18:35:38 +10:00
|
|
|
|
|
|
|
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;
|
2013-08-08 10:48:29 +10:00
|
|
|
m_series.add (dt / MILLISECOND);
|
2012-08-07 18:35:38 +10:00
|
|
|
|
|
|
|
if (m_next < now) {
|
|
|
|
LOG_DEBUG ("timing: '%s'. %s", m_name, m_series);
|
|
|
|
m_series.reset ();
|
|
|
|
m_next = now + m_interval;
|
|
|
|
}
|
|
|
|
}
|