2010-12-03 16:14:31 -04:00
|
|
|
#ifndef Py_LIMITED_API
|
2010-08-05 14:34:27 -03:00
|
|
|
#ifndef Py_PYTIME_H
|
|
|
|
#define Py_PYTIME_H
|
|
|
|
|
2012-02-08 18:03:19 -04:00
|
|
|
#include "pyconfig.h" /* include for defines */
|
2012-03-02 17:54:03 -04:00
|
|
|
#include "object.h"
|
2010-08-05 14:34:27 -03:00
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
Symbols and macros to supply platform-independent interfaces to time related
|
|
|
|
functions and constants
|
|
|
|
**************************************************************************/
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_GETTIMEOFDAY
|
|
|
|
typedef struct timeval _PyTime_timeval;
|
|
|
|
#else
|
|
|
|
typedef struct {
|
|
|
|
time_t tv_sec; /* seconds since Jan. 1, 1970 */
|
|
|
|
long tv_usec; /* and microseconds */
|
|
|
|
} _PyTime_timeval;
|
|
|
|
#endif
|
|
|
|
|
2012-04-28 21:41:27 -03:00
|
|
|
/* Structure used by time.get_clock_info() */
|
|
|
|
typedef struct {
|
|
|
|
const char *implementation;
|
2012-05-01 10:38:34 -03:00
|
|
|
int monotonic;
|
2012-06-12 17:46:37 -03:00
|
|
|
int adjustable;
|
2012-04-28 21:41:27 -03:00
|
|
|
double resolution;
|
|
|
|
} _Py_clock_info_t;
|
|
|
|
|
2010-08-05 14:34:27 -03:00
|
|
|
/* Similar to POSIX gettimeofday but cannot fail. If system gettimeofday
|
|
|
|
* fails or is not available, fall back to lower resolution clocks.
|
|
|
|
*/
|
|
|
|
PyAPI_FUNC(void) _PyTime_gettimeofday(_PyTime_timeval *tp);
|
|
|
|
|
2012-04-28 21:41:27 -03:00
|
|
|
/* Similar to _PyTime_gettimeofday() but retrieve also information on the
|
|
|
|
* clock used to get the current time. */
|
2014-08-29 11:31:59 -03:00
|
|
|
PyAPI_FUNC(int) _PyTime_gettimeofday_info(
|
2012-04-28 21:41:27 -03:00
|
|
|
_PyTime_timeval *tp,
|
|
|
|
_Py_clock_info_t *info);
|
|
|
|
|
2010-09-28 18:23:11 -03:00
|
|
|
#define _PyTime_INTERVAL(tv_start, tv_end) \
|
|
|
|
((tv_end.tv_sec - tv_start.tv_sec) + \
|
|
|
|
(tv_end.tv_usec - tv_start.tv_usec) * 0.000001)
|
|
|
|
|
2014-02-16 19:02:43 -04:00
|
|
|
typedef enum {
|
|
|
|
/* Round towards zero. */
|
|
|
|
_PyTime_ROUND_DOWN=0,
|
|
|
|
/* Round away from zero. */
|
|
|
|
_PyTime_ROUND_UP
|
|
|
|
} _PyTime_round_t;
|
|
|
|
|
2012-03-13 09:35:55 -03:00
|
|
|
/* Convert a number of seconds, int or float, to time_t. */
|
|
|
|
PyAPI_FUNC(int) _PyTime_ObjectToTime_t(
|
|
|
|
PyObject *obj,
|
2014-02-16 19:02:43 -04:00
|
|
|
time_t *sec,
|
|
|
|
_PyTime_round_t);
|
2012-03-13 09:35:55 -03:00
|
|
|
|
2012-04-19 19:07:49 -03:00
|
|
|
/* Convert a time_t to a PyLong. */
|
|
|
|
PyAPI_FUNC(PyObject *) _PyLong_FromTime_t(
|
|
|
|
time_t sec);
|
|
|
|
|
2012-05-03 04:30:07 -03:00
|
|
|
/* Convert a PyLong to a time_t. */
|
|
|
|
PyAPI_FUNC(time_t) _PyLong_AsTime_t(
|
|
|
|
PyObject *obj);
|
|
|
|
|
2012-03-13 09:35:55 -03:00
|
|
|
/* Convert a number of seconds, int or float, to a timeval structure.
|
|
|
|
usec is in the range [0; 999999] and rounded towards zero.
|
|
|
|
For example, -1.2 is converted to (-2, 800000). */
|
|
|
|
PyAPI_FUNC(int) _PyTime_ObjectToTimeval(
|
|
|
|
PyObject *obj,
|
|
|
|
time_t *sec,
|
2014-02-16 19:02:43 -04:00
|
|
|
long *usec,
|
|
|
|
_PyTime_round_t);
|
2012-03-13 09:35:55 -03:00
|
|
|
|
2012-03-02 17:54:03 -04:00
|
|
|
/* Convert a number of seconds, int or float, to a timespec structure.
|
2012-03-13 09:35:55 -03:00
|
|
|
nsec is in the range [0; 999999999] and rounded towards zero.
|
|
|
|
For example, -1.2 is converted to (-2, 800000000). */
|
2012-03-02 17:54:03 -04:00
|
|
|
PyAPI_FUNC(int) _PyTime_ObjectToTimespec(
|
|
|
|
PyObject *obj,
|
|
|
|
time_t *sec,
|
2014-02-16 19:02:43 -04:00
|
|
|
long *nsec,
|
|
|
|
_PyTime_round_t);
|
2012-03-02 17:54:03 -04:00
|
|
|
|
2014-09-02 18:18:25 -03:00
|
|
|
/* Get the time of a monotonic clock, i.e. a clock that cannot go backwards.
|
|
|
|
The clock is not affected by system clock updates. The reference point of
|
|
|
|
the returned value is undefined, so that only the difference between the
|
|
|
|
results of consecutive calls is valid.
|
|
|
|
|
|
|
|
The function never fails. _PyTime_Init() ensures that a monotonic clock
|
|
|
|
is available and works. */
|
|
|
|
PyAPI_FUNC(void) _PyTime_monotonic(
|
|
|
|
_PyTime_timeval *tp);
|
|
|
|
|
|
|
|
/* Similar to _PyTime_monotonic(), fill also info (if set) with information of
|
|
|
|
the function used to get the time.
|
|
|
|
|
|
|
|
Return 0 on success, raise an exception and return -1 on error. */
|
|
|
|
PyAPI_FUNC(int) _PyTime_monotonic_info(
|
|
|
|
_PyTime_timeval *tp,
|
|
|
|
_Py_clock_info_t *info);
|
|
|
|
|
2015-03-19 21:42:20 -03:00
|
|
|
/* Add interval seconds to tv */
|
|
|
|
PyAPI_FUNC(void)
|
|
|
|
_PyTime_AddDouble(_PyTime_timeval *tv, double interval,
|
|
|
|
_PyTime_round_t round);
|
|
|
|
|
2014-08-29 11:31:59 -03:00
|
|
|
/* Initialize time.
|
|
|
|
Return 0 on success, raise an exception and return -1 on error. */
|
|
|
|
PyAPI_FUNC(int) _PyTime_Init(void);
|
2010-08-05 14:34:27 -03:00
|
|
|
|
2015-03-27 09:31:18 -03:00
|
|
|
/****************** NEW _PyTime_t API **********************/
|
|
|
|
|
|
|
|
#ifdef PY_INT64_T
|
|
|
|
typedef PY_INT64_T _PyTime_t;
|
|
|
|
#else
|
|
|
|
# error "_PyTime_t need signed 64-bit integer type"
|
|
|
|
#endif
|
|
|
|
|
2015-03-27 18:27:24 -03:00
|
|
|
/* Create a timestamp from a number of nanoseconds (C long). */
|
|
|
|
PyAPI_FUNC(_PyTime_t) _PyTime_FromNanoseconds(PY_LONG_LONG ns);
|
|
|
|
|
2015-03-27 09:31:18 -03:00
|
|
|
/* Convert a Python float or int to a timetamp.
|
|
|
|
Raise an exception and return -1 on error, return 0 on success. */
|
2015-03-27 13:12:45 -03:00
|
|
|
PyAPI_FUNC(int) _PyTime_FromSecondsObject(_PyTime_t *t,
|
2015-03-27 09:31:18 -03:00
|
|
|
PyObject *obj,
|
|
|
|
_PyTime_round_t round);
|
|
|
|
|
2015-03-27 18:27:24 -03:00
|
|
|
/* Convert a timestamp to a number of seconds as a C double. */
|
|
|
|
PyAPI_FUNC(double) _PyTime_AsSecondsDouble(_PyTime_t t);
|
|
|
|
|
2015-03-27 09:31:18 -03:00
|
|
|
/* Convert timestamp to a number of milliseconds (10^-3 seconds). */
|
2015-03-27 13:12:45 -03:00
|
|
|
PyAPI_FUNC(_PyTime_t) _PyTime_AsMilliseconds(_PyTime_t t,
|
2015-03-27 09:31:18 -03:00
|
|
|
_PyTime_round_t round);
|
|
|
|
|
2015-03-27 13:12:45 -03:00
|
|
|
/* Convert timestamp to a number of nanoseconds (10^-9 seconds) as a Python int
|
|
|
|
object. */
|
|
|
|
PyAPI_FUNC(PyObject *) _PyTime_AsNanosecondsObject(_PyTime_t t);
|
|
|
|
|
2015-03-27 18:27:24 -03:00
|
|
|
/* Convert a timestamp to a timeval structure (microsecond resolution).
|
|
|
|
Raise an exception and return -1 on error, return 0 on success. */
|
2015-03-27 09:31:18 -03:00
|
|
|
PyAPI_FUNC(int) _PyTime_AsTimeval(_PyTime_t t,
|
|
|
|
struct timeval *tv,
|
|
|
|
_PyTime_round_t round);
|
|
|
|
|
2015-03-27 14:19:03 -03:00
|
|
|
#ifdef HAVE_CLOCK_GETTIME
|
|
|
|
/* Convert a timestamp to a timespec structure (nanosecond resolution).
|
|
|
|
Raise an exception and return -1 on error, return 0 on success. */
|
|
|
|
PyAPI_FUNC(int) _PyTime_AsTimespec(_PyTime_t t, struct timespec *ts);
|
|
|
|
#endif
|
|
|
|
|
2015-03-27 14:16:17 -03:00
|
|
|
/* Get the current time from the system clock.
|
|
|
|
* Fill clock information if info is not NULL.
|
|
|
|
* Raise an exception and return -1 on error, return 0 on success.
|
|
|
|
*/
|
|
|
|
PyAPI_FUNC(int) _PyTime_GetSystemClockWithInfo(
|
|
|
|
_PyTime_t *t,
|
|
|
|
_Py_clock_info_t *info);
|
|
|
|
|
2015-03-27 09:31:18 -03:00
|
|
|
/* Get the time of a monotonic clock, i.e. a clock that cannot go backwards.
|
|
|
|
The clock is not affected by system clock updates. The reference point of
|
|
|
|
the returned value is undefined, so that only the difference between the
|
|
|
|
results of consecutive calls is valid.
|
|
|
|
|
|
|
|
The function cannot fail. _PyTime_Init() ensures that a monotonic clock
|
|
|
|
is available and works. */
|
|
|
|
PyAPI_FUNC(_PyTime_t) _PyTime_GetMonotonicClock(void);
|
|
|
|
|
2015-03-27 18:27:24 -03:00
|
|
|
/* Get the time of a monotonic clock, i.e. a clock that cannot go backwards.
|
|
|
|
The clock is not affected by system clock updates. The reference point of
|
|
|
|
the returned value is undefined, so that only the difference between the
|
|
|
|
results of consecutive calls is valid.
|
|
|
|
|
|
|
|
Fill info (if set) with information of the function used to get the time.
|
|
|
|
|
|
|
|
Return 0 on success, raise an exception and return -1 on error. */
|
|
|
|
PyAPI_FUNC(int) _PyTime_GetMonotonicClockWithInfo(
|
|
|
|
_PyTime_t *t,
|
|
|
|
_Py_clock_info_t *info);
|
|
|
|
|
2015-03-27 09:31:18 -03:00
|
|
|
|
2010-08-05 14:34:27 -03:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* Py_PYTIME_H */
|
2010-12-03 16:14:31 -04:00
|
|
|
#endif /* Py_LIMITED_API */
|