REPL Server: Don't establish a SIGINT handler.
[bpt/guile.git] / libguile / stime.c
CommitLineData
3baf6e8b 1/* Copyright (C) 1995,1996,1997,1998,1999,2000,2001, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2011, 2013 Free Software Foundation, Inc.
1c299a6b 2 *
73be1d9e 3 * This library is free software; you can redistribute it and/or
53befeb7
NJ
4 * modify it under the terms of the GNU Lesser General Public License
5 * as published by the Free Software Foundation; either version 3 of
6 * the License, or (at your option) any later version.
1c299a6b 7 *
53befeb7
NJ
8 * This library is distributed in the hope that it will be useful, but
9 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * Lesser General Public License for more details.
1c299a6b 12 *
73be1d9e
MV
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the Free Software
53befeb7
NJ
15 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
16 * 02110-1301 USA
73be1d9e 17 */
1bbd0b84 18
1bbd0b84 19
0f2d19dd
JB
20\f
21
464ee095
KR
22/* _POSIX_C_SOURCE is not defined always, because it causes problems on some
23 systems, notably
24
25 - FreeBSD loses all BSD and XOPEN defines.
26 - glibc loses some things like CLK_TCK.
27 - On MINGW it conflicts with the pthread headers.
28
29 But on HP-UX _POSIX_C_SOURCE is needed, as noted, for gmtime_r.
30
31 Perhaps a configure test could figure out what _POSIX_C_SOURCE gives and
32 what it takes away, and decide from that whether to use it, instead of
33 hard coding __hpux. */
34
2baec6a9
LC
35#ifndef _REENTRANT
36# define _REENTRANT /* ask solaris for gmtime_r prototype */
37#endif
464ee095 38#ifdef __hpux
95f31774 39#define _POSIX_C_SOURCE 199506L /* for gmtime_r prototype */
edea856c 40#endif
3c61e80f 41
dbb605f5 42#ifdef HAVE_CONFIG_H
3cf2f52d
RB
43# include <config.h>
44#endif
45
0f2d19dd 46#include <stdio.h>
e6e2e95a 47#include <errno.h>
69f23174 48#include <strftime.h>
587a3355 49#include <unistr.h>
e6e2e95a 50
a0599745 51#include "libguile/_scm.h"
4e047c3e 52#include "libguile/async.h"
a0599745
MD
53#include "libguile/feature.h"
54#include "libguile/strings.h"
55#include "libguile/vectors.h"
cc95e00a 56#include "libguile/dynwind.h"
587a3355 57#include "libguile/strings.h"
20e6290e 58
a0599745
MD
59#include "libguile/validate.h"
60#include "libguile/stime.h"
20e6290e 61
0f2d19dd
JB
62#ifdef HAVE_UNISTD_H
63#include <unistd.h>
64#endif
65
66\f
4a42658f
AW
67#ifdef HAVE_CLOCK_GETTIME
68# include <time.h>
69#endif
70
fff92ff3 71#include <sys/types.h>
a15e6dcc 72#include <string.h>
fff92ff3 73#include <sys/times.h>
b1978258
GH
74
75#ifdef HAVE_SYS_TIMEB_H
76# include <sys/timeb.h>
77#endif
0f2d19dd 78
3c61e80f 79#if ! HAVE_DECL_STRPTIME
4d3bacdd
JB
80extern char *strptime ();
81#endif
82
0f2d19dd
JB
83#ifdef __STDC__
84# define timet time_t
85#else
86# define timet long
87#endif
88
eb7e1603 89
4a42658f
AW
90#if SCM_SIZEOF_LONG >= 8 && defined HAVE_CLOCK_GETTIME
91/* Nanoseconds on 64-bit systems with POSIX timers. */
92#define TIME_UNITS_PER_SECOND 1000000000
93#else
94/* Milliseconds for everyone else. */
95#define TIME_UNITS_PER_SECOND 1000
96#endif
97
98long scm_c_time_units_per_second = TIME_UNITS_PER_SECOND;
99
100static long
101time_from_seconds_and_nanoseconds (long s, long ns)
102{
103 return s * TIME_UNITS_PER_SECOND
104 + ns / (1000000000 / TIME_UNITS_PER_SECOND);
105}
106
107
108/* A runtime-selectable mechanism to choose a timing mechanism. Really
109 we want to use POSIX timers, but that's not always possible. Notably,
110 the user may have everything she needs at compile-time, but if she's
111 running on an SMP machine without a common clock source, she can't
112 use POSIX CPUTIME clocks. */
113static long (*get_internal_real_time) (void);
114static long (*get_internal_run_time) (void);
115
116
117#ifdef HAVE_CLOCK_GETTIME
118struct timespec posix_real_time_base;
119
120static long
121get_internal_real_time_posix_timer (void)
122{
123 struct timespec ts;
124 clock_gettime (CLOCK_REALTIME, &ts);
125 return time_from_seconds_and_nanoseconds
126 (ts.tv_sec - posix_real_time_base.tv_sec,
127 ts.tv_nsec - posix_real_time_base.tv_nsec);
128}
129
a02a6067
AW
130#if defined _POSIX_CPUTIME && defined CLOCK_PROCESS_CPUTIME_ID
131/* You see, FreeBSD defines _POSIX_CPUTIME but not
132 CLOCK_PROCESS_CPUTIME_ID. */
133#define HAVE_POSIX_CPUTIME 1
134
4a42658f
AW
135struct timespec posix_run_time_base;
136
137static long
138get_internal_run_time_posix_timer (void)
139{
140 struct timespec ts;
141 clock_gettime (CLOCK_PROCESS_CPUTIME_ID, &ts);
142 return time_from_seconds_and_nanoseconds
143 (ts.tv_sec - posix_run_time_base.tv_sec,
144 ts.tv_nsec - posix_run_time_base.tv_nsec);
145}
146#endif /* _POSIX_CPUTIME */
147#endif /* HAVE_CLOCKTIME */
148
149
150#ifdef HAVE_GETTIMEOFDAY
151struct timeval gettimeofday_real_time_base;
152
153static long
154get_internal_real_time_gettimeofday (void)
155{
156 struct timeval tv;
157 gettimeofday (&tv, NULL);
158 return time_from_seconds_and_nanoseconds
159 (tv.tv_sec - gettimeofday_real_time_base.tv_sec,
160 (tv.tv_usec - gettimeofday_real_time_base.tv_usec) * 1000);
161}
162#endif
163
164
4a42658f
AW
165static long ticks_per_second;
166
167static long
168get_internal_run_time_times (void)
0f2d19dd
JB
169{
170 struct tms time_buffer;
171 times(&time_buffer);
4a42658f
AW
172 return (time_buffer.tms_utime + time_buffer.tms_stime)
173 * TIME_UNITS_PER_SECOND / ticks_per_second;
0f2d19dd 174}
4a42658f 175
40e2a31d
AW
176static timet fallback_real_time_base;
177static long
178get_internal_real_time_fallback (void)
179{
180 return time_from_seconds_and_nanoseconds
181 ((long) time (NULL) - fallback_real_time_base, 0);
182}
183
1bbd0b84 184
1c299a6b 185SCM_DEFINE (scm_get_internal_real_time, "get-internal-real-time", 0, 0, 0,
1bbd0b84 186 (),
1e6808ea
MG
187 "Return the number of time units since the interpreter was\n"
188 "started.")
1bbd0b84 189#define FUNC_NAME s_scm_get_internal_real_time
0f2d19dd 190{
4a42658f 191 return scm_from_long (get_internal_real_time ());
0f2d19dd 192}
1bbd0b84
GB
193#undef FUNC_NAME
194
0f2d19dd 195
1c299a6b 196SCM_DEFINE (scm_times, "times", 0, 0, 0,
1bbd0b84 197 (void),
1e6808ea
MG
198 "Return an object with information about real and processor\n"
199 "time. The following procedures accept such an object as an\n"
200 "argument and return a selected component:\n"
201 "\n"
b380b885
MD
202 "@table @code\n"
203 "@item tms:clock\n"
204 "The current real time, expressed as time units relative to an\n"
205 "arbitrary base.\n"
206 "@item tms:utime\n"
207 "The CPU time units used by the calling process.\n"
208 "@item tms:stime\n"
1e6808ea
MG
209 "The CPU time units used by the system on behalf of the calling\n"
210 "process.\n"
b380b885 211 "@item tms:cutime\n"
1e6808ea
MG
212 "The CPU time units used by terminated child processes of the\n"
213 "calling process, whose status has been collected (e.g., using\n"
214 "@code{waitpid}).\n"
b380b885 215 "@item tms:cstime\n"
1e6808ea 216 "Similarly, the CPU times units used by the system on behalf of\n"
b380b885
MD
217 "terminated child processes.\n"
218 "@end table")
1bbd0b84 219#define FUNC_NAME s_scm_times
6afcd3b2 220{
6afcd3b2
GH
221 struct tms t;
222 clock_t rv;
4a42658f 223 SCM factor;
6afcd3b2 224
00ffa0e7 225 SCM result = scm_c_make_vector (5, SCM_UNDEFINED);
6afcd3b2
GH
226 rv = times (&t);
227 if (rv == -1)
1bbd0b84 228 SCM_SYSERROR;
4a42658f
AW
229
230 factor = scm_quotient (scm_from_long (TIME_UNITS_PER_SECOND),
231 scm_from_long (ticks_per_second));
232
233 SCM_SIMPLE_VECTOR_SET (result, 0,
234 scm_product (scm_from_long (rv), factor));
235 SCM_SIMPLE_VECTOR_SET (result, 1,
236 scm_product (scm_from_long (t.tms_utime), factor));
237 SCM_SIMPLE_VECTOR_SET (result, 2,
238 scm_product (scm_from_long (t.tms_stime), factor));
239 SCM_SIMPLE_VECTOR_SET (result ,3,
240 scm_product (scm_from_long (t.tms_cutime), factor));
241 SCM_SIMPLE_VECTOR_SET (result, 4,
242 scm_product (scm_from_long (t.tms_cstime), factor));
6afcd3b2 243 return result;
6afcd3b2 244}
1bbd0b84 245#undef FUNC_NAME
6afcd3b2 246
1c299a6b 247long
4a42658f 248scm_c_get_internal_run_time (void)
1c299a6b 249{
4a42658f 250 return get_internal_run_time ();
1c299a6b
ML
251}
252
253SCM_DEFINE (scm_get_internal_run_time, "get-internal-run-time", 0, 0, 0,
1bbd0b84 254 (void),
1e6808ea
MG
255 "Return the number of time units of processor time used by the\n"
256 "interpreter. Both @emph{system} and @emph{user} time are\n"
257 "included but subprocesses are not.")
1bbd0b84 258#define FUNC_NAME s_scm_get_internal_run_time
0f2d19dd 259{
b9bd8526 260 return scm_from_long (scm_c_get_internal_run_time ());
0f2d19dd 261}
1bbd0b84 262#undef FUNC_NAME
0f2d19dd 263
f40771d8
KR
264/* For reference, note that current-time and gettimeofday both should be
265 protected against setzone/restorezone changes in another thread, since on
266 DOS the system time is normally kept as local time, which means TZ
267 affects the return from current-time and gettimeofday. Not sure if DJGPP
268 etc actually has concurrent multi-threading, but it seems prudent not to
269 make assumptions about this. */
270
1c299a6b 271SCM_DEFINE (scm_current_time, "current-time", 0, 0, 0,
1bbd0b84 272 (void),
1e6808ea
MG
273 "Return the number of seconds since 1970-01-01 00:00:00 UTC,\n"
274 "excluding leap seconds.")
1bbd0b84 275#define FUNC_NAME s_scm_current_time
0f2d19dd 276{
19468eff
GH
277 timet timv;
278
9de87eea 279 SCM_CRITICAL_SECTION_START;
763313a2 280 timv = time (NULL);
9de87eea 281 SCM_CRITICAL_SECTION_END;
763313a2
KR
282 if (timv == -1)
283 SCM_MISC_ERROR ("current time not available", SCM_EOL);
b9bd8526 284 return scm_from_long (timv);
19468eff 285}
1bbd0b84 286#undef FUNC_NAME
19468eff 287
1c299a6b 288SCM_DEFINE (scm_gettimeofday, "gettimeofday", 0, 0, 0,
1bbd0b84 289 (void),
1e6808ea
MG
290 "Return a pair containing the number of seconds and microseconds\n"
291 "since 1970-01-01 00:00:00 UTC, excluding leap seconds. Note:\n"
292 "whether true microsecond resolution is available depends on the\n"
293 "operating system.")
1bbd0b84 294#define FUNC_NAME s_scm_gettimeofday
19468eff
GH
295{
296#ifdef HAVE_GETTIMEOFDAY
297 struct timeval time;
298
4a42658f
AW
299 if (gettimeofday (&time, NULL))
300 SCM_SYSERROR;
301
b9bd8526
MV
302 return scm_cons (scm_from_long (time.tv_sec),
303 scm_from_long (time.tv_usec));
19468eff 304#else
4a42658f
AW
305 timet t = time (NULL);
306 if (errno)
307 SCM_SYSERROR;
308 else
309 return scm_cons (scm_from_long ((long)t), SCM_INUM0);
19468eff
GH
310#endif
311}
1bbd0b84 312#undef FUNC_NAME
19468eff
GH
313
314static SCM
d6d9e957 315filltime (struct tm *bd_time, int zoff, const char *zname)
19468eff 316{
00ffa0e7 317 SCM result = scm_c_make_vector (11, SCM_UNDEFINED);
19468eff 318
4057a3e0
MV
319 SCM_SIMPLE_VECTOR_SET (result,0, scm_from_int (bd_time->tm_sec));
320 SCM_SIMPLE_VECTOR_SET (result,1, scm_from_int (bd_time->tm_min));
321 SCM_SIMPLE_VECTOR_SET (result,2, scm_from_int (bd_time->tm_hour));
322 SCM_SIMPLE_VECTOR_SET (result,3, scm_from_int (bd_time->tm_mday));
323 SCM_SIMPLE_VECTOR_SET (result,4, scm_from_int (bd_time->tm_mon));
324 SCM_SIMPLE_VECTOR_SET (result,5, scm_from_int (bd_time->tm_year));
325 SCM_SIMPLE_VECTOR_SET (result,6, scm_from_int (bd_time->tm_wday));
326 SCM_SIMPLE_VECTOR_SET (result,7, scm_from_int (bd_time->tm_yday));
327 SCM_SIMPLE_VECTOR_SET (result,8, scm_from_int (bd_time->tm_isdst));
328 SCM_SIMPLE_VECTOR_SET (result,9, scm_from_int (zoff));
329 SCM_SIMPLE_VECTOR_SET (result,10, (zname
330 ? scm_from_locale_string (zname)
331 : SCM_BOOL_F));
19468eff
GH
332 return result;
333}
334
ef9ff3fd 335static char tzvar[3] = "TZ";
ef9ff3fd 336
38c1d3c4
GH
337/* if zone is set, create a temporary environment with only a TZ
338 string. other threads or interrupt handlers shouldn't be allowed
339 to run until the corresponding restorezone is called. hence the use
340 of a static variable for tmpenv is no big deal. */
ef9ff3fd 341static char **
3eeba8d4 342setzone (SCM zone, int pos, const char *subr)
b9525b92 343{
ef9ff3fd 344 char **oldenv = 0;
b9525b92
GH
345
346 if (!SCM_UNBNDP (zone))
347 {
ef9ff3fd 348 static char *tmpenv[2];
b9525b92 349 char *buf;
7f9994d9
MV
350 size_t zone_len;
351
352 zone_len = scm_to_locale_stringbuf (zone, NULL, 0);
353 buf = scm_malloc (zone_len + sizeof (tzvar) + 1);
354 strcpy (buf, tzvar);
355 buf[sizeof(tzvar)-1] = '=';
356 scm_to_locale_stringbuf (zone, buf+sizeof(tzvar), zone_len);
357 buf[sizeof(tzvar)+zone_len] = '\0';
ef9ff3fd
GH
358 oldenv = environ;
359 tmpenv[0] = buf;
360 tmpenv[1] = 0;
361 environ = tmpenv;
b9525b92 362 }
ef9ff3fd 363 return oldenv;
b9525b92
GH
364}
365
366static void
e81d98ec 367restorezone (SCM zone, char **oldenv, const char *subr SCM_UNUSED)
b9525b92
GH
368{
369 if (!SCM_UNBNDP (zone))
370 {
4c9419ac 371 free (environ[0]);
ef9ff3fd 372 environ = oldenv;
38c1d3c4
GH
373#ifdef HAVE_TZSET
374 /* for the possible benefit of user code linked with libguile. */
b9525b92 375 tzset();
38c1d3c4 376#endif
b9525b92
GH
377 }
378}
379
1c299a6b 380SCM_DEFINE (scm_localtime, "localtime", 1, 1, 0,
1bbd0b84 381 (SCM time, SCM zone),
1e6808ea
MG
382 "Return an object representing the broken down components of\n"
383 "@var{time}, an integer like the one returned by\n"
384 "@code{current-time}. The time zone for the calculation is\n"
385 "optionally specified by @var{zone} (a string), otherwise the\n"
386 "@code{TZ} environment variable or the system default is used.")
1bbd0b84 387#define FUNC_NAME s_scm_localtime
19468eff
GH
388{
389 timet itime;
4edc089c 390 struct tm *ltptr, lt, *utc;
19468eff
GH
391 SCM result;
392 int zoff;
393 char *zname = 0;
ef9ff3fd 394 char **oldenv;
19468eff
GH
395 int err;
396
e4b265d8 397 itime = SCM_NUM2LONG (1, time);
38c1d3c4
GH
398
399 /* deferring interupts is essential since a) setzone may install a temporary
400 environment b) localtime uses a static buffer. */
9de87eea 401 SCM_CRITICAL_SECTION_START;
1bbd0b84 402 oldenv = setzone (zone, SCM_ARG2, FUNC_NAME);
38c1d3c4
GH
403#ifdef LOCALTIME_CACHE
404 tzset ();
405#endif
73ae3b4c
KR
406 /* POSIX says localtime sets errno, but C99 doesn't say that.
407 Give a sensible default value in case localtime doesn't set it. */
408 errno = EINVAL;
4edc089c 409 ltptr = localtime (&itime);
19468eff 410 err = errno;
4edc089c 411 if (ltptr)
19468eff 412 {
4d3bacdd 413 const char *ptr;
ef9ff3fd 414
43ff3170
GH
415 /* copy zone name before calling gmtime or restoring zone. */
416#if defined (HAVE_TM_ZONE)
ef9ff3fd 417 ptr = ltptr->tm_zone;
43ff3170 418#elif defined (HAVE_TZNAME)
ef9ff3fd 419 ptr = tzname[ (ltptr->tm_isdst == 1) ? 1 : 0 ];
43ff3170
GH
420#else
421 ptr = "";
b9525b92 422#endif
4c9419ac 423 zname = scm_malloc (strlen (ptr) + 1);
ef9ff3fd 424 strcpy (zname, ptr);
19468eff 425 }
ef9ff3fd
GH
426 /* the struct is copied in case localtime and gmtime share a buffer. */
427 if (ltptr)
428 lt = *ltptr;
73ae3b4c
KR
429 /* POSIX says gmtime sets errno, but C99 doesn't say that.
430 Give a sensible default value in case gmtime doesn't set it. */
431 errno = EINVAL;
ef9ff3fd
GH
432 utc = gmtime (&itime);
433 if (utc == NULL)
434 err = errno;
1bbd0b84 435 restorezone (zone, oldenv, FUNC_NAME);
b9525b92 436 /* delayed until zone has been restored. */
19468eff 437 errno = err;
4edc089c 438 if (utc == NULL || ltptr == NULL)
1bbd0b84 439 SCM_SYSERROR;
19468eff
GH
440
441 /* calculate timezone offset in seconds west of UTC. */
4edc089c
GH
442 zoff = (utc->tm_hour - lt.tm_hour) * 3600 + (utc->tm_min - lt.tm_min) * 60
443 + utc->tm_sec - lt.tm_sec;
444 if (utc->tm_year < lt.tm_year)
19468eff 445 zoff -= 24 * 60 * 60;
4edc089c 446 else if (utc->tm_year > lt.tm_year)
19468eff 447 zoff += 24 * 60 * 60;
4edc089c 448 else if (utc->tm_yday < lt.tm_yday)
19468eff 449 zoff -= 24 * 60 * 60;
4edc089c 450 else if (utc->tm_yday > lt.tm_yday)
19468eff 451 zoff += 24 * 60 * 60;
1c299a6b 452
4edc089c 453 result = filltime (&lt, zoff, zname);
9de87eea 454 SCM_CRITICAL_SECTION_END;
c291b588
LC
455
456 free (zname);
19468eff
GH
457 return result;
458}
1bbd0b84 459#undef FUNC_NAME
19468eff 460
45198ffb
KR
461/* tm_zone is normally a pointer, not an array within struct tm, so we might
462 have to worry about the lifespan of what it points to. The posix specs
463 don't seem to say anything about this, let's assume here that tm_zone
464 will be a constant and therefore no protection or anything is needed
465 until we copy it in filltime(). */
466
1c299a6b 467SCM_DEFINE (scm_gmtime, "gmtime", 1, 0, 0,
1bbd0b84 468 (SCM time),
1e6808ea
MG
469 "Return an object representing the broken down components of\n"
470 "@var{time}, an integer like the one returned by\n"
471 "@code{current-time}. The values are calculated for UTC.")
1bbd0b84 472#define FUNC_NAME s_scm_gmtime
19468eff
GH
473{
474 timet itime;
45198ffb 475 struct tm bd_buf, *bd_time;
d6d9e957 476 const char *zname;
19468eff 477
e4b265d8 478 itime = SCM_NUM2LONG (1, time);
45198ffb 479
73ae3b4c
KR
480 /* POSIX says gmtime sets errno, but C99 doesn't say that.
481 Give a sensible default value in case gmtime doesn't set it. */
482 errno = EINVAL;
45198ffb
KR
483
484#if HAVE_GMTIME_R
485 bd_time = gmtime_r (&itime, &bd_buf);
486#else
9de87eea 487 SCM_CRITICAL_SECTION_START;
19468eff 488 bd_time = gmtime (&itime);
45198ffb
KR
489 if (bd_time != NULL)
490 bd_buf = *bd_time;
9de87eea 491 SCM_CRITICAL_SECTION_END;
45198ffb 492#endif
19468eff 493 if (bd_time == NULL)
1bbd0b84 494 SCM_SYSERROR;
45198ffb 495
d6d9e957 496#if HAVE_STRUCT_TM_TM_ZONE
45198ffb 497 zname = bd_buf.tm_zone;
d6d9e957
KR
498#else
499 zname = "GMT";
500#endif
45198ffb 501 return filltime (&bd_buf, 0, zname);
19468eff 502}
1bbd0b84 503#undef FUNC_NAME
19468eff 504
b9525b92
GH
505/* copy time components from a Scheme object to a struct tm. */
506static void
3eeba8d4 507bdtime2c (SCM sbd_time, struct tm *lt, int pos, const char *subr)
19468eff 508{
4057a3e0
MV
509 SCM_ASSERT (scm_is_simple_vector (sbd_time)
510 && SCM_SIMPLE_VECTOR_LENGTH (sbd_time) == 11,
55a7fc62
GH
511 sbd_time, pos, subr);
512
4057a3e0
MV
513 lt->tm_sec = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 0));
514 lt->tm_min = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 1));
515 lt->tm_hour = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 2));
516 lt->tm_mday = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 3));
517 lt->tm_mon = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 4));
518 lt->tm_year = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 5));
519 lt->tm_wday = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 6));
520 lt->tm_yday = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 7));
521 lt->tm_isdst = scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 8));
8ab3d8a0
KR
522#if HAVE_STRUCT_TM_TM_GMTOFF
523 lt->tm_gmtoff = - scm_to_int (SCM_SIMPLE_VECTOR_REF (sbd_time, 9));
524#endif
c7abe4f3 525#ifdef HAVE_TM_ZONE
4057a3e0 526 if (scm_is_false (SCM_SIMPLE_VECTOR_REF (sbd_time, 10)))
55a7fc62
GH
527 lt->tm_zone = NULL;
528 else
4057a3e0 529 lt->tm_zone = scm_to_locale_string (SCM_SIMPLE_VECTOR_REF (sbd_time, 10));
c7abe4f3 530#endif
b9525b92
GH
531}
532
1c299a6b 533SCM_DEFINE (scm_mktime, "mktime", 1, 1, 0,
1bbd0b84 534 (SCM sbd_time, SCM zone),
b7e64f8b
BT
535 "@var{sbd_time} is an object representing broken down time and\n"
536 "@code{zone} is an optional time zone specifier (otherwise the\n"
537 "TZ environment variable or the system default is used).\n"
538 "\n"
539 "Returns a pair: the car is a corresponding integer time value\n"
540 "like that returned by @code{current-time}; the cdr is a broken\n"
541 "down time object, similar to as @var{sbd_time} but with\n"
542 "normalized values.")
1bbd0b84 543#define FUNC_NAME s_scm_mktime
b9525b92
GH
544{
545 timet itime;
546 struct tm lt, *utc;
547 SCM result;
548 int zoff;
549 char *zname = 0;
ef9ff3fd 550 char **oldenv;
b9525b92
GH
551 int err;
552
661ae7ab 553 scm_dynwind_begin (0);
cc95e00a 554
1bbd0b84 555 bdtime2c (sbd_time, &lt, SCM_ARG1, FUNC_NAME);
edea856c 556#if HAVE_STRUCT_TM_TM_ZONE
661ae7ab 557 scm_dynwind_free ((char *)lt.tm_zone);
edea856c 558#endif
19468eff 559
661ae7ab 560 scm_dynwind_critical_section (SCM_BOOL_F);
9291479f 561
1bbd0b84 562 oldenv = setzone (zone, SCM_ARG2, FUNC_NAME);
38c1d3c4
GH
563#ifdef LOCALTIME_CACHE
564 tzset ();
565#endif
19468eff 566 itime = mktime (&lt);
73ae3b4c
KR
567 /* POSIX doesn't say mktime sets errno, and on glibc 2.3.2 for instance it
568 doesn't. Force a sensible value for our error message. */
569 err = EINVAL;
19468eff 570
b9525b92
GH
571 if (itime != -1)
572 {
4d3bacdd 573 const char *ptr;
ef9ff3fd 574
43ff3170
GH
575 /* copy zone name before calling gmtime or restoring the zone. */
576#if defined (HAVE_TM_ZONE)
ef9ff3fd 577 ptr = lt.tm_zone;
43ff3170 578#elif defined (HAVE_TZNAME)
ef9ff3fd 579 ptr = tzname[ (lt.tm_isdst == 1) ? 1 : 0 ];
43ff3170
GH
580#else
581 ptr = "";
b9525b92 582#endif
4c9419ac 583 zname = scm_malloc (strlen (ptr) + 1);
ef9ff3fd 584 strcpy (zname, ptr);
b9525b92 585 }
ef9ff3fd
GH
586
587 /* get timezone offset in seconds west of UTC. */
73ae3b4c
KR
588 /* POSIX says gmtime sets errno, but C99 doesn't say that.
589 Give a sensible default value in case gmtime doesn't set it. */
fa0198bf 590 errno = EINVAL;
ef9ff3fd
GH
591 utc = gmtime (&itime);
592 if (utc == NULL)
593 err = errno;
594
1bbd0b84 595 restorezone (zone, oldenv, FUNC_NAME);
b9525b92
GH
596 /* delayed until zone has been restored. */
597 errno = err;
598 if (utc == NULL || itime == -1)
1bbd0b84 599 SCM_SYSERROR;
b9525b92 600
19468eff
GH
601 zoff = (utc->tm_hour - lt.tm_hour) * 3600 + (utc->tm_min - lt.tm_min) * 60
602 + utc->tm_sec - lt.tm_sec;
603 if (utc->tm_year < lt.tm_year)
604 zoff -= 24 * 60 * 60;
605 else if (utc->tm_year > lt.tm_year)
606 zoff += 24 * 60 * 60;
607 else if (utc->tm_yday < lt.tm_yday)
608 zoff -= 24 * 60 * 60;
609 else if (utc->tm_yday > lt.tm_yday)
610 zoff += 24 * 60 * 60;
611
b9bd8526 612 result = scm_cons (scm_from_long (itime),
19468eff 613 filltime (&lt, zoff, zname));
c291b588 614 free (zname);
cc95e00a 615
661ae7ab 616 scm_dynwind_end ();
19468eff 617 return result;
0f2d19dd 618}
1bbd0b84 619#undef FUNC_NAME
0f2d19dd 620
38c1d3c4 621#ifdef HAVE_TZSET
1c299a6b 622SCM_DEFINE (scm_tzset, "tzset", 0, 0, 0,
1bbd0b84 623 (void),
a3c8b9fc
MD
624 "Initialize the timezone from the TZ environment variable\n"
625 "or the system default. It's not usually necessary to call this procedure\n"
626 "since it's done automatically by other procedures that depend on the\n"
627 "timezone.")
1bbd0b84 628#define FUNC_NAME s_scm_tzset
0f2d19dd 629{
19468eff
GH
630 tzset();
631 return SCM_UNSPECIFIED;
0f2d19dd 632}
1bbd0b84 633#undef FUNC_NAME
38c1d3c4 634#endif /* HAVE_TZSET */
0f2d19dd 635
a1ec6916 636SCM_DEFINE (scm_strftime, "strftime", 2, 0, 0,
1bbd0b84 637 (SCM format, SCM stime),
5cd87f55
KR
638 "Return a string which is broken-down time structure @var{stime}\n"
639 "formatted according to the given @var{format} string.\n"
640 "\n"
641 "@var{format} contains field specifications introduced by a\n"
642 "@samp{%} character. See @ref{Formatting Calendar Time,,, libc,\n"
643 "The GNU C Library Reference Manual}, or @samp{man 3 strftime},\n"
644 "for the available formatting.\n"
645 "\n"
646 "@lisp\n"
647 "(strftime \"%c\" (localtime (current-time)))\n"
648 "@result{} \"Mon Mar 11 20:17:43 2002\"\n"
649 "@end lisp\n"
650 "\n"
651 "If @code{setlocale} has been called (@pxref{Locales}), month\n"
652 "and day names are from the current locale and in the locale\n"
653 "character set.")
1bbd0b84 654#define FUNC_NAME s_scm_strftime
b9525b92
GH
655{
656 struct tm t;
657
d40e1ca8 658 char *tbuf;
b9525b92 659 int size = 50;
d40e1ca8
AW
660 char *fmt;
661 char *myfmt;
662 size_t len;
ef9ff3fd 663 SCM result;
b9525b92 664
a6d9e5ab 665 SCM_VALIDATE_STRING (1, format);
1bbd0b84 666 bdtime2c (stime, &t, SCM_ARG2, FUNC_NAME);
b9525b92 667
587a3355
MG
668 /* Convert string to UTF-8 so that non-ASCII characters in the
669 format are passed through unchanged. */
d40e1ca8 670 fmt = scm_to_utf8_stringn (format, &len);
b9525b92 671
a15e6dcc
MV
672 /* Ugly hack: strftime can return 0 if its buffer is too small,
673 but some valid time strings (e.g. "%p") can sometimes produce
674 a zero-byte output string! Workaround is to prepend a junk
675 character to the format string, so that valid returns are always
676 nonzero. */
4c9419ac 677 myfmt = scm_malloc (len+2);
587a3355 678 *myfmt = (scm_t_uint8) 'x';
d40e1ca8 679 strncpy (myfmt + 1, fmt, len);
587a3355
MG
680 myfmt[len + 1] = 0;
681 scm_remember_upto_here_1 (format);
682 free (fmt);
a15e6dcc 683
4c9419ac 684 tbuf = scm_malloc (size);
b8a1b29b
GH
685 {
686#if !defined (HAVE_TM_ZONE)
687 /* it seems the only way to tell non-GNU versions of strftime what
688 zone to use (for the %Z format) is to set TZ in the
689 environment. interrupts and thread switching must be deferred
690 until TZ is restored. */
691 char **oldenv = NULL;
ecc9f40f 692 SCM zone_spec = SCM_SIMPLE_VECTOR_REF (stime, 10);
e652b54f 693 int have_zone = 0;
b8a1b29b 694
ecc9f40f 695 if (scm_is_true (zone_spec) && scm_c_string_length (zone_spec) > 0)
b8a1b29b
GH
696 {
697 /* it's not required that the TZ setting be correct, just that
e652b54f
GH
698 it has the right name. so try something like TZ=EST0.
699 using only TZ=EST would be simpler but it doesn't work on
700 some OSs, e.g., Solaris. */
701 SCM zone =
ecc9f40f
MV
702 scm_string_append (scm_list_2 (zone_spec,
703 scm_from_locale_string ("0")));
1c299a6b 704
e652b54f 705 have_zone = 1;
9de87eea 706 SCM_CRITICAL_SECTION_START;
e652b54f 707 oldenv = setzone (zone, SCM_ARG2, FUNC_NAME);
b8a1b29b
GH
708 }
709#endif
710
38c1d3c4 711#ifdef LOCALTIME_CACHE
b8a1b29b
GH
712 tzset ();
713#endif
714
69f23174
LC
715 /* Use `nstrftime ()' from Gnulib, which supports all GNU extensions
716 supported by glibc. */
d40e1ca8 717 while ((len = nstrftime (tbuf, size, myfmt, &t, 0, 0)) == 0)
b8a1b29b 718 {
4c9419ac 719 free (tbuf);
b8a1b29b 720 size *= 2;
4c9419ac 721 tbuf = scm_malloc (size);
b8a1b29b
GH
722 }
723
724#if !defined (HAVE_TM_ZONE)
e652b54f 725 if (have_zone)
b8a1b29b 726 {
ecc9f40f 727 restorezone (zone_spec, oldenv, FUNC_NAME);
9de87eea 728 SCM_CRITICAL_SECTION_END;
b8a1b29b 729 }
38c1d3c4 730#endif
b9525b92 731 }
b8a1b29b 732
d40e1ca8 733 result = scm_from_utf8_string (tbuf + 1);
4c9419ac
MV
734 free (tbuf);
735 free (myfmt);
168e958c
KR
736#if HAVE_STRUCT_TM_TM_ZONE
737 free ((char *) t.tm_zone);
738#endif
ef9ff3fd 739 return result;
b9525b92 740}
1bbd0b84 741#undef FUNC_NAME
b9525b92 742
f25f761d 743#ifdef HAVE_STRPTIME
a1ec6916 744SCM_DEFINE (scm_strptime, "strptime", 2, 0, 0,
1bbd0b84 745 (SCM format, SCM string),
a8eac221
MG
746 "Performs the reverse action to @code{strftime}, parsing\n"
747 "@var{string} according to the specification supplied in\n"
b7e64f8b 748 "@var{format}. The interpretation of month and day names is\n"
a8eac221
MG
749 "dependent on the current locale. The value returned is a pair.\n"
750 "The car has an object with time components\n"
a3c8b9fc
MD
751 "in the form returned by @code{localtime} or @code{gmtime},\n"
752 "but the time zone components\n"
753 "are not usefully set.\n"
a8eac221
MG
754 "The cdr reports the number of characters from @var{string}\n"
755 "which were used for the conversion.")
1bbd0b84 756#define FUNC_NAME s_scm_strptime
b9525b92 757{
b9525b92 758 struct tm t;
d40e1ca8 759 char *fmt, *str, *rest;
587a3355 760 size_t used_len;
8ab3d8a0 761 long zoff;
b9525b92 762
a6d9e5ab
DH
763 SCM_VALIDATE_STRING (1, format);
764 SCM_VALIDATE_STRING (2, string);
b9525b92 765
587a3355
MG
766 /* Convert strings to UTF-8 so that non-ASCII characters are passed
767 through unchanged. */
d40e1ca8
AW
768 fmt = scm_to_utf8_string (format);
769 str = scm_to_utf8_string (string);
b9525b92
GH
770
771 /* initialize the struct tm */
772#define tm_init(field) t.field = 0
773 tm_init (tm_sec);
774 tm_init (tm_min);
775 tm_init (tm_hour);
776 tm_init (tm_mday);
777 tm_init (tm_mon);
778 tm_init (tm_year);
779 tm_init (tm_wday);
780 tm_init (tm_yday);
8ab3d8a0
KR
781#if HAVE_STRUCT_TM_TM_GMTOFF
782 tm_init (tm_gmtoff);
783#endif
b9525b92
GH
784#undef tm_init
785
03b79aa3
KR
786 /* GNU glibc strptime() "%s" is affected by the current timezone, since it
787 reads a UTC time_t value and converts with localtime_r() to set the tm
9de87eea 788 fields, hence the use of SCM_CRITICAL_SECTION_START. */
b9525b92 789 t.tm_isdst = -1;
9de87eea 790 SCM_CRITICAL_SECTION_START;
d40e1ca8 791 rest = strptime (str, fmt, &t);
9de87eea 792 SCM_CRITICAL_SECTION_END;
763313a2 793 if (rest == NULL)
73ae3b4c
KR
794 {
795 /* POSIX doesn't say strptime sets errno, and on glibc 2.3.2 for
796 instance it doesn't. Force a sensible value for our error
797 message. */
798 errno = EINVAL;
587a3355
MG
799 scm_remember_upto_here_2 (format, string);
800 free (str);
801 free (fmt);
73ae3b4c
KR
802 SCM_SYSERROR;
803 }
b9525b92 804
8ab3d8a0
KR
805 /* tm_gmtoff is set by GNU glibc strptime "%s", so capture it when
806 available */
807#if HAVE_STRUCT_TM_TM_GMTOFF
808 zoff = - t.tm_gmtoff; /* seconds west, not east */
809#else
810 zoff = 0;
811#endif
812
587a3355 813 /* Compute the number of UTF-8 characters. */
d40e1ca8 814 used_len = u8_strnlen ((scm_t_uint8*) str, rest-str);
587a3355
MG
815 scm_remember_upto_here_2 (format, string);
816 free (str);
817 free (fmt);
818
8ab3d8a0 819 return scm_cons (filltime (&t, zoff, NULL),
587a3355 820 scm_from_signed_integer (used_len));
b9525b92 821}
1bbd0b84 822#undef FUNC_NAME
f25f761d 823#endif /* HAVE_STRPTIME */
b9525b92 824
0f2d19dd
JB
825void
826scm_init_stime()
0f2d19dd 827{
86d31dfe 828 scm_c_define ("internal-time-units-per-second",
b9bd8526 829 scm_from_long (SCM_TIME_UNITS_PER_SECOND));
0f2d19dd 830
4a42658f
AW
831 /* Init POSIX timers, and see if we can use them. */
832#ifdef HAVE_CLOCK_GETTIME
833 if (clock_gettime (CLOCK_REALTIME, &posix_real_time_base) == 0)
834 get_internal_real_time = get_internal_real_time_posix_timer;
835
a02a6067 836#ifdef HAVE_POSIX_CPUTIME
4a42658f
AW
837 {
838 clockid_t dummy;
839
840 /* Only use the _POSIX_CPUTIME clock if it's going to work across
841 CPUs. */
842 if (clock_getcpuclockid (0, &dummy) == 0 &&
843 clock_gettime (CLOCK_PROCESS_CPUTIME_ID, &posix_run_time_base) == 0)
844 get_internal_run_time = get_internal_run_time_posix_timer;
845 else
846 errno = 0;
847 }
a02a6067 848#endif /* HAVE_POSIX_CPUTIME */
4a42658f
AW
849#endif /* HAVE_CLOCKTIME */
850
851 /* If needed, init and use gettimeofday timer. */
852#ifdef HAVE_GETTIMEOFDAY
853 if (!get_internal_real_time
854 && gettimeofday (&gettimeofday_real_time_base, NULL) == 0)
855 get_internal_real_time = get_internal_real_time_gettimeofday;
856#endif
857
858 /* Init ticks_per_second for scm_times, and use times(2)-based
859 run-time timer if needed. */
4a42658f
AW
860#ifdef _SC_CLK_TCK
861 ticks_per_second = sysconf (_SC_CLK_TCK);
0f2d19dd 862#else
4a42658f 863 ticks_per_second = CLK_TCK;
0f2d19dd 864#endif
4a42658f
AW
865 if (!get_internal_run_time)
866 get_internal_run_time = get_internal_run_time_times;
0f2d19dd 867
40e2a31d
AW
868 if (!get_internal_real_time)
869 /* No POSIX timers, gettimeofday doesn't work... badness! */
870 {
871 fallback_real_time_base = time (NULL);
872 get_internal_real_time = get_internal_real_time_fallback;
873 }
0f2d19dd 874
876c87ce 875 scm_add_feature ("current-time");
a0599745 876#include "libguile/stime.x"
0f2d19dd
JB
877}
878
89e00824
ML
879
880/*
881 Local Variables:
882 c-file-style: "gnu"
883 End:
884*/