PostgreSQL Source Code git master
private.h
Go to the documentation of this file.
1/* Private header for tzdb code. */
2
3#ifndef PRIVATE_H
4
5#define PRIVATE_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 * IDENTIFICATION
12 * src/timezone/private.h
13 */
14
15/*
16 * This header is for use ONLY with the time conversion code.
17 * There is no guarantee that it will remain unchanged,
18 * or that it will remain at all.
19 * Do NOT copy it to any system include directory.
20 * Thank you!
21 */
22
23#include <limits.h> /* for CHAR_BIT et al. */
24#include <sys/wait.h> /* for WIFEXITED and WEXITSTATUS */
25#include <unistd.h> /* for F_OK and R_OK */
26
27#include "pgtime.h"
28
29/* This string was in the Factory zone through version 2016f. */
30#define GRANDPARENTED "Local time zone must be set--see zic manual page"
31
32/*
33 * IANA has a bunch of HAVE_FOO #defines here, but in PG we want pretty
34 * much all of that to be done by PG's configure script.
35 */
36
37#ifndef ENOTSUP
38#define ENOTSUP EINVAL
39#endif
40#ifndef EOVERFLOW
41#define EOVERFLOW EINVAL
42#endif
43
44/* Unlike <ctype.h>'s isdigit, this also works if c < 0 | c > UCHAR_MAX. */
45#define is_digit(c) ((unsigned)(c) - '0' <= 9)
46
47
48/*
49 * Finally, some convenience items.
50 */
51
52#define TYPE_BIT(type) (sizeof (type) * CHAR_BIT)
53#define TYPE_SIGNED(type) (((type) -1) < 0)
54#define TWOS_COMPLEMENT(t) ((t) ~ (t) 0 < 0)
55
56/*
57 * Max and min values of the integer type T, of which only the bottom
58 * B bits are used, and where the highest-order used bit is considered
59 * to be a sign bit if T is signed.
60 */
61#define MAXVAL(t, b) \
62 ((t) (((t) 1 << ((b) - 1 - TYPE_SIGNED(t))) \
63 - 1 + ((t) 1 << ((b) - 1 - TYPE_SIGNED(t)))))
64#define MINVAL(t, b) \
65 ((t) (TYPE_SIGNED(t) ? - TWOS_COMPLEMENT(t) - MAXVAL(t, b) : 0))
66
67/* The extreme time values, assuming no padding. */
68#define TIME_T_MIN MINVAL(pg_time_t, TYPE_BIT(pg_time_t))
69#define TIME_T_MAX MAXVAL(pg_time_t, TYPE_BIT(pg_time_t))
70
71/*
72 * 302 / 1000 is log10(2.0) rounded up.
73 * Subtract one for the sign bit if the type is signed;
74 * add one for integer division truncation;
75 * add one more for a minus sign if the type is signed.
76 */
77#define INT_STRLEN_MAXIMUM(type) \
78 ((TYPE_BIT(type) - TYPE_SIGNED(type)) * 302 / 1000 + \
79 1 + TYPE_SIGNED(type))
80
81/*
82 * INITIALIZE(x)
83 */
84#define INITIALIZE(x) ((x) = 0)
85
86#undef _
87#define _(msgid) (msgid)
88
89/* Handy macros that are independent of tzfile implementation. */
90
91#define YEARSPERREPEAT 400 /* years before a Gregorian repeat */
92
93#define SECSPERMIN 60
94#define MINSPERHOUR 60
95#define HOURSPERDAY 24
96#define DAYSPERWEEK 7
97#define DAYSPERNYEAR 365
98#define DAYSPERLYEAR 366
99#define SECSPERHOUR (SECSPERMIN * MINSPERHOUR)
100#define SECSPERDAY ((int_fast32_t) SECSPERHOUR * HOURSPERDAY)
101#define MONSPERYEAR 12
102
103#define TM_SUNDAY 0
104#define TM_MONDAY 1
105#define TM_TUESDAY 2
106#define TM_WEDNESDAY 3
107#define TM_THURSDAY 4
108#define TM_FRIDAY 5
109#define TM_SATURDAY 6
110
111#define TM_JANUARY 0
112#define TM_FEBRUARY 1
113#define TM_MARCH 2
114#define TM_APRIL 3
115#define TM_MAY 4
116#define TM_JUNE 5
117#define TM_JULY 6
118#define TM_AUGUST 7
119#define TM_SEPTEMBER 8
120#define TM_OCTOBER 9
121#define TM_NOVEMBER 10
122#define TM_DECEMBER 11
123
124#define TM_YEAR_BASE 1900
125
126#define EPOCH_YEAR 1970
127#define EPOCH_WDAY TM_THURSDAY
128
129#define isleap(y) (((y) % 4) == 0 && (((y) % 100) != 0 || ((y) % 400) == 0))
130
131/*
132 * Since everything in isleap is modulo 400 (or a factor of 400), we know that
133 * isleap(y) == isleap(y % 400)
134 * and so
135 * isleap(a + b) == isleap((a + b) % 400)
136 * or
137 * isleap(a + b) == isleap(a % 400 + b % 400)
138 * This is true even if % means modulo rather than Fortran remainder
139 * (which is allowed by C89 but not by C99 or later).
140 * We use this to avoid addition overflow problems.
141 */
142
143#define isleap_sum(a, b) isleap((a) % 400 + (b) % 400)
144
145
146/*
147 * The Gregorian year averages 365.2425 days, which is 31556952 seconds.
148 */
149
150#define AVGSECSPERYEAR 31556952L
151#define SECSPERREPEAT \
152 ((int_fast64_t) YEARSPERREPEAT * (int_fast64_t) AVGSECSPERYEAR)
153#define SECSPERREPEAT_BITS 34 /* ceil(log2(SECSPERREPEAT)) */
154
155#endif /* !defined PRIVATE_H */