2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-01-04 07:10:14 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 09:20:26 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2019-01-08 11:34:45 -05:00
|
|
|
* Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-01-04 07:10:14 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "timeval.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2008-05-09 12:31:51 -04:00
|
|
|
#if defined(WIN32) && !defined(MSDOS)
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2019-02-14 11:08:29 -05:00
|
|
|
/* set in win32_init() */
|
|
|
|
extern LARGE_INTEGER Curl_freq;
|
|
|
|
extern bool Curl_isVistaOrGreater;
|
|
|
|
|
2017-10-25 05:59:43 -04:00
|
|
|
struct curltime Curl_now(void)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2017-07-28 09:49:36 -04:00
|
|
|
struct curltime now;
|
2019-02-14 11:08:29 -05:00
|
|
|
if(Curl_isVistaOrGreater) { /* QPC timer might have issues pre-Vista */
|
2018-11-26 18:10:10 -05:00
|
|
|
LARGE_INTEGER count;
|
|
|
|
QueryPerformanceCounter(&count);
|
2019-02-14 11:08:29 -05:00
|
|
|
now.tv_sec = (time_t)(count.QuadPart / Curl_freq.QuadPart);
|
|
|
|
now.tv_usec = (int)((count.QuadPart % Curl_freq.QuadPart) * 1000000 /
|
|
|
|
Curl_freq.QuadPart);
|
2018-11-26 18:10:10 -05:00
|
|
|
}
|
|
|
|
else {
|
2019-01-04 20:18:25 -05:00
|
|
|
/* Disable /analyze warning that GetTickCount64 is preferred */
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:28159)
|
|
|
|
#endif
|
2018-11-26 18:10:10 -05:00
|
|
|
DWORD milliseconds = GetTickCount();
|
2019-01-04 20:18:25 -05:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2018-11-26 18:10:10 -05:00
|
|
|
now.tv_sec = milliseconds / 1000;
|
|
|
|
now.tv_usec = (milliseconds % 1000) * 1000;
|
|
|
|
}
|
2008-05-09 12:31:51 -04:00
|
|
|
return now;
|
2004-01-04 07:10:14 -05:00
|
|
|
}
|
2008-05-09 12:31:51 -04:00
|
|
|
|
2008-05-11 22:04:21 -04:00
|
|
|
#elif defined(HAVE_CLOCK_GETTIME_MONOTONIC)
|
2008-05-09 12:31:51 -04:00
|
|
|
|
2017-10-25 05:59:43 -04:00
|
|
|
struct curltime Curl_now(void)
|
2004-01-04 07:10:14 -05:00
|
|
|
{
|
2008-05-09 12:31:51 -04:00
|
|
|
/*
|
|
|
|
** clock_gettime() is granted to be increased monotonically when the
|
|
|
|
** monotonic clock is queried. Time starting point is unspecified, it
|
|
|
|
** could be the system start-up time, the Epoch, or something else,
|
|
|
|
** in any case the time starting point does not change once that the
|
|
|
|
** system has started up.
|
|
|
|
*/
|
2019-04-05 13:57:29 -04:00
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
2008-05-09 12:31:51 -04:00
|
|
|
struct timeval now;
|
2019-04-05 13:57:29 -04:00
|
|
|
#endif
|
2017-07-28 09:49:36 -04:00
|
|
|
struct curltime cnow;
|
2008-05-09 12:31:51 -04:00
|
|
|
struct timespec tsnow;
|
2018-09-25 13:06:26 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
** clock_gettime() may be defined by Apple's SDK as weak symbol thus
|
|
|
|
** code compiles but fails during run-time if clock_gettime() is
|
|
|
|
** called on unsupported OS version.
|
|
|
|
*/
|
|
|
|
#if defined(__APPLE__) && (HAVE_BUILTIN_AVAILABLE == 1)
|
|
|
|
bool have_clock_gettime = FALSE;
|
|
|
|
if(__builtin_available(macOS 10.12, iOS 10, tvOS 10, watchOS 3, *))
|
|
|
|
have_clock_gettime = TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if(
|
|
|
|
#if defined(__APPLE__) && (HAVE_BUILTIN_AVAILABLE == 1)
|
|
|
|
have_clock_gettime &&
|
|
|
|
#endif
|
|
|
|
(0 == clock_gettime(CLOCK_MONOTONIC, &tsnow))) {
|
2017-07-28 09:49:36 -04:00
|
|
|
cnow.tv_sec = tsnow.tv_sec;
|
|
|
|
cnow.tv_usec = (unsigned int)(tsnow.tv_nsec / 1000);
|
2008-07-01 23:04:56 -04:00
|
|
|
}
|
|
|
|
/*
|
|
|
|
** Even when the configure process has truly detected monotonic clock
|
|
|
|
** availability, it might happen that it is not actually available at
|
|
|
|
** run-time. When this occurs simply fallback to other time source.
|
|
|
|
*/
|
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
2017-07-28 09:49:36 -04:00
|
|
|
else {
|
2008-07-01 23:04:56 -04:00
|
|
|
(void)gettimeofday(&now, NULL);
|
2017-07-28 09:49:36 -04:00
|
|
|
cnow.tv_sec = now.tv_sec;
|
|
|
|
cnow.tv_usec = (unsigned int)now.tv_usec;
|
|
|
|
}
|
2008-07-01 23:04:56 -04:00
|
|
|
#else
|
|
|
|
else {
|
2017-07-28 09:49:36 -04:00
|
|
|
cnow.tv_sec = time(NULL);
|
|
|
|
cnow.tv_usec = 0;
|
2008-07-01 23:04:56 -04:00
|
|
|
}
|
|
|
|
#endif
|
2017-07-28 09:49:36 -04:00
|
|
|
return cnow;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2017-10-30 08:12:41 -04:00
|
|
|
#elif defined(HAVE_MACH_ABSOLUTE_TIME)
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <mach/mach_time.h>
|
|
|
|
|
|
|
|
struct curltime Curl_now(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
** Monotonic timer on Mac OS is provided by mach_absolute_time(), which
|
|
|
|
** returns time in Mach "absolute time units," which are platform-dependent.
|
|
|
|
** To convert to nanoseconds, one must use conversion factors specified by
|
|
|
|
** mach_timebase_info().
|
|
|
|
*/
|
|
|
|
static mach_timebase_info_data_t timebase;
|
|
|
|
struct curltime cnow;
|
|
|
|
uint64_t usecs;
|
|
|
|
|
|
|
|
if(0 == timebase.denom)
|
|
|
|
(void) mach_timebase_info(&timebase);
|
|
|
|
|
|
|
|
usecs = mach_absolute_time();
|
|
|
|
usecs *= timebase.numer;
|
|
|
|
usecs /= timebase.denom;
|
|
|
|
usecs /= 1000;
|
|
|
|
|
|
|
|
cnow.tv_sec = usecs / 1000000;
|
2018-02-12 01:42:47 -05:00
|
|
|
cnow.tv_usec = (int)(usecs % 1000000);
|
2017-10-30 08:12:41 -04:00
|
|
|
|
|
|
|
return cnow;
|
|
|
|
}
|
|
|
|
|
2008-05-09 12:31:51 -04:00
|
|
|
#elif defined(HAVE_GETTIMEOFDAY)
|
|
|
|
|
2017-10-25 05:59:43 -04:00
|
|
|
struct curltime Curl_now(void)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2008-05-09 12:31:51 -04:00
|
|
|
/*
|
|
|
|
** gettimeofday() is not granted to be increased monotonically, due to
|
|
|
|
** clock drifting and external source time synchronization it can jump
|
|
|
|
** forward or backward in time.
|
|
|
|
*/
|
2004-01-04 07:10:14 -05:00
|
|
|
struct timeval now;
|
2017-07-28 09:49:36 -04:00
|
|
|
struct curltime ret;
|
2004-01-04 07:10:14 -05:00
|
|
|
(void)gettimeofday(&now, NULL);
|
2017-07-28 09:49:36 -04:00
|
|
|
ret.tv_sec = now.tv_sec;
|
2018-03-22 09:34:11 -04:00
|
|
|
ret.tv_usec = (int)now.tv_usec;
|
2017-07-28 09:49:36 -04:00
|
|
|
return ret;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2008-05-09 12:31:51 -04:00
|
|
|
#else
|
|
|
|
|
2017-10-25 05:59:43 -04:00
|
|
|
struct curltime Curl_now(void)
|
2008-05-09 12:31:51 -04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
** time() returns the value of time in seconds since the Epoch.
|
|
|
|
*/
|
2017-07-28 09:49:36 -04:00
|
|
|
struct curltime now;
|
|
|
|
now.tv_sec = time(NULL);
|
2008-05-09 12:31:51 -04:00
|
|
|
now.tv_usec = 0;
|
|
|
|
return now;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2001-10-01 18:50:20 -04:00
|
|
|
/*
|
2017-10-25 05:59:43 -04:00
|
|
|
* Returns: time difference in number of milliseconds. For too large diffs it
|
|
|
|
* returns max value.
|
2017-07-28 09:49:36 -04:00
|
|
|
*
|
|
|
|
* @unittest: 1323
|
2001-10-01 18:50:20 -04:00
|
|
|
*/
|
2017-10-23 06:05:49 -04:00
|
|
|
timediff_t Curl_timediff(struct curltime newer, struct curltime older)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2019-01-08 11:34:45 -05:00
|
|
|
timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec;
|
2019-07-31 09:30:31 -04:00
|
|
|
if(diff >= (TIMEDIFF_T_MAX/1000))
|
|
|
|
return TIMEDIFF_T_MAX;
|
|
|
|
else if(diff <= (TIMEDIFF_T_MIN/1000))
|
|
|
|
return TIMEDIFF_T_MIN;
|
2017-10-25 05:59:43 -04:00
|
|
|
return diff * 1000 + (newer.tv_usec-older.tv_usec)/1000;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
|
|
|
|
2004-04-09 05:36:31 -04:00
|
|
|
/*
|
2017-10-25 05:59:43 -04:00
|
|
|
* Returns: time difference in number of microseconds. For too large diffs it
|
|
|
|
* returns max value.
|
2004-04-09 05:36:31 -04:00
|
|
|
*/
|
2017-10-23 06:05:49 -04:00
|
|
|
timediff_t Curl_timediff_us(struct curltime newer, struct curltime older)
|
2004-04-09 05:36:31 -04:00
|
|
|
{
|
2019-01-08 11:34:45 -05:00
|
|
|
timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec;
|
2019-07-31 09:30:31 -04:00
|
|
|
if(diff >= (TIMEDIFF_T_MAX/1000000))
|
|
|
|
return TIMEDIFF_T_MAX;
|
|
|
|
else if(diff <= (TIMEDIFF_T_MIN/1000000))
|
|
|
|
return TIMEDIFF_T_MIN;
|
2017-10-25 05:59:43 -04:00
|
|
|
return diff * 1000000 + newer.tv_usec-older.tv_usec;
|
2004-04-09 05:36:31 -04:00
|
|
|
}
|