1 /* Portions are Copyright (C) 2011 Google Inc */
2 /* ***** BEGIN LICENSE BLOCK *****
3 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 * The contents of this file are subject to the Mozilla Public License Version
6 * 1.1 (the "License"); you may not use this file except in compliance with
7 * the License. You may obtain a copy of the License at
8 * http://www.mozilla.org/MPL/
10 * Software distributed under the License is distributed on an "AS IS" basis,
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 * for the specific language governing rights and limitations under the
15 * The Original Code is the Netscape Portable Runtime (NSPR).
17 * The Initial Developer of the Original Code is
18 * Netscape Communications Corporation.
19 * Portions created by the Initial Developer are Copyright (C) 1998-2000
20 * the Initial Developer. All Rights Reserved.
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
36 * ***** END LICENSE BLOCK ***** */
39 *---------------------------------------------------------------------------
43 * NSPR date and time functions
45 * This file contains definitions of NSPR's basic types required by
46 * prtime.cc. These types have been copied over from the following NSPR
47 * files prtime.h, prtypes.h(CVS revision 3.35), prlong.h(CVS revision 3.13)
49 *---------------------------------------------------------------------------
52 #ifndef BASE_PRTIME_H__
53 #define BASE_PRTIME_H__
57 #include "base/base_export.h"
59 typedef int8_t PRInt8
;
60 typedef int16_t PRInt16
;
61 typedef int32_t PRInt32
;
62 typedef int64_t PRInt64
;
65 typedef PRIntn PRBool
;
69 typedef enum { PR_FAILURE
= -1, PR_SUCCESS
= 0 } PRStatus
;
71 #define PR_ASSERT DCHECK
73 #define PR_INT16_MAX 32767
74 #define NSPR_API(__type) extern __type
76 /**********************************************************************/
77 /************************* TYPES AND CONSTANTS ************************/
78 /**********************************************************************/
80 #define PR_MSEC_PER_SEC 1000UL
81 #define PR_USEC_PER_SEC 1000000UL
82 #define PR_NSEC_PER_SEC 1000000000UL
83 #define PR_USEC_PER_MSEC 1000UL
84 #define PR_NSEC_PER_MSEC 1000000UL
89 * NSPR represents basic time as 64-bit signed integers relative
90 * to midnight (00:00:00), January 1, 1970 Greenwich Mean Time (GMT).
91 * (GMT is also known as Coordinated Universal Time, UTC.)
92 * The units of time are in microseconds. Negative times are allowed
93 * to represent times prior to the January 1970 epoch. Such values are
94 * intended to be exported to other systems or converted to human
97 * Notes on porting: PRTime corresponds to time_t in ANSI C. NSPR 1.0
98 * simply uses PRInt64.
101 typedef PRInt64 PRTime
;
104 * Time zone and daylight saving time corrections applied to GMT to
105 * obtain the local time of some geographic location
108 typedef struct PRTimeParameters
{
109 PRInt32 tp_gmt_offset
; /* the offset from GMT in seconds */
110 PRInt32 tp_dst_offset
; /* contribution of DST in seconds */
116 * Time broken down into human-readable components such as year, month,
117 * day, hour, minute, second, and microsecond. Time zone and daylight
118 * saving time corrections may be applied. If they are applied, the
119 * offsets from the GMT must be saved in the 'tm_params' field so that
120 * all the information is available to reconstruct GMT.
122 * Notes on porting: PRExplodedTime corrresponds to struct tm in
123 * ANSI C, with the following differences:
124 * - an additional field tm_usec;
125 * - replacing tm_isdst by tm_params;
126 * - the month field is spelled tm_month, not tm_mon;
127 * - we use absolute year, AD, not the year since 1900.
128 * The corresponding type in NSPR 1.0 is called PRTime. Below is
129 * a table of date/time type correspondence in the three APIs:
130 * API time since epoch time in components
131 * ANSI C time_t struct tm
132 * NSPR 1.0 PRInt64 PRTime
133 * NSPR 2.0 PRTime PRExplodedTime
136 typedef struct PRExplodedTime
{
137 PRInt32 tm_usec
; /* microseconds past tm_sec (0-99999) */
138 PRInt32 tm_sec
; /* seconds past tm_min (0-61, accomodating
139 up to two leap seconds) */
140 PRInt32 tm_min
; /* minutes past tm_hour (0-59) */
141 PRInt32 tm_hour
; /* hours past tm_day (0-23) */
142 PRInt32 tm_mday
; /* days past tm_mon (1-31, note that it
144 PRInt32 tm_month
; /* months past tm_year (0-11, Jan = 0) */
145 PRInt16 tm_year
; /* absolute year, AD (note that we do not
148 PRInt8 tm_wday
; /* calculated day of the week
150 PRInt16 tm_yday
; /* calculated day of the year
151 (0-365, Jan 1 = 0) */
153 PRTimeParameters tm_params
; /* time parameters used by conversion */
159 * A function of PRTimeParamFn type returns the time zone and
160 * daylight saving time corrections for some geographic location,
161 * given the current time in GMT. The input argument gmt should
162 * point to a PRExplodedTime that is in GMT, i.e., whose
163 * tm_params contains all 0's.
165 * For any time zone other than GMT, the computation is intended to
166 * consist of two steps:
167 * - Figure out the time zone correction, tp_gmt_offset. This number
168 * usually depends on the geographic location only. But it may
169 * also depend on the current time. For example, all of China
170 * is one time zone right now. But this situation may change
172 * - Figure out the daylight saving time correction, tp_dst_offset.
173 * This number depends on both the geographic location and the
174 * current time. Most of the DST rules are expressed in local
175 * current time. If so, one should apply the time zone correction
176 * to GMT before applying the DST rules.
179 typedef PRTimeParameters (PR_CALLBACK
*PRTimeParamFn
)(const PRExplodedTime
*gmt
);
181 /**********************************************************************/
182 /****************************** FUNCTIONS *****************************/
183 /**********************************************************************/
186 PR_ImplodeTime(const PRExplodedTime
*exploded
);
189 * Adjust exploded time to normalize field overflows after manipulation.
190 * Note that the following fields of PRExplodedTime should not be
192 * - tm_month and tm_year: because the number of days in a month and
193 * number of days in a year are not constant, it is ambiguous to
194 * manipulate the month and year fields, although one may be tempted
195 * to. For example, what does "a month from January 31st" mean?
196 * - tm_wday and tm_yday: these fields are calculated by NSPR. Users
197 * should treat them as "read-only".
200 NSPR_API(void) PR_NormalizeTime(
201 PRExplodedTime
*exploded
, PRTimeParamFn params
);
203 /**********************************************************************/
204 /*********************** TIME PARAMETER FUNCTIONS *********************/
205 /**********************************************************************/
207 /* Time parameters that represent Greenwich Mean Time */
208 NSPR_API(PRTimeParameters
) PR_GMTParameters(const PRExplodedTime
*gmt
);
211 * This parses a time/date string into a PRTime
212 * (microseconds after "1-Jan-1970 00:00:00 GMT").
213 * It returns PR_SUCCESS on success, and PR_FAILURE
214 * if the time/date string can't be parsed.
216 * Many formats are handled, including:
219 * 14 Apr 89 03:20 GMT
220 * Fri, 17 Mar 89 4:01:33
221 * Fri, 17 Mar 89 4:01 GMT
222 * Mon Jan 16 16:12 PDT 1989
223 * Mon Jan 16 16:12 +0130 1989
224 * 6 May 1992 16:41-JST (Wednesday)
225 * 22-AUG-1993 10:59:12.82
226 * 22-AUG-1993 10:59pm
227 * 22-AUG-1993 12:59am
228 * 22-AUG-1993 12:59 PM
229 * Friday, August 04, 1995 3:54 PM
230 * 06/21/95 04:24:34 PM
232 * 95-06-08 19:32:48 EDT
233 * 1995-06-17T23:11:25.342156Z
235 * If the input string doesn't contain a description of the timezone,
236 * we consult the `default_to_gmt' to decide whether the string should
237 * be interpreted relative to the local time zone (PR_FALSE) or GMT (PR_TRUE).
238 * The correct value for this argument depends on what standard specified
239 * the time string which you are parsing.
243 * This is the only funtion that should be called from outside base, and only
244 * from the unit test.
247 BASE_EXPORT PRStatus
PR_ParseTimeString (
249 PRBool default_to_gmt
,
252 #endif // BASE_PRTIME_H__