1 /* Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Library General Public License as
6 published by the Free Software Foundation; either version 2 of the
7 License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Library General Public License for more details.
14 You should have received a copy of the GNU Library General Public
15 License along with the GNU C Library; see the file COPYING.LIB. If
16 not, write to the Free Software Foundation, Inc., 675 Mass Ave,
17 Cambridge, MA 02139, USA. */
27 /* Defined in mktime.c. */
28 extern CONST
unsigned short int __mon_lengths
[2][12];
33 extern int __use_tzfile
;
34 extern void EXFUN(__tzfile_read
, (CONST
char *file
));
35 extern void EXFUN(__tzfile_default
, (char *std AND
char *dst AND
36 long int stdoff AND
long int dstoff
));
37 extern int EXFUN(__tzfile_compute
, (time_t, struct tm
));
39 char *__tzname
[2] = { (char *) "GMT", (char *) "GMT" };
41 long int __timezone
= 0L;
43 weak_alias (__tzname
, tzname
)
44 weak_alias (__daylight
, daylight
)
45 weak_alias (__timezone
, timezone
)
48 #define min(a, b) ((a) < (b) ? (a) : (b))
49 #define max(a, b) ((a) > (b) ? (a) : (b))
50 #define sign(x) ((x) < 0 ? -1 : 1)
53 /* This structure contains all the information about a
54 timezone given in the POSIX standard TZ envariable. */
60 enum { J0
, J1
, M
} type
; /* Interpretation of: */
61 unsigned short int m
, n
, d
; /* Month, week, day. */
62 unsigned int secs
; /* Time of day. */
64 long int offset
; /* Seconds east of GMT (west if < 0). */
66 /* We cache the computed time of change for a
67 given year so we don't have to recompute it. */
68 time_t change
; /* When to change to this zone. */
69 int computed_for
; /* Year above is computed for. */
72 /* tz_rules[0] is standard, tz_rules[1] is daylight. */
73 static tz_rule tz_rules
[2];
77 /* Interpret the TZ envariable. */
81 register CONST
char *tz
;
83 unsigned short int hh
, mm
, ss
;
84 unsigned short int whichrule
;
86 /* Free old storage. */
87 if (tz_rules
[0].name
!= NULL
&& *tz_rules
[0].name
!= '\0')
88 free((PTR
) tz_rules
[0].name
);
89 if (tz_rules
[1].name
!= NULL
&& *tz_rules
[1].name
!= '\0' &&
90 tz_rules
[1].name
!= tz_rules
[0].name
)
91 free((PTR
) tz_rules
[1].name
);
95 if (tz
!= NULL
&& *tz
== ':')
97 __tzfile_read(tz
+ 1);
107 if (tz
== NULL
|| *tz
== '\0')
109 __tzfile_read((char *) NULL
);
112 const char UTC
[] = "UTC";
113 size_t len
= sizeof UTC
;
114 tz_rules
[0].name
= (char *) malloc(len
);
115 if (tz_rules
[0].name
== NULL
)
117 tz_rules
[1].name
= (char *) malloc(len
);
118 if (tz_rules
[1].name
== NULL
)
120 memcpy ((PTR
) tz_rules
[0].name
, UTC
, len
);
121 memcpy ((PTR
) tz_rules
[1].name
, UTC
, len
);
122 tz_rules
[0].type
= tz_rules
[1].type
= J0
;
123 tz_rules
[0].m
= tz_rules
[0].n
= tz_rules
[0].d
= 0;
124 tz_rules
[1].m
= tz_rules
[1].n
= tz_rules
[1].d
= 0;
125 tz_rules
[0].secs
= tz_rules
[1].secs
= 0;
126 tz_rules
[0].offset
= tz_rules
[1].offset
= 0L;
127 tz_rules
[0].change
= tz_rules
[1].change
= (time_t) -1;
128 tz_rules
[0].computed_for
= tz_rules
[1].computed_for
= 0;
134 /* Clear out old state and reset to unnamed UTC. */
135 memset (tz_rules
, 0, sizeof tz_rules
);
136 tz_rules
[0].name
= tz_rules
[1].name
= (char *) "";
138 /* Get the standard timezone name. */
139 tz_rules
[0].name
= (char *) malloc (strlen (tz
) + 1);
140 if (tz_rules
[0].name
== NULL
)
141 /* Don't set __tzset_run so we will try again. */
144 if (sscanf(tz
, "%[^0-9,+-]", tz_rules
[0].name
) != 1 ||
145 (l
= strlen(tz_rules
[0].name
)) < 3)
147 free (tz_rules
[0].name
);
148 tz_rules
[0].name
= (char *) "";
153 char *n
= realloc ((PTR
) tz_rules
[0].name
, l
+ 1);
155 tz_rules
[0].name
= n
;
160 /* Figure out the standard offset from UTC. */
161 if (*tz
== '\0' || (*tz
!= '+' && *tz
!= '-' && !isdigit(*tz
)))
164 if (*tz
== '-' || *tz
== '+')
165 tz_rules
[0].offset
= *tz
++ == '-' ? 1L : -1L;
167 tz_rules
[0].offset
= -1L;
168 switch (sscanf (tz
, "%hu:%hu:%hu", &hh
, &mm
, &ss
))
179 tz_rules
[0].offset
*= (min(ss
, 59) + (min(mm
, 59) * 60) +
180 (min(hh
, 12) * 60 * 60));
182 for (l
= 0; l
< 3; ++l
)
186 if (l
< 2 && *tz
== ':')
190 /* Get the DST timezone name (if any). */
193 char *n
= malloc (strlen(tz
) + 1);
196 tz_rules
[1].name
= n
;
197 if (sscanf(tz
, "%[^0-9,+-]", tz_rules
[1].name
) != 1 ||
198 (l
= strlen(tz_rules
[1].name
)) < 3)
201 tz_rules
[1].name
= (char *) "";
202 goto done_names
; /* Punt on name, set up the offsets. */
204 n
= realloc ((PTR
) tz_rules
[1].name
, l
+ 1);
206 tz_rules
[1].name
= n
;
212 /* Figure out the DST offset from GMT. */
213 if (*tz
== '-' || *tz
== '+')
214 tz_rules
[1].offset
= *tz
++ == '-' ? 1L : -1L;
216 tz_rules
[1].offset
= -1L;
218 switch (sscanf (tz
, "%hu:%hu:%hu", &hh
, &mm
, &ss
))
221 /* Default to one hour later than standard time. */
222 tz_rules
[1].offset
= tz_rules
[0].offset
+ (60 * 60);
230 tz_rules
[1].offset
*= (min(ss
, 59) + (min(mm
, 59) * 60) +
231 (min(hh
, 12) * (60 * 60)));
234 for (l
= 0; l
< 3; ++l
)
236 while (isdigit (*tz
))
238 if (l
< 2 && *tz
== ':')
244 if (*tz
== '\0' || (tz
[0] == ',' && tz
[1] == '\0'))
246 /* There is no rule. See if there is a default rule file. */
247 __tzfile_default (tz_rules
[0].name
, tz_rules
[1].name
,
248 tz_rules
[0].offset
, tz_rules
[1].offset
);
256 /* Figure out the standard <-> DST rules. */
257 for (whichrule
= 0; whichrule
< 2; ++whichrule
)
259 register tz_rule
*tzr
= &tz_rules
[whichrule
];
268 /* Get the date of the change. */
269 if (*tz
== 'J' || isdigit (*tz
))
272 tzr
->type
= *tz
== 'J' ? J1
: J0
;
273 if (tzr
->type
== J1
&& !isdigit (*++tz
))
275 tzr
->d
= (unsigned short int) strtoul (tz
, &end
, 10);
276 if (end
== tz
|| tzr
->d
> 365)
278 else if (tzr
->type
== J1
&& tzr
->d
== 0)
286 if (sscanf (tz
, "M%hu.%hu.%hu%n",
287 &tzr
->m
, &tzr
->n
, &tzr
->d
, &n
) != 3 ||
288 tzr
->m
< 1 || tzr
->m
> 12 ||
289 tzr
->n
< 1 || tzr
->n
> 5 || tzr
->d
> 6)
293 else if (*tz
== '\0')
295 /* United States Federal Law, the equivalent of "M4.1.0,M10.5.0". */
297 if (tzr
== &tz_rules
[0])
313 if (*tz
!= '\0' && *tz
!= '/' && *tz
!= ',')
317 /* Get the time of day of the change. */
321 switch (sscanf (tz
, "%hu:%hu:%hu", &hh
, &mm
, &ss
))
324 hh
= 2; /* Default to 2:00 AM. */
332 for (l
= 0; l
< 3; ++l
)
336 if (l
< 2 && *tz
== ':')
339 tzr
->secs
= (hh
* 60 * 60) + (mm
* 60) + ss
;
342 /* Default to 2:00 AM. */
343 tzr
->secs
= 2 * 60 * 60;
345 tzr
->computed_for
= -1;
351 /* Maximum length of a timezone name. __tz_compute keeps this up to date
352 (never decreasing it) when ! __use_tzfile.
353 tzfile.c keeps it up to date when __use_tzfile. */
354 long int __tzname_cur_max
;
357 DEFUN_VOID(__tzname_max
)
362 return __tzname_cur_max
;
365 /* Figure out the exact time (as a time_t) in YEAR
366 when the change described by RULE will occur and
367 put it in RULE->change, saving YEAR in RULE->computed_for.
368 Return nonzero if successful, zero on failure. */
370 DEFUN(compute_change
, (rule
, year
), tz_rule
*rule AND
int year
)
375 if (year
!= -1 && rule
->computed_for
== year
)
376 /* Operations on times in 1969 will be slower. Oh well. */
379 /* First set T to January 1st, 0:00:00 GMT in YEAR. */
381 for (y
= 1970; y
< year
; ++y
)
382 t
+= SECSPERDAY
* (__isleap (y
) ? 366 : 365);
387 /* Jn - Julian day, 1 == January 1, 60 == March 1 even in leap years.
388 In non-leap years, or if the day number is 59 or less, just
389 add SECSPERDAY times the day number-1 to the time of
390 January 1, midnight, to get the day. */
391 t
+= (rule
->d
- 1) * SECSPERDAY
;
392 if (rule
->d
>= 60 && __isleap (year
))
398 Just add SECSPERDAY times the day number to the time of Jan 1st. */
399 t
+= rule
->d
* SECSPERDAY
;
403 /* Mm.n.d - Nth "Dth day" of month M. */
405 register int i
, d
, m1
, yy0
, yy1
, yy2
, dow
;
407 /* First add SECSPERDAY for each day in months before M. */
408 for (i
= 0; i
< rule
->m
- 1; ++i
)
409 t
+= __mon_lengths
[__isleap (year
)][i
] * SECSPERDAY
;
411 /* Use Zeller's Congruence to get day-of-week of first day of month. */
412 m1
= (rule
->m
+ 9) % 12 + 1;
413 yy0
= (rule
->m
<= 2) ? (year
- 1) : year
;
416 dow
= ((26 * m1
- 2) / 10 + 1 + yy2
+ yy2
/ 4 + yy1
/ 4 - 2 * yy1
) % 7;
420 /* DOW is the day-of-week of the first day of the month. Get the
421 day-of-month (zero-origin) of the first DOW day of the month. */
425 for (i
= 1; i
< rule
->n
; ++i
)
427 if (d
+ 7 >= __mon_lengths
[__isleap (year
)][rule
->m
- 1])
432 /* D is the day-of-month (zero-origin) of the day we want. */
438 /* T is now the Epoch-relative time of 0:00:00 GMT on the day we want.
439 Just add the time of day and local offset from GMT, and we're done. */
441 rule
->change
= t
+ rule
->offset
+ rule
->secs
;
442 rule
->computed_for
= year
;
447 /* Figure out the correct timezone for *TIMER and TM (which must be the same)
448 and set `__tzname', `__timezone', and `__daylight' accordingly.
449 Return nonzero on success, zero on failure. */
451 DEFUN(__tz_compute
, (timer
, tm
),
452 time_t timer AND
const struct tm
*tm
)
457 if (! compute_change (&tz_rules
[0], 1900 + tm
->tm_year
) ||
458 ! compute_change (&tz_rules
[1], 1900 + tm
->tm_year
))
461 __daylight
= timer
>= tz_rules
[0].change
&& timer
< tz_rules
[1].change
;
462 __timezone
= tz_rules
[__daylight
? 1 : 0].offset
;
463 __tzname
[0] = (char *) tz_rules
[0].name
;
464 __tzname
[1] = (char *) tz_rules
[1].name
;
467 /* Keep __tzname_cur_max up to date. */
468 size_t len0
= strlen (__tzname
[0]);
469 size_t len1
= strlen (__tzname
[1]);
470 if (len0
> __tzname_cur_max
)
471 __tzname_cur_max
= len0
;
472 if (len1
> __tzname_cur_max
)
473 __tzname_cur_max
= len1
;
479 weak_alias (__tzset
, tzset
)