Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 1 | #ifndef Py_LIMITED_API |
Alexander Belopolsky | 6fc4ade | 2010-08-05 17:34:27 +0000 | [diff] [blame] | 2 | #ifndef Py_PYTIME_H |
| 3 | #define Py_PYTIME_H |
| 4 | |
Victor Stinner | 4195b5c | 2012-02-08 23:03:19 +0100 | [diff] [blame] | 5 | #include "pyconfig.h" /* include for defines */ |
Victor Stinner | 643cd68 | 2012-03-02 22:54:03 +0100 | [diff] [blame] | 6 | #include "object.h" |
Alexander Belopolsky | 6fc4ade | 2010-08-05 17:34:27 +0000 | [diff] [blame] | 7 | |
| 8 | /************************************************************************** |
| 9 | Symbols and macros to supply platform-independent interfaces to time related |
| 10 | functions and constants |
| 11 | **************************************************************************/ |
| 12 | #ifdef __cplusplus |
| 13 | extern "C" { |
| 14 | #endif |
| 15 | |
Victor Stinner | 1bd18ba | 2015-03-30 00:25:38 +0200 | [diff] [blame] | 16 | #ifdef PY_INT64_T |
| 17 | /* _PyTime_t: Python timestamp with subsecond precision. It can be used to |
| 18 | store a duration, and so indirectly a date (related to another date, like |
| 19 | UNIX epoch). */ |
| 20 | typedef PY_INT64_T _PyTime_t; |
| 21 | #define _PyTime_MIN PY_LLONG_MIN |
| 22 | #define _PyTime_MAX PY_LLONG_MAX |
| 23 | #else |
| 24 | # error "_PyTime_t need signed 64-bit integer type" |
| 25 | #endif |
Victor Stinner | ec89539 | 2012-04-29 02:41:27 +0200 | [diff] [blame] | 26 | |
Victor Stinner | 3c1b379 | 2014-02-17 00:02:43 +0100 | [diff] [blame] | 27 | typedef enum { |
Victor Stinner | 02937aa | 2015-03-28 05:02:39 +0100 | [diff] [blame] | 28 | /* Round towards minus infinity (-inf). |
| 29 | For example, used to read a clock. */ |
Victor Stinner | a695f83 | 2015-03-30 03:57:14 +0200 | [diff] [blame] | 30 | _PyTime_ROUND_FLOOR=0, |
Victor Stinner | bcdd777 | 2015-03-30 03:52:49 +0200 | [diff] [blame] | 31 | /* Round towards infinity (+inf). |
| 32 | For example, used for timeout to wait "at least" N seconds. */ |
| 33 | _PyTime_ROUND_CEILING |
Victor Stinner | 3c1b379 | 2014-02-17 00:02:43 +0100 | [diff] [blame] | 34 | } _PyTime_round_t; |
| 35 | |
Larry Hastings | 6fe20b3 | 2012-04-19 15:07:49 -0700 | [diff] [blame] | 36 | /* Convert a time_t to a PyLong. */ |
| 37 | PyAPI_FUNC(PyObject *) _PyLong_FromTime_t( |
| 38 | time_t sec); |
| 39 | |
Larry Hastings | 76ad59b | 2012-05-03 00:30:07 -0700 | [diff] [blame] | 40 | /* Convert a PyLong to a time_t. */ |
| 41 | PyAPI_FUNC(time_t) _PyLong_AsTime_t( |
| 42 | PyObject *obj); |
| 43 | |
Victor Stinner | 1bd18ba | 2015-03-30 00:25:38 +0200 | [diff] [blame] | 44 | /* Convert a number of seconds, int or float, to time_t. */ |
| 45 | PyAPI_FUNC(int) _PyTime_ObjectToTime_t( |
| 46 | PyObject *obj, |
| 47 | time_t *sec, |
| 48 | _PyTime_round_t); |
| 49 | |
Victor Stinner | 5d272cc | 2012-03-13 13:35:55 +0100 | [diff] [blame] | 50 | /* Convert a number of seconds, int or float, to a timeval structure. |
| 51 | usec is in the range [0; 999999] and rounded towards zero. |
| 52 | For example, -1.2 is converted to (-2, 800000). */ |
| 53 | PyAPI_FUNC(int) _PyTime_ObjectToTimeval( |
| 54 | PyObject *obj, |
| 55 | time_t *sec, |
Victor Stinner | 3c1b379 | 2014-02-17 00:02:43 +0100 | [diff] [blame] | 56 | long *usec, |
| 57 | _PyTime_round_t); |
Victor Stinner | 5d272cc | 2012-03-13 13:35:55 +0100 | [diff] [blame] | 58 | |
Victor Stinner | 643cd68 | 2012-03-02 22:54:03 +0100 | [diff] [blame] | 59 | /* Convert a number of seconds, int or float, to a timespec structure. |
Victor Stinner | 5d272cc | 2012-03-13 13:35:55 +0100 | [diff] [blame] | 60 | nsec is in the range [0; 999999999] and rounded towards zero. |
| 61 | For example, -1.2 is converted to (-2, 800000000). */ |
Victor Stinner | 643cd68 | 2012-03-02 22:54:03 +0100 | [diff] [blame] | 62 | PyAPI_FUNC(int) _PyTime_ObjectToTimespec( |
| 63 | PyObject *obj, |
| 64 | time_t *sec, |
Victor Stinner | 3c1b379 | 2014-02-17 00:02:43 +0100 | [diff] [blame] | 65 | long *nsec, |
| 66 | _PyTime_round_t); |
Victor Stinner | 643cd68 | 2012-03-02 22:54:03 +0100 | [diff] [blame] | 67 | |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 68 | |
Victor Stinner | 13019fd | 2015-04-03 13:10:54 +0200 | [diff] [blame] | 69 | /* Create a timestamp from a number of seconds. */ |
Victor Stinner | 88ed640 | 2015-04-09 10:23:12 +0200 | [diff] [blame] | 70 | PyAPI_FUNC(_PyTime_t) _PyTime_FromSeconds(int seconds); |
| 71 | |
| 72 | /* Macro to create a timestamp from a number of seconds, no integer overflow. |
| 73 | Only use the macro for small values, prefer _PyTime_FromSeconds(). */ |
| 74 | #define _PYTIME_FROMSECONDS(seconds) \ |
| 75 | ((_PyTime_t)(seconds) * (1000 * 1000 * 1000)) |
Victor Stinner | 13019fd | 2015-04-03 13:10:54 +0200 | [diff] [blame] | 76 | |
| 77 | /* Create a timestamp from a number of nanoseconds. */ |
Victor Stinner | 4bfb460 | 2015-03-27 22:27:24 +0100 | [diff] [blame] | 78 | PyAPI_FUNC(_PyTime_t) _PyTime_FromNanoseconds(PY_LONG_LONG ns); |
| 79 | |
Victor Stinner | fa09beb | 2015-03-30 21:36:10 +0200 | [diff] [blame] | 80 | /* Convert a number of seconds (Python float or int) to a timetamp. |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 81 | Raise an exception and return -1 on error, return 0 on success. */ |
Victor Stinner | 992c43f | 2015-03-27 17:12:45 +0100 | [diff] [blame] | 82 | PyAPI_FUNC(int) _PyTime_FromSecondsObject(_PyTime_t *t, |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 83 | PyObject *obj, |
| 84 | _PyTime_round_t round); |
| 85 | |
Victor Stinner | fa09beb | 2015-03-30 21:36:10 +0200 | [diff] [blame] | 86 | /* Convert a number of milliseconds (Python float or int, 10^-3) to a timetamp. |
| 87 | Raise an exception and return -1 on error, return 0 on success. */ |
| 88 | PyAPI_FUNC(int) _PyTime_FromMillisecondsObject(_PyTime_t *t, |
| 89 | PyObject *obj, |
| 90 | _PyTime_round_t round); |
| 91 | |
Victor Stinner | 4bfb460 | 2015-03-27 22:27:24 +0100 | [diff] [blame] | 92 | /* Convert a timestamp to a number of seconds as a C double. */ |
| 93 | PyAPI_FUNC(double) _PyTime_AsSecondsDouble(_PyTime_t t); |
| 94 | |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 95 | /* Convert timestamp to a number of milliseconds (10^-3 seconds). */ |
Victor Stinner | 992c43f | 2015-03-27 17:12:45 +0100 | [diff] [blame] | 96 | PyAPI_FUNC(_PyTime_t) _PyTime_AsMilliseconds(_PyTime_t t, |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 97 | _PyTime_round_t round); |
| 98 | |
Victor Stinner | f5faad2 | 2015-03-28 03:52:05 +0100 | [diff] [blame] | 99 | /* Convert timestamp to a number of microseconds (10^-6 seconds). */ |
| 100 | PyAPI_FUNC(_PyTime_t) _PyTime_AsMicroseconds(_PyTime_t t, |
| 101 | _PyTime_round_t round); |
| 102 | |
Victor Stinner | 992c43f | 2015-03-27 17:12:45 +0100 | [diff] [blame] | 103 | /* Convert timestamp to a number of nanoseconds (10^-9 seconds) as a Python int |
| 104 | object. */ |
| 105 | PyAPI_FUNC(PyObject *) _PyTime_AsNanosecondsObject(_PyTime_t t); |
| 106 | |
Victor Stinner | 4bfb460 | 2015-03-27 22:27:24 +0100 | [diff] [blame] | 107 | /* Convert a timestamp to a timeval structure (microsecond resolution). |
Victor Stinner | 95e9cef | 2015-03-28 01:26:47 +0100 | [diff] [blame] | 108 | tv_usec is always positive. |
Victor Stinner | ea9c0dd | 2015-03-30 02:51:13 +0200 | [diff] [blame] | 109 | Raise an exception and return -1 if the conversion overflowed, |
| 110 | return 0 on success. */ |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 111 | PyAPI_FUNC(int) _PyTime_AsTimeval(_PyTime_t t, |
| 112 | struct timeval *tv, |
| 113 | _PyTime_round_t round); |
| 114 | |
Victor Stinner | ea9c0dd | 2015-03-30 02:51:13 +0200 | [diff] [blame] | 115 | /* Similar to _PyTime_AsTimeval(), but don't raise an exception on error. */ |
| 116 | PyAPI_FUNC(int) _PyTime_AsTimeval_noraise(_PyTime_t t, |
| 117 | struct timeval *tv, |
| 118 | _PyTime_round_t round); |
| 119 | |
Victor Stinner | 9a8b177 | 2015-09-18 13:36:17 +0200 | [diff] [blame] | 120 | /* Convert a timestamp to a number of seconds (secs) and microseconds (us). |
| 121 | us is always positive. This function is similar to _PyTime_AsTimeval() |
| 122 | except that secs is always a time_t type, whereas the timeval structure |
| 123 | uses a C long for tv_sec on Windows. |
| 124 | Raise an exception and return -1 if the conversion overflowed, |
| 125 | return 0 on success. */ |
| 126 | PyAPI_FUNC(int) _PyTime_AsTimevalTime_t( |
| 127 | _PyTime_t t, |
| 128 | time_t *secs, |
| 129 | int *us, |
| 130 | _PyTime_round_t round); |
| 131 | |
Victor Stinner | c337838 | 2015-03-28 05:07:51 +0100 | [diff] [blame] | 132 | #if defined(HAVE_CLOCK_GETTIME) || defined(HAVE_KQUEUE) |
Victor Stinner | 34dc0f4 | 2015-03-27 18:19:03 +0100 | [diff] [blame] | 133 | /* Convert a timestamp to a timespec structure (nanosecond resolution). |
Victor Stinner | 95e9cef | 2015-03-28 01:26:47 +0100 | [diff] [blame] | 134 | tv_nsec is always positive. |
Victor Stinner | 34dc0f4 | 2015-03-27 18:19:03 +0100 | [diff] [blame] | 135 | Raise an exception and return -1 on error, return 0 on success. */ |
| 136 | PyAPI_FUNC(int) _PyTime_AsTimespec(_PyTime_t t, struct timespec *ts); |
| 137 | #endif |
| 138 | |
Victor Stinner | a47b881 | 2015-03-27 18:16:17 +0100 | [diff] [blame] | 139 | /* Get the current time from the system clock. |
Victor Stinner | 09e5cf2 | 2015-03-30 00:09:18 +0200 | [diff] [blame] | 140 | |
| 141 | The function cannot fail. _PyTime_Init() ensures that the system clock |
| 142 | works. */ |
| 143 | PyAPI_FUNC(_PyTime_t) _PyTime_GetSystemClock(void); |
| 144 | |
Victor Stinner | 1bd18ba | 2015-03-30 00:25:38 +0200 | [diff] [blame] | 145 | /* Get the time of a monotonic clock, i.e. a clock that cannot go backwards. |
| 146 | The clock is not affected by system clock updates. The reference point of |
| 147 | the returned value is undefined, so that only the difference between the |
| 148 | results of consecutive calls is valid. |
| 149 | |
| 150 | The function cannot fail. _PyTime_Init() ensures that a monotonic clock |
| 151 | is available and works. */ |
| 152 | PyAPI_FUNC(_PyTime_t) _PyTime_GetMonotonicClock(void); |
| 153 | |
| 154 | |
| 155 | /* Structure used by time.get_clock_info() */ |
| 156 | typedef struct { |
| 157 | const char *implementation; |
| 158 | int monotonic; |
| 159 | int adjustable; |
| 160 | double resolution; |
| 161 | } _Py_clock_info_t; |
| 162 | |
Victor Stinner | 09e5cf2 | 2015-03-30 00:09:18 +0200 | [diff] [blame] | 163 | /* Get the current time from the system clock. |
Victor Stinner | a47b881 | 2015-03-27 18:16:17 +0100 | [diff] [blame] | 164 | * Fill clock information if info is not NULL. |
| 165 | * Raise an exception and return -1 on error, return 0 on success. |
| 166 | */ |
| 167 | PyAPI_FUNC(int) _PyTime_GetSystemClockWithInfo( |
| 168 | _PyTime_t *t, |
| 169 | _Py_clock_info_t *info); |
| 170 | |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 171 | /* Get the time of a monotonic clock, i.e. a clock that cannot go backwards. |
| 172 | The clock is not affected by system clock updates. The reference point of |
| 173 | the returned value is undefined, so that only the difference between the |
| 174 | results of consecutive calls is valid. |
| 175 | |
Victor Stinner | 4bfb460 | 2015-03-27 22:27:24 +0100 | [diff] [blame] | 176 | Fill info (if set) with information of the function used to get the time. |
| 177 | |
| 178 | Return 0 on success, raise an exception and return -1 on error. */ |
| 179 | PyAPI_FUNC(int) _PyTime_GetMonotonicClockWithInfo( |
| 180 | _PyTime_t *t, |
| 181 | _Py_clock_info_t *info); |
| 182 | |
Victor Stinner | cb29f01 | 2015-03-27 13:31:18 +0100 | [diff] [blame] | 183 | |
Victor Stinner | 1bd18ba | 2015-03-30 00:25:38 +0200 | [diff] [blame] | 184 | /* Initialize time. |
| 185 | Return 0 on success, raise an exception and return -1 on error. */ |
| 186 | PyAPI_FUNC(int) _PyTime_Init(void); |
| 187 | |
Alexander Belopolsky | 6fc4ade | 2010-08-05 17:34:27 +0000 | [diff] [blame] | 188 | #ifdef __cplusplus |
| 189 | } |
| 190 | #endif |
| 191 | |
| 192 | #endif /* Py_PYTIME_H */ |
Martin v. Löwis | 4d0d471 | 2010-12-03 20:14:31 +0000 | [diff] [blame] | 193 | #endif /* Py_LIMITED_API */ |