blob: 17d9c38d84c8925f01246714f3af0ec4b059ed41 [file] [log] [blame]
Guido van Rossum85a5fbb1990-10-14 12:07:46 +00001/* Time module */
2
Barry Warsaw9a2a8a81996-12-06 23:32:14 +00003#include "Python.h"
Alexander Belopolsky6fc4ade2010-08-05 17:34:27 +00004#include "_time.h"
Guido van Rossum3f5da241990-12-20 15:06:42 +00005
Guido van Rossum87ce7bb1998-06-09 16:30:31 +00006#include <ctype.h>
7
Thomas Wouters0e3f5912006-08-11 14:57:12 +00008#ifdef HAVE_SYS_TYPES_H
Guido van Rossumb6775db1994-08-01 11:34:53 +00009#include <sys/types.h>
Thomas Wouters0e3f5912006-08-11 14:57:12 +000010#endif /* HAVE_SYS_TYPES_H */
Guido van Rossum6d946f91992-08-14 13:49:30 +000011
Guido van Rossumb6775db1994-08-01 11:34:53 +000012#ifdef QUICKWIN
13#include <io.h>
14#endif
15
Guido van Rossum7bf22de1997-12-02 20:34:19 +000016#if defined(__WATCOMC__) && !defined(__QNX__)
Guido van Rossumbceeac81996-05-23 22:53:47 +000017#include <i86.h>
18#else
Guido van Rossumcac6c721996-09-06 13:34:02 +000019#ifdef MS_WINDOWS
Mark Hammond975e3922002-07-16 01:29:19 +000020#define WIN32_LEAN_AND_MEAN
Guido van Rossum258ccd42001-03-02 06:53:29 +000021#include <windows.h>
Mark Hammond975e3922002-07-16 01:29:19 +000022#include "pythread.h"
23
24/* helper to allow us to interrupt sleep() on Windows*/
25static HANDLE hInterruptEvent = NULL;
26static BOOL WINAPI PyCtrlHandler(DWORD dwCtrlType)
27{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000028 SetEvent(hInterruptEvent);
29 /* allow other default handlers to be called.
30 Default Python handler will setup the
31 KeyboardInterrupt exception.
32 */
33 return FALSE;
Mark Hammond975e3922002-07-16 01:29:19 +000034}
35static long main_thread;
36
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000037#if defined(__BORLANDC__)
Guido van Rossumb2fb3641996-09-07 00:47:35 +000038/* These overrides not needed for Win32 */
Guido van Rossumb6775db1994-08-01 11:34:53 +000039#define timezone _timezone
Guido van Rossumcc081121995-03-14 15:05:41 +000040#define tzname _tzname
41#define daylight _daylight
Martin v. Löwis6238d2b2002-06-30 15:26:10 +000042#endif /* __BORLANDC__ */
Guido van Rossumcac6c721996-09-06 13:34:02 +000043#endif /* MS_WINDOWS */
Guido van Rossum7bf22de1997-12-02 20:34:19 +000044#endif /* !__WATCOMC__ || __QNX__ */
Guido van Rossum234f9421993-06-17 12:35:49 +000045
Thomas Wouters477c8d52006-05-27 19:21:47 +000046#if defined(MS_WINDOWS) && !defined(__BORLANDC__)
47/* Win32 has better clock replacement; we have our own version below. */
48#undef HAVE_CLOCK
49#endif /* MS_WINDOWS && !defined(__BORLANDC__) */
Guido van Rossum3917c221997-04-02 05:35:28 +000050
Andrew MacIntyre7bf68332002-03-03 02:59:16 +000051#if defined(PYOS_OS2)
52#define INCL_DOS
53#define INCL_ERRORS
54#include <os2.h>
55#endif
56
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000057#if defined(PYCC_VACPP)
Guido van Rossum26452411998-09-28 22:07:11 +000058#include <sys/time.h>
Guido van Rossum8e9ebfd1997-11-22 21:53:48 +000059#endif
60
Guido van Rossum234f9421993-06-17 12:35:49 +000061/* Forward declarations */
Tim Petersdbd9ba62000-07-09 03:09:57 +000062static int floatsleep(double);
Thomas Woutersed77bac2000-07-24 15:26:39 +000063static double floattime(void);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000064
Guido van Rossumcfbaecc1998-08-25 14:51:12 +000065/* For Y2K check */
66static PyObject *moddict;
67
Barry Warsaw9a2a8a81996-12-06 23:32:14 +000068static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +000069time_time(PyObject *self, PyObject *unused)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +000070{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000071 double secs;
72 secs = floattime();
73 if (secs == 0.0) {
74 PyErr_SetFromErrno(PyExc_IOError);
75 return NULL;
76 }
77 return PyFloat_FromDouble(secs);
Guido van Rossumb6775db1994-08-01 11:34:53 +000078}
79
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000080PyDoc_STRVAR(time_doc,
Guido van Rossum0ef577b1998-06-27 20:38:36 +000081"time() -> floating point number\n\
82\n\
83Return the current time in seconds since the Epoch.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +000084Fractions of a second may be present if the system clock provides them.");
Guido van Rossum0ef577b1998-06-27 20:38:36 +000085
Guido van Rossumb6775db1994-08-01 11:34:53 +000086#ifdef HAVE_CLOCK
87
88#ifndef CLOCKS_PER_SEC
Guido van Rossum1b66a4f1996-02-25 04:50:33 +000089#ifdef CLK_TCK
90#define CLOCKS_PER_SEC CLK_TCK
91#else
Guido van Rossumb6775db1994-08-01 11:34:53 +000092#define CLOCKS_PER_SEC 1000000
93#endif
Guido van Rossum1b66a4f1996-02-25 04:50:33 +000094#endif
Guido van Rossumb6775db1994-08-01 11:34:53 +000095
Barry Warsaw9a2a8a81996-12-06 23:32:14 +000096static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +000097time_clock(PyObject *self, PyObject *unused)
Guido van Rossumb6775db1994-08-01 11:34:53 +000098{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +000099 return PyFloat_FromDouble(((double)clock()) / CLOCKS_PER_SEC);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000100}
Guido van Rossumb6775db1994-08-01 11:34:53 +0000101#endif /* HAVE_CLOCK */
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000102
Thomas Wouters477c8d52006-05-27 19:21:47 +0000103#if defined(MS_WINDOWS) && !defined(__BORLANDC__)
Mark Hammond7ba5e812002-02-12 04:02:33 +0000104/* Due to Mark Hammond and Tim Peters */
Guido van Rossum3917c221997-04-02 05:35:28 +0000105static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000106time_clock(PyObject *self, PyObject *unused)
Guido van Rossum3917c221997-04-02 05:35:28 +0000107{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000108 static LARGE_INTEGER ctrStart;
109 static double divisor = 0.0;
110 LARGE_INTEGER now;
111 double diff;
Guido van Rossum3917c221997-04-02 05:35:28 +0000112
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000113 if (divisor == 0.0) {
114 LARGE_INTEGER freq;
115 QueryPerformanceCounter(&ctrStart);
116 if (!QueryPerformanceFrequency(&freq) || freq.QuadPart == 0) {
117 /* Unlikely to happen - this works on all intel
118 machines at least! Revert to clock() */
119 return PyFloat_FromDouble(((double)clock()) /
120 CLOCKS_PER_SEC);
121 }
122 divisor = (double)freq.QuadPart;
123 }
124 QueryPerformanceCounter(&now);
125 diff = (double)(now.QuadPart - ctrStart.QuadPart);
126 return PyFloat_FromDouble(diff / divisor);
Guido van Rossum3917c221997-04-02 05:35:28 +0000127}
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000128
Guido van Rossum3917c221997-04-02 05:35:28 +0000129#define HAVE_CLOCK /* So it gets included in the methods */
Thomas Wouters477c8d52006-05-27 19:21:47 +0000130#endif /* MS_WINDOWS && !defined(__BORLANDC__) */
Guido van Rossum3917c221997-04-02 05:35:28 +0000131
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000132#ifdef HAVE_CLOCK
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000133PyDoc_STRVAR(clock_doc,
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000134"clock() -> floating point number\n\
135\n\
136Return the CPU time or real time since the start of the process or since\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000137the first call to clock(). This has as much precision as the system\n\
138records.");
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000139#endif
140
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000141static PyObject *
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000142time_sleep(PyObject *self, PyObject *args)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000143{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000144 double secs;
145 if (!PyArg_ParseTuple(args, "d:sleep", &secs))
146 return NULL;
147 if (floatsleep(secs) != 0)
148 return NULL;
149 Py_INCREF(Py_None);
150 return Py_None;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000151}
152
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000153PyDoc_STRVAR(sleep_doc,
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000154"sleep(seconds)\n\
155\n\
156Delay execution for a given number of seconds. The argument may be\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000157a floating point number for subsecond precision.");
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000158
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000159static PyStructSequence_Field struct_time_type_fields[] = {
Alexander Belopolsky69f3fd02010-06-05 15:04:51 +0000160 {"tm_year", "year, for example, 1993"},
161 {"tm_mon", "month of year, range [1, 12]"},
162 {"tm_mday", "day of month, range [1, 31]"},
163 {"tm_hour", "hours, range [0, 23]"},
164 {"tm_min", "minutes, range [0, 59]"},
165 {"tm_sec", "seconds, range [0, 61])"},
166 {"tm_wday", "day of week, range [0, 6], Monday is 0"},
167 {"tm_yday", "day of year, range [1, 366]"},
168 {"tm_isdst", "1 if summer time is in effect, 0 if not, and -1 if unknown"},
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000169 {0}
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000170};
171
172static PyStructSequence_Desc struct_time_type_desc = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000173 "time.struct_time",
Alexander Belopolsky69f3fd02010-06-05 15:04:51 +0000174 "The time value as returned by gmtime(), localtime(), and strptime(), and\n"
175 " accepted by asctime(), mktime() and strftime(). May be considered as a\n"
176 " sequence of 9 integers.\n\n"
177 " Note that several fields' values are not the same as those defined by\n"
178 " the C language standard for struct tm. For example, the value of the\n"
179 " field tm_year is the actual year, not year - 1900. See individual\n"
180 " fields' descriptions for details.",
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000181 struct_time_type_fields,
182 9,
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000183};
Tim Peters9ad4b682002-02-13 05:14:18 +0000184
Thomas Wouters49fd7fa2006-04-21 10:40:58 +0000185static int initialized;
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000186static PyTypeObject StructTimeType;
187
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000188static PyObject *
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000189tmtotuple(struct tm *p)
Guido van Rossum87ce7bb1998-06-09 16:30:31 +0000190{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000191 PyObject *v = PyStructSequence_New(&StructTimeType);
192 if (v == NULL)
193 return NULL;
Tim Peters9ad4b682002-02-13 05:14:18 +0000194
Christian Heimes217cfd12007-12-02 14:31:20 +0000195#define SET(i,val) PyStructSequence_SET_ITEM(v, i, PyLong_FromLong((long) val))
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000196
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000197 SET(0, p->tm_year + 1900);
198 SET(1, p->tm_mon + 1); /* Want January == 1 */
199 SET(2, p->tm_mday);
200 SET(3, p->tm_hour);
201 SET(4, p->tm_min);
202 SET(5, p->tm_sec);
203 SET(6, (p->tm_wday + 6) % 7); /* Want Monday == 0 */
204 SET(7, p->tm_yday + 1); /* Want January, 1 == 1 */
205 SET(8, p->tm_isdst);
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000206#undef SET
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000207 if (PyErr_Occurred()) {
208 Py_XDECREF(v);
209 return NULL;
210 }
Guido van Rossum98bf58f2001-10-18 20:34:25 +0000211
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000212 return v;
Guido van Rossum87ce7bb1998-06-09 16:30:31 +0000213}
214
215static PyObject *
Brett Cannon298c3802004-06-19 20:48:43 +0000216time_convert(double when, struct tm * (*function)(const time_t *))
Guido van Rossum234f9421993-06-17 12:35:49 +0000217{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000218 struct tm *p;
219 time_t whent = _PyTime_DoubleToTimet(when);
Brett Cannon298c3802004-06-19 20:48:43 +0000220
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000221 if (whent == (time_t)-1 && PyErr_Occurred())
222 return NULL;
223 errno = 0;
224 p = function(&whent);
225 if (p == NULL) {
Guido van Rossum6e8583d1996-10-08 14:19:52 +0000226#ifdef EINVAL
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000227 if (errno == 0)
228 errno = EINVAL;
Guido van Rossum6e8583d1996-10-08 14:19:52 +0000229#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000230 return PyErr_SetFromErrno(PyExc_ValueError);
231 }
232 return tmtotuple(p);
Guido van Rossum234f9421993-06-17 12:35:49 +0000233}
234
Fred Drakef901abd2004-08-03 17:58:55 +0000235/* Parse arg tuple that can contain an optional float-or-None value;
236 format needs to be "|O:name".
237 Returns non-zero on success (parallels PyArg_ParseTuple).
238*/
239static int
240parse_time_double_args(PyObject *args, char *format, double *pwhen)
241{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000242 PyObject *ot = NULL;
Fred Drakef901abd2004-08-03 17:58:55 +0000243
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000244 if (!PyArg_ParseTuple(args, format, &ot))
245 return 0;
246 if (ot == NULL || ot == Py_None)
247 *pwhen = floattime();
248 else {
249 double when = PyFloat_AsDouble(ot);
250 if (PyErr_Occurred())
251 return 0;
252 *pwhen = when;
253 }
254 return 1;
Fred Drakef901abd2004-08-03 17:58:55 +0000255}
256
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000257static PyObject *
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000258time_gmtime(PyObject *self, PyObject *args)
Guido van Rossum234f9421993-06-17 12:35:49 +0000259{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000260 double when;
261 if (!parse_time_double_args(args, "|O:gmtime", &when))
262 return NULL;
263 return time_convert(when, gmtime);
Guido van Rossum234f9421993-06-17 12:35:49 +0000264}
265
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000266PyDoc_STRVAR(gmtime_doc,
Christian Heimes9a371592007-12-28 14:08:13 +0000267"gmtime([seconds]) -> (tm_year, tm_mon, tm_mday, tm_hour, tm_min,\n\
Fred Drake193a3f62002-03-12 21:38:49 +0000268 tm_sec, tm_wday, tm_yday, tm_isdst)\n\
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000269\n\
Thomas Woutersfe385252001-01-19 23:16:56 +0000270Convert seconds since the Epoch to a time tuple expressing UTC (a.k.a.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000271GMT). When 'seconds' is not passed in, convert the current time instead.");
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000272
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000273static PyObject *
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000274time_localtime(PyObject *self, PyObject *args)
Guido van Rossum234f9421993-06-17 12:35:49 +0000275{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000276 double when;
277 if (!parse_time_double_args(args, "|O:localtime", &when))
278 return NULL;
279 return time_convert(when, localtime);
Guido van Rossum234f9421993-06-17 12:35:49 +0000280}
281
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000282PyDoc_STRVAR(localtime_doc,
Christian Heimes9a371592007-12-28 14:08:13 +0000283"localtime([seconds]) -> (tm_year,tm_mon,tm_mday,tm_hour,tm_min,\n\
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000284 tm_sec,tm_wday,tm_yday,tm_isdst)\n\
Martin v. Löwisb3cfc1d2001-12-02 12:27:43 +0000285\n\
Thomas Woutersfe385252001-01-19 23:16:56 +0000286Convert seconds since the Epoch to a time tuple expressing local time.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000287When 'seconds' is not passed in, convert the current time instead.");
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000288
Alexander Belopolsky38e29962010-10-01 14:18:49 +0000289/* Convert 9-item tuple to tm structure. Return 1 on success, set
290 * an exception and return 0 on error.
291 */
Guido van Rossum9e90a671993-06-24 11:10:19 +0000292static int
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000293gettmarg(PyObject *args, struct tm *p)
Guido van Rossum9e90a671993-06-24 11:10:19 +0000294{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000295 int y;
Guido van Rossumcfbaecc1998-08-25 14:51:12 +0000296
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000297 memset((void *) p, '\0', sizeof(struct tm));
Guido van Rossumb9081262007-08-25 03:14:09 +0000298
Alexander Belopolsky610e5442011-01-06 21:57:06 +0000299 if (!PyTuple_Check(args)) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000300 PyErr_SetString(PyExc_TypeError,
301 "Tuple or struct_time argument required");
302 return 0;
303 }
Skip Montanaro41cfce92007-08-24 21:11:00 +0000304
Alexander Belopolsky610e5442011-01-06 21:57:06 +0000305 if (!PyArg_ParseTuple(args, "iiiiiiiii",
306 &y, &p->tm_mon, &p->tm_mday,
307 &p->tm_hour, &p->tm_min, &p->tm_sec,
308 &p->tm_wday, &p->tm_yday, &p->tm_isdst))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000309 return 0;
Skip Montanaro41cfce92007-08-24 21:11:00 +0000310
Alexander Belopolskyc64708a2011-01-07 19:59:19 +0000311 /* If year is specified with less than 4 digits, its interpretation
312 * depends on the accept2dyear value.
313 *
314 * If accept2dyear is true (default), a backward compatibility behavior is
315 * invoked as follows:
316 *
317 * - for 2-digit year, century is guessed according to POSIX rules for
318 * %y strptime format: 21st century for y < 69, 20th century
319 * otherwise. A deprecation warning is issued when century
320 * information is guessed in this way.
321 *
322 * - for 3-digit or negative year, a ValueError exception is raised.
323 *
324 * If accept2dyear is false (set by the program or as a result of a
325 * non-empty value assigned to PYTHONY2K environment variable) all year
326 * values are interpreted as given.
Alexander Belopolskya6867252011-01-05 23:00:47 +0000327 */
Alexander Belopolskyc64708a2011-01-07 19:59:19 +0000328 if (y < 1000) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000329 PyObject *accept = PyDict_GetItemString(moddict,
330 "accept2dyear");
Victor Stinner301f1212011-01-08 03:06:52 +0000331 if (accept != NULL) {
Alexander Belopolsky0dd06f42011-01-08 01:23:02 +0000332 int acceptval = PyObject_IsTrue(accept);
333 if (acceptval == -1)
Alexander Belopolskya6867252011-01-05 23:00:47 +0000334 return 0;
Alexander Belopolsky0dd06f42011-01-08 01:23:02 +0000335 if (acceptval) {
336 if (0 <= y && y < 69)
337 y += 2000;
338 else if (69 <= y && y < 100)
339 y += 1900;
340 else {
341 PyErr_SetString(PyExc_ValueError,
342 "year out of range");
343 return 0;
344 }
345 if (PyErr_WarnEx(PyExc_DeprecationWarning,
346 "Century info guessed for a 2-digit year.", 1) != 0)
347 return 0;
Alexander Belopolskya6867252011-01-05 23:00:47 +0000348 }
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000349 }
Alexander Belopolsky0dd06f42011-01-08 01:23:02 +0000350 else
351 return 0;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000352 }
353 p->tm_year = y - 1900;
354 p->tm_mon--;
355 p->tm_wday = (p->tm_wday + 1) % 7;
356 p->tm_yday--;
357 return 1;
Guido van Rossum9e90a671993-06-24 11:10:19 +0000358}
359
Alexander Belopolsky38e29962010-10-01 14:18:49 +0000360/* Check values of the struct tm fields before it is passed to strftime() and
361 * asctime(). Return 1 if all values are valid, otherwise set an exception
362 * and returns 0.
363 */
Victor Stinneref128102010-10-07 01:00:52 +0000364static int
365checktm(struct tm* buf)
Alexander Belopolsky38e29962010-10-01 14:18:49 +0000366{
Victor Stinneref128102010-10-07 01:00:52 +0000367 /* Checks added to make sure strftime() and asctime() does not crash Python by
368 indexing blindly into some array for a textual representation
369 by some bad index (fixes bug #897625 and #6608).
370
371 Also support values of zero from Python code for arguments in which
372 that is out of range by forcing that value to the lowest value that
373 is valid (fixed bug #1520914).
374
375 Valid ranges based on what is allowed in struct tm:
376
377 - tm_year: [0, max(int)] (1)
378 - tm_mon: [0, 11] (2)
379 - tm_mday: [1, 31]
380 - tm_hour: [0, 23]
381 - tm_min: [0, 59]
382 - tm_sec: [0, 60]
383 - tm_wday: [0, 6] (1)
384 - tm_yday: [0, 365] (2)
385 - tm_isdst: [-max(int), max(int)]
386
387 (1) gettmarg() handles bounds-checking.
388 (2) Python's acceptable range is one greater than the range in C,
Alexander Belopolsky38e29962010-10-01 14:18:49 +0000389 thus need to check against automatic decrement by gettmarg().
390 */
391 if (buf->tm_mon == -1)
392 buf->tm_mon = 0;
393 else if (buf->tm_mon < 0 || buf->tm_mon > 11) {
394 PyErr_SetString(PyExc_ValueError, "month out of range");
395 return 0;
396 }
397 if (buf->tm_mday == 0)
398 buf->tm_mday = 1;
399 else if (buf->tm_mday < 0 || buf->tm_mday > 31) {
400 PyErr_SetString(PyExc_ValueError, "day of month out of range");
401 return 0;
402 }
403 if (buf->tm_hour < 0 || buf->tm_hour > 23) {
404 PyErr_SetString(PyExc_ValueError, "hour out of range");
405 return 0;
406 }
407 if (buf->tm_min < 0 || buf->tm_min > 59) {
408 PyErr_SetString(PyExc_ValueError, "minute out of range");
409 return 0;
410 }
411 if (buf->tm_sec < 0 || buf->tm_sec > 61) {
412 PyErr_SetString(PyExc_ValueError, "seconds out of range");
413 return 0;
414 }
415 /* tm_wday does not need checking of its upper-bound since taking
416 ``% 7`` in gettmarg() automatically restricts the range. */
417 if (buf->tm_wday < 0) {
418 PyErr_SetString(PyExc_ValueError, "day of week out of range");
419 return 0;
420 }
421 if (buf->tm_yday == -1)
422 buf->tm_yday = 0;
423 else if (buf->tm_yday < 0 || buf->tm_yday > 365) {
424 PyErr_SetString(PyExc_ValueError, "day of year out of range");
425 return 0;
426 }
427 return 1;
428}
429
Victor Stinnerc1f32ca2011-10-14 02:36:13 +0200430#ifdef MS_WINDOWS
431 /* wcsftime() doesn't format correctly time zones, see issue #10653 */
432# undef HAVE_WCSFTIME
433#endif
434
Guido van Rossum8d8c1ee1995-09-13 17:38:35 +0000435#ifdef HAVE_STRFTIME
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000436#ifdef HAVE_WCSFTIME
437#define time_char wchar_t
438#define format_time wcsftime
439#define time_strlen wcslen
440#else
441#define time_char char
442#define format_time strftime
443#define time_strlen strlen
444#endif
445
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000446static PyObject *
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000447time_strftime(PyObject *self, PyObject *args)
Guido van Rossum8d8c1ee1995-09-13 17:38:35 +0000448{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000449 PyObject *tup = NULL;
450 struct tm buf;
451 const time_char *fmt;
Victor Stinnerb2904782010-09-29 10:34:19 +0000452#ifdef HAVE_WCSFTIME
453 wchar_t *format;
454#else
455 PyObject *format;
456#endif
Victor Stinneref128102010-10-07 01:00:52 +0000457 PyObject *format_arg;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000458 size_t fmtlen, buflen;
Victor Stinnerb2904782010-09-29 10:34:19 +0000459 time_char *outbuf = NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000460 size_t i;
Victor Stinnerb2904782010-09-29 10:34:19 +0000461 PyObject *ret = NULL;
Guido van Rossum8d8c1ee1995-09-13 17:38:35 +0000462
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000463 memset((void *) &buf, '\0', sizeof(buf));
Guido van Rossum1f41f841998-04-27 19:04:26 +0000464
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000465 /* Will always expect a unicode string to be passed as format.
466 Given that there's no str type anymore in py3k this seems safe.
467 */
Victor Stinneref128102010-10-07 01:00:52 +0000468 if (!PyArg_ParseTuple(args, "U|O:strftime", &format_arg, &tup))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000469 return NULL;
Thomas Woutersfe385252001-01-19 23:16:56 +0000470
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000471 if (tup == NULL) {
472 time_t tt = time(NULL);
473 buf = *localtime(&tt);
Alexander Belopolsky38e29962010-10-01 14:18:49 +0000474 }
475 else if (!gettmarg(tup, &buf) || !checktm(&buf))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000476 return NULL;
Guido van Rossum10b164a2001-09-25 13:59:01 +0000477
Victor Stinner06ec45e2011-01-08 03:35:36 +0000478#if defined(_MSC_VER) || defined(sun)
Victor Stinner73ea29c2011-01-08 01:56:31 +0000479 if (buf.tm_year + 1900 < 1 || 9999 < buf.tm_year + 1900) {
Victor Stinner6f0e4f92011-03-21 02:14:53 +0100480 PyErr_SetString(PyExc_ValueError,
481 "strftime() requires year in [1; 9999]");
Alexander Belopolsky0dd06f42011-01-08 01:23:02 +0000482 return NULL;
Alexander Belopolskyc64708a2011-01-07 19:59:19 +0000483 }
Victor Stinner73ea29c2011-01-08 01:56:31 +0000484#endif
Alexander Belopolskyc64708a2011-01-07 19:59:19 +0000485
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000486 /* Normalize tm_isdst just in case someone foolishly implements %Z
487 based on the assumption that tm_isdst falls within the range of
488 [-1, 1] */
489 if (buf.tm_isdst < -1)
490 buf.tm_isdst = -1;
491 else if (buf.tm_isdst > 1)
492 buf.tm_isdst = 1;
Brett Cannond1080a32004-03-02 04:38:10 +0000493
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000494#ifdef HAVE_WCSFTIME
Victor Stinnerbeb4135b2010-10-07 01:02:42 +0000495 format = PyUnicode_AsWideCharString(format_arg, NULL);
Victor Stinnerb2904782010-09-29 10:34:19 +0000496 if (format == NULL)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000497 return NULL;
Victor Stinnerb2904782010-09-29 10:34:19 +0000498 fmt = format;
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000499#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000500 /* Convert the unicode string to an ascii one */
Victor Stinner720f34a2011-12-09 20:19:24 +0100501 format = PyUnicode_EncodeFSDefault(format_arg);
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000502 if (format == NULL)
503 return NULL;
504 fmt = PyBytes_AS_STRING(format);
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000505#endif
Amaury Forgeot d'Arcb5be6d42009-03-02 23:52:57 +0000506
Victor Stinner8d91d452011-10-16 23:45:39 +0200507#if defined(MS_WINDOWS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000508 /* check that the format string contains only valid directives */
Victor Stinner8d91d452011-10-16 23:45:39 +0200509 for(outbuf = strchr(fmt, '%');
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000510 outbuf != NULL;
Victor Stinner8d91d452011-10-16 23:45:39 +0200511 outbuf = strchr(outbuf+2, '%'))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000512 {
513 if (outbuf[1]=='#')
514 ++outbuf; /* not documented by python, */
515 if (outbuf[1]=='\0' ||
Victor Stinner8d91d452011-10-16 23:45:39 +0200516 !strchr("aAbBcdHIjmMpSUwWxXyYzZ%", outbuf[1]))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000517 {
518 PyErr_SetString(PyExc_ValueError, "Invalid format string");
519 return 0;
520 }
521 }
Amaury Forgeot d'Arcb5be6d42009-03-02 23:52:57 +0000522#endif
523
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000524 fmtlen = time_strlen(fmt);
Guido van Rossumc222ec21999-02-23 00:00:10 +0000525
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000526 /* I hate these functions that presume you know how big the output
527 * will be ahead of time...
528 */
529 for (i = 1024; ; i += i) {
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100530 int err;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000531 outbuf = (time_char *)PyMem_Malloc(i*sizeof(time_char));
532 if (outbuf == NULL) {
Victor Stinnerb2904782010-09-29 10:34:19 +0000533 PyErr_NoMemory();
534 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000535 }
536 buflen = format_time(outbuf, i, fmt, &buf);
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100537 err = errno;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000538 if (buflen > 0 || i >= 256 * fmtlen) {
539 /* If the buffer is 256 times as long as the format,
540 it's probably not failing for lack of room!
541 More likely, the format yields an empty result,
542 e.g. an empty format, or %Z when the timezone
543 is unknown. */
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000544#ifdef HAVE_WCSFTIME
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000545 ret = PyUnicode_FromWideChar(outbuf, buflen);
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000546#else
Victor Stinner720f34a2011-12-09 20:19:24 +0100547 ret = PyUnicode_DecodeFSDefaultAndSize(outbuf, buflen);
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000548#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000549 PyMem_Free(outbuf);
Victor Stinnerb2904782010-09-29 10:34:19 +0000550 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000551 }
552 PyMem_Free(outbuf);
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000553#if defined _MSC_VER && _MSC_VER >= 1400 && defined(__STDC_SECURE_LIB__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000554 /* VisualStudio .NET 2005 does this properly */
Antoine Pitrouc345ce12011-12-16 12:28:32 +0100555 if (buflen == 0 && err == EINVAL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000556 PyErr_SetString(PyExc_ValueError, "Invalid format string");
Victor Stinnerb2904782010-09-29 10:34:19 +0000557 break;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000558 }
Thomas Wouters0e3f5912006-08-11 14:57:12 +0000559#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000560 }
Victor Stinnerb2904782010-09-29 10:34:19 +0000561#ifdef HAVE_WCSFTIME
562 PyMem_Free(format);
563#else
564 Py_DECREF(format);
565#endif
566 return ret;
Guido van Rossum8d8c1ee1995-09-13 17:38:35 +0000567}
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000568
Martin v. Löwis1b01ccd2009-05-30 06:13:40 +0000569#undef time_char
570#undef format_time
571
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000572PyDoc_STRVAR(strftime_doc,
Thomas Woutersfe385252001-01-19 23:16:56 +0000573"strftime(format[, tuple]) -> string\n\
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000574\n\
575Convert a time tuple to a string according to a format specification.\n\
Thomas Woutersfe385252001-01-19 23:16:56 +0000576See the library reference manual for formatting codes. When the time tuple\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000577is not present, current time as returned by localtime() is used.");
Guido van Rossum8d8c1ee1995-09-13 17:38:35 +0000578#endif /* HAVE_STRFTIME */
579
Guido van Rossumd3c46d52002-07-19 17:06:47 +0000580static PyObject *
581time_strptime(PyObject *self, PyObject *args)
582{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000583 PyObject *strptime_module = PyImport_ImportModuleNoBlock("_strptime");
584 PyObject *strptime_result;
Guido van Rossumd3c46d52002-07-19 17:06:47 +0000585
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000586 if (!strptime_module)
587 return NULL;
588 strptime_result = PyObject_CallMethod(strptime_module,
589 "_strptime_time", "O", args);
590 Py_DECREF(strptime_module);
591 return strptime_result;
Guido van Rossumd3c46d52002-07-19 17:06:47 +0000592}
593
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000594
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000595PyDoc_STRVAR(strptime_doc,
Brett Cannon20def8b2003-07-01 05:16:08 +0000596"strptime(string, format) -> struct_time\n\
Martin v. Löwisb3cfc1d2001-12-02 12:27:43 +0000597\n\
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000598Parse a string to a time tuple according to a format specification.\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000599See the library reference manual for formatting codes (same as strftime()).");
Guido van Rossumd3c46d52002-07-19 17:06:47 +0000600
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000601static PyObject *
602_asctime(struct tm *timeptr)
603{
604 /* Inspired by Open Group reference implementation available at
605 * http://pubs.opengroup.org/onlinepubs/009695399/functions/asctime.html */
606 static char wday_name[7][3] = {
607 "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat"
608 };
609 static char mon_name[12][3] = {
610 "Jan", "Feb", "Mar", "Apr", "May", "Jun",
611 "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"
612 };
613 char buf[20]; /* 'Sun Sep 16 01:03:52\0' */
614 int n;
615
Alexander Belopolskyecbb8dc2011-01-06 16:45:25 +0000616 n = PyOS_snprintf(buf, sizeof(buf), "%.3s %.3s%3d %.2d:%.2d:%.2d",
617 wday_name[timeptr->tm_wday],
618 mon_name[timeptr->tm_mon],
619 timeptr->tm_mday, timeptr->tm_hour,
620 timeptr->tm_min, timeptr->tm_sec);
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000621 /* XXX: since the fields used by snprintf above are validated in checktm,
622 * the following condition should never trigger. We keep the check because
623 * historically fixed size buffer used in asctime was the source of
624 * crashes. */
625 if (n + 1 != sizeof(buf)) {
626 PyErr_SetString(PyExc_ValueError, "unconvertible time");
627 return NULL;
628 }
629
630 return PyUnicode_FromFormat("%s %d", buf, 1900 + timeptr->tm_year);
631}
Guido van Rossum87ce7bb1998-06-09 16:30:31 +0000632
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000633static PyObject *
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000634time_asctime(PyObject *self, PyObject *args)
Guido van Rossum9e90a671993-06-24 11:10:19 +0000635{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000636 PyObject *tup = NULL;
637 struct tm buf;
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000638
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000639 if (!PyArg_UnpackTuple(args, "asctime", 0, 1, &tup))
640 return NULL;
641 if (tup == NULL) {
642 time_t tt = time(NULL);
643 buf = *localtime(&tt);
Alexander Belopolsky38e29962010-10-01 14:18:49 +0000644 } else if (!gettmarg(tup, &buf) || !checktm(&buf))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000645 return NULL;
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000646 return _asctime(&buf);
Guido van Rossum9e90a671993-06-24 11:10:19 +0000647}
648
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000649PyDoc_STRVAR(asctime_doc,
Thomas Woutersfe385252001-01-19 23:16:56 +0000650"asctime([tuple]) -> string\n\
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000651\n\
Thomas Woutersfe385252001-01-19 23:16:56 +0000652Convert a time tuple to a string, e.g. 'Sat Jun 06 16:26:11 1998'.\n\
653When the time tuple is not present, current time as returned by localtime()\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000654is used.");
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000655
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000656static PyObject *
Peter Schneider-Kamp416d4132000-07-10 12:15:54 +0000657time_ctime(PyObject *self, PyObject *args)
Guido van Rossum9e90a671993-06-24 11:10:19 +0000658{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000659 PyObject *ot = NULL;
660 time_t tt;
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000661 struct tm *timeptr;
Guido van Rossum10b164a2001-09-25 13:59:01 +0000662
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000663 if (!PyArg_UnpackTuple(args, "ctime", 0, 1, &ot))
664 return NULL;
665 if (ot == NULL || ot == Py_None)
666 tt = time(NULL);
667 else {
668 double dt = PyFloat_AsDouble(ot);
669 if (PyErr_Occurred())
670 return NULL;
671 tt = _PyTime_DoubleToTimet(dt);
672 if (tt == (time_t)-1 && PyErr_Occurred())
673 return NULL;
674 }
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000675 timeptr = localtime(&tt);
676 if (timeptr == NULL) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000677 PyErr_SetString(PyExc_ValueError, "unconvertible time");
Alexander Belopolsky5da468f2011-01-04 17:15:52 +0000678 return NULL;
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000679 }
Alexander Belopolskyb9588b52011-01-04 16:34:30 +0000680 return _asctime(timeptr);
Guido van Rossum9e90a671993-06-24 11:10:19 +0000681}
682
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000683PyDoc_STRVAR(ctime_doc,
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000684"ctime(seconds) -> string\n\
685\n\
686Convert a time in seconds since the Epoch to a string in local time.\n\
Thomas Woutersfe385252001-01-19 23:16:56 +0000687This is equivalent to asctime(localtime(seconds)). When the time tuple is\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000688not present, current time as returned by localtime() is used.");
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000689
Guido van Rossum60cd8131998-03-06 17:16:21 +0000690#ifdef HAVE_MKTIME
Barry Warsaw9a2a8a81996-12-06 23:32:14 +0000691static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000692time_mktime(PyObject *self, PyObject *tup)
Guido van Rossum234f9421993-06-17 12:35:49 +0000693{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000694 struct tm buf;
695 time_t tt;
696 if (!gettmarg(tup, &buf))
697 return NULL;
Alexander Belopolskyb7d40d12011-01-11 01:21:25 +0000698 buf.tm_wday = -1; /* sentinel; original value ignored */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000699 tt = mktime(&buf);
Alexander Belopolskyb7d40d12011-01-11 01:21:25 +0000700 /* Return value of -1 does not necessarily mean an error, but tm_wday
Ezio Melotti13925002011-03-16 11:05:33 +0200701 * cannot remain set to -1 if mktime succeeded. */
Alexander Belopolskyb7d40d12011-01-11 01:21:25 +0000702 if (tt == (time_t)(-1) && buf.tm_wday == -1) {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000703 PyErr_SetString(PyExc_OverflowError,
704 "mktime argument out of range");
705 return NULL;
706 }
707 return PyFloat_FromDouble((double)tt);
Guido van Rossum234f9421993-06-17 12:35:49 +0000708}
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000709
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000710PyDoc_STRVAR(mktime_doc,
Guido van Rossum0ef577b1998-06-27 20:38:36 +0000711"mktime(tuple) -> floating point number\n\
712\n\
Martin v. Löwis14f8b4c2002-06-13 20:33:02 +0000713Convert a time tuple in local time to seconds since the Epoch.");
Guido van Rossum60cd8131998-03-06 17:16:21 +0000714#endif /* HAVE_MKTIME */
Guido van Rossum234f9421993-06-17 12:35:49 +0000715
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000716#ifdef HAVE_WORKING_TZSET
Martin v. Löwis1a214512008-06-11 05:26:20 +0000717static void PyInit_timezone(PyObject *module);
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000718
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000719static PyObject *
Thomas Wouters4d70c3d2006-06-08 14:42:34 +0000720time_tzset(PyObject *self, PyObject *unused)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000721{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000722 PyObject* m;
Fred Drake9bb74322002-04-01 14:49:59 +0000723
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000724 m = PyImport_ImportModuleNoBlock("time");
725 if (m == NULL) {
726 return NULL;
727 }
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000728
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000729 tzset();
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000730
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000731 /* Reset timezone, altzone, daylight and tzname */
732 PyInit_timezone(m);
733 Py_DECREF(m);
Tim Peters1b6f7a92004-06-20 02:50:16 +0000734
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000735 Py_INCREF(Py_None);
736 return Py_None;
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000737}
738
739PyDoc_STRVAR(tzset_doc,
R. David Murray4d55bf92010-12-14 00:55:46 +0000740"tzset()\n\
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000741\n\
742Initialize, or reinitialize, the local timezone to the value stored in\n\
743os.environ['TZ']. The TZ environment variable should be specified in\n\
Neal Norwitzdc8e1942004-07-20 22:34:37 +0000744standard Unix timezone format as documented in the tzset man page\n\
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000745(eg. 'US/Eastern', 'Europe/Amsterdam'). Unknown timezones will silently\n\
746fall back to UTC. If the TZ environment variable is not set, the local\n\
747timezone is set to the systems best guess of wallclock time.\n\
748Changing the TZ environment variable without calling tzset *may* change\n\
749the local timezone used by methods such as localtime, but this behaviour\n\
750should not be relied on.");
751#endif /* HAVE_WORKING_TZSET */
752
Martin v. Löwisd218dc12008-04-07 03:17:54 +0000753static void
Martin v. Löwis1a214512008-06-11 05:26:20 +0000754PyInit_timezone(PyObject *m) {
755 /* This code moved from PyInit_time wholesale to allow calling it from
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000756 time_tzset. In the future, some parts of it can be moved back
757 (for platforms that don't HAVE_WORKING_TZSET, when we know what they
758 are), and the extraneous calls to tzset(3) should be removed.
759 I haven't done this yet, as I don't want to change this code as
760 little as possible when introducing the time.tzset and time.tzsetwall
761 methods. This should simply be a method of doing the following once,
762 at the top of this function and removing the call to tzset() from
763 time_tzset():
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000764
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000765 #ifdef HAVE_TZSET
766 tzset()
767 #endif
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000768
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000769 And I'm lazy and hate C so nyer.
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000770 */
Guido van Rossum10b164a2001-09-25 13:59:01 +0000771#if defined(HAVE_TZNAME) && !defined(__GLIBC__) && !defined(__CYGWIN__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000772 PyObject *otz0, *otz1;
773 tzset();
Guido van Rossum26452411998-09-28 22:07:11 +0000774#ifdef PYOS_OS2
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000775 PyModule_AddIntConstant(m, "timezone", _timezone);
Guido van Rossum26452411998-09-28 22:07:11 +0000776#else /* !PYOS_OS2 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000777 PyModule_AddIntConstant(m, "timezone", timezone);
Guido van Rossum26452411998-09-28 22:07:11 +0000778#endif /* PYOS_OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000779#ifdef HAVE_ALTZONE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000780 PyModule_AddIntConstant(m, "altzone", altzone);
Guido van Rossumb6775db1994-08-01 11:34:53 +0000781#else
Guido van Rossum26452411998-09-28 22:07:11 +0000782#ifdef PYOS_OS2
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000783 PyModule_AddIntConstant(m, "altzone", _timezone-3600);
Guido van Rossum26452411998-09-28 22:07:11 +0000784#else /* !PYOS_OS2 */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000785 PyModule_AddIntConstant(m, "altzone", timezone-3600);
Guido van Rossum26452411998-09-28 22:07:11 +0000786#endif /* PYOS_OS2 */
Guido van Rossumb6775db1994-08-01 11:34:53 +0000787#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000788 PyModule_AddIntConstant(m, "daylight", daylight);
Victor Stinner720f34a2011-12-09 20:19:24 +0100789 otz0 = PyUnicode_DecodeFSDefaultAndSize(tzname[0], strlen(tzname[0]));
790 otz1 = PyUnicode_DecodeFSDefaultAndSize(tzname[1], strlen(tzname[1]));
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000791 PyModule_AddObject(m, "tzname", Py_BuildValue("(NN)", otz0, otz1));
Guido van Rossum10b164a2001-09-25 13:59:01 +0000792#else /* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
Martin v. Löwis60a5d722002-10-16 20:28:25 +0000793#ifdef HAVE_STRUCT_TM_TM_ZONE
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000794 {
Guido van Rossum234f9421993-06-17 12:35:49 +0000795#define YEAR ((time_t)((365 * 24 + 6) * 3600))
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000796 time_t t;
797 struct tm *p;
798 long janzone, julyzone;
799 char janname[10], julyname[10];
800 t = (time((time_t *)0) / YEAR) * YEAR;
801 p = localtime(&t);
802 janzone = -p->tm_gmtoff;
803 strncpy(janname, p->tm_zone ? p->tm_zone : " ", 9);
804 janname[9] = '\0';
805 t += YEAR/2;
806 p = localtime(&t);
807 julyzone = -p->tm_gmtoff;
808 strncpy(julyname, p->tm_zone ? p->tm_zone : " ", 9);
809 julyname[9] = '\0';
Guido van Rossum10b164a2001-09-25 13:59:01 +0000810
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000811 if( janzone < julyzone ) {
812 /* DST is reversed in the southern hemisphere */
813 PyModule_AddIntConstant(m, "timezone", julyzone);
814 PyModule_AddIntConstant(m, "altzone", janzone);
815 PyModule_AddIntConstant(m, "daylight",
816 janzone != julyzone);
817 PyModule_AddObject(m, "tzname",
818 Py_BuildValue("(zz)",
819 julyname, janname));
820 } else {
821 PyModule_AddIntConstant(m, "timezone", janzone);
822 PyModule_AddIntConstant(m, "altzone", julyzone);
823 PyModule_AddIntConstant(m, "daylight",
824 janzone != julyzone);
825 PyModule_AddObject(m, "tzname",
826 Py_BuildValue("(zz)",
827 janname, julyname));
828 }
829 }
Guido van Rossume6a4b7b1997-10-08 15:27:56 +0000830#else
Martin v. Löwis60a5d722002-10-16 20:28:25 +0000831#endif /* HAVE_STRUCT_TM_TM_ZONE */
Tim Peters26ae7cd2001-03-20 03:26:49 +0000832#ifdef __CYGWIN__
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000833 tzset();
834 PyModule_AddIntConstant(m, "timezone", _timezone);
835 PyModule_AddIntConstant(m, "altzone", _timezone-3600);
836 PyModule_AddIntConstant(m, "daylight", _daylight);
837 PyModule_AddObject(m, "tzname",
838 Py_BuildValue("(zz)", _tzname[0], _tzname[1]));
Tim Peters26ae7cd2001-03-20 03:26:49 +0000839#endif /* __CYGWIN__ */
Guido van Rossum10b164a2001-09-25 13:59:01 +0000840#endif /* !HAVE_TZNAME || __GLIBC__ || __CYGWIN__*/
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000841}
842
843
844static PyMethodDef time_methods[] = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000845 {"time", time_time, METH_NOARGS, time_doc},
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000846#ifdef HAVE_CLOCK
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000847 {"clock", time_clock, METH_NOARGS, clock_doc},
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000848#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000849 {"sleep", time_sleep, METH_VARARGS, sleep_doc},
850 {"gmtime", time_gmtime, METH_VARARGS, gmtime_doc},
851 {"localtime", time_localtime, METH_VARARGS, localtime_doc},
852 {"asctime", time_asctime, METH_VARARGS, asctime_doc},
853 {"ctime", time_ctime, METH_VARARGS, ctime_doc},
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000854#ifdef HAVE_MKTIME
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000855 {"mktime", time_mktime, METH_O, mktime_doc},
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000856#endif
857#ifdef HAVE_STRFTIME
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000858 {"strftime", time_strftime, METH_VARARGS, strftime_doc},
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000859#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000860 {"strptime", time_strptime, METH_VARARGS, strptime_doc},
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000861#ifdef HAVE_WORKING_TZSET
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000862 {"tzset", time_tzset, METH_NOARGS, tzset_doc},
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000863#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000864 {NULL, NULL} /* sentinel */
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000865};
866
867
868PyDoc_STRVAR(module_doc,
869"This module provides various functions to manipulate time values.\n\
870\n\
871There are two standard representations of time. One is the number\n\
872of seconds since the Epoch, in UTC (a.k.a. GMT). It may be an integer\n\
873or a floating point number (to represent fractions of seconds).\n\
874The Epoch is system-defined; on Unix, it is generally January 1st, 1970.\n\
875The actual value can be retrieved by calling gmtime(0).\n\
876\n\
877The other representation is a tuple of 9 integers giving local time.\n\
878The tuple items are:\n\
879 year (four digits, e.g. 1998)\n\
880 month (1-12)\n\
881 day (1-31)\n\
882 hours (0-23)\n\
883 minutes (0-59)\n\
884 seconds (0-59)\n\
885 weekday (0-6, Monday is 0)\n\
886 Julian day (day in the year, 1-366)\n\
887 DST (Daylight Savings Time) flag (-1, 0 or 1)\n\
888If the DST flag is 0, the time is given in the regular time zone;\n\
889if it is 1, the time is given in the DST time zone;\n\
890if it is -1, mktime() should guess based on the date and time.\n\
891\n\
892Variables:\n\
893\n\
894timezone -- difference in seconds between UTC and local standard time\n\
895altzone -- difference in seconds between UTC and local DST time\n\
896daylight -- whether local time should reflect DST\n\
897tzname -- tuple of (standard time zone name, DST time zone name)\n\
898\n\
899Functions:\n\
900\n\
901time() -- return current time in seconds since the Epoch as a float\n\
902clock() -- return CPU time since process start as a float\n\
903sleep() -- delay for a number of seconds given as a float\n\
904gmtime() -- convert seconds since Epoch to UTC tuple\n\
905localtime() -- convert seconds since Epoch to local time tuple\n\
906asctime() -- convert time tuple to string\n\
907ctime() -- convert time in seconds to string\n\
908mktime() -- convert local time tuple to seconds since Epoch\n\
909strftime() -- convert time tuple to string according to format specification\n\
910strptime() -- parse string to time tuple according to format specification\n\
911tzset() -- change the local timezone");
912
913
Martin v. Löwis1a214512008-06-11 05:26:20 +0000914
915static struct PyModuleDef timemodule = {
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000916 PyModuleDef_HEAD_INIT,
917 "time",
918 module_doc,
919 -1,
920 time_methods,
921 NULL,
922 NULL,
923 NULL,
924 NULL
Martin v. Löwis1a214512008-06-11 05:26:20 +0000925};
926
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000927PyMODINIT_FUNC
Martin v. Löwis1a214512008-06-11 05:26:20 +0000928PyInit_time(void)
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000929{
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000930 PyObject *m;
931 char *p;
932 m = PyModule_Create(&timemodule);
933 if (m == NULL)
934 return NULL;
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000935
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000936 /* Accept 2-digit dates unless PYTHONY2K is set and non-empty */
937 p = Py_GETENV("PYTHONY2K");
938 PyModule_AddIntConstant(m, "accept2dyear", (long) (!p || !*p));
939 /* Squirrel away the module's dictionary for the y2k check */
940 moddict = PyModule_GetDict(m);
941 Py_INCREF(moddict);
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000942
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000943 /* Set, or reset, module variables like time.timezone */
944 PyInit_timezone(m);
Guido van Rossumd11b62e2003-03-14 21:51:36 +0000945
Mark Hammond975e3922002-07-16 01:29:19 +0000946#ifdef MS_WINDOWS
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000947 /* Helper to allow interrupts for Windows.
948 If Ctrl+C event delivered while not sleeping
949 it will be ignored.
950 */
951 main_thread = PyThread_get_thread_ident();
952 hInterruptEvent = CreateEvent(NULL, TRUE, FALSE, NULL);
953 SetConsoleCtrlHandler( PyCtrlHandler, TRUE);
Mark Hammond975e3922002-07-16 01:29:19 +0000954#endif /* MS_WINDOWS */
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000955 if (!initialized) {
956 PyStructSequence_InitType(&StructTimeType,
957 &struct_time_type_desc);
958 }
959 Py_INCREF(&StructTimeType);
960 PyModule_AddObject(m, "struct_time", (PyObject*) &StructTimeType);
961 initialized = 1;
962 return m;
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000963}
964
Guido van Rossumb6775db1994-08-01 11:34:53 +0000965static double
Thomas Woutersf3f33dc2000-07-21 06:00:07 +0000966floattime(void)
Guido van Rossum85a5fbb1990-10-14 12:07:46 +0000967{
Alexander Belopolsky6fc4ade2010-08-05 17:34:27 +0000968 _PyTime_timeval t;
969 _PyTime_gettimeofday(&t);
970 return (double)t.tv_sec + t.tv_usec*0.000001;
Guido van Rossum426035c1991-02-19 12:27:35 +0000971}
972
Guido van Rossumb6775db1994-08-01 11:34:53 +0000973
974/* Implement floatsleep() for various platforms.
975 When interrupted (or when another error occurs), return -1 and
976 set an exception; else return 0. */
977
978static int
Guido van Rossuma320fd31995-03-09 12:14:15 +0000979floatsleep(double secs)
Guido van Rossum426035c1991-02-19 12:27:35 +0000980{
Martin v. Löwis6238d2b2002-06-30 15:26:10 +0000981/* XXX Should test for MS_WINDOWS first! */
Skip Montanaroeb33e5a2007-08-17 12:57:41 +0000982#if defined(HAVE_SELECT) && !defined(__EMX__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000983 struct timeval t;
984 double frac;
985 frac = fmod(secs, 1.0);
986 secs = floor(secs);
987 t.tv_sec = (long)secs;
988 t.tv_usec = (long)(frac*1000000.0);
989 Py_BEGIN_ALLOW_THREADS
990 if (select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t) != 0) {
Guido van Rossum09cbb011999-11-08 15:32:27 +0000991#ifdef EINTR
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000992 if (errno != EINTR) {
Guido van Rossum09cbb011999-11-08 15:32:27 +0000993#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000994 if (1) {
Guido van Rossum09cbb011999-11-08 15:32:27 +0000995#endif
Antoine Pitrouf95a1b32010-05-09 15:52:27 +0000996 Py_BLOCK_THREADS
997 PyErr_SetFromErrno(PyExc_IOError);
998 return -1;
999 }
1000 }
1001 Py_END_ALLOW_THREADS
Martin v. Löwis02af9642002-01-16 11:04:06 +00001002#elif defined(__WATCOMC__) && !defined(__QNX__)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001003 /* XXX Can't interrupt this sleep */
1004 Py_BEGIN_ALLOW_THREADS
1005 delay((int)(secs * 1000 + 0.5)); /* delay() uses milliseconds */
1006 Py_END_ALLOW_THREADS
Martin v. Löwis6238d2b2002-06-30 15:26:10 +00001007#elif defined(MS_WINDOWS)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001008 {
1009 double millisecs = secs * 1000.0;
1010 unsigned long ul_millis;
Tim Peters513a1cd2003-01-19 04:54:58 +00001011
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001012 if (millisecs > (double)ULONG_MAX) {
1013 PyErr_SetString(PyExc_OverflowError,
1014 "sleep length is too large");
1015 return -1;
1016 }
1017 Py_BEGIN_ALLOW_THREADS
1018 /* Allow sleep(0) to maintain win32 semantics, and as decreed
1019 * by Guido, only the main thread can be interrupted.
1020 */
1021 ul_millis = (unsigned long)millisecs;
1022 if (ul_millis == 0 ||
1023 main_thread != PyThread_get_thread_ident())
1024 Sleep(ul_millis);
1025 else {
1026 DWORD rc;
1027 ResetEvent(hInterruptEvent);
1028 rc = WaitForSingleObject(hInterruptEvent, ul_millis);
1029 if (rc == WAIT_OBJECT_0) {
1030 /* Yield to make sure real Python signal
1031 * handler called.
1032 */
1033 Sleep(1);
1034 Py_BLOCK_THREADS
1035 errno = EINTR;
1036 PyErr_SetFromErrno(PyExc_IOError);
1037 return -1;
1038 }
1039 }
1040 Py_END_ALLOW_THREADS
1041 }
Martin v. Löwis02af9642002-01-16 11:04:06 +00001042#elif defined(PYOS_OS2)
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001043 /* This Sleep *IS* Interruptable by Exceptions */
1044 Py_BEGIN_ALLOW_THREADS
1045 if (DosSleep(secs * 1000) != NO_ERROR) {
1046 Py_BLOCK_THREADS
1047 PyErr_SetFromErrno(PyExc_IOError);
1048 return -1;
1049 }
1050 Py_END_ALLOW_THREADS
Martin v. Löwis02af9642002-01-16 11:04:06 +00001051#else
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001052 /* XXX Can't interrupt this sleep */
1053 Py_BEGIN_ALLOW_THREADS
1054 sleep((int)secs);
1055 Py_END_ALLOW_THREADS
Martin v. Löwis02af9642002-01-16 11:04:06 +00001056#endif
Guido van Rossum98bf58f2001-10-18 20:34:25 +00001057
Antoine Pitrouf95a1b32010-05-09 15:52:27 +00001058 return 0;
Guido van Rossum80c9d881991-04-16 08:47:51 +00001059}