Issue #22043: _PyTime_Init() now checks if the system clock works.
Other changes: * The whole _PyTime API is private (not defined if Py_LIMITED_API is set) * _PyTime_gettimeofday_info() also returns -1 on error * Simplify PyTime_gettimeofday(): only use clock_gettime(CLOCK_REALTIME) or gettimeofday() on UNIX. Don't fallback to ftime() or time() anymore.
This commit is contained in:
parent
7efb83393c
commit
0011124dc2
|
@ -13,6 +13,8 @@ functions and constants
|
||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef Py_LIMITED_API
|
||||||
|
|
||||||
#ifdef HAVE_GETTIMEOFDAY
|
#ifdef HAVE_GETTIMEOFDAY
|
||||||
typedef struct timeval _PyTime_timeval;
|
typedef struct timeval _PyTime_timeval;
|
||||||
#else
|
#else
|
||||||
|
@ -37,7 +39,7 @@ PyAPI_FUNC(void) _PyTime_gettimeofday(_PyTime_timeval *tp);
|
||||||
|
|
||||||
/* Similar to _PyTime_gettimeofday() but retrieve also information on the
|
/* Similar to _PyTime_gettimeofday() but retrieve also information on the
|
||||||
* clock used to get the current time. */
|
* clock used to get the current time. */
|
||||||
PyAPI_FUNC(void) _PyTime_gettimeofday_info(
|
PyAPI_FUNC(int) _PyTime_gettimeofday_info(
|
||||||
_PyTime_timeval *tp,
|
_PyTime_timeval *tp,
|
||||||
_Py_clock_info_t *info);
|
_Py_clock_info_t *info);
|
||||||
|
|
||||||
|
@ -52,8 +54,6 @@ do { \
|
||||||
((tv_end.tv_sec - tv_start.tv_sec) + \
|
((tv_end.tv_sec - tv_start.tv_sec) + \
|
||||||
(tv_end.tv_usec - tv_start.tv_usec) * 0.000001)
|
(tv_end.tv_usec - tv_start.tv_usec) * 0.000001)
|
||||||
|
|
||||||
#ifndef Py_LIMITED_API
|
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
/* Round towards zero. */
|
/* Round towards zero. */
|
||||||
_PyTime_ROUND_DOWN=0,
|
_PyTime_ROUND_DOWN=0,
|
||||||
|
@ -92,10 +92,11 @@ PyAPI_FUNC(int) _PyTime_ObjectToTimespec(
|
||||||
time_t *sec,
|
time_t *sec,
|
||||||
long *nsec,
|
long *nsec,
|
||||||
_PyTime_round_t);
|
_PyTime_round_t);
|
||||||
#endif
|
|
||||||
|
|
||||||
/* Dummy to force linking. */
|
/* Initialize time.
|
||||||
PyAPI_FUNC(void) _PyTime_Init(void);
|
Return 0 on success, raise an exception and return -1 on error. */
|
||||||
|
PyAPI_FUNC(int) _PyTime_Init(void);
|
||||||
|
#endif /* Py_LIMITED_API */
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
|
|
@ -1535,7 +1535,10 @@ static PyObject*
|
||||||
floattime(_Py_clock_info_t *info)
|
floattime(_Py_clock_info_t *info)
|
||||||
{
|
{
|
||||||
_PyTime_timeval t;
|
_PyTime_timeval t;
|
||||||
_PyTime_gettimeofday_info(&t, info);
|
if (_PyTime_gettimeofday_info(&t, info) < 0) {
|
||||||
|
assert(info != NULL);
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
return PyFloat_FromDouble((double)t.tv_sec + t.tv_usec * 1e-6);
|
return PyFloat_FromDouble((double)t.tv_sec + t.tv_usec * 1e-6);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -452,7 +452,8 @@ _Py_InitializeEx_Private(int install_sigs, int install_importlib)
|
||||||
if (_PyFaulthandler_Init())
|
if (_PyFaulthandler_Init())
|
||||||
Py_FatalError("Py_Initialize: can't initialize faulthandler");
|
Py_FatalError("Py_Initialize: can't initialize faulthandler");
|
||||||
|
|
||||||
_PyTime_Init();
|
if (_PyTime_Init() < 0)
|
||||||
|
Py_FatalError("Py_Initialize: can't initialize time");
|
||||||
|
|
||||||
if (initfsencoding(interp) < 0)
|
if (initfsencoding(interp) < 0)
|
||||||
Py_FatalError("Py_Initialize: unable to load the file system codec");
|
Py_FatalError("Py_Initialize: unable to load the file system codec");
|
||||||
|
|
153
Python/pytime.c
153
Python/pytime.c
|
@ -3,29 +3,16 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if defined(__APPLE__) && defined(HAVE_GETTIMEOFDAY) && defined(HAVE_FTIME)
|
static int
|
||||||
/*
|
pygettimeofday(_PyTime_timeval *tp, _Py_clock_info_t *info, int raise)
|
||||||
* _PyTime_gettimeofday falls back to ftime when getttimeofday fails because the latter
|
|
||||||
* might fail on some platforms. This fallback is unwanted on MacOSX because
|
|
||||||
* that makes it impossible to use a binary build on OSX 10.4 on earlier
|
|
||||||
* releases of the OS. Therefore claim we don't support ftime.
|
|
||||||
*/
|
|
||||||
# undef HAVE_FTIME
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(HAVE_FTIME) && !defined(MS_WINDOWS)
|
|
||||||
#include <sys/timeb.h>
|
|
||||||
extern int ftime(struct timeb *);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
static void
|
|
||||||
pygettimeofday(_PyTime_timeval *tp, _Py_clock_info_t *info)
|
|
||||||
{
|
{
|
||||||
#ifdef MS_WINDOWS
|
#ifdef MS_WINDOWS
|
||||||
FILETIME system_time;
|
FILETIME system_time;
|
||||||
ULARGE_INTEGER large;
|
ULARGE_INTEGER large;
|
||||||
ULONGLONG microseconds;
|
ULONGLONG microseconds;
|
||||||
|
|
||||||
|
assert(info == NULL || raise);
|
||||||
|
|
||||||
GetSystemTimeAsFileTime(&system_time);
|
GetSystemTimeAsFileTime(&system_time);
|
||||||
large.u.LowPart = system_time.dwLowDateTime;
|
large.u.LowPart = system_time.dwLowDateTime;
|
||||||
large.u.HighPart = system_time.dwHighDateTime;
|
large.u.HighPart = system_time.dwHighDateTime;
|
||||||
|
@ -37,55 +24,51 @@ pygettimeofday(_PyTime_timeval *tp, _Py_clock_info_t *info)
|
||||||
tp->tv_usec = microseconds % 1000000;
|
tp->tv_usec = microseconds % 1000000;
|
||||||
if (info) {
|
if (info) {
|
||||||
DWORD timeAdjustment, timeIncrement;
|
DWORD timeAdjustment, timeIncrement;
|
||||||
BOOL isTimeAdjustmentDisabled;
|
BOOL isTimeAdjustmentDisabled, ok;
|
||||||
|
|
||||||
info->implementation = "GetSystemTimeAsFileTime()";
|
info->implementation = "GetSystemTimeAsFileTime()";
|
||||||
info->monotonic = 0;
|
info->monotonic = 0;
|
||||||
(void) GetSystemTimeAdjustment(&timeAdjustment, &timeIncrement,
|
ok = GetSystemTimeAdjustment(&timeAdjustment, &timeIncrement,
|
||||||
&isTimeAdjustmentDisabled);
|
&isTimeAdjustmentDisabled);
|
||||||
|
if (!ok) {
|
||||||
|
PyErr_SetFromWindowsErr(0);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
info->resolution = timeIncrement * 1e-7;
|
info->resolution = timeIncrement * 1e-7;
|
||||||
info->adjustable = 1;
|
info->adjustable = 1;
|
||||||
}
|
}
|
||||||
#else
|
return 0;
|
||||||
/* There are three ways to get the time:
|
|
||||||
(1) gettimeofday() -- resolution in microseconds
|
|
||||||
(2) ftime() -- resolution in milliseconds
|
|
||||||
(3) time() -- resolution in seconds
|
|
||||||
In all cases the return value in a timeval struct.
|
|
||||||
Since on some systems (e.g. SCO ODT 3.0) gettimeofday() may
|
|
||||||
fail, so we fall back on ftime() or time().
|
|
||||||
Note: clock resolution does not imply clock accuracy! */
|
|
||||||
|
|
||||||
#if (defined(HAVE_CLOCK_GETTIME) || defined(HAVE_GETTIMEOFDAY) \
|
#else /* MS_WINDOWS */
|
||||||
|| defined(HAVE_FTIME))
|
|
||||||
int err;
|
int err;
|
||||||
#endif
|
|
||||||
#ifdef HAVE_CLOCK_GETTIME
|
#ifdef HAVE_CLOCK_GETTIME
|
||||||
struct timespec ts;
|
struct timespec ts;
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_FTIME
|
|
||||||
struct timeb t;
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/* test clock_gettime(CLOCK_REALTIME) */
|
assert(info == NULL || raise);
|
||||||
|
|
||||||
#ifdef HAVE_CLOCK_GETTIME
|
#ifdef HAVE_CLOCK_GETTIME
|
||||||
err = clock_gettime(CLOCK_REALTIME, &ts);
|
err = clock_gettime(CLOCK_REALTIME, &ts);
|
||||||
if (err == 0) {
|
if (err) {
|
||||||
if (info) {
|
if (raise)
|
||||||
struct timespec res;
|
PyErr_SetFromErrno(PyExc_OSError);
|
||||||
info->implementation = "clock_gettime(CLOCK_REALTIME)";
|
return -1;
|
||||||
info->monotonic = 0;
|
|
||||||
info->adjustable = 1;
|
|
||||||
if (clock_getres(CLOCK_REALTIME, &res) == 0)
|
|
||||||
info->resolution = res.tv_sec + res.tv_nsec * 1e-9;
|
|
||||||
else
|
|
||||||
info->resolution = 1e-9;
|
|
||||||
}
|
|
||||||
tp->tv_sec = ts.tv_sec;
|
|
||||||
tp->tv_usec = ts.tv_nsec / 1000;
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
#endif
|
tp->tv_sec = ts.tv_sec;
|
||||||
|
tp->tv_usec = ts.tv_nsec / 1000;
|
||||||
|
|
||||||
|
if (info) {
|
||||||
|
struct timespec res;
|
||||||
|
info->implementation = "clock_gettime(CLOCK_REALTIME)";
|
||||||
|
info->monotonic = 0;
|
||||||
|
info->adjustable = 1;
|
||||||
|
if (clock_getres(CLOCK_REALTIME, &res) == 0)
|
||||||
|
info->resolution = res.tv_sec + res.tv_nsec * 1e-9;
|
||||||
|
else
|
||||||
|
info->resolution = 1e-9;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
#else /* HAVE_CLOCK_GETTIME */
|
||||||
|
|
||||||
/* test gettimeofday() */
|
/* test gettimeofday() */
|
||||||
#ifdef HAVE_GETTIMEOFDAY
|
#ifdef HAVE_GETTIMEOFDAY
|
||||||
|
@ -94,51 +77,39 @@ pygettimeofday(_PyTime_timeval *tp, _Py_clock_info_t *info)
|
||||||
#else
|
#else
|
||||||
err = gettimeofday(tp, (struct timezone *)NULL);
|
err = gettimeofday(tp, (struct timezone *)NULL);
|
||||||
#endif
|
#endif
|
||||||
if (err == 0) {
|
if (err) {
|
||||||
if (info) {
|
if (raise)
|
||||||
info->implementation = "gettimeofday()";
|
PyErr_SetFromErrno(PyExc_OSError);
|
||||||
info->resolution = 1e-6;
|
return -1;
|
||||||
info->monotonic = 0;
|
|
||||||
info->adjustable = 1;
|
|
||||||
}
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (info) {
|
||||||
|
info->implementation = "gettimeofday()";
|
||||||
|
info->resolution = 1e-6;
|
||||||
|
info->monotonic = 0;
|
||||||
|
info->adjustable = 1;
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
#endif /* HAVE_GETTIMEOFDAY */
|
#endif /* HAVE_GETTIMEOFDAY */
|
||||||
|
#endif /* !HAVE_CLOCK_GETTIME */
|
||||||
#ifdef HAVE_FTIME
|
#endif /* !MS_WINDOWS */
|
||||||
ftime(&t);
|
|
||||||
tp->tv_sec = t.time;
|
|
||||||
tp->tv_usec = t.millitm * 1000;
|
|
||||||
if (info) {
|
|
||||||
info->implementation = "ftime()";
|
|
||||||
info->resolution = 1e-3;
|
|
||||||
info->monotonic = 0;
|
|
||||||
info->adjustable = 1;
|
|
||||||
}
|
|
||||||
#else /* !HAVE_FTIME */
|
|
||||||
tp->tv_sec = time(NULL);
|
|
||||||
tp->tv_usec = 0;
|
|
||||||
if (info) {
|
|
||||||
info->implementation = "time()";
|
|
||||||
info->resolution = 1.0;
|
|
||||||
info->monotonic = 0;
|
|
||||||
info->adjustable = 1;
|
|
||||||
}
|
|
||||||
#endif /* !HAVE_FTIME */
|
|
||||||
|
|
||||||
#endif /* MS_WINDOWS */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
_PyTime_gettimeofday(_PyTime_timeval *tp)
|
_PyTime_gettimeofday(_PyTime_timeval *tp)
|
||||||
{
|
{
|
||||||
pygettimeofday(tp, NULL);
|
if (pygettimeofday(tp, NULL, 0) < 0) {
|
||||||
|
/* cannot happen, _PyTime_Init() checks that pygettimeofday() works */
|
||||||
|
assert(0);
|
||||||
|
tp->tv_sec = 0;
|
||||||
|
tp->tv_usec = 0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
int
|
||||||
_PyTime_gettimeofday_info(_PyTime_timeval *tp, _Py_clock_info_t *info)
|
_PyTime_gettimeofday_info(_PyTime_timeval *tp, _Py_clock_info_t *info)
|
||||||
{
|
{
|
||||||
pygettimeofday(tp, info);
|
return pygettimeofday(tp, info, 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void
|
static void
|
||||||
|
@ -273,8 +244,12 @@ _PyTime_ObjectToTimeval(PyObject *obj, time_t *sec, long *usec,
|
||||||
return _PyTime_ObjectToDenominator(obj, sec, usec, 1e6, round);
|
return _PyTime_ObjectToDenominator(obj, sec, usec, 1e6, round);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
int
|
||||||
_PyTime_Init()
|
_PyTime_Init(void)
|
||||||
{
|
{
|
||||||
/* Do nothing. Needed to force linking. */
|
_PyTime_timeval tv;
|
||||||
|
/* ensure that the system clock works */
|
||||||
|
if (_PyTime_gettimeofday_info(&tv, NULL) < 0)
|
||||||
|
return -1;
|
||||||
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue