2002-09-03 15:52:59 +04:00
|
|
|
/***************************************************************************
|
2004-01-04 15:10:14 +03:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
1999-12-29 17:20:26 +03:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2020-02-19 09:53:54 +03:00
|
|
|
* Copyright (C) 1998 - 2020, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 17:20:26 +03:00
|
|
|
*
|
2002-09-03 15: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-03 02:19:02 +03:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-01-04 15:10:14 +03:00
|
|
|
*
|
2001-01-03 12:29:33 +03: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 15:52:59 +04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 17:20:26 +03:00
|
|
|
*
|
2001-01-03 12:29:33 +03:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 17:20:26 +03:00
|
|
|
*
|
2002-09-03 15:52:59 +04:00
|
|
|
***************************************************************************/
|
1999-12-29 17:20:26 +03:00
|
|
|
|
2013-01-04 05:50:28 +04:00
|
|
|
#include "timeval.h"
|
1999-12-29 17:20:26 +03:00
|
|
|
|
2008-05-09 20:31:51 +04:00
|
|
|
#if defined(WIN32) && !defined(MSDOS)
|
1999-12-29 17:20:26 +03:00
|
|
|
|
2019-02-14 19:08:29 +03:00
|
|
|
/* set in win32_init() */
|
|
|
|
extern LARGE_INTEGER Curl_freq;
|
|
|
|
extern bool Curl_isVistaOrGreater;
|
|
|
|
|
2020-01-24 11:34:52 +03:00
|
|
|
/* In case of bug fix this function has a counterpart in tool_util.c */
|
2017-10-25 12:59:43 +03:00
|
|
|
struct curltime Curl_now(void)
|
1999-12-29 17:20:26 +03:00
|
|
|
{
|
2017-07-28 16:49:36 +03:00
|
|
|
struct curltime now;
|
2019-02-14 19:08:29 +03:00
|
|
|
if(Curl_isVistaOrGreater) { /* QPC timer might have issues pre-Vista */
|
2018-11-27 02:10:10 +03:00
|
|
|
LARGE_INTEGER count;
|
|
|
|
QueryPerformanceCounter(&count);
|
2019-02-14 19:08:29 +03: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-27 02:10:10 +03:00
|
|
|
}
|
|
|
|
else {
|
2019-01-05 04:18:25 +03:00
|
|
|
/* Disable /analyze warning that GetTickCount64 is preferred */
|
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(push)
|
|
|
|
#pragma warning(disable:28159)
|
|
|
|
#endif
|
2018-11-27 02:10:10 +03:00
|
|
|
DWORD milliseconds = GetTickCount();
|
2019-01-05 04:18:25 +03:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
#pragma warning(pop)
|
|
|
|
#endif
|
|
|
|
|
2018-11-27 02:10:10 +03:00
|
|
|
now.tv_sec = milliseconds / 1000;
|
|
|
|
now.tv_usec = (milliseconds % 1000) * 1000;
|
|
|
|
}
|
2008-05-09 20:31:51 +04:00
|
|
|
return now;
|
2004-01-04 15:10:14 +03:00
|
|
|
}
|
2008-05-09 20:31:51 +04:00
|
|
|
|
2008-05-12 06:04:21 +04:00
|
|
|
#elif defined(HAVE_CLOCK_GETTIME_MONOTONIC)
|
2008-05-09 20:31:51 +04:00
|
|
|
|
2017-10-25 12:59:43 +03:00
|
|
|
struct curltime Curl_now(void)
|
2004-01-04 15:10:14 +03:00
|
|
|
{
|
2008-05-09 20: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 20:57:29 +03:00
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
2008-05-09 20:31:51 +04:00
|
|
|
struct timeval now;
|
2019-04-05 20:57:29 +03:00
|
|
|
#endif
|
2017-07-28 16:49:36 +03:00
|
|
|
struct curltime cnow;
|
2008-05-09 20:31:51 +04:00
|
|
|
struct timespec tsnow;
|
2018-09-25 20:06:26 +03: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 16:49:36 +03:00
|
|
|
cnow.tv_sec = tsnow.tv_sec;
|
|
|
|
cnow.tv_usec = (unsigned int)(tsnow.tv_nsec / 1000);
|
2008-07-02 07: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 16:49:36 +03:00
|
|
|
else {
|
2008-07-02 07:04:56 +04:00
|
|
|
(void)gettimeofday(&now, NULL);
|
2017-07-28 16:49:36 +03:00
|
|
|
cnow.tv_sec = now.tv_sec;
|
|
|
|
cnow.tv_usec = (unsigned int)now.tv_usec;
|
|
|
|
}
|
2008-07-02 07:04:56 +04:00
|
|
|
#else
|
|
|
|
else {
|
2017-07-28 16:49:36 +03:00
|
|
|
cnow.tv_sec = time(NULL);
|
|
|
|
cnow.tv_usec = 0;
|
2008-07-02 07:04:56 +04:00
|
|
|
}
|
|
|
|
#endif
|
2017-07-28 16:49:36 +03:00
|
|
|
return cnow;
|
1999-12-29 17:20:26 +03:00
|
|
|
}
|
|
|
|
|
2017-10-30 15:12:41 +03: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 09:42:47 +03:00
|
|
|
cnow.tv_usec = (int)(usecs % 1000000);
|
2017-10-30 15:12:41 +03:00
|
|
|
|
|
|
|
return cnow;
|
|
|
|
}
|
|
|
|
|
2008-05-09 20:31:51 +04:00
|
|
|
#elif defined(HAVE_GETTIMEOFDAY)
|
|
|
|
|
2017-10-25 12:59:43 +03:00
|
|
|
struct curltime Curl_now(void)
|
1999-12-29 17:20:26 +03:00
|
|
|
{
|
2008-05-09 20: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 15:10:14 +03:00
|
|
|
struct timeval now;
|
2017-07-28 16:49:36 +03:00
|
|
|
struct curltime ret;
|
2004-01-04 15:10:14 +03:00
|
|
|
(void)gettimeofday(&now, NULL);
|
2017-07-28 16:49:36 +03:00
|
|
|
ret.tv_sec = now.tv_sec;
|
2018-03-22 16:34:11 +03:00
|
|
|
ret.tv_usec = (int)now.tv_usec;
|
2017-07-28 16:49:36 +03:00
|
|
|
return ret;
|
1999-12-29 17:20:26 +03:00
|
|
|
}
|
|
|
|
|
2008-05-09 20:31:51 +04:00
|
|
|
#else
|
|
|
|
|
2017-10-25 12:59:43 +03:00
|
|
|
struct curltime Curl_now(void)
|
2008-05-09 20:31:51 +04:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
** time() returns the value of time in seconds since the Epoch.
|
|
|
|
*/
|
2017-07-28 16:49:36 +03:00
|
|
|
struct curltime now;
|
|
|
|
now.tv_sec = time(NULL);
|
2008-05-09 20:31:51 +04:00
|
|
|
now.tv_usec = 0;
|
|
|
|
return now;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2001-10-02 02:50:20 +04:00
|
|
|
/*
|
2017-10-25 12:59:43 +03:00
|
|
|
* Returns: time difference in number of milliseconds. For too large diffs it
|
|
|
|
* returns max value.
|
2017-07-28 16:49:36 +03:00
|
|
|
*
|
|
|
|
* @unittest: 1323
|
2001-10-02 02:50:20 +04:00
|
|
|
*/
|
2017-10-23 13:05:49 +03:00
|
|
|
timediff_t Curl_timediff(struct curltime newer, struct curltime older)
|
1999-12-29 17:20:26 +03:00
|
|
|
{
|
2019-01-08 19:34:45 +03:00
|
|
|
timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec;
|
2019-07-31 16:30:31 +03: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 12:59:43 +03:00
|
|
|
return diff * 1000 + (newer.tv_usec-older.tv_usec)/1000;
|
1999-12-29 17:20:26 +03:00
|
|
|
}
|
|
|
|
|
2004-04-09 13:36:31 +04:00
|
|
|
/*
|
2017-10-25 12:59:43 +03:00
|
|
|
* Returns: time difference in number of microseconds. For too large diffs it
|
|
|
|
* returns max value.
|
2004-04-09 13:36:31 +04:00
|
|
|
*/
|
2017-10-23 13:05:49 +03:00
|
|
|
timediff_t Curl_timediff_us(struct curltime newer, struct curltime older)
|
2004-04-09 13:36:31 +04:00
|
|
|
{
|
2019-01-08 19:34:45 +03:00
|
|
|
timediff_t diff = (timediff_t)newer.tv_sec-older.tv_sec;
|
2019-07-31 16:30:31 +03: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 12:59:43 +03:00
|
|
|
return diff * 1000000 + newer.tv_usec-older.tv_usec;
|
2004-04-09 13:36:31 +04:00
|
|
|
}
|