9 #if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_FTIME)
11 * floattime falls back to ftime when getttimeofday fails because the latter
12 * might fail on some platforms. This fallback is unwanted on MacOSX because
13 * that makes it impossible to use a binary build on OSX 10.4 on earlier
14 * releases of the OS. Therefore claim we don't support ftime.
22 #ifdef HAVE_SYS_TYPES_H
23 #include <sys/types.h>
24 #endif /* HAVE_SYS_TYPES_H */
31 #include <sys/timeb.h>
32 #if !defined(MS_WINDOWS) && !defined(PYOS_OS2)
33 extern int ftime(struct timeb
*);
34 #endif /* MS_WINDOWS */
35 #endif /* HAVE_FTIME */
37 #if defined(__WATCOMC__) && !defined(__QNX__)
41 #define WIN32_LEAN_AND_MEAN
45 /* helper to allow us to interrupt sleep() on Windows*/
46 static HANDLE hInterruptEvent
= NULL
;
47 static BOOL WINAPI
PyCtrlHandler(DWORD dwCtrlType
)
49 SetEvent(hInterruptEvent
);
50 /* allow other default handlers to be called.
51 Default Python handler will setup the
52 KeyboardInterrupt exception.
56 static long main_thread
;
59 #if defined(__BORLANDC__)
60 /* These overrides not needed for Win32 */
61 #define timezone _timezone
62 #define tzname _tzname
63 #define daylight _daylight
64 #endif /* __BORLANDC__ */
65 #endif /* MS_WINDOWS */
66 #endif /* !__WATCOMC__ || __QNX__ */
68 #if defined(MS_WINDOWS) && !defined(__BORLANDC__)
69 /* Win32 has better clock replacement; we have our own version below. */
71 #endif /* MS_WINDOWS && !defined(__BORLANDC__) */
79 #if defined(PYCC_VACPP)
85 /* For bigtime_t, snooze(). - [cjh] */
86 #include <support/SupportDefs.h>
87 #include <kernel/OS.h>
91 extern int riscos_sleep(double);
94 /* Forward declarations */
95 static int floatsleep(double);
96 static double floattime(void);
99 static PyObject
*moddict
;
101 /* Exposed in timefuncs.h. */
103 _PyTime_DoubleToTimet(double x
)
109 /* How much info did we lose? time_t may be an integral or
110 * floating type, and we don't know which. If it's integral,
111 * we don't know whether C truncates, rounds, returns the floor,
112 * etc. If we lost a second or more, the C rounding is
113 * unreasonable, or the input just doesn't fit in a time_t;
114 * call it an error regardless. Note that the original cast to
115 * time_t can cause a C error too, but nothing we can do to
118 diff
= x
- (double)result
;
119 if (diff
<= -1.0 || diff
>= 1.0) {
120 PyErr_SetString(PyExc_ValueError
,
121 "timestamp out of range for platform time_t");
128 time_time(PyObject
*self
, PyObject
*unused
)
133 PyErr_SetFromErrno(PyExc_IOError
);
136 return PyFloat_FromDouble(secs
);
139 PyDoc_STRVAR(time_doc
,
140 "time() -> floating point number\n\
142 Return the current time in seconds since the Epoch.\n\
143 Fractions of a second may be present if the system clock provides them.");
147 #ifndef CLOCKS_PER_SEC
149 #define CLOCKS_PER_SEC CLK_TCK
151 #define CLOCKS_PER_SEC 1000000
156 time_clock(PyObject
*self
, PyObject
*unused
)
158 return PyFloat_FromDouble(((double)clock()) / CLOCKS_PER_SEC
);
160 #endif /* HAVE_CLOCK */
162 #if defined(MS_WINDOWS) && !defined(__BORLANDC__)
163 /* Due to Mark Hammond and Tim Peters */
165 time_clock(PyObject
*self
, PyObject
*unused
)
167 static LARGE_INTEGER ctrStart
;
168 static double divisor
= 0.0;
172 if (divisor
== 0.0) {
174 QueryPerformanceCounter(&ctrStart
);
175 if (!QueryPerformanceFrequency(&freq
) || freq
.QuadPart
== 0) {
176 /* Unlikely to happen - this works on all intel
177 machines at least! Revert to clock() */
178 return PyFloat_FromDouble(((double)clock()) /
181 divisor
= (double)freq
.QuadPart
;
183 QueryPerformanceCounter(&now
);
184 diff
= (double)(now
.QuadPart
- ctrStart
.QuadPart
);
185 return PyFloat_FromDouble(diff
/ divisor
);
188 #define HAVE_CLOCK /* So it gets included in the methods */
189 #endif /* MS_WINDOWS && !defined(__BORLANDC__) */
192 PyDoc_STRVAR(clock_doc
,
193 "clock() -> floating point number\n\
195 Return the CPU time or real time since the start of the process or since\n\
196 the first call to clock(). This has as much precision as the system\n\
201 time_sleep(PyObject
*self
, PyObject
*args
)
204 if (!PyArg_ParseTuple(args
, "d:sleep", &secs
))
206 if (floatsleep(secs
) != 0)
212 PyDoc_STRVAR(sleep_doc
,
215 Delay execution for a given number of seconds. The argument may be\n\
216 a floating point number for subsecond precision.");
218 static PyStructSequence_Field struct_time_type_fields
[] = {
231 static PyStructSequence_Desc struct_time_type_desc
= {
234 struct_time_type_fields
,
238 static int initialized
;
239 static PyTypeObject StructTimeType
;
242 tmtotuple(struct tm
*p
)
244 PyObject
*v
= PyStructSequence_New(&StructTimeType
);
248 #define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyInt_FromLong((long) val))
250 SET(0, p
->tm_year
+ 1900);
251 SET(1, p
->tm_mon
+ 1); /* Want January == 1 */
256 SET(6, (p
->tm_wday
+ 6) % 7); /* Want Monday == 0 */
257 SET(7, p
->tm_yday
+ 1); /* Want January, 1 == 1 */
260 if (PyErr_Occurred()) {
269 time_convert(double when
, struct tm
* (*function
)(const time_t *))
272 time_t whent
= _PyTime_DoubleToTimet(when
);
274 if (whent
== (time_t)-1 && PyErr_Occurred())
277 p
= function(&whent
);
283 return PyErr_SetFromErrno(PyExc_ValueError
);
288 /* Parse arg tuple that can contain an optional float-or-None value;
289 format needs to be "|O:name".
290 Returns non-zero on success (parallels PyArg_ParseTuple).
293 parse_time_double_args(PyObject
*args
, char *format
, double *pwhen
)
297 if (!PyArg_ParseTuple(args
, format
, &ot
))
299 if (ot
== NULL
|| ot
== Py_None
)
300 *pwhen
= floattime();
302 double when
= PyFloat_AsDouble(ot
);
303 if (PyErr_Occurred())
311 time_gmtime(PyObject
*self
, PyObject
*args
)
314 if (!parse_time_double_args(args
, "|O:gmtime", &when
))
316 return time_convert(when
, gmtime
);
319 PyDoc_STRVAR(gmtime_doc
,
320 "gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min,\n\
321 tm_sec, tm_wday, tm_yday, tm_isdst)\n\
323 Convert seconds since the Epoch to a time tuple expressing UTC (a.k.a.\n\
324 GMT). When 'seconds' is not passed in, convert the current time instead.");
327 time_localtime(PyObject
*self
, PyObject
*args
)
330 if (!parse_time_double_args(args
, "|O:localtime", &when
))
332 return time_convert(when
, localtime
);
335 PyDoc_STRVAR(localtime_doc
,
336 "localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min,\n\
337 tm_sec,tm_wday,tm_yday,tm_isdst)\n\
339 Convert seconds since the Epoch to a time tuple expressing local time.\n\
340 When 'seconds' is not passed in, convert the current time instead.");
343 gettmarg(PyObject
*args
, struct tm
*p
)
346 memset((void *) p
, '\0', sizeof(struct tm
));
348 if (!PyArg_Parse(args
, "(iiiiiiiii)",
360 PyObject
*accept
= PyDict_GetItemString(moddict
,
362 if (accept
== NULL
|| !PyInt_Check(accept
) ||
363 PyInt_AsLong(accept
) == 0) {
364 PyErr_SetString(PyExc_ValueError
,
365 "year >= 1900 required");
368 if (69 <= y
&& y
<= 99)
370 else if (0 <= y
&& y
<= 68)
373 PyErr_SetString(PyExc_ValueError
,
374 "year out of range");
378 p
->tm_year
= y
- 1900;
380 p
->tm_wday
= (p
->tm_wday
+ 1) % 7;
387 time_strftime(PyObject
*self
, PyObject
*args
)
389 PyObject
*tup
= NULL
;
392 size_t fmtlen
, buflen
;
396 memset((void *) &buf
, '\0', sizeof(buf
));
398 if (!PyArg_ParseTuple(args
, "s|O:strftime", &fmt
, &tup
))
402 time_t tt
= time(NULL
);
403 buf
= *localtime(&tt
);
404 } else if (!gettmarg(tup
, &buf
))
407 /* Checks added to make sure strftime() does not crash Python by
408 indexing blindly into some array for a textual representation
409 by some bad index (fixes bug #897625).
411 Also support values of zero from Python code for arguments in which
412 that is out of range by forcing that value to the lowest value that
413 is valid (fixed bug #1520914).
415 Valid ranges based on what is allowed in struct tm:
417 - tm_year: [0, max(int)] (1)
418 - tm_mon: [0, 11] (2)
423 - tm_wday: [0, 6] (1)
424 - tm_yday: [0, 365] (2)
425 - tm_isdst: [-max(int), max(int)]
427 (1) gettmarg() handles bounds-checking.
428 (2) Python's acceptable range is one greater than the range in C,
429 thus need to check against automatic decrement by gettmarg().
431 if (buf
.tm_mon
== -1)
433 else if (buf
.tm_mon
< 0 || buf
.tm_mon
> 11) {
434 PyErr_SetString(PyExc_ValueError
, "month out of range");
437 if (buf
.tm_mday
== 0)
439 else if (buf
.tm_mday
< 0 || buf
.tm_mday
> 31) {
440 PyErr_SetString(PyExc_ValueError
, "day of month out of range");
443 if (buf
.tm_hour
< 0 || buf
.tm_hour
> 23) {
444 PyErr_SetString(PyExc_ValueError
, "hour out of range");
447 if (buf
.tm_min
< 0 || buf
.tm_min
> 59) {
448 PyErr_SetString(PyExc_ValueError
, "minute out of range");
451 if (buf
.tm_sec
< 0 || buf
.tm_sec
> 61) {
452 PyErr_SetString(PyExc_ValueError
, "seconds out of range");
455 /* tm_wday does not need checking of its upper-bound since taking
456 ``% 7`` in gettmarg() automatically restricts the range. */
457 if (buf
.tm_wday
< 0) {
458 PyErr_SetString(PyExc_ValueError
, "day of week out of range");
461 if (buf
.tm_yday
== -1)
463 else if (buf
.tm_yday
< 0 || buf
.tm_yday
> 365) {
464 PyErr_SetString(PyExc_ValueError
, "day of year out of range");
467 /* Normalize tm_isdst just in case someone foolishly implements %Z
468 based on the assumption that tm_isdst falls within the range of
470 if (buf
.tm_isdst
< -1)
472 else if (buf
.tm_isdst
> 1)
476 /* check that the format string contains only valid directives */
477 for(outbuf
= strchr(fmt
, '%');
479 outbuf
= strchr(outbuf
+2, '%'))
482 ++outbuf
; /* not documented by python, */
483 if (outbuf
[1]=='\0' ||
484 !strchr("aAbBcdfHIjmMpSUwWxXyYzZ%", outbuf
[1]))
486 PyErr_SetString(PyExc_ValueError
, "Invalid format string");
492 fmtlen
= strlen(fmt
);
494 /* I hate these functions that presume you know how big the output
495 * will be ahead of time...
497 for (i
= 1024; ; i
+= i
) {
498 outbuf
= (char *)malloc(i
);
499 if (outbuf
== NULL
) {
500 return PyErr_NoMemory();
502 buflen
= strftime(outbuf
, i
, fmt
, &buf
);
503 if (buflen
> 0 || i
>= 256 * fmtlen
) {
504 /* If the buffer is 256 times as long as the format,
505 it's probably not failing for lack of room!
506 More likely, the format yields an empty result,
507 e.g. an empty format, or %Z when the timezone
510 ret
= PyString_FromStringAndSize(outbuf
, buflen
);
515 #if defined _MSC_VER && _MSC_VER >= 1400 && defined(__STDC_SECURE_LIB__)
516 /* VisualStudio .NET 2005 does this properly */
517 if (buflen
== 0 && errno
== EINVAL
) {
518 PyErr_SetString(PyExc_ValueError
, "Invalid format string");
526 PyDoc_STRVAR(strftime_doc
,
527 "strftime(format[, tuple]) -> string\n\
529 Convert a time tuple to a string according to a format specification.\n\
530 See the library reference manual for formatting codes. When the time tuple\n\
531 is not present, current time as returned by localtime() is used.");
532 #endif /* HAVE_STRFTIME */
535 time_strptime(PyObject
*self
, PyObject
*args
)
537 PyObject
*strptime_module
= PyImport_ImportModuleNoBlock("_strptime");
538 PyObject
*strptime_result
;
540 if (!strptime_module
)
542 strptime_result
= PyObject_CallMethod(strptime_module
,
543 "_strptime_time", "O", args
);
544 Py_DECREF(strptime_module
);
545 return strptime_result
;
548 PyDoc_STRVAR(strptime_doc
,
549 "strptime(string, format) -> struct_time\n\
551 Parse a string to a time tuple according to a format specification.\n\
552 See the library reference manual for formatting codes (same as strftime()).");
556 time_asctime(PyObject
*self
, PyObject
*args
)
558 PyObject
*tup
= NULL
;
561 if (!PyArg_UnpackTuple(args
, "asctime", 0, 1, &tup
))
564 time_t tt
= time(NULL
);
565 buf
= *localtime(&tt
);
566 } else if (!gettmarg(tup
, &buf
))
571 return PyString_FromString(p
);
574 PyDoc_STRVAR(asctime_doc
,
575 "asctime([tuple]) -> string\n\
577 Convert a time tuple to a string, e.g. 'Sat Jun 06 16:26:11 1998'.\n\
578 When the time tuple is not present, current time as returned by localtime()\n\
582 time_ctime(PyObject
*self
, PyObject
*args
)
588 if (!PyArg_UnpackTuple(args
, "ctime", 0, 1, &ot
))
590 if (ot
== NULL
|| ot
== Py_None
)
593 double dt
= PyFloat_AsDouble(ot
);
594 if (PyErr_Occurred())
596 tt
= _PyTime_DoubleToTimet(dt
);
597 if (tt
== (time_t)-1 && PyErr_Occurred())
602 PyErr_SetString(PyExc_ValueError
, "unconvertible time");
607 return PyString_FromString(p
);
610 PyDoc_STRVAR(ctime_doc
,
611 "ctime(seconds) -> string\n\
613 Convert a time in seconds since the Epoch to a string in local time.\n\
614 This is equivalent to asctime(localtime(seconds)). When the time tuple is\n\
615 not present, current time as returned by localtime() is used.");
619 time_mktime(PyObject
*self
, PyObject
*tup
)
623 if (!gettmarg(tup
, &buf
))
626 if (tt
== (time_t)(-1)) {
627 PyErr_SetString(PyExc_OverflowError
,
628 "mktime argument out of range");
631 return PyFloat_FromDouble((double)tt
);
634 PyDoc_STRVAR(mktime_doc
,
635 "mktime(tuple) -> floating point number\n\
637 Convert a time tuple in local time to seconds since the Epoch.");
638 #endif /* HAVE_MKTIME */
640 #ifdef HAVE_WORKING_TZSET
641 static void inittimezone(PyObject
*module
);
644 time_tzset(PyObject
*self
, PyObject
*unused
)
648 m
= PyImport_ImportModuleNoBlock("time");
655 /* Reset timezone, altzone, daylight and tzname */
663 PyDoc_STRVAR(tzset_doc
,
666 Initialize, or reinitialize, the local timezone to the value stored in\n\
667 os.environ['TZ']. The TZ environment variable should be specified in\n\
668 standard Unix timezone format as documented in the tzset man page\n\
669 (eg. 'US/Eastern', 'Europe/Amsterdam'). Unknown timezones will silently\n\
670 fall back to UTC. If the TZ environment variable is not set, the local\n\
671 timezone is set to the systems best guess of wallclock time.\n\
672 Changing the TZ environment variable without calling tzset *may* change\n\
673 the local timezone used by methods such as localtime, but this behaviour\n\
674 should not be relied on.");
675 #endif /* HAVE_WORKING_TZSET */
678 inittimezone(PyObject
*m
) {
679 /* This code moved from inittime wholesale to allow calling it from
680 time_tzset. In the future, some parts of it can be moved back
681 (for platforms that don't HAVE_WORKING_TZSET, when we know what they
682 are), and the extraneous calls to tzset(3) should be removed.
683 I haven't done this yet, as I don't want to change this code as
684 little as possible when introducing the time.tzset and time.tzsetwall
685 methods. This should simply be a method of doing the following once,
686 at the top of this function and removing the call to tzset() from
693 And I'm lazy and hate C so nyer.
695 #if defined(HAVE_TZNAME) && !defined(__GLIBC__) && !defined(__CYGWIN__)
698 PyModule_AddIntConstant(m
, "timezone", _timezone
);
699 #else /* !PYOS_OS2 */
700 PyModule_AddIntConstant(m
, "timezone", timezone
);
701 #endif /* PYOS_OS2 */
703 PyModule_AddIntConstant(m
, "altzone", altzone
);
706 PyModule_AddIntConstant(m
, "altzone", _timezone
-3600);
707 #else /* !PYOS_OS2 */
708 PyModule_AddIntConstant(m
, "altzone", timezone
-3600);
709 #endif /* PYOS_OS2 */
711 PyModule_AddIntConstant(m
, "daylight", daylight
);
712 PyModule_AddObject(m
, "tzname",
713 Py_BuildValue("(zz)", tzname
[0], tzname
[1]));
714 #else /* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
715 #ifdef HAVE_STRUCT_TM_TM_ZONE
717 #define YEAR ((time_t)((365 * 24 + 6) * 3600))
720 long janzone
, julyzone
;
721 char janname
[10], julyname
[10];
722 t
= (time((time_t *)0) / YEAR
) * YEAR
;
724 janzone
= -p
->tm_gmtoff
;
725 strncpy(janname
, p
->tm_zone
? p
->tm_zone
: " ", 9);
729 julyzone
= -p
->tm_gmtoff
;
730 strncpy(julyname
, p
->tm_zone
? p
->tm_zone
: " ", 9);
733 if( janzone
< julyzone
) {
734 /* DST is reversed in the southern hemisphere */
735 PyModule_AddIntConstant(m
, "timezone", julyzone
);
736 PyModule_AddIntConstant(m
, "altzone", janzone
);
737 PyModule_AddIntConstant(m
, "daylight",
738 janzone
!= julyzone
);
739 PyModule_AddObject(m
, "tzname",
740 Py_BuildValue("(zz)",
743 PyModule_AddIntConstant(m
, "timezone", janzone
);
744 PyModule_AddIntConstant(m
, "altzone", julyzone
);
745 PyModule_AddIntConstant(m
, "daylight",
746 janzone
!= julyzone
);
747 PyModule_AddObject(m
, "tzname",
748 Py_BuildValue("(zz)",
753 #endif /* HAVE_STRUCT_TM_TM_ZONE */
756 PyModule_AddIntConstant(m
, "timezone", _timezone
);
757 PyModule_AddIntConstant(m
, "altzone", _timezone
-3600);
758 PyModule_AddIntConstant(m
, "daylight", _daylight
);
759 PyModule_AddObject(m
, "tzname",
760 Py_BuildValue("(zz)", _tzname
[0], _tzname
[1]));
761 #endif /* __CYGWIN__ */
762 #endif /* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
766 static PyMethodDef time_methods
[] = {
767 {"time", time_time
, METH_NOARGS
, time_doc
},
769 {"clock", time_clock
, METH_NOARGS
, clock_doc
},
771 {"sleep", time_sleep
, METH_VARARGS
, sleep_doc
},
772 {"gmtime", time_gmtime
, METH_VARARGS
, gmtime_doc
},
773 {"localtime", time_localtime
, METH_VARARGS
, localtime_doc
},
774 {"asctime", time_asctime
, METH_VARARGS
, asctime_doc
},
775 {"ctime", time_ctime
, METH_VARARGS
, ctime_doc
},
777 {"mktime", time_mktime
, METH_O
, mktime_doc
},
780 {"strftime", time_strftime
, METH_VARARGS
, strftime_doc
},
782 {"strptime", time_strptime
, METH_VARARGS
, strptime_doc
},
783 #ifdef HAVE_WORKING_TZSET
784 {"tzset", time_tzset
, METH_NOARGS
, tzset_doc
},
786 {NULL
, NULL
} /* sentinel */
790 PyDoc_STRVAR(module_doc
,
791 "This module provides various functions to manipulate time values.\n\
793 There are two standard representations of time. One is the number\n\
794 of seconds since the Epoch, in UTC (a.k.a. GMT). It may be an integer\n\
795 or a floating point number (to represent fractions of seconds).\n\
796 The Epoch is system-defined; on Unix, it is generally January 1st, 1970.\n\
797 The actual value can be retrieved by calling gmtime(0).\n\
799 The other representation is a tuple of 9 integers giving local time.\n\
800 The tuple items are:\n\
801 year (four digits, e.g. 1998)\n\
807 weekday (0-6, Monday is 0)\n\
808 Julian day (day in the year, 1-366)\n\
809 DST (Daylight Savings Time) flag (-1, 0 or 1)\n\
810 If the DST flag is 0, the time is given in the regular time zone;\n\
811 if it is 1, the time is given in the DST time zone;\n\
812 if it is -1, mktime() should guess based on the date and time.\n\
816 timezone -- difference in seconds between UTC and local standard time\n\
817 altzone -- difference in seconds between UTC and local DST time\n\
818 daylight -- whether local time should reflect DST\n\
819 tzname -- tuple of (standard time zone name, DST time zone name)\n\
823 time() -- return current time in seconds since the Epoch as a float\n\
824 clock() -- return CPU time since process start as a float\n\
825 sleep() -- delay for a number of seconds given as a float\n\
826 gmtime() -- convert seconds since Epoch to UTC tuple\n\
827 localtime() -- convert seconds since Epoch to local time tuple\n\
828 asctime() -- convert time tuple to string\n\
829 ctime() -- convert time in seconds to string\n\
830 mktime() -- convert local time tuple to seconds since Epoch\n\
831 strftime() -- convert time tuple to string according to format specification\n\
832 strptime() -- parse string to time tuple according to format specification\n\
833 tzset() -- change the local timezone");
841 m
= Py_InitModule3("time", time_methods
, module_doc
);
845 /* Accept 2-digit dates unless PYTHONY2K is set and non-empty */
846 p
= Py_GETENV("PYTHONY2K");
847 PyModule_AddIntConstant(m
, "accept2dyear", (long) (!p
|| !*p
));
848 /* Squirrel away the module's dictionary for the y2k check */
849 moddict
= PyModule_GetDict(m
);
852 /* Set, or reset, module variables like time.timezone */
856 /* Helper to allow interrupts for Windows.
857 If Ctrl+C event delivered while not sleeping
860 main_thread
= PyThread_get_thread_ident();
861 hInterruptEvent
= CreateEvent(NULL
, TRUE
, FALSE
, NULL
);
862 SetConsoleCtrlHandler( PyCtrlHandler
, TRUE
);
863 #endif /* MS_WINDOWS */
865 PyStructSequence_InitType(&StructTimeType
,
866 &struct_time_type_desc
);
868 Py_INCREF(&StructTimeType
);
869 PyModule_AddObject(m
, "struct_time", (PyObject
*) &StructTimeType
);
874 /* Implement floattime() for various platforms */
879 /* There are three ways to get the time:
880 (1) gettimeofday() -- resolution in microseconds
881 (2) ftime() -- resolution in milliseconds
882 (3) time() -- resolution in seconds
883 In all cases the return value is a float in seconds.
884 Since on some systems (e.g. SCO ODT 3.0) gettimeofday() may
885 fail, so we fall back on ftime() or time().
886 Note: clock resolution does not imply clock accuracy! */
887 #ifdef HAVE_GETTIMEOFDAY
890 #ifdef GETTIMEOFDAY_NO_TZ
891 if (gettimeofday(&t
) == 0)
892 return (double)t
.tv_sec
+ t
.tv_usec
*0.000001;
893 #else /* !GETTIMEOFDAY_NO_TZ */
894 if (gettimeofday(&t
, (struct timezone
*)NULL
) == 0)
895 return (double)t
.tv_sec
+ t
.tv_usec
*0.000001;
896 #endif /* !GETTIMEOFDAY_NO_TZ */
899 #endif /* !HAVE_GETTIMEOFDAY */
901 #if defined(HAVE_FTIME)
904 return (double)t
.time
+ (double)t
.millitm
* (double)0.001;
905 #else /* !HAVE_FTIME */
909 #endif /* !HAVE_FTIME */
914 /* Implement floatsleep() for various platforms.
915 When interrupted (or when another error occurs), return -1 and
916 set an exception; else return 0. */
919 floatsleep(double secs
)
921 /* XXX Should test for MS_WINDOWS first! */
922 #if defined(HAVE_SELECT) && !defined(__BEOS__) && !defined(__EMX__)
925 frac
= fmod(secs
, 1.0);
927 t
.tv_sec
= (long)secs
;
928 t
.tv_usec
= (long)(frac
*1000000.0);
929 Py_BEGIN_ALLOW_THREADS
930 if (select(0, (fd_set
*)0, (fd_set
*)0, (fd_set
*)0, &t
) != 0) {
932 if (errno
!= EINTR
) {
937 PyErr_SetFromErrno(PyExc_IOError
);
942 #elif defined(__WATCOMC__) && !defined(__QNX__)
943 /* XXX Can't interrupt this sleep */
944 Py_BEGIN_ALLOW_THREADS
945 delay((int)(secs
* 1000 + 0.5)); /* delay() uses milliseconds */
947 #elif defined(MS_WINDOWS)
949 double millisecs
= secs
* 1000.0;
950 unsigned long ul_millis
;
952 if (millisecs
> (double)ULONG_MAX
) {
953 PyErr_SetString(PyExc_OverflowError
,
954 "sleep length is too large");
957 Py_BEGIN_ALLOW_THREADS
958 /* Allow sleep(0) to maintain win32 semantics, and as decreed
959 * by Guido, only the main thread can be interrupted.
961 ul_millis
= (unsigned long)millisecs
;
962 if (ul_millis
== 0 ||
963 main_thread
!= PyThread_get_thread_ident())
967 ResetEvent(hInterruptEvent
);
968 rc
= WaitForSingleObject(hInterruptEvent
, ul_millis
);
969 if (rc
== WAIT_OBJECT_0
) {
970 /* Yield to make sure real Python signal
976 PyErr_SetFromErrno(PyExc_IOError
);
982 #elif defined(PYOS_OS2)
983 /* This Sleep *IS* Interruptable by Exceptions */
984 Py_BEGIN_ALLOW_THREADS
985 if (DosSleep(secs
* 1000) != NO_ERROR
) {
987 PyErr_SetFromErrno(PyExc_IOError
);
991 #elif defined(__BEOS__)
992 /* This sleep *CAN BE* interrupted. */
998 Py_BEGIN_ALLOW_THREADS
999 /* BeOS snooze() is in microseconds... */
1000 if( snooze( (bigtime_t
)( secs
* 1000.0 * 1000.0 ) ) == B_INTERRUPTED
) {
1002 PyErr_SetFromErrno( PyExc_IOError
);
1005 Py_END_ALLOW_THREADS
1007 #elif defined(RISCOS)
1010 Py_BEGIN_ALLOW_THREADS
1011 /* This sleep *CAN BE* interrupted. */
1012 if ( riscos_sleep(secs
) )
1014 Py_END_ALLOW_THREADS
1015 #elif defined(PLAN9)
1017 double millisecs
= secs
* 1000.0;
1018 if (millisecs
> (double)LONG_MAX
) {
1019 PyErr_SetString(PyExc_OverflowError
, "sleep length is too large");
1022 /* This sleep *CAN BE* interrupted. */
1023 Py_BEGIN_ALLOW_THREADS
1024 if(sleep((long)millisecs
) < 0){
1026 PyErr_SetFromErrno(PyExc_IOError
);
1029 Py_END_ALLOW_THREADS
1032 /* XXX Can't interrupt this sleep */
1033 Py_BEGIN_ALLOW_THREADS
1035 Py_END_ALLOW_THREADS