cpython/Modules/timemodule.c

509 lines
11 KiB
C
Raw Normal View History

1991-02-19 08:39:46 -04:00
/***********************************************************
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
The Netherlands.
1991-02-19 08:39:46 -04:00
All Rights Reserved
1996-10-25 11:44:06 -03:00
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
1991-02-19 08:39:46 -04:00
provided that the above copyright notice appear in all copies and that
1996-10-25 11:44:06 -03:00
both that copyright notice and this permission notice appear in
1991-02-19 08:39:46 -04:00
supporting documentation, and that the names of Stichting Mathematisch
1996-10-25 11:44:06 -03:00
Centrum or CWI or Corporation for National Research Initiatives or
CNRI not be used in advertising or publicity pertaining to
distribution of the software without specific, written prior
permission.
While CWI is the initial source for this software, a modified version
is made available by the Corporation for National Research Initiatives
(CNRI) at the Internet address ftp://ftp.python.org.
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
PERFORMANCE OF THIS SOFTWARE.
1991-02-19 08:39:46 -04:00
******************************************************************/
1990-10-14 09:07:46 -03:00
/* Time module */
1996-12-06 19:32:14 -04:00
#include "Python.h"
1990-12-20 11:06:42 -04:00
#ifdef HAVE_SELECT
#include "mymath.h"
#endif
#ifdef macintosh
#include <time.h>
#else
#include <sys/types.h>
#endif
#ifdef QUICKWIN
#include <io.h>
#endif
#ifdef HAVE_UNISTD_H
1992-03-27 13:22:13 -04:00
#include <unistd.h>
#endif
#ifdef HAVE_SELECT
#include "myselect.h"
#else
#include "mytime.h"
#endif
#ifdef HAVE_FTIME
#include <sys/timeb.h>
#ifndef MS_WINDOWS
extern int ftime();
#endif /* MS_WINDOWS */
#endif /* HAVE_FTIME */
#ifdef __WATCOMC__
#include <i86.h>
#else
#ifdef MS_WINDOWS
#include <windows.h>
#ifdef MS_WIN16
/* These overrides not needed for Win32 */
#define timezone _timezone
1995-03-14 11:05:41 -04:00
#define tzname _tzname
#define daylight _daylight
#define altzone _altzone
#endif /* MS_WIN16 */
#endif /* MS_WINDOWS */
#endif /* !__WATCOMC__ */
/* Forward declarations */
1996-12-06 19:32:14 -04:00
static int floatsleep Py_PROTO((double));
static double floattime Py_PROTO(());
1990-10-14 09:07:46 -03:00
1996-12-06 19:32:14 -04:00
static PyObject *
1990-10-14 09:07:46 -03:00
time_time(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
1990-10-14 09:07:46 -03:00
{
double secs;
1996-12-06 19:32:14 -04:00
if (!PyArg_NoArgs(args))
return NULL;
secs = floattime();
if (secs == 0.0) {
1996-12-06 19:32:14 -04:00
PyErr_SetFromErrno(PyExc_IOError);
return NULL;
}
1996-12-06 19:32:14 -04:00
return PyFloat_FromDouble(secs);
1990-10-14 09:07:46 -03:00
}
#ifdef HAVE_CLOCK
1990-10-14 09:07:46 -03:00
#ifndef CLOCKS_PER_SEC
#ifdef CLK_TCK
#define CLOCKS_PER_SEC CLK_TCK
#else
#define CLOCKS_PER_SEC 1000000
#endif
#endif
1990-10-14 09:07:46 -03:00
1996-12-06 19:32:14 -04:00
static PyObject *
time_clock(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
1990-10-14 09:07:46 -03:00
{
1996-12-06 19:32:14 -04:00
if (!PyArg_NoArgs(args))
1990-10-14 09:07:46 -03:00
return NULL;
1996-12-06 19:32:14 -04:00
return PyFloat_FromDouble(((double)clock()) / CLOCKS_PER_SEC);
1990-10-14 09:07:46 -03:00
}
#endif /* HAVE_CLOCK */
1990-10-14 09:07:46 -03:00
1996-12-06 19:32:14 -04:00
static PyObject *
time_sleep(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
1990-10-14 09:07:46 -03:00
{
double secs;
1996-12-06 19:32:14 -04:00
if (!PyArg_Parse(args, "d", &secs))
1990-10-14 09:07:46 -03:00
return NULL;
1996-12-06 19:32:14 -04:00
Py_BEGIN_ALLOW_THREADS
if (floatsleep(secs) != 0) {
1996-12-06 19:32:14 -04:00
Py_BLOCK_THREADS
1990-10-14 09:07:46 -03:00
return NULL;
}
1996-12-06 19:32:14 -04:00
Py_END_ALLOW_THREADS
Py_INCREF(Py_None);
return Py_None;
1990-10-14 09:07:46 -03:00
}
1996-12-06 19:32:14 -04:00
static PyObject *
time_convert(when, function)
time_t when;
1996-12-06 19:32:14 -04:00
struct tm * (*function) Py_PROTO((const time_t *));
{
struct tm *p;
errno = 0;
p = function(&when);
if (p == NULL) {
#ifdef EINVAL
1996-11-02 13:31:22 -04:00
if (errno == 0)
errno = EINVAL;
#endif
1996-12-06 19:32:14 -04:00
return PyErr_SetFromErrno(PyExc_IOError);
}
1996-12-06 19:32:14 -04:00
return Py_BuildValue("(iiiiiiiii)",
p->tm_year + 1900,
1996-12-06 19:32:14 -04:00
p->tm_mon + 1, /* Want January == 1 */
p->tm_mday,
p->tm_hour,
p->tm_min,
p->tm_sec,
(p->tm_wday + 6) % 7, /* Want Monday == 0 */
1996-12-06 19:32:14 -04:00
p->tm_yday + 1, /* Want January, 1 == 1 */
p->tm_isdst);
}
1996-12-06 19:32:14 -04:00
static PyObject *
time_gmtime(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
{
double when;
1996-12-06 19:32:14 -04:00
if (!PyArg_Parse(args, "d", &when))
return NULL;
return time_convert((time_t)when, gmtime);
}
1996-12-06 19:32:14 -04:00
static PyObject *
time_localtime(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
{
double when;
1996-12-06 19:32:14 -04:00
if (!PyArg_Parse(args, "d", &when))
return NULL;
return time_convert((time_t)when, localtime);
}
static int
gettmarg(args, p)
1996-12-06 19:32:14 -04:00
PyObject *args;
struct tm *p;
{
1996-12-06 19:32:14 -04:00
if (!PyArg_Parse(args, "(iiiiiiiii)",
&p->tm_year,
&p->tm_mon,
&p->tm_mday,
&p->tm_hour,
&p->tm_min,
&p->tm_sec,
&p->tm_wday,
&p->tm_yday,
&p->tm_isdst))
return 0;
if (p->tm_year >= 1900)
p->tm_year -= 1900;
p->tm_mon--;
p->tm_wday = (p->tm_wday + 1) % 7;
p->tm_yday--;
return 1;
}
1995-09-13 14:38:35 -03:00
#ifdef HAVE_STRFTIME
1996-12-06 19:32:14 -04:00
static PyObject *
1995-09-13 14:38:35 -03:00
time_strftime(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
1995-09-13 14:38:35 -03:00
{
struct tm buf;
const char *fmt;
char *outbuf = 0;
int i;
if (!PyArg_ParseTuple(args, "s(iiiiiiiii)",
&fmt,
&(buf.tm_year),
&(buf.tm_mon),
&(buf.tm_mday),
&(buf.tm_hour),
&(buf.tm_min),
&(buf.tm_sec),
&(buf.tm_wday),
&(buf.tm_yday),
&(buf.tm_isdst)))
return NULL;
if (buf.tm_year >= 1900)
buf.tm_year -= 1900;
buf.tm_mon--;
buf.tm_wday = (buf.tm_wday + 1) % 7;
buf.tm_yday--;
/* I hate these functions that presume you know how big the output */
/* will be ahead of time... */
for (i = 1024 ; i < 8192 ; i += 1024) {
outbuf = malloc(i);
if (outbuf == NULL) {
1996-12-06 19:32:14 -04:00
return PyErr_NoMemory();
1995-09-13 14:38:35 -03:00
}
if (strftime(outbuf, i-1, fmt, &buf) != 0) {
1996-12-06 19:32:14 -04:00
PyObject *ret;
ret = PyString_FromString(outbuf);
1995-09-13 14:38:35 -03:00
free(outbuf);
return ret;
}
free(outbuf);
}
1996-12-06 19:32:14 -04:00
return PyErr_NoMemory();
1995-09-13 14:38:35 -03:00
}
#endif /* HAVE_STRFTIME */
1996-12-06 19:32:14 -04:00
static PyObject *
time_asctime(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
{
struct tm buf;
char *p;
if (!gettmarg(args, &buf))
return NULL;
p = asctime(&buf);
if (p[24] == '\n')
p[24] = '\0';
1996-12-06 19:32:14 -04:00
return PyString_FromString(p);
}
1996-12-06 19:32:14 -04:00
static PyObject *
time_ctime(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
{
double dt;
time_t tt;
char *p;
1996-12-06 19:32:14 -04:00
if (!PyArg_Parse(args, "d", &dt))
return NULL;
tt = (time_t)dt;
p = ctime(&tt);
if (p[24] == '\n')
p[24] = '\0';
1996-12-06 19:32:14 -04:00
return PyString_FromString(p);
}
1996-12-06 19:32:14 -04:00
static PyObject *
time_mktime(self, args)
1996-12-06 19:32:14 -04:00
PyObject *self;
PyObject *args;
{
struct tm buf;
time_t tt;
tt = time(&tt);
buf = *localtime(&tt);
if (!gettmarg(args, &buf))
return NULL;
tt = mktime(&buf);
if (tt == (time_t)(-1)) {
1996-12-06 19:32:14 -04:00
PyErr_SetString(PyExc_OverflowError,
"mktime argument out of range");
return NULL;
}
1996-12-06 19:32:14 -04:00
return PyFloat_FromDouble((double)tt);
}
1996-12-06 19:32:14 -04:00
static PyMethodDef time_methods[] = {
1990-10-14 09:07:46 -03:00
{"time", time_time},
#ifdef HAVE_CLOCK
{"clock", time_clock},
#endif
{"sleep", time_sleep},
{"gmtime", time_gmtime},
{"localtime", time_localtime},
{"asctime", time_asctime},
{"ctime", time_ctime},
{"mktime", time_mktime},
1995-09-13 14:38:35 -03:00
#ifdef HAVE_STRFTIME
1996-02-12 20:14:09 -04:00
{"strftime", time_strftime, 1},
1995-09-13 14:38:35 -03:00
#endif
1990-10-14 09:07:46 -03:00
{NULL, NULL} /* sentinel */
};
1995-01-21 20:49:01 -04:00
static void
ins(d, name, v)
1996-12-06 19:32:14 -04:00
PyObject *d;
1995-01-21 20:49:01 -04:00
char *name;
1996-12-06 19:32:14 -04:00
PyObject *v;
1995-01-21 20:49:01 -04:00
{
if (v == NULL)
1996-12-06 19:32:14 -04:00
Py_FatalError("Can't initialize time module -- NULL value");
if (PyDict_SetItemString(d, name, v) != 0)
Py_FatalError(
"Can't initialize time module -- PyDict_SetItemString failed");
1996-12-06 19:32:14 -04:00
Py_DECREF(v);
1995-01-21 20:49:01 -04:00
}
1990-10-14 09:07:46 -03:00
void
inittime()
{
1996-12-06 19:32:14 -04:00
PyObject *m, *d;
m = Py_InitModule("time", time_methods);
d = PyModule_GetDict(m);
#ifdef HAVE_TZNAME
tzset();
1996-12-06 19:32:14 -04:00
ins(d, "timezone", PyInt_FromLong((long)timezone));
#ifdef HAVE_ALTZONE
1996-12-06 19:32:14 -04:00
ins(d, "altzone", PyInt_FromLong((long)altzone));
#else
1996-12-06 19:32:14 -04:00
ins(d, "altzone", PyInt_FromLong((long)timezone-3600));
#endif
1996-12-06 19:32:14 -04:00
ins(d, "daylight", PyInt_FromLong((long)daylight));
ins(d, "tzname", Py_BuildValue("(zz)", tzname[0], tzname[1]));
#else /* !HAVE_TZNAME */
#if HAVE_TM_ZONE
{
#define YEAR ((time_t)((365 * 24 + 6) * 3600))
time_t t;
struct tm *p;
long winterzone, summerzone;
char wintername[10], summername[10];
/* XXX This won't work on the southern hemisphere.
XXX Anybody got a better idea? */
t = (time((time_t *)0) / YEAR) * YEAR;
p = localtime(&t);
winterzone = -p->tm_gmtoff;
strncpy(wintername, p->tm_zone ? p->tm_zone : " ", 9);
wintername[9] = '\0';
t += YEAR/2;
p = localtime(&t);
summerzone = -p->tm_gmtoff;
strncpy(summername, p->tm_zone ? p->tm_zone : " ", 9);
summername[9] = '\0';
1996-12-06 19:32:14 -04:00
ins(d, "timezone", PyInt_FromLong(winterzone));
ins(d, "altzone", PyInt_FromLong(summerzone));
ins(d, "daylight",
PyInt_FromLong((long)(winterzone != summerzone)));
ins(d, "tzname",
Py_BuildValue("(zz)", wintername, summername));
}
#endif /* HAVE_TM_ZONE */
#endif /* !HAVE_TZNAME */
1990-10-14 09:07:46 -03:00
}
/* Implement floattime() for various platforms */
1990-10-14 09:07:46 -03:00
static double
floattime()
1990-10-14 09:07:46 -03: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 is a float in seconds.
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! */
#ifdef HAVE_GETTIMEOFDAY
{
struct timeval t;
#ifdef GETTIMEOFDAY_NO_TZ
if (gettimeofday(&t) == 0)
return (double)t.tv_sec + t.tv_usec*0.000001;
#else /* !GETTIMEOFDAY_NO_TZ */
if (gettimeofday(&t, (struct timezone *)NULL) == 0)
return (double)t.tv_sec + t.tv_usec*0.000001;
#endif /* !GETTIMEOFDAY_NO_TZ */
}
#endif /* !HAVE_GETTIMEOFDAY */
{
#ifdef HAVE_FTIME
struct timeb t;
ftime(&t);
return (double)t.time + (double)t.millitm * (double)0.001;
#else /* !HAVE_FTIME */
time_t secs;
time(&secs);
return (double)secs;
#endif /* !HAVE_FTIME */
}
1990-10-14 09:07:46 -03:00
}
/* Implement floatsleep() for various platforms.
When interrupted (or when another error occurs), return -1 and
set an exception; else return 0. */
static int
1995-03-09 08:14:15 -04:00
#ifdef MPW
floatsleep(double secs)
#else
floatsleep(secs)
double secs;
1995-03-09 08:14:15 -04:00
#endif /* MPW */
{
#ifdef HAVE_SELECT
struct timeval t;
double frac;
frac = fmod(secs, 1.0);
secs = floor(secs);
t.tv_sec = (long)secs;
t.tv_usec = (long)(frac*1000000.0);
if (select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t) != 0) {
1996-12-06 19:32:14 -04:00
PyErr_SetFromErrno(PyExc_IOError);
return -1;
}
#else /* !HAVE_SELECT */
#ifdef macintosh
#define MacTicks (* (long *)0x16A)
long deadline;
deadline = MacTicks + (long)(secs * 60.0);
while (MacTicks < deadline) {
1996-12-06 19:32:14 -04:00
if (PyErr_CheckSignals())
return -1;
}
#else /* !macintosh */
#ifdef __WATCOMC__
/* XXX Can't interrupt this sleep */
delay((int)(secs * 1000 + 0.5)); /* delay() uses milliseconds */
#else /* !__WATCOMC__ */
#ifdef MSDOS
struct timeb t1, t2;
double frac;
1996-12-06 19:32:14 -04:00
extern double fmod Py_PROTO((double, double));
extern double floor Py_PROTO((double));
if (secs <= 0.0)
return;
frac = fmod(secs, 1.0);
secs = floor(secs);
ftime(&t1);
t2.time = t1.time + (int)secs;
t2.millitm = t1.millitm + (int)(frac*1000.0);
while (t2.millitm >= 1000) {
t2.time++;
t2.millitm -= 1000;
}
for (;;) {
#ifdef QUICKWIN
_wyield();
#endif
1996-12-06 19:32:14 -04:00
if (PyErr_CheckSignals())
return -1;
ftime(&t1);
if (t1.time > t2.time ||
t1.time == t2.time && t1.millitm >= t2.millitm)
break;
}
#else /* !MSDOS */
#ifdef MS_WIN32
/* XXX Can't interrupt this sleep */
Sleep((int)(secs*1000));
#else /* !MS_WIN32 */
/* XXX Can't interrupt this sleep */
sleep((int)secs);
#endif /* !MS_WIN32 */
#endif /* !MSDOS */
#endif /* !__WATCOMC__ */
#endif /* !macintosh */
#endif /* !HAVE_SELECT */
return 0;
}