pytime.c 16.2 KB
Newer Older
1
#include "Python.h"
2 3 4
#ifdef MS_WINDOWS
#include <windows.h>
#endif
5

6 7 8 9
#if defined(__APPLE__)
#include <mach/mach_time.h>   /* mach_absolute_time(), mach_timebase_info() */
#endif

10
/* To millisecond (10^-3) */
11
#define SEC_TO_MS 1000
12 13

/* To microseconds (10^-6) */
14
#define MS_TO_US 1000
15 16 17
#define SEC_TO_US (SEC_TO_MS * MS_TO_US)

/* To nanoseconds (10^-9) */
18
#define US_TO_NS 1000
19 20
#define MS_TO_NS (MS_TO_US * US_TO_NS)
#define SEC_TO_NS (SEC_TO_MS * MS_TO_NS)
21

22 23 24 25
/* Conversion from nanoseconds */
#define NS_TO_MS (1000 * 1000)
#define NS_TO_US (1000)

26 27 28 29 30 31 32
static void
error_time_t_overflow(void)
{
    PyErr_SetString(PyExc_OverflowError,
                    "timestamp out of range for platform time_t");
}

33
time_t
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
_PyLong_AsTime_t(PyObject *obj)
{
#if defined(HAVE_LONG_LONG) && SIZEOF_TIME_T == SIZEOF_LONG_LONG
    PY_LONG_LONG val;
    val = PyLong_AsLongLong(obj);
#else
    long val;
    assert(sizeof(time_t) <= sizeof(long));
    val = PyLong_AsLong(obj);
#endif
    if (val == -1 && PyErr_Occurred()) {
        if (PyErr_ExceptionMatches(PyExc_OverflowError))
            error_time_t_overflow();
        return -1;
    }
    return (time_t)val;
}

52 53 54 55 56 57 58 59 60 61 62
PyObject *
_PyLong_FromTime_t(time_t t)
{
#if defined(HAVE_LONG_LONG) && SIZEOF_TIME_T == SIZEOF_LONG_LONG
    return PyLong_FromLongLong((PY_LONG_LONG)t);
#else
    assert(sizeof(time_t) <= sizeof(long));
    return PyLong_FromLong((long)t);
#endif
}

63 64
static int
_PyTime_ObjectToDenominator(PyObject *obj, time_t *sec, long *numerator,
65
                            double denominator, _PyTime_round_t round)
66
{
67
    assert(denominator <= LONG_MAX);
68
    if (PyFloat_Check(obj)) {
69 70 71
        double d, intpart, err;
        /* volatile avoids unsafe optimization on float enabled by gcc -O3 */
        volatile double floatpart;
72 73 74 75 76 77 78 79

        d = PyFloat_AsDouble(obj);
        floatpart = modf(d, &intpart);
        if (floatpart < 0) {
            floatpart = 1.0 + floatpart;
            intpart -= 1.0;
        }

80
        floatpart *= denominator;
81
        if (round == _PyTime_ROUND_CEILING) {
82 83 84 85
            floatpart = ceil(floatpart);
            if (floatpart >= denominator) {
                floatpart = 0.0;
                intpart += 1.0;
86 87
            }
        }
88 89 90
        else {
            floatpart = floor(floatpart);
        }
91

92 93
        *sec = (time_t)intpart;
        err = intpart - (double)*sec;
94 95 96 97
        if (err <= -1.0 || err >= 1.0) {
            error_time_t_overflow();
            return -1;
        }
98

99
        *numerator = (long)floatpart;
100 101 102
        return 0;
    }
    else {
103 104 105 106 107 108 109 110 111
        *sec = _PyLong_AsTime_t(obj);
        if (*sec == (time_t)-1 && PyErr_Occurred())
            return -1;
        *numerator = 0;
        return 0;
    }
}

int
112
_PyTime_ObjectToTime_t(PyObject *obj, time_t *sec, _PyTime_round_t round)
113 114 115 116 117
{
    if (PyFloat_Check(obj)) {
        double d, intpart, err;

        d = PyFloat_AsDouble(obj);
118
        if (round == _PyTime_ROUND_CEILING)
119 120 121
            d = ceil(d);
        else
            d = floor(d);
122 123 124 125 126 127 128
        (void)modf(d, &intpart);

        *sec = (time_t)intpart;
        err = intpart - (double)*sec;
        if (err <= -1.0 || err >= 1.0) {
            error_time_t_overflow();
            return -1;
129 130 131
        }
        return 0;
    }
132 133 134 135 136 137 138
    else {
        *sec = _PyLong_AsTime_t(obj);
        if (*sec == (time_t)-1 && PyErr_Occurred())
            return -1;
        return 0;
    }
}
139

140
int
141 142
_PyTime_ObjectToTimespec(PyObject *obj, time_t *sec, long *nsec,
                         _PyTime_round_t round)
143
{
144
    return _PyTime_ObjectToDenominator(obj, sec, nsec, 1e9, round);
145 146 147
}

int
148 149
_PyTime_ObjectToTimeval(PyObject *obj, time_t *sec, long *usec,
                        _PyTime_round_t round)
150
{
151
    return _PyTime_ObjectToDenominator(obj, sec, usec, 1e6, round);
152 153
}

154 155 156 157 158 159 160
static void
_PyTime_overflow(void)
{
    PyErr_SetString(PyExc_OverflowError,
                    "timestamp too large to convert to C _PyTime_t");
}

161 162 163 164 165 166 167 168 169 170 171 172 173
_PyTime_t
_PyTime_FromSeconds(int seconds)
{
    _PyTime_t t;
    /* ensure that integer overflow cannot happen, int type should have 32
       bits, whereas _PyTime_t type has at least 64 bits (SEC_TO_MS takes 30
       bits). */
    assert((seconds >= 0 && seconds <= _PyTime_MAX / SEC_TO_NS)
           || (seconds < 0 && seconds >= _PyTime_MIN / SEC_TO_NS));
    t = (_PyTime_t)seconds * SEC_TO_NS;
    return t;
}

174 175 176 177 178 179 180 181 182
_PyTime_t
_PyTime_FromNanoseconds(PY_LONG_LONG ns)
{
    _PyTime_t t;
    assert(sizeof(PY_LONG_LONG) <= sizeof(_PyTime_t));
    t = Py_SAFE_DOWNCAST(ns, PY_LONG_LONG, _PyTime_t);
    return t;
}

183
#ifdef HAVE_CLOCK_GETTIME
184
static int
185
_PyTime_FromTimespec(_PyTime_t *tp, struct timespec *ts, int raise)
186 187
{
    _PyTime_t t;
188 189
    int res = 0;

190 191
    t = (_PyTime_t)ts->tv_sec * SEC_TO_NS;
    if (t / SEC_TO_NS != ts->tv_sec) {
192 193 194
        if (raise)
            _PyTime_overflow();
        res = -1;
195 196 197 198 199
    }

    t += ts->tv_nsec;

    *tp = t;
200
    return res;
201
}
202
#elif !defined(MS_WINDOWS)
203
static int
204
_PyTime_FromTimeval(_PyTime_t *tp, struct timeval *tv, int raise)
205 206
{
    _PyTime_t t;
207
    int res = 0;
208 209 210

    t = (_PyTime_t)tv->tv_sec * SEC_TO_NS;
    if (t / SEC_TO_NS != tv->tv_sec) {
211 212 213
        if (raise)
            _PyTime_overflow();
        res = -1;
214 215 216 217 218
    }

    t += (_PyTime_t)tv->tv_usec * US_TO_NS;

    *tp = t;
219
    return res;
220
}
221 222
#endif

223 224 225
static int
_PyTime_FromObject(_PyTime_t *t, PyObject *obj, _PyTime_round_t round,
                   long to_nanoseconds)
226 227
{
    if (PyFloat_Check(obj)) {
228 229
        /* volatile avoids unsafe optimization on float enabled by gcc -O3 */
        volatile double d, err;
230 231 232

        /* convert to a number of nanoseconds */
        d = PyFloat_AsDouble(obj);
233
        d *= to_nanoseconds;
234

235
        if (round == _PyTime_ROUND_CEILING)
236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262
            d = ceil(d);
        else
            d = floor(d);

        *t = (_PyTime_t)d;
        err = d - (double)*t;
        if (fabs(err) >= 1.0) {
            _PyTime_overflow();
            return -1;
        }
        return 0;
    }
    else {
#ifdef HAVE_LONG_LONG
        PY_LONG_LONG sec;
        sec = PyLong_AsLongLong(obj);
        assert(sizeof(PY_LONG_LONG) <= sizeof(_PyTime_t));
#else
        long sec;
        sec = PyLong_AsLong(obj);
        assert(sizeof(PY_LONG_LONG) <= sizeof(_PyTime_t));
#endif
        if (sec == -1 && PyErr_Occurred()) {
            if (PyErr_ExceptionMatches(PyExc_OverflowError))
                _PyTime_overflow();
            return -1;
        }
263 264
        *t = sec * to_nanoseconds;
        if (*t / to_nanoseconds != sec) {
265 266 267 268 269 270 271
            _PyTime_overflow();
            return -1;
        }
        return 0;
    }
}

272 273 274 275 276 277 278 279 280 281 282 283
int
_PyTime_FromSecondsObject(_PyTime_t *t, PyObject *obj, _PyTime_round_t round)
{
    return _PyTime_FromObject(t, obj, round, SEC_TO_NS);
}

int
_PyTime_FromMillisecondsObject(_PyTime_t *t, PyObject *obj, _PyTime_round_t round)
{
    return _PyTime_FromObject(t, obj, round, MS_TO_NS);
}

284 285 286 287 288 289 290 291 292 293 294
double
_PyTime_AsSecondsDouble(_PyTime_t t)
{
    _PyTime_t sec, ns;
    /* Divide using integers to avoid rounding issues on the integer part.
       1e-9 cannot be stored exactly in IEEE 64-bit. */
    sec = t / SEC_TO_NS;
    ns = t % SEC_TO_NS;
    return (double)sec + (double)ns * 1e-9;
}

295 296 297 298 299 300 301 302 303 304 305 306
PyObject *
_PyTime_AsNanosecondsObject(_PyTime_t t)
{
#ifdef HAVE_LONG_LONG
    assert(sizeof(PY_LONG_LONG) >= sizeof(_PyTime_t));
    return PyLong_FromLongLong((PY_LONG_LONG)t);
#else
    assert(sizeof(long) >= sizeof(_PyTime_t));
    return PyLong_FromLong((long)t);
#endif
}

307
static _PyTime_t
308 309
_PyTime_Divide(const _PyTime_t t, const _PyTime_t k,
               const _PyTime_round_t round)
310
{
311 312 313
    assert(k > 1);
    if (round == _PyTime_ROUND_CEILING) {
        if (t >= 0)
314
            return (t + k - 1) / k;
315 316 317 318 319 320
        else
            return t / k;
    }
    else {
        if (t >= 0)
            return t / k;
321
        else
322
            return (t - (k - 1)) / k;
323 324 325 326 327 328
    }
}

_PyTime_t
_PyTime_AsMilliseconds(_PyTime_t t, _PyTime_round_t round)
{
329
    return _PyTime_Divide(t, NS_TO_MS, round);
330 331
}

332 333 334
_PyTime_t
_PyTime_AsMicroseconds(_PyTime_t t, _PyTime_round_t round)
{
335
    return _PyTime_Divide(t, NS_TO_US, round);
336 337
}

338
static int
339 340
_PyTime_AsTimeval_impl(_PyTime_t t, _PyTime_t *p_secs, int *p_us,
                       _PyTime_round_t round)
341 342
{
    _PyTime_t secs, ns;
343
    int usec;
344
    int res = 0;
345 346 347 348

    secs = t / SEC_TO_NS;
    ns = t % SEC_TO_NS;

349 350 351 352 353 354 355
    usec = (int)_PyTime_Divide(ns, US_TO_NS, round);
    if (usec < 0) {
        usec += SEC_TO_US;
        if (secs != _PyTime_MIN)
            secs -= 1;
        else
            res = -1;
356
    }
357 358 359 360 361 362
    else if (usec >= SEC_TO_US) {
        usec -= SEC_TO_US;
        if (secs != _PyTime_MAX)
            secs += 1;
        else
            res = -1;
363
    }
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
    assert(0 <= usec && usec < SEC_TO_US);

    *p_secs = secs;
    *p_us = usec;

    return res;
}

static int
_PyTime_AsTimevalStruct_impl(_PyTime_t t, struct timeval *tv,
                             _PyTime_round_t round, int raise)
{
    _PyTime_t secs;
    int us;
    int res;

    res = _PyTime_AsTimeval_impl(t, &secs, &us, round);

#ifdef MS_WINDOWS
383 384 385 386
    tv->tv_sec = (long)secs;
#else
    tv->tv_sec = secs;
#endif
387
    tv->tv_usec = us;
388

389 390 391 392
    if (res < 0 || (_PyTime_t)tv->tv_sec != secs) {
        if (raise)
            error_time_t_overflow();
        return -1;
393
    }
394
    return 0;
395 396
}

397 398 399
int
_PyTime_AsTimeval(_PyTime_t t, struct timeval *tv, _PyTime_round_t round)
{
400
    return _PyTime_AsTimevalStruct_impl(t, tv, round, 1);
401 402 403 404 405
}

int
_PyTime_AsTimeval_noraise(_PyTime_t t, struct timeval *tv, _PyTime_round_t round)
{
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
    return _PyTime_AsTimevalStruct_impl(t, tv, round, 0);
}

int
_PyTime_AsTimevalTime_t(_PyTime_t t, time_t *p_secs, int *us,
                        _PyTime_round_t round)
{
    _PyTime_t secs;
    int res;

    res = _PyTime_AsTimeval_impl(t, &secs, us, round);

    *p_secs = secs;

    if (res < 0 || (_PyTime_t)*p_secs != secs) {
        error_time_t_overflow();
        return -1;
    }
    return 0;
425 426
}

427
#if defined(HAVE_CLOCK_GETTIME) || defined(HAVE_KQUEUE)
428 429 430
int
_PyTime_AsTimespec(_PyTime_t t, struct timespec *ts)
{
431 432 433
    _PyTime_t secs, nsec;

    secs = t / SEC_TO_NS;
434 435 436
    nsec = t % SEC_TO_NS;
    if (nsec < 0) {
        nsec += SEC_TO_NS;
437
        secs -= 1;
438
    }
439 440
    ts->tv_sec = (time_t)secs;
    if ((_PyTime_t)ts->tv_sec != secs) {
441 442 443 444
        _PyTime_overflow();
        return -1;
    }
    ts->tv_nsec = nsec;
445 446

    assert(0 <= ts->tv_nsec && ts->tv_nsec <= 999999999);
447 448 449 450
    return 0;
}
#endif

451
static int
452
pygettimeofday(_PyTime_t *tp, _Py_clock_info_t *info, int raise)
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499
{
#ifdef MS_WINDOWS
    FILETIME system_time;
    ULARGE_INTEGER large;

    assert(info == NULL || raise);

    GetSystemTimeAsFileTime(&system_time);
    large.u.LowPart = system_time.dwLowDateTime;
    large.u.HighPart = system_time.dwHighDateTime;
    /* 11,644,473,600,000,000,000: number of nanoseconds between
       the 1st january 1601 and the 1st january 1970 (369 years + 89 leap
       days). */
    *tp = large.QuadPart * 100 - 11644473600000000000;
    if (info) {
        DWORD timeAdjustment, timeIncrement;
        BOOL isTimeAdjustmentDisabled, ok;

        info->implementation = "GetSystemTimeAsFileTime()";
        info->monotonic = 0;
        ok = GetSystemTimeAdjustment(&timeAdjustment, &timeIncrement,
                                     &isTimeAdjustmentDisabled);
        if (!ok) {
            PyErr_SetFromWindowsErr(0);
            return -1;
        }
        info->resolution = timeIncrement * 1e-7;
        info->adjustable = 1;
    }

#else   /* MS_WINDOWS */
    int err;
#ifdef HAVE_CLOCK_GETTIME
    struct timespec ts;
#else
    struct timeval tv;
#endif

    assert(info == NULL || raise);

#ifdef HAVE_CLOCK_GETTIME
    err = clock_gettime(CLOCK_REALTIME, &ts);
    if (err) {
        if (raise)
            PyErr_SetFromErrno(PyExc_OSError);
        return -1;
    }
500
    if (_PyTime_FromTimespec(tp, &ts, raise) < 0)
501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525
        return -1;

    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;
    }
#else   /* HAVE_CLOCK_GETTIME */

     /* test gettimeofday() */
#ifdef GETTIMEOFDAY_NO_TZ
    err = gettimeofday(&tv);
#else
    err = gettimeofday(&tv, (struct timezone *)NULL);
#endif
    if (err) {
        if (raise)
            PyErr_SetFromErrno(PyExc_OSError);
        return -1;
    }
526
    if (_PyTime_FromTimeval(tp, &tv, raise) < 0)
527 528 529 530 531 532 533 534 535 536 537 538 539
        return -1;

    if (info) {
        info->implementation = "gettimeofday()";
        info->resolution = 1e-6;
        info->monotonic = 0;
        info->adjustable = 1;
    }
#endif   /* !HAVE_CLOCK_GETTIME */
#endif   /* !MS_WINDOWS */
    return 0;
}

540 541 542 543
_PyTime_t
_PyTime_GetSystemClock(void)
{
    _PyTime_t t;
544
    if (pygettimeofday(&t, NULL, 0) < 0) {
545 546 547 548 549 550 551 552 553
        /* should not happen, _PyTime_Init() checked the clock at startup */
        assert(0);

        /* use a fixed value instead of a random value from the stack */
        t = 0;
    }
    return t;
}

554 555 556
int
_PyTime_GetSystemClockWithInfo(_PyTime_t *t, _Py_clock_info_t *info)
{
557
    return pygettimeofday(t, info, 1);
558 559 560
}


561
static int
562
pymonotonic(_PyTime_t *tp, _Py_clock_info_t *info, int raise)
563 564 565 566 567 568
{
#if defined(MS_WINDOWS)
    ULONGLONG result;

    assert(info == NULL || raise);

569
    result = GetTickCount64();
570 571 572 573 574 575 576 577 578 579 580 581 582 583

    *tp = result * MS_TO_NS;
    if (*tp / MS_TO_NS != result) {
        if (raise) {
            _PyTime_overflow();
            return -1;
        }
        /* Hello, time traveler! */
        assert(0);
    }

    if (info) {
        DWORD timeAdjustment, timeIncrement;
        BOOL isTimeAdjustmentDisabled, ok;
584
        info->implementation = "GetTickCount64()";
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651
        info->monotonic = 1;
        ok = GetSystemTimeAdjustment(&timeAdjustment, &timeIncrement,
                                     &isTimeAdjustmentDisabled);
        if (!ok) {
            PyErr_SetFromWindowsErr(0);
            return -1;
        }
        info->resolution = timeIncrement * 1e-7;
        info->adjustable = 0;
    }

#elif defined(__APPLE__)
    static mach_timebase_info_data_t timebase;
    uint64_t time;

    if (timebase.denom == 0) {
        /* According to the Technical Q&A QA1398, mach_timebase_info() cannot
           fail: https://developer.apple.com/library/mac/#qa/qa1398/ */
        (void)mach_timebase_info(&timebase);
    }

    time = mach_absolute_time();

    /* apply timebase factor */
    time *= timebase.numer;
    time /= timebase.denom;

    *tp = time;

    if (info) {
        info->implementation = "mach_absolute_time()";
        info->resolution = (double)timebase.numer / timebase.denom * 1e-9;
        info->monotonic = 1;
        info->adjustable = 0;
    }

#else
    struct timespec ts;
#ifdef CLOCK_HIGHRES
    const clockid_t clk_id = CLOCK_HIGHRES;
    const char *implementation = "clock_gettime(CLOCK_HIGHRES)";
#else
    const clockid_t clk_id = CLOCK_MONOTONIC;
    const char *implementation = "clock_gettime(CLOCK_MONOTONIC)";
#endif

    assert(info == NULL || raise);

    if (clock_gettime(clk_id, &ts) != 0) {
        if (raise) {
            PyErr_SetFromErrno(PyExc_OSError);
            return -1;
        }
        return -1;
    }

    if (info) {
        struct timespec res;
        info->monotonic = 1;
        info->implementation = implementation;
        info->adjustable = 0;
        if (clock_getres(clk_id, &res) != 0) {
            PyErr_SetFromErrno(PyExc_OSError);
            return -1;
        }
        info->resolution = res.tv_sec + res.tv_nsec * 1e-9;
    }
652
    if (_PyTime_FromTimespec(tp, &ts, raise) < 0)
653 654 655 656 657 658 659 660 661
        return -1;
#endif
    return 0;
}

_PyTime_t
_PyTime_GetMonotonicClock(void)
{
    _PyTime_t t;
662
    if (pymonotonic(&t, NULL, 0) < 0) {
663 664
        /* should not happen, _PyTime_Init() checked that monotonic clock at
           startup */
665
        assert(0);
666 667

        /* use a fixed value instead of a random value from the stack */
668 669 670 671 672
        t = 0;
    }
    return t;
}

673 674 675
int
_PyTime_GetMonotonicClockWithInfo(_PyTime_t *tp, _Py_clock_info_t *info)
{
676
    return pymonotonic(tp, info, 1);
677 678
}

679 680
int
_PyTime_Init(void)
681
{
682 683
    _PyTime_t t;

684 685
    /* ensure that the system clock works */
    if (_PyTime_GetSystemClockWithInfo(&t, NULL) < 0)
686
        return -1;
687

688
    /* ensure that the operating system provides a monotonic clock */
689
    if (_PyTime_GetMonotonicClockWithInfo(&t, NULL) < 0)
690
        return -1;
691 692 693 694

    /* check that _PyTime_FromSeconds() cannot overflow */
    assert(INT_MAX <= _PyTime_MAX / SEC_TO_NS);
    assert(INT_MIN >= _PyTime_MIN / SEC_TO_NS);
695
    return 0;
696
}