2 PostgreSQL Data Base Management System (formerly known as Postgres, then
5 Copyright (c) 1994-7 Regents of the University of California
7 Permission to use, copy, modify, and distribute this software and its
8 documentation for any purpose, without fee, and without a written agreement
9 is hereby granted, provided that the above copyright notice and this
10 paragraph and the following two paragraphs appear in all copies.
12 IN NO EVENT SHALL THE UNIVERSITY OF CALIFORNIA BE LIABLE TO ANY PARTY FOR
13 DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING
14 LOST PROFITS, ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS
15 DOCUMENTATION, EVEN IF THE UNIVERSITY OF CALIFORNIA HAS BEEN ADVISED OF THE
16 POSSIBILITY OF SUCH DAMAGE.
18 THE UNIVERSITY OF CALIFORNIA SPECIFICALLY DISCLAIMS ANY WARRANTIES,
19 INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
20 AND FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 ON AN "AS IS" BASIS, AND THE UNIVERSITY OF CALIFORNIA HAS NO OBLIGATIONS TO
22 PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
24 /*-------------------------------------------------------------------------
27 * Definitions for the date/time and other date/time support code.
28 * The support code is shared with other date data types,
29 * including abstime, reltime, date, and time.
32 * Copyright (c) 1994, Regents of the University of California
36 *-------------------------------------------------------------------------
44 /* We have to include stdlib.h here because it defines many of these macros
45 on some platforms, and we only want our definitions used if stdlib.h doesn't
51 /* ----------------------------------------------------------------
52 * Section 1: bool, true, false, TRUE, FALSE
53 * ----------------------------------------------------------------
57 * Boolean value, either true or false.
60 #define false ((char) 0)
61 #define true ((char) 1)
65 #endif /* ndef bool */
67 typedef bool *BoolPtr
;
79 /* ----------------------------------------------------------------
80 * Section 3: standard system types
81 * ----------------------------------------------------------------
86 * Signed integer, EXACTLY N BITS IN SIZE,
87 * used for numerical computations and the
88 * frontend/backend protocol.
90 typedef signed char int8
; /* == 8 bits */
91 typedef signed short int16
; /* == 16 bits */
92 typedef signed int int32
; /* == 32 bits */
96 * Unsigned integer, EXACTLY N BITS IN SIZE,
97 * used for numerical computations and the
98 * frontend/backend protocol.
100 typedef unsigned char uint8
; /* == 8 bits */
101 typedef unsigned short uint16
; /* == 16 bits */
102 typedef unsigned int uint32
; /* == 32 bits */
106 * Floating point number, AT LEAST N BITS IN SIZE,
107 * used for numerical computations.
109 * Since sizeof(floatN) may be > sizeof(char *), always pass
110 * floatN by reference.
112 typedef float float32data
;
113 typedef double float64data
;
114 typedef float *float32
;
115 typedef double *float64
;
119 * Boolean value, AT LEAST N BITS IN SIZE.
121 typedef uint8 bool8
; /* >= 8 bits */
122 typedef uint16 bool16
; /* >= 16 bits */
123 typedef uint32 bool32
; /* >= 32 bits */
126 /* Date/Time Configuration
128 * Constants to pass info from runtime environment:
129 * USE_POSTGRES_DATES specifies traditional postgres format for output.
130 * USE_ISO_DATES specifies ISO-compliant format for output.
131 * USE_SQL_DATES specified Oracle/Ingres-compliant format for output.
132 * USE_GERMAN_DATES specifies German-style dd.mm/yyyy date format.
134 * DateStyle specifies preference for date formatting for output.
135 * EuroDates if client prefers dates interpreted and written w/European conventions.
137 * HasCTZSet if client timezone is specified by client.
138 * CDayLight is the apparent daylight savings time status.
139 * CTimeZone is the timezone offset in seconds.
140 * CTZName is the timezone label.
143 #define USE_POSTGRES_DATES 0
144 #define USE_ISO_DATES 1
145 #define USE_SQL_DATES 2
146 #define USE_GERMAN_DATES 3
152 typedef double float8
;
160 typedef struct varlena text
;
164 typedef int AbsoluteTime
;
165 typedef int RelativeTime
;
168 * Note a leap year is one that is a multiple of 4
169 * but not of a 100. Except if it is a multiple of
170 * 400 then it is a leap year.
172 #define isleap(y) (((y % 4) == 0) && (((y % 100) != 0) || ((y % 400) == 0)))
175 * DateTime represents absolute time.
176 * TimeSpan represents delta time. Keep track of months (and years)
177 * separately since the elapsed time spanned is unknown until instantiated
178 * relative to an absolute time.
180 * Note that Postgres uses "time interval" to mean a bounded interval,
181 * consisting of a beginning and ending time, not a time span - thomas 97/03/20
184 typedef double DateTime
;
188 double time
; /* all time units other than months and
190 int month
; /* months and years, after time for
195 /* ----------------------------------------------------------------
196 * time types + support macros
198 * String definitions for standard time quantities.
200 * These strings are the defaults used to form output time strings.
201 * Other alternate forms are hardcoded into token tables in dt.c.
202 * ----------------------------------------------------------------
206 #define DCURRENT "current"
207 #define EPOCH "epoch"
208 #define INVALID "invalid"
209 #define EARLY "-infinity"
210 #define LATE "infinity"
212 #define TODAY "today"
213 #define TOMORROW "tomorrow"
214 #define YESTERDAY "yesterday"
217 #define DMICROSEC "usecond"
218 #define DMILLISEC "msecond"
219 #define DSECOND "second"
220 #define DMINUTE "minute"
224 #define DMONTH "month"
225 #define DQUARTER "quarter"
227 #define DDECADE "decade"
228 #define DCENTURY "century"
229 #define DMILLENIUM "millenium"
232 #define DTIMEZONE "timezone"
235 * Fundamental time field definitions for parsing.
237 * Meridian: am, pm, or 24-hour style.
249 * Fields for time decoding.
250 * Can't have more of these than there are bits in an unsigned int
251 * since these are turned into bit masks during parsing and decoding.
258 #define TIMES 4 /* not used - thomas 1997-07-14 */
262 #define IGNOREFIELD 8
271 /* these are only for relative dates */
273 #define ABS_BEFORE 18
277 * Token field definitions for time parsing and decoding.
278 * These need to fit into the datetkn table type.
279 * At the moment, that means keep them within [-127,127].
280 * These are also used for bit masks in DecodeDateDelta()
281 * so actually restrict them to within [0,31] for now.
283 * Not all of these fields are used for masks in DecodeDateDelta
284 * so allow some larger than 31. - thomas 1997-11-17
295 #define DTK_SPECIAL 6
296 #define DTK_INVALID 7
297 #define DTK_CURRENT 8
302 #define DTK_YESTERDAY 13
304 #define DTK_TOMORROW 15
308 #define DTK_SECOND 18
309 #define DTK_MINUTE 19
314 #define DTK_QUARTER 24
316 #define DTK_DECADE 26
317 #define DTK_CENTURY 27
318 #define DTK_MILLENIUM 28
319 #define DTK_MILLISEC 29
320 #define DTK_MICROSEC 30
324 #define DTK_TZ_HOUR 34
325 #define DTK_TZ_MINUTE 35
328 * Bit mask definitions for time parsing.
331 #define DTK_M(t) (0x01 << (t))
333 #define DTK_DATE_M (DTK_M(YEAR) | DTK_M(MONTH) | DTK_M(DAY))
334 #define DTK_TIME_M (DTK_M(HOUR) | DTK_M(MINUTE) | DTK_M(SECOND))
336 #define MAXDATELEN 47 /* maximum possible length of an input
338 #define MAXDATEFIELDS 25 /* maximum possible number of fields in a
340 #define TOKMAXLEN 10 /* only this many chars are stored in
343 /* keep this struct small; it gets used a lot */
349 char token
[TOKMAXLEN
];
352 char value
; /* this may be unsigned, alas */
362 void j2date(int jd
, int *year
, int *month
, int *day
);
363 int date2j(int year
, int month
, int day
);
365 int ParseDateTime(char *timestr
, char *lowstr
,
366 char **field
, int *ftype
, int maxfields
, int *numfields
);
367 int DecodeDateTime(char **field
, int *ftype
,
368 int nf
, int *dtype
, struct tm
* tm
, double *fsec
, int *tzp
);
370 int DecodeTimeOnly(char **field
, int *ftype
, int nf
,
371 int *dtype
, struct tm
* tm
, double *fsec
);