| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | #include "Python.h"
 | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  | #include <windows.h>
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | #if defined(__APPLE__) && defined(HAVE_GETTIMEOFDAY) && defined(HAVE_FTIME)
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  |   /*
 | 
					
						
							|  |  |  |    * _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
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | #if defined(HAVE_FTIME) && !defined(MS_WINDOWS)
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | #include <sys/timeb.h>
 | 
					
						
							|  |  |  | extern int ftime(struct timeb *); | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  | static void | 
					
						
							|  |  |  | pygettimeofday(_PyTime_timeval *tp, _Py_clock_info_t *info) | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | #ifdef MS_WINDOWS
 | 
					
						
							|  |  |  |     FILETIME system_time; | 
					
						
							|  |  |  |     ULARGE_INTEGER large; | 
					
						
							| 
									
										
										
										
											2012-02-08 23:03:19 +01:00
										 |  |  |     ULONGLONG microseconds; | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |     GetSystemTimeAsFileTime(&system_time); | 
					
						
							|  |  |  |     large.u.LowPart = system_time.dwLowDateTime; | 
					
						
							|  |  |  |     large.u.HighPart = system_time.dwHighDateTime; | 
					
						
							| 
									
										
										
										
											2012-02-08 23:03:19 +01:00
										 |  |  |     /* 11,644,473,600,000,000: number of microseconds between
 | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  |        the 1st january 1601 and the 1st january 1970 (369 years + 89 leap | 
					
						
							|  |  |  |        days). */ | 
					
						
							| 
									
										
										
										
											2012-02-08 23:03:19 +01:00
										 |  |  |     microseconds = large.QuadPart / 10 - 11644473600000000; | 
					
						
							|  |  |  |     tp->tv_sec = microseconds / 1000000; | 
					
						
							|  |  |  |     tp->tv_usec = microseconds % 1000000; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |     if (info) { | 
					
						
							|  |  |  |         DWORD timeAdjustment, timeIncrement; | 
					
						
							|  |  |  |         BOOL isTimeAdjustmentDisabled; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         info->implementation = "GetSystemTimeAsFileTime()"; | 
					
						
							| 
									
										
										
										
											2012-05-01 09:38:34 -04:00
										 |  |  |         info->monotonic = 0; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |         (void) GetSystemTimeAdjustment(&timeAdjustment, &timeIncrement, | 
					
						
							|  |  |  |                                        &isTimeAdjustmentDisabled); | 
					
						
							|  |  |  |         info->resolution = timeIncrement * 1e-7; | 
					
						
							| 
									
										
										
										
											2012-06-12 22:46:37 +02:00
										 |  |  |         info->adjustable = 1; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  |     /* 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! */ | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | #ifdef HAVE_GETTIMEOFDAY
 | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |     int err; | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | #ifdef GETTIMEOFDAY_NO_TZ
 | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |     err = gettimeofday(tp); | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  |     err = gettimeofday(tp, (struct timezone *)NULL); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     if (err == 0) { | 
					
						
							|  |  |  |         if (info) { | 
					
						
							|  |  |  |             info->implementation = "gettimeofday()"; | 
					
						
							|  |  |  |             info->resolution = 1e-6; | 
					
						
							| 
									
										
										
										
											2012-05-01 09:38:34 -04:00
										 |  |  |             info->monotonic = 0; | 
					
						
							| 
									
										
										
										
											2012-06-12 22:46:37 +02:00
										 |  |  |             info->adjustable = 1; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-02-08 14:31:50 +01:00
										 |  |  |         return; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |     } | 
					
						
							|  |  |  | #endif   /* HAVE_GETTIMEOFDAY */
 | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | #if defined(HAVE_FTIME)
 | 
					
						
							| 
									
										
										
										
											2012-02-08 23:03:19 +01:00
										 |  |  |     { | 
					
						
							|  |  |  |         struct timeb t; | 
					
						
							|  |  |  |         ftime(&t); | 
					
						
							|  |  |  |         tp->tv_sec = t.time; | 
					
						
							|  |  |  |         tp->tv_usec = t.millitm * 1000; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |         if (info) { | 
					
						
							|  |  |  |             info->implementation = "ftime()"; | 
					
						
							|  |  |  |             info->resolution = 1e-3; | 
					
						
							| 
									
										
										
										
											2012-05-01 09:38:34 -04:00
										 |  |  |             info->monotonic = 0; | 
					
						
							| 
									
										
										
										
											2012-06-12 22:46:37 +02:00
										 |  |  |             info->adjustable = 1; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-02-08 23:03:19 +01:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | #else /* !HAVE_FTIME */
 | 
					
						
							| 
									
										
										
										
											2012-02-08 23:03:19 +01:00
										 |  |  |     tp->tv_sec = time(NULL); | 
					
						
							|  |  |  |     tp->tv_usec = 0; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |     if (info) { | 
					
						
							|  |  |  |         info->implementation = "time()"; | 
					
						
							|  |  |  |         info->resolution = 1.0; | 
					
						
							| 
									
										
										
										
											2012-05-01 09:38:34 -04:00
										 |  |  |         info->monotonic = 0; | 
					
						
							| 
									
										
										
										
											2012-06-12 22:46:37 +02:00
										 |  |  |         info->adjustable = 1; | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | #endif /* !HAVE_FTIME */
 | 
					
						
							| 
									
										
										
										
											2012-02-07 23:41:01 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif /* MS_WINDOWS */
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-29 02:41:27 +02:00
										 |  |  | void | 
					
						
							|  |  |  | _PyTime_gettimeofday(_PyTime_timeval *tp) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     pygettimeofday(tp, NULL); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | void | 
					
						
							|  |  |  | _PyTime_gettimeofday_info(_PyTime_timeval *tp, _Py_clock_info_t *info) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     pygettimeofday(tp, info); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  | static void | 
					
						
							|  |  |  | error_time_t_overflow(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PyErr_SetString(PyExc_OverflowError, | 
					
						
							|  |  |  |                     "timestamp out of range for platform time_t"); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-03 00:30:07 -07:00
										 |  |  | time_t | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  | _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; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-19 15:07:49 -07:00
										 |  |  | 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
 | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  | static int | 
					
						
							|  |  |  | _PyTime_ObjectToDenominator(PyObject *obj, time_t *sec, long *numerator, | 
					
						
							|  |  |  |                             double denominator) | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  |     assert(denominator <= LONG_MAX); | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  |     if (PyFloat_Check(obj)) { | 
					
						
							| 
									
										
										
										
											2012-03-13 19:12:23 +01:00
										 |  |  |         double d, intpart, err; | 
					
						
							|  |  |  |         /* volatile avoids unsafe optimization on float enabled by gcc -O3 */ | 
					
						
							|  |  |  |         volatile double floatpart; | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         d = PyFloat_AsDouble(obj); | 
					
						
							|  |  |  |         floatpart = modf(d, &intpart); | 
					
						
							|  |  |  |         if (floatpart < 0) { | 
					
						
							|  |  |  |             floatpart = 1.0 + floatpart; | 
					
						
							|  |  |  |             intpart -= 1.0; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         *sec = (time_t)intpart; | 
					
						
							|  |  |  |         err = intpart - (double)*sec; | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  |         if (err <= -1.0 || err >= 1.0) { | 
					
						
							|  |  |  |             error_time_t_overflow(); | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  |         floatpart *= denominator; | 
					
						
							|  |  |  |         *numerator = (long)floatpart; | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     else { | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  |         *sec = _PyLong_AsTime_t(obj); | 
					
						
							|  |  |  |         if (*sec == (time_t)-1 && PyErr_Occurred()) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         *numerator = 0; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyTime_ObjectToTime_t(PyObject *obj, time_t *sec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (PyFloat_Check(obj)) { | 
					
						
							|  |  |  |         double d, intpart, err; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         d = PyFloat_AsDouble(obj); | 
					
						
							|  |  |  |         (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; | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  |         } | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  |     else { | 
					
						
							|  |  |  |         *sec = _PyLong_AsTime_t(obj); | 
					
						
							|  |  |  |         if (*sec == (time_t)-1 && PyErr_Occurred()) | 
					
						
							|  |  |  |             return -1; | 
					
						
							|  |  |  |         return 0; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-03-13 13:35:55 +01:00
										 |  |  | int | 
					
						
							|  |  |  | _PyTime_ObjectToTimespec(PyObject *obj, time_t *sec, long *nsec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _PyTime_ObjectToDenominator(obj, sec, nsec, 1e9); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int | 
					
						
							|  |  |  | _PyTime_ObjectToTimeval(PyObject *obj, time_t *sec, long *usec) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     return _PyTime_ObjectToDenominator(obj, sec, usec, 1e6); | 
					
						
							| 
									
										
										
										
											2012-03-02 22:54:03 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-08-05 17:34:27 +00:00
										 |  |  | void | 
					
						
							|  |  |  | _PyTime_Init() | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     /* Do nothing.  Needed to force linking. */ | 
					
						
							|  |  |  | } |