You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dvmhost/src/common/Clock.cpp

155 lines
4.3 KiB

// SPDX-License-Identifier: GPL-2.0-only
/*
* Digital Voice Modem - Common Library
* GPLv2 Open Source. Use is subject to license terms.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* Copyright (C) 2023,2024 Bryan Biedenkapp, N2PLL
*
*/
#include "Defines.h"
#include "Clock.h"
#include "Log.h"
using namespace system_clock;
#include <stdio.h>
// ---------------------------------------------------------------------------
// Constants
// ---------------------------------------------------------------------------
static const uint64_t EPOCH = 2208988800ULL;
static const uint64_t NTP_SCALE_FRAC = 4294967296ULL;
// ---------------------------------------------------------------------------
// Global Functions
// ---------------------------------------------------------------------------
#if defined(_WIN32)
/* Gets the current time of day, putting it into *TV. */
int gettimeofday(struct timeval* tv, struct timezone* tzp)
{
// Note: some broken versions only have 8 trailing zero's, the correct epoch has 9 trailing zero's
// This magic number is the number of 100 nanosecond intervals since January 1, 1601 (UTC)
// until 00:00:00 January 1, 1970
static const uint64_t EPOCH = ((uint64_t)116444736000000000ULL);
SYSTEMTIME system_time;
FILETIME file_time;
uint64_t time;
GetSystemTime(&system_time);
SystemTimeToFileTime(&system_time, &file_time);
time = ((uint64_t)file_time.dwLowDateTime);
time += ((uint64_t)file_time.dwHighDateTime) << 32;
tv->tv_sec = (long)((time - EPOCH) / 10000000L);
tv->tv_usec = (long)(system_time.wMilliseconds * 1000);
return 0;
}
#endif // defined(_WIN32)
/* Calculates the difference between two NTP timestamps in milliseconds. */
static inline uint32_t ntpDiffMS(uint64_t older, uint64_t newer)
{
if (older > newer) {
// LogError(LOG_HOST, "Older timestamp is actually newer");
}
uint32_t s1 = (older >> 32) & 0xffffffff;
uint32_t s2 = (newer >> 32) & 0xffffffff;
uint64_t us1 = ((older & 0xffffffff) * 1000000UL) / NTP_SCALE_FRAC;
uint64_t us2 = ((newer & 0xffffffff) * 1000000UL) / NTP_SCALE_FRAC;
uint64_t r = (((uint64_t)(s2 - s1) * 1000000) + ((us2 - us1))) / 1000;
if (r > UINT32_MAX) {
// LogError(LOG_HOST, "NTP difference is too large: %llu. Limiting value", r);
r = UINT32_MAX;
}
return (uint32_t)r;
}
/* Get current time in NTP units. */
uint64_t ntp::now()
{
struct timeval tv;
gettimeofday(&tv, NULL);
uint64_t tv_ntp = tv.tv_sec + EPOCH;
uint64_t tv_usecs = (uint64_t)((float)(NTP_SCALE_FRAC * tv.tv_usec) / 1000000.f);
return (tv_ntp << 32) | tv_usecs;
}
/* Calculate the time difference of two NTP times. */
uint64_t ntp::diff(uint64_t ntp1, uint64_t ntp2)
{
return ntpDiffMS(ntp1, ntp2);
}
/*
* Calculate the time difference of two NTP times.
* This function calls clock::ntp::now() and then subtracts the input parameter from that timestamp value.
*/
uint64_t ntp::diffNow(uint64_t then)
{
uint64_t now = ntp::now();
return ntpDiffMS(then, now);
}
/* Get current time in HRC units. */
hrc::hrc_t hrc::now()
{
return std::chrono::high_resolution_clock::now();
}
/* Calculate the time difference of two HRC times. */
uint64_t hrc::diff(hrc::hrc_t hrc1, hrc::hrc_t hrc2)
{
return std::chrono::duration_cast<std::chrono::milliseconds>(hrc1 - hrc2).count();
}
/*
* Calculate the time difference of two HRC times.
* This function calls clock::hrc::now() and then subtracts the input parameter from that timestamp value.
*/
uint64_t hrc::diffNow(hrc::hrc_t then)
{
return (uint64_t)std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::high_resolution_clock::now() - then).count();
}
/*
* Calculate the time difference of two HRC times.
* This function calls clock::hrc::now() and then subtracts the input parameter from that timestamp value.
*/
uint64_t hrc::diffNowUS(hrc::hrc_t& then)
{
return (uint64_t)std::chrono::duration_cast<std::chrono::microseconds>(std::chrono::high_resolution_clock::now() - then).count();
}
/* Convert milliseconds to jiffies. */
uint64_t system_clock::msToJiffies(uint64_t ms)
{
return (uint64_t)(((double)ms / 1000) * 65536);
}
/* Convert jiffies to milliseconds. */
uint64_t system_clock::jiffiesToMs(uint64_t jiffies)
{
return (uint64_t)(((double)jiffies / 65536) * 1000);
}

Powered by TurnKey Linux.