Almaz Mingaleev | 5411aff | 2022-02-11 12:27:12 +0000 | [diff] [blame] | 1 | /* Layout and location of TZif files. */ |
| 2 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 3 | #ifndef TZFILE_H |
| 4 | |
| 5 | #define TZFILE_H |
| 6 | |
| 7 | /* |
| 8 | ** This file is in the public domain, so clarified as of |
| 9 | ** 1996-06-05 by Arthur David Olson. |
| 10 | */ |
| 11 | |
| 12 | /* |
| 13 | ** This header is for use ONLY with the time conversion code. |
| 14 | ** There is no guarantee that it will remain unchanged, |
| 15 | ** or that it will remain at all. |
| 16 | ** Do NOT copy it to any system include directory. |
| 17 | ** Thank you! |
| 18 | */ |
| 19 | |
| 20 | /* |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 21 | ** Information about time zone files. |
| 22 | */ |
| 23 | |
| 24 | #ifndef TZDIR |
Almaz Mingaleev | d86a3ab | 2023-04-27 11:24:48 +0100 | [diff] [blame] | 25 | # define TZDIR "/usr/share/zoneinfo" /* Time zone object file directory */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 26 | #endif /* !defined TZDIR */ |
| 27 | |
| 28 | #ifndef TZDEFAULT |
Almaz Mingaleev | d86a3ab | 2023-04-27 11:24:48 +0100 | [diff] [blame] | 29 | # define TZDEFAULT "/etc/localtime" |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 30 | #endif /* !defined TZDEFAULT */ |
| 31 | |
| 32 | #ifndef TZDEFRULES |
Almaz Mingaleev | d86a3ab | 2023-04-27 11:24:48 +0100 | [diff] [blame] | 33 | # define TZDEFRULES "posixrules" |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 34 | #endif /* !defined TZDEFRULES */ |
| 35 | |
Almaz Mingaleev | 5411aff | 2022-02-11 12:27:12 +0000 | [diff] [blame] | 36 | |
| 37 | /* See Internet RFC 8536 for more details about the following format. */ |
| 38 | |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 39 | /* |
| 40 | ** Each file begins with. . . |
| 41 | */ |
| 42 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 43 | #define TZ_MAGIC "TZif" |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 44 | |
| 45 | struct tzhead { |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 46 | char tzh_magic[4]; /* TZ_MAGIC */ |
Almaz Mingaleev | 5411aff | 2022-02-11 12:27:12 +0000 | [diff] [blame] | 47 | char tzh_version[1]; /* '\0' or '2'-'4' as of 2021 */ |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 48 | char tzh_reserved[15]; /* reserved; must be zero */ |
Almaz Mingaleev | 5411aff | 2022-02-11 12:27:12 +0000 | [diff] [blame] | 49 | char tzh_ttisutcnt[4]; /* coded number of trans. time flags */ |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 50 | char tzh_ttisstdcnt[4]; /* coded number of trans. time flags */ |
| 51 | char tzh_leapcnt[4]; /* coded number of leap seconds */ |
| 52 | char tzh_timecnt[4]; /* coded number of transition times */ |
| 53 | char tzh_typecnt[4]; /* coded number of local time types */ |
| 54 | char tzh_charcnt[4]; /* coded number of abbr. chars */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | /* |
| 58 | ** . . .followed by. . . |
| 59 | ** |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 60 | ** tzh_timecnt (char [4])s coded transition times a la time(2) |
| 61 | ** tzh_timecnt (unsigned char)s types of local time starting at above |
| 62 | ** tzh_typecnt repetitions of |
Elliott Hughes | e0d0b15 | 2013-09-27 00:04:30 -0700 | [diff] [blame] | 63 | ** one (char [4]) coded UT offset in seconds |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 64 | ** one (unsigned char) used to set tm_isdst |
| 65 | ** one (unsigned char) that's an abbreviation list index |
| 66 | ** tzh_charcnt (char)s '\0'-terminated zone abbreviations |
| 67 | ** tzh_leapcnt repetitions of |
| 68 | ** one (char [4]) coded leap second transition times |
| 69 | ** one (char [4]) total correction after above |
Elliott Hughes | 9fb22a3 | 2015-10-07 17:13:40 -0700 | [diff] [blame] | 70 | ** tzh_ttisstdcnt (char)s indexed by type; if 1, transition |
| 71 | ** time is standard time, if 0, |
Almaz Mingaleev | 5411aff | 2022-02-11 12:27:12 +0000 | [diff] [blame] | 72 | ** transition time is local (wall clock) |
| 73 | ** time; if absent, transition times are |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 74 | ** assumed to be local time |
Almaz Mingaleev | 5411aff | 2022-02-11 12:27:12 +0000 | [diff] [blame] | 75 | ** tzh_ttisutcnt (char)s indexed by type; if 1, transition |
| 76 | ** time is UT, if 0, transition time is |
| 77 | ** local time; if absent, transition |
| 78 | ** times are assumed to be local time. |
| 79 | ** When this is 1, the corresponding |
| 80 | ** std/wall indicator must also be 1. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 81 | */ |
| 82 | |
| 83 | /* |
| 84 | ** If tzh_version is '2' or greater, the above is followed by a second instance |
| 85 | ** of tzhead and a second instance of the data in which each coded transition |
| 86 | ** time uses 8 rather than 4 chars, |
| 87 | ** then a POSIX-TZ-environment-variable-style string for use in handling |
| 88 | ** instants after the last transition time stored in the file |
| 89 | ** (with nothing between the newlines if there is no POSIX representation for |
| 90 | ** such instants). |
Elliott Hughes | e0d0b15 | 2013-09-27 00:04:30 -0700 | [diff] [blame] | 91 | ** |
| 92 | ** If tz_version is '3' or greater, the above is extended as follows. |
| 93 | ** First, the POSIX TZ string's hour offset may range from -167 |
| 94 | ** through 167 as compared to the POSIX-required 0 through 24. |
| 95 | ** Second, its DST start time may be January 1 at 00:00 and its stop |
| 96 | ** time December 31 at 24:00 plus the difference between DST and |
| 97 | ** standard time, indicating DST all year. |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 98 | */ |
| 99 | |
| 100 | /* |
| 101 | ** In the current implementation, "tzset()" refuses to deal with files that |
| 102 | ** exceed any of the limits below. |
| 103 | */ |
| 104 | |
| 105 | #ifndef TZ_MAX_TIMES |
Almaz Mingaleev | d86a3ab | 2023-04-27 11:24:48 +0100 | [diff] [blame] | 106 | /* This must be at least 242 for Europe/London with 'zic -b fat'. */ |
| 107 | # define TZ_MAX_TIMES 2000 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 108 | #endif /* !defined TZ_MAX_TIMES */ |
| 109 | |
| 110 | #ifndef TZ_MAX_TYPES |
Almaz Mingaleev | d86a3ab | 2023-04-27 11:24:48 +0100 | [diff] [blame] | 111 | /* This must be at least 18 for Europe/Vilnius with 'zic -b fat'. */ |
| 112 | # define TZ_MAX_TYPES 256 /* Limited by what (unsigned char)'s can hold */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 113 | #endif /* !defined TZ_MAX_TYPES */ |
| 114 | |
| 115 | #ifndef TZ_MAX_CHARS |
Almaz Mingaleev | d86a3ab | 2023-04-27 11:24:48 +0100 | [diff] [blame] | 116 | /* This must be at least 40 for America/Anchorage. */ |
| 117 | # define TZ_MAX_CHARS 50 /* Maximum number of abbreviation characters */ |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 118 | /* (limited by what unsigned chars can hold) */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 119 | #endif /* !defined TZ_MAX_CHARS */ |
| 120 | |
| 121 | #ifndef TZ_MAX_LEAPS |
Almaz Mingaleev | d86a3ab | 2023-04-27 11:24:48 +0100 | [diff] [blame] | 122 | /* This must be at least 27 for leap seconds from 1972 through mid-2023. |
| 123 | There's a plan to discontinue leap seconds by 2035. */ |
| 124 | # define TZ_MAX_LEAPS 50 /* Maximum number of leap second corrections */ |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 125 | #endif /* !defined TZ_MAX_LEAPS */ |
| 126 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 127 | #define SECSPERMIN 60 |
| 128 | #define MINSPERHOUR 60 |
| 129 | #define HOURSPERDAY 24 |
| 130 | #define DAYSPERWEEK 7 |
| 131 | #define DAYSPERNYEAR 365 |
| 132 | #define DAYSPERLYEAR 366 |
| 133 | #define SECSPERHOUR (SECSPERMIN * MINSPERHOUR) |
| 134 | #define SECSPERDAY ((int_fast32_t) SECSPERHOUR * HOURSPERDAY) |
| 135 | #define MONSPERYEAR 12 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 136 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 137 | #define TM_SUNDAY 0 |
| 138 | #define TM_MONDAY 1 |
| 139 | #define TM_TUESDAY 2 |
| 140 | #define TM_WEDNESDAY 3 |
| 141 | #define TM_THURSDAY 4 |
| 142 | #define TM_FRIDAY 5 |
| 143 | #define TM_SATURDAY 6 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 144 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 145 | #define TM_JANUARY 0 |
| 146 | #define TM_FEBRUARY 1 |
| 147 | #define TM_MARCH 2 |
| 148 | #define TM_APRIL 3 |
| 149 | #define TM_MAY 4 |
| 150 | #define TM_JUNE 5 |
| 151 | #define TM_JULY 6 |
| 152 | #define TM_AUGUST 7 |
| 153 | #define TM_SEPTEMBER 8 |
| 154 | #define TM_OCTOBER 9 |
| 155 | #define TM_NOVEMBER 10 |
| 156 | #define TM_DECEMBER 11 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 157 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 158 | #define TM_YEAR_BASE 1900 |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 159 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 160 | #define EPOCH_YEAR 1970 |
| 161 | #define EPOCH_WDAY TM_THURSDAY |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 162 | |
| 163 | #define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0)) |
| 164 | |
| 165 | /* |
| 166 | ** Since everything in isleap is modulo 400 (or a factor of 400), we know that |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 167 | ** isleap(y) == isleap(y % 400) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 168 | ** and so |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 169 | ** isleap(a + b) == isleap((a + b) % 400) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 170 | ** or |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 171 | ** isleap(a + b) == isleap(a % 400 + b % 400) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 172 | ** This is true even if % means modulo rather than Fortran remainder |
| 173 | ** (which is allowed by C89 but not C99). |
| 174 | ** We use this to avoid addition overflow problems. |
| 175 | */ |
| 176 | |
Elliott Hughes | ce4783c | 2013-07-12 17:31:11 -0700 | [diff] [blame] | 177 | #define isleap_sum(a, b) isleap((a) % 400 + (b) % 400) |
The Android Open Source Project | 1dc9e47 | 2009-03-03 19:28:35 -0800 | [diff] [blame] | 178 | |
| 179 | #endif /* !defined TZFILE_H */ |