Coverage Report

Created: 2018-09-25 14:53

/work/obj-fuzz/dist/include/unicode/timezone.h
Line
Count
Source (jump to first uncovered line)
1
// © 2016 and later: Unicode, Inc. and others.
2
// License & terms of use: http://www.unicode.org/copyright.html
3
/*************************************************************************
4
* Copyright (c) 1997-2016, International Business Machines Corporation
5
* and others. All Rights Reserved.
6
**************************************************************************
7
*
8
* File TIMEZONE.H
9
*
10
* Modification History:
11
*
12
*   Date        Name        Description
13
*   04/21/97    aliu        Overhauled header.
14
*   07/09/97    helena      Changed createInstance to createDefault.
15
*   08/06/97    aliu        Removed dependency on internal header for Hashtable.
16
*   08/10/98    stephen        Changed getDisplayName() API conventions to match
17
*   08/19/98    stephen        Changed createTimeZone() to never return 0
18
*   09/02/98    stephen        Sync to JDK 1.2 8/31
19
*                            - Added getOffset(... monthlen ...)
20
*                            - Added hasSameRules()
21
*   09/15/98    stephen        Added getStaticClassID
22
*   12/03/99    aliu        Moved data out of static table into icudata.dll.
23
*                           Hashtable replaced by new static data structures.
24
*   12/14/99    aliu        Made GMT public.
25
*   08/15/01    grhoten     Made GMT private and added the getGMT() function
26
**************************************************************************
27
*/
28
29
#ifndef TIMEZONE_H
30
#define TIMEZONE_H
31
32
#include "unicode/utypes.h"
33
34
/**
35
 * \file 
36
 * \brief C++ API: TimeZone object
37
 */
38
39
#if !UCONFIG_NO_FORMATTING
40
41
#include "unicode/uobject.h"
42
#include "unicode/unistr.h"
43
#include "unicode/ures.h"
44
#include "unicode/ucal.h"
45
46
U_NAMESPACE_BEGIN
47
48
class StringEnumeration;
49
50
/**
51
 *
52
 * <code>TimeZone</code> represents a time zone offset, and also figures out daylight
53
 * savings.
54
 *
55
 * <p>
56
 * Typically, you get a <code>TimeZone</code> using <code>createDefault</code>
57
 * which creates a <code>TimeZone</code> based on the time zone where the program
58
 * is running. For example, for a program running in Japan, <code>createDefault</code>
59
 * creates a <code>TimeZone</code> object based on Japanese Standard Time.
60
 *
61
 * <p>
62
 * You can also get a <code>TimeZone</code> using <code>createTimeZone</code> along
63
 * with a time zone ID. For instance, the time zone ID for the US Pacific
64
 * Time zone is "America/Los_Angeles". So, you can get a Pacific Time <code>TimeZone</code> object
65
 * with:
66
 * \htmlonly<blockquote>\endhtmlonly
67
 * <pre>
68
 * TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles");
69
 * </pre>
70
 * \htmlonly</blockquote>\endhtmlonly
71
 * You can use the <code>createEnumeration</code> method to iterate through
72
 * all the supported time zone IDs, or the <code>getCanonicalID</code> method to check
73
 * if a time zone ID is supported or not.  You can then choose a
74
 * supported ID to get a <code>TimeZone</code>.
75
 * If the time zone you want is not represented by one of the
76
 * supported IDs, then you can create a custom time zone ID with
77
 * the following syntax:
78
 *
79
 * \htmlonly<blockquote>\endhtmlonly
80
 * <pre>
81
 * GMT[+|-]hh[[:]mm]
82
 * </pre>
83
 * \htmlonly</blockquote>\endhtmlonly
84
 *
85
 * For example, you might specify GMT+14:00 as a custom
86
 * time zone ID.  The <code>TimeZone</code> that is returned
87
 * when you specify a custom time zone ID uses the specified
88
 * offset from GMT(=UTC) and does not observe daylight saving
89
 * time. For example, you might specify GMT+14:00 as a custom
90
 * time zone ID to create a TimeZone representing 14 hours ahead
91
 * of GMT (with no daylight saving time). In addition,
92
 * <code>getCanonicalID</code> can also be used to
93
 * normalize a custom time zone ID.
94
 *
95
 * TimeZone is an abstract class representing a time zone.  A TimeZone is needed for
96
 * Calendar to produce local time for a particular time zone.  A TimeZone comprises
97
 * three basic pieces of information:
98
 * <ul>
99
 *    <li>A time zone offset; that, is the number of milliseconds to add or subtract
100
 *      from a time expressed in terms of GMT to convert it to the same time in that
101
 *      time zone (without taking daylight savings time into account).</li>
102
 *    <li>Logic necessary to take daylight savings time into account if daylight savings
103
 *      time is observed in that time zone (e.g., the days and hours on which daylight
104
 *      savings time begins and ends).</li>
105
 *    <li>An ID.  This is a text string that uniquely identifies the time zone.</li>
106
 * </ul>
107
 *
108
 * (Only the ID is actually implemented in TimeZone; subclasses of TimeZone may handle
109
 * daylight savings time and GMT offset in different ways.  Currently we have the following
110
 * TimeZone subclasses: RuleBasedTimeZone, SimpleTimeZone, and VTimeZone.)
111
 * <P>
112
 * The TimeZone class contains a static list containing a TimeZone object for every
113
 * combination of GMT offset and daylight-savings time rules currently in use in the
114
 * world, each with a unique ID.  Each ID consists of a region (usually a continent or
115
 * ocean) and a city in that region, separated by a slash, (for example, US Pacific
116
 * Time is "America/Los_Angeles.")  Because older versions of this class used
117
 * three- or four-letter abbreviations instead, there is also a table that maps the older
118
 * abbreviations to the newer ones (for example, "PST" maps to "America/Los_Angeles").
119
 * Anywhere the API requires an ID, you can use either form.
120
 * <P>
121
 * To create a new TimeZone, you call the factory function TimeZone::createTimeZone()
122
 * and pass it a time zone ID.  You can use the createEnumeration() function to
123
 * obtain a list of all the time zone IDs recognized by createTimeZone().
124
 * <P>
125
 * You can also use TimeZone::createDefault() to create a TimeZone.  This function uses
126
 * platform-specific APIs to produce a TimeZone for the time zone corresponding to
127
 * the client's computer's physical location.  For example, if you're in Japan (assuming
128
 * your machine is set up correctly), TimeZone::createDefault() will return a TimeZone
129
 * for Japanese Standard Time ("Asia/Tokyo").
130
 */
131
class U_I18N_API TimeZone : public UObject {
132
public:
133
    /**
134
     * @stable ICU 2.0
135
     */
136
    virtual ~TimeZone();
137
138
    /**
139
     * Returns the "unknown" time zone.
140
     * It behaves like the GMT/UTC time zone but has the
141
     * <code>UCAL_UNKNOWN_ZONE_ID</code> = "Etc/Unknown".
142
     * createTimeZone() returns a mutable clone of this time zone if the input ID is not recognized.
143
     *
144
     * @return the "unknown" time zone.
145
     * @see UCAL_UNKNOWN_ZONE_ID
146
     * @see createTimeZone
147
     * @see getGMT
148
     * @stable ICU 49
149
     */
150
    static const TimeZone& U_EXPORT2 getUnknown();
151
152
    /**
153
     * The GMT (=UTC) time zone has a raw offset of zero and does not use daylight
154
     * savings time. This is a commonly used time zone.
155
     *
156
     * <p>Note: For backward compatibility reason, the ID used by the time
157
     * zone returned by this method is "GMT", although the ICU's canonical
158
     * ID for the GMT time zone is "Etc/GMT".
159
     *
160
     * @return the GMT/UTC time zone.
161
     * @see getUnknown
162
     * @stable ICU 2.0
163
     */
164
    static const TimeZone* U_EXPORT2 getGMT(void);
165
166
    /**
167
     * Creates a <code>TimeZone</code> for the given ID.
168
     * @param ID the ID for a <code>TimeZone</code>, such as "America/Los_Angeles",
169
     * or a custom ID such as "GMT-8:00".
170
     * @return the specified <code>TimeZone</code>, or a mutable clone of getUnknown()
171
     * if the given ID cannot be understood or if the given ID is "Etc/Unknown".
172
     * The return result is guaranteed to be non-NULL.
173
     * If you require that the specific zone asked for be returned,
174
     * compare the result with getUnknown() or check the ID of the return result.
175
     * @stable ICU 2.0
176
     */
177
    static TimeZone* U_EXPORT2 createTimeZone(const UnicodeString& ID);
178
179
    /**
180
     * Returns an enumeration over system time zone IDs with the given
181
     * filter conditions.
182
     * @param zoneType      The system time zone type.
183
     * @param region        The ISO 3166 two-letter country code or UN M.49
184
     *                      three-digit area code. When NULL, no filtering
185
     *                      done by region. 
186
     * @param rawOffset     An offset from GMT in milliseconds, ignoring
187
     *                      the effect of daylight savings time, if any.
188
     *                      When NULL, no filtering done by zone offset. 
189
     * @param ec            Output param to filled in with a success or
190
     *                      an error.
191
     * @return an enumeration object, owned by the caller.
192
     * @stable ICU 4.8
193
     */
194
    static StringEnumeration* U_EXPORT2 createTimeZoneIDEnumeration(
195
        USystemTimeZoneType zoneType,
196
        const char* region,
197
        const int32_t* rawOffset,
198
        UErrorCode& ec);
199
200
    /**
201
     * Returns an enumeration over all recognized time zone IDs. (i.e.,
202
     * all strings that createTimeZone() accepts)
203
     *
204
     * @return an enumeration object, owned by the caller.
205
     * @stable ICU 2.4
206
     */
207
    static StringEnumeration* U_EXPORT2 createEnumeration();
208
209
    /**
210
     * Returns an enumeration over time zone IDs with a given raw
211
     * offset from GMT.  There may be several times zones with the
212
     * same GMT offset that differ in the way they handle daylight
213
     * savings time.  For example, the state of Arizona doesn't
214
     * observe daylight savings time.  If you ask for the time zone
215
     * IDs corresponding to GMT-7:00, you'll get back an enumeration
216
     * over two time zone IDs: "America/Denver," which corresponds to
217
     * Mountain Standard Time in the winter and Mountain Daylight Time
218
     * in the summer, and "America/Phoenix", which corresponds to
219
     * Mountain Standard Time year-round, even in the summer.
220
     *
221
     * @param rawOffset an offset from GMT in milliseconds, ignoring
222
     * the effect of daylight savings time, if any
223
     * @return an enumeration object, owned by the caller
224
     * @stable ICU 2.4
225
     */
226
    static StringEnumeration* U_EXPORT2 createEnumeration(int32_t rawOffset);
227
228
    /**
229
     * Returns an enumeration over time zone IDs associated with the
230
     * given country.  Some zones are affiliated with no country
231
     * (e.g., "UTC"); these may also be retrieved, as a group.
232
     *
233
     * @param country The ISO 3166 two-letter country code, or NULL to
234
     * retrieve zones not affiliated with any country.
235
     * @return an enumeration object, owned by the caller
236
     * @stable ICU 2.4
237
     */
238
    static StringEnumeration* U_EXPORT2 createEnumeration(const char* country);
239
240
    /**
241
     * Returns the number of IDs in the equivalency group that
242
     * includes the given ID.  An equivalency group contains zones
243
     * that have the same GMT offset and rules.
244
     *
245
     * <p>The returned count includes the given ID; it is always >= 1.
246
     * The given ID must be a system time zone.  If it is not, returns
247
     * zero.
248
     * @param id a system time zone ID
249
     * @return the number of zones in the equivalency group containing
250
     * 'id', or zero if 'id' is not a valid system ID
251
     * @see #getEquivalentID
252
     * @stable ICU 2.0
253
     */
254
    static int32_t U_EXPORT2 countEquivalentIDs(const UnicodeString& id);
255
256
    /**
257
     * Returns an ID in the equivalency group that
258
     * includes the given ID.  An equivalency group contains zones
259
     * that have the same GMT offset and rules.
260
     *
261
     * <p>The given index must be in the range 0..n-1, where n is the
262
     * value returned by <code>countEquivalentIDs(id)</code>.  For
263
     * some value of 'index', the returned value will be equal to the
264
     * given id.  If the given id is not a valid system time zone, or
265
     * if 'index' is out of range, then returns an empty string.
266
     * @param id a system time zone ID
267
     * @param index a value from 0 to n-1, where n is the value
268
     * returned by <code>countEquivalentIDs(id)</code>
269
     * @return the ID of the index-th zone in the equivalency group
270
     * containing 'id', or an empty string if 'id' is not a valid
271
     * system ID or 'index' is out of range
272
     * @see #countEquivalentIDs
273
     * @stable ICU 2.0
274
     */
275
    static const UnicodeString U_EXPORT2 getEquivalentID(const UnicodeString& id,
276
                                               int32_t index);
277
278
    /**
279
     * Creates an instance of TimeZone detected from the current host
280
     * system configuration. Note that ICU4C does not change the default
281
     * time zone unless TimeZone::adoptDefault(TimeZone*) or
282
     * TimeZone::setDefault(const TimeZone&) is explicitly called by a
283
     * user. This method does not update the current ICU's default,
284
     * and may return a different TimeZone from the one returned by
285
     * TimeZone::createDefault().
286
     *
287
     * <p>This function is not thread safe.</p>
288
     *
289
     * @return  A new instance of TimeZone detected from the current host system
290
     *          configuration.
291
     * @stable ICU 55
292
     */
293
    static TimeZone* U_EXPORT2 detectHostTimeZone();
294
295
    /**
296
     * Creates a new copy of the default TimeZone for this host. Unless the default time
297
     * zone has already been set using adoptDefault() or setDefault(), the default is
298
     * determined by querying the system using methods in TPlatformUtilities. If the
299
     * system routines fail, or if they specify a TimeZone or TimeZone offset which is not
300
     * recognized, the TimeZone indicated by the ID kLastResortID is instantiated
301
     * and made the default.
302
     *
303
     * @return   A default TimeZone. Clients are responsible for deleting the time zone
304
     *           object returned.
305
     * @stable ICU 2.0
306
     */
307
    static TimeZone* U_EXPORT2 createDefault(void);
308
309
#define ICU_TZ_HAS_RECREATE_DEFAULT
310
    static void U_EXPORT2 recreateDefault();
311
312
    /**
313
     * Sets the default time zone (i.e., what's returned by createDefault()) to be the
314
     * specified time zone.  If NULL is specified for the time zone, the default time
315
     * zone is set to the default host time zone.  This call adopts the TimeZone object
316
     * passed in; the client is no longer responsible for deleting it.
317
     *
318
     * <p>This function is not thread safe. It is an error for multiple threads
319
     * to concurrently attempt to set the default time zone, or for any thread
320
     * to attempt to reference the default zone while another thread is setting it.
321
     *
322
     * @param zone  A pointer to the new TimeZone object to use as the default.
323
     * @stable ICU 2.0
324
     */
325
    static void U_EXPORT2 adoptDefault(TimeZone* zone);
326
327
#ifndef U_HIDE_SYSTEM_API
328
    /**
329
     * Same as adoptDefault(), except that the TimeZone object passed in is NOT adopted;
330
     * the caller remains responsible for deleting it.
331
     *
332
     * <p>See the thread safety note under adoptDefault().
333
     *
334
     * @param zone  The given timezone.
335
     * @system
336
     * @stable ICU 2.0
337
     */
338
    static void U_EXPORT2 setDefault(const TimeZone& zone);
339
#endif  /* U_HIDE_SYSTEM_API */
340
341
    /**
342
     * Returns the timezone data version currently used by ICU.
343
     * @param status Output param to filled in with a success or an error.
344
     * @return the version string, such as "2007f"
345
     * @stable ICU 3.8
346
     */
347
    static const char* U_EXPORT2 getTZDataVersion(UErrorCode& status);
348
349
    /**
350
     * Returns the canonical system timezone ID or the normalized
351
     * custom time zone ID for the given time zone ID.
352
     * @param id            The input time zone ID to be canonicalized.
353
     * @param canonicalID   Receives the canonical system time zone ID
354
     *                      or the custom time zone ID in normalized format.
355
     * @param status        Receives the status.  When the given time zone ID
356
     *                      is neither a known system time zone ID nor a
357
     *                      valid custom time zone ID, U_ILLEGAL_ARGUMENT_ERROR
358
     *                      is set.
359
     * @return A reference to the result.
360
     * @stable ICU 4.0
361
     */
362
    static UnicodeString& U_EXPORT2 getCanonicalID(const UnicodeString& id,
363
        UnicodeString& canonicalID, UErrorCode& status);
364
365
    /**
366
     * Returns the canonical system time zone ID or the normalized
367
     * custom time zone ID for the given time zone ID.
368
     * @param id            The input time zone ID to be canonicalized.
369
     * @param canonicalID   Receives the canonical system time zone ID
370
     *                      or the custom time zone ID in normalized format.
371
     * @param isSystemID    Receives if the given ID is a known system
372
     *                      time zone ID.
373
     * @param status        Receives the status.  When the given time zone ID
374
     *                      is neither a known system time zone ID nor a
375
     *                      valid custom time zone ID, U_ILLEGAL_ARGUMENT_ERROR
376
     *                      is set.
377
     * @return A reference to the result.
378
     * @stable ICU 4.0
379
     */
380
    static UnicodeString& U_EXPORT2 getCanonicalID(const UnicodeString& id,
381
        UnicodeString& canonicalID, UBool& isSystemID, UErrorCode& status);
382
383
    /**
384
    * Converts a system time zone ID to an equivalent Windows time zone ID. For example,
385
    * Windows time zone ID "Pacific Standard Time" is returned for input "America/Los_Angeles".
386
    *
387
    * <p>There are system time zones that cannot be mapped to Windows zones. When the input
388
    * system time zone ID is unknown or unmappable to a Windows time zone, then the result will be
389
    * empty, but the operation itself remains successful (no error status set on return).
390
    *
391
    * <p>This implementation utilizes <a href="http://unicode.org/cldr/charts/supplemental/zone_tzid.html">
392
    * Zone-Tzid mapping data</a>. The mapping data is updated time to time. To get the latest changes,
393
    * please read the ICU user guide section <a href="http://userguide.icu-project.org/datetime/timezone#TOC-Updating-the-Time-Zone-Data">
394
    * Updating the Time Zone Data</a>.
395
    *
396
    * @param id        A system time zone ID.
397
    * @param winid     Receives a Windows time zone ID. When the input system time zone ID is unknown
398
    *                  or unmappable to a Windows time zone ID, then an empty string is set on return.
399
    * @param status    Receives the status.
400
    * @return          A reference to the result (<code>winid</code>).
401
    * @see getIDForWindowsID
402
    *
403
    * @stable ICU 52
404
    */
405
    static UnicodeString& U_EXPORT2 getWindowsID(const UnicodeString& id,
406
        UnicodeString& winid, UErrorCode& status);
407
408
    /**
409
    * Converts a Windows time zone ID to an equivalent system time zone ID
410
    * for a region. For example, system time zone ID "America/Los_Angeles" is returned
411
    * for input Windows ID "Pacific Standard Time" and region "US" (or <code>null</code>),
412
    * "America/Vancouver" is returned for the same Windows ID "Pacific Standard Time" and
413
    * region "CA".
414
    *
415
    * <p>Not all Windows time zones can be mapped to system time zones. When the input
416
    * Windows time zone ID is unknown or unmappable to a system time zone, then the result
417
    * will be empty, but the operation itself remains successful (no error status set on return).
418
    *
419
    * <p>This implementation utilizes <a href="http://unicode.org/cldr/charts/supplemental/zone_tzid.html">
420
    * Zone-Tzid mapping data</a>. The mapping data is updated time to time. To get the latest changes,
421
    * please read the ICU user guide section <a href="http://userguide.icu-project.org/datetime/timezone#TOC-Updating-the-Time-Zone-Data">
422
    * Updating the Time Zone Data</a>.
423
    *
424
    * @param winid     A Windows time zone ID.
425
    * @param region    A null-terminated region code, or <code>NULL</code> if no regional preference.
426
    * @param id        Receives a system time zone ID. When the input Windows time zone ID is unknown
427
    *                  or unmappable to a system time zone ID, then an empty string is set on return.
428
    * @param status    Receives the status.
429
    * @return          A reference to the result (<code>id</code>).
430
    * @see getWindowsID
431
    *
432
    * @stable ICU 52
433
    */
434
    static UnicodeString& U_EXPORT2 getIDForWindowsID(const UnicodeString& winid, const char* region,
435
        UnicodeString& id, UErrorCode& status);
436
437
    /**
438
     * Returns true if the two TimeZones are equal.  (The TimeZone version only compares
439
     * IDs, but subclasses are expected to also compare the fields they add.)
440
     *
441
     * @param that  The TimeZone object to be compared with.
442
     * @return      True if the given TimeZone is equal to this TimeZone; false
443
     *              otherwise.
444
     * @stable ICU 2.0
445
     */
446
    virtual UBool operator==(const TimeZone& that) const;
447
448
    /**
449
     * Returns true if the two TimeZones are NOT equal; that is, if operator==() returns
450
     * false.
451
     *
452
     * @param that  The TimeZone object to be compared with.
453
     * @return      True if the given TimeZone is not equal to this TimeZone; false
454
     *              otherwise.
455
     * @stable ICU 2.0
456
     */
457
0
    UBool operator!=(const TimeZone& that) const {return !operator==(that);}
458
459
    /**
460
     * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add
461
     * to GMT to get local time in this time zone, taking daylight savings time into
462
     * account) as of a particular reference date.  The reference date is used to determine
463
     * whether daylight savings time is in effect and needs to be figured into the offset
464
     * that is returned (in other words, what is the adjusted GMT offset in this time zone
465
     * at this particular date and time?).  For the time zones produced by createTimeZone(),
466
     * the reference data is specified according to the Gregorian calendar, and the date
467
     * and time fields are local standard time.
468
     *
469
     * <p>Note: Don't call this method. Instead, call the getOffset(UDate...) overload,
470
     * which returns both the raw and the DST offset for a given time. This method
471
     * is retained only for backward compatibility.
472
     *
473
     * @param era        The reference date's era
474
     * @param year       The reference date's year
475
     * @param month      The reference date's month (0-based; 0 is January)
476
     * @param day        The reference date's day-in-month (1-based)
477
     * @param dayOfWeek  The reference date's day-of-week (1-based; 1 is Sunday)
478
     * @param millis     The reference date's milliseconds in day, local standard time
479
     * @param status     Output param to filled in with a success or an error.
480
     * @return           The offset in milliseconds to add to GMT to get local time.
481
     * @stable ICU 2.0
482
     */
483
    virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
484
                              uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const = 0;
485
486
    /**
487
     * Gets the time zone offset, for current date, modified in case of
488
     * daylight savings. This is the offset to add *to* UTC to get local time.
489
     *
490
     * <p>Note: Don't call this method. Instead, call the getOffset(UDate...) overload,
491
     * which returns both the raw and the DST offset for a given time. This method
492
     * is retained only for backward compatibility.
493
     *
494
     * @param era the era of the given date.
495
     * @param year the year in the given date.
496
     * @param month the month in the given date.
497
     * Month is 0-based. e.g., 0 for January.
498
     * @param day the day-in-month of the given date.
499
     * @param dayOfWeek the day-of-week of the given date.
500
     * @param milliseconds the millis in day in <em>standard</em> local time.
501
     * @param monthLength the length of the given month in days.
502
     * @param status     Output param to filled in with a success or an error.
503
     * @return the offset to add *to* GMT to get local time.
504
     * @stable ICU 2.0
505
     */
506
    virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
507
                           uint8_t dayOfWeek, int32_t milliseconds,
508
                           int32_t monthLength, UErrorCode& status) const = 0;
509
510
    /**
511
     * Returns the time zone raw and GMT offset for the given moment
512
     * in time.  Upon return, local-millis = GMT-millis + rawOffset +
513
     * dstOffset.  All computations are performed in the proleptic
514
     * Gregorian calendar.  The default implementation in the TimeZone
515
     * class delegates to the 8-argument getOffset().
516
     *
517
     * @param date moment in time for which to return offsets, in
518
     * units of milliseconds from January 1, 1970 0:00 GMT, either GMT
519
     * time or local wall time, depending on `local'.
520
     * @param local if true, `date' is local wall time; otherwise it
521
     * is in GMT time.
522
     * @param rawOffset output parameter to receive the raw offset, that
523
     * is, the offset not including DST adjustments
524
     * @param dstOffset output parameter to receive the DST offset,
525
     * that is, the offset to be added to `rawOffset' to obtain the
526
     * total offset between local and GMT time. If DST is not in
527
     * effect, this value is zero; otherwise it is a positive value,
528
     * typically one hour.
529
     * @param ec input-output error code
530
     *
531
     * @stable ICU 2.8
532
     */
533
    virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
534
                           int32_t& dstOffset, UErrorCode& ec) const;
535
536
    /**
537
     * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add
538
     * to GMT to get local time, before taking daylight savings time into account).
539
     *
540
     * @param offsetMillis  The new raw GMT offset for this time zone.
541
     * @stable ICU 2.0
542
     */
543
    virtual void setRawOffset(int32_t offsetMillis) = 0;
544
545
    /**
546
     * Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add
547
     * to GMT to get local time, before taking daylight savings time into account).
548
     *
549
     * @return   The TimeZone's raw GMT offset.
550
     * @stable ICU 2.0
551
     */
552
    virtual int32_t getRawOffset(void) const = 0;
553
554
    /**
555
     * Fills in "ID" with the TimeZone's ID.
556
     *
557
     * @param ID  Receives this TimeZone's ID.
558
     * @return    A reference to 'ID'
559
     * @stable ICU 2.0
560
     */
561
    UnicodeString& getID(UnicodeString& ID) const;
562
563
    /**
564
     * Sets the TimeZone's ID to the specified value.  This doesn't affect any other
565
     * fields (for example, if you say<
566
     * blockquote><pre>
567
     * .     TimeZone* foo = TimeZone::createTimeZone("America/New_York");
568
     * .     foo.setID("America/Los_Angeles");
569
     * </pre>\htmlonly</blockquote>\endhtmlonly
570
     * the time zone's GMT offset and daylight-savings rules don't change to those for
571
     * Los Angeles.  They're still those for New York.  Only the ID has changed.)
572
     *
573
     * @param ID  The new time zone ID.
574
     * @stable ICU 2.0
575
     */
576
    void setID(const UnicodeString& ID);
577
578
    /**
579
     * Enum for use with getDisplayName
580
     * @stable ICU 2.4
581
     */
582
    enum EDisplayType {
583
        /**
584
         * Selector for short display name
585
         * @stable ICU 2.4
586
         */
587
        SHORT = 1,
588
        /**
589
         * Selector for long display name
590
         * @stable ICU 2.4
591
         */
592
        LONG,
593
        /**
594
         * Selector for short generic display name
595
         * @stable ICU 4.4
596
         */
597
        SHORT_GENERIC,
598
        /**
599
         * Selector for long generic display name
600
         * @stable ICU 4.4
601
         */
602
        LONG_GENERIC,
603
        /**
604
         * Selector for short display name derived
605
         * from time zone offset
606
         * @stable ICU 4.4
607
         */
608
        SHORT_GMT,
609
        /**
610
         * Selector for long display name derived
611
         * from time zone offset
612
         * @stable ICU 4.4
613
         */
614
        LONG_GMT,
615
        /**
616
         * Selector for short display name derived
617
         * from the time zone's fallback name
618
         * @stable ICU 4.4
619
         */
620
        SHORT_COMMONLY_USED,
621
        /**
622
         * Selector for long display name derived
623
         * from the time zone's fallback name
624
         * @stable ICU 4.4
625
         */
626
        GENERIC_LOCATION
627
    };
628
629
    /**
630
     * Returns a name of this time zone suitable for presentation to the user
631
     * in the default locale.
632
     * This method returns the long name, not including daylight savings.
633
     * If the display name is not available for the locale,
634
     * then this method returns a string in the localized GMT offset format
635
     * such as <code>GMT[+-]HH:mm</code>.
636
     * @param result the human-readable name of this time zone in the default locale.
637
     * @return       A reference to 'result'.
638
     * @stable ICU 2.0
639
     */
640
    UnicodeString& getDisplayName(UnicodeString& result) const;
641
642
    /**
643
     * Returns a name of this time zone suitable for presentation to the user
644
     * in the specified locale.
645
     * This method returns the long name, not including daylight savings.
646
     * If the display name is not available for the locale,
647
     * then this method returns a string in the localized GMT offset format
648
     * such as <code>GMT[+-]HH:mm</code>.
649
     * @param locale the locale in which to supply the display name.
650
     * @param result the human-readable name of this time zone in the given locale
651
     *               or in the default locale if the given locale is not recognized.
652
     * @return       A reference to 'result'.
653
     * @stable ICU 2.0
654
     */
655
    UnicodeString& getDisplayName(const Locale& locale, UnicodeString& result) const;
656
657
    /**
658
     * Returns a name of this time zone suitable for presentation to the user
659
     * in the default locale.
660
     * If the display name is not available for the locale,
661
     * then this method returns a string in the localized GMT offset format
662
     * such as <code>GMT[+-]HH:mm</code>.
663
     * @param daylight if true, return the daylight savings name.
664
     * @param style
665
     * @param result the human-readable name of this time zone in the default locale.
666
     * @return       A reference to 'result'.
667
     * @stable ICU 2.0
668
     */
669
    UnicodeString& getDisplayName(UBool daylight, EDisplayType style, UnicodeString& result) const;
670
671
    /**
672
     * Returns a name of this time zone suitable for presentation to the user
673
     * in the specified locale.
674
     * If the display name is not available for the locale,
675
     * then this method returns a string in the localized GMT offset format
676
     * such as <code>GMT[+-]HH:mm</code>.
677
     * @param daylight if true, return the daylight savings name.
678
     * @param style
679
     * @param locale the locale in which to supply the display name.
680
     * @param result the human-readable name of this time zone in the given locale
681
     *               or in the default locale if the given locale is not recognized.
682
     * @return       A refence to 'result'.
683
     * @stable ICU 2.0
684
     */
685
    UnicodeString& getDisplayName(UBool daylight, EDisplayType style, const Locale& locale, UnicodeString& result) const;
686
    
687
    /**
688
     * Queries if this time zone uses daylight savings time.
689
     * @return true if this time zone uses daylight savings time,
690
     * false, otherwise.
691
     * <p><strong>Note:</strong>The default implementation of
692
     * ICU TimeZone uses the tz database, which supports historic
693
     * rule changes, for system time zones. With the implementation,
694
     * there are time zones that used daylight savings time in the
695
     * past, but no longer used currently. For example, Asia/Tokyo has
696
     * never used daylight savings time since 1951. Most clients would
697
     * expect that this method to return <code>FALSE</code> for such case.
698
     * The default implementation of this method returns <code>TRUE</code>
699
     * when the time zone uses daylight savings time in the current
700
     * (Gregorian) calendar year.
701
     * <p>In Java 7, <code>observesDaylightTime()</code> was added in
702
     * addition to <code>useDaylightTime()</code>. In Java, <code>useDaylightTime()</code>
703
     * only checks if daylight saving time is observed by the last known
704
     * rule. This specification might not be what most users would expect
705
     * if daylight saving time is currently observed, but not scheduled
706
     * in future. In this case, Java's <code>userDaylightTime()</code> returns
707
     * <code>false</code>. To resolve the issue, Java 7 added <code>observesDaylightTime()</code>,
708
     * which takes the current rule into account. The method <code>observesDaylightTime()</code>
709
     * was added in ICU4J for supporting API signature compatibility with JDK.
710
     * In general, ICU4C also provides JDK compatible methods, but the current
711
     * implementation <code>userDaylightTime()</code> serves the purpose
712
     * (takes the current rule into account), <code>observesDaylightTime()</code>
713
     * is not added in ICU4C. In addition to <code>useDaylightTime()</code>, ICU4C
714
     * <code>BasicTimeZone</code> class (Note that <code>TimeZone::createTimeZone(const UnicodeString &ID)</code>
715
     * always returns a <code>BasicTimeZone</code>) provides a series of methods allowing
716
     * historic and future time zone rule iteration, so you can check if daylight saving
717
     * time is observed or not within a given period.
718
     * 
719
     * @stable ICU 2.0
720
     */
721
    virtual UBool useDaylightTime(void) const = 0;
722
723
    /**
724
     * Queries if the given date is in daylight savings time in
725
     * this time zone.
726
     * This method is wasteful since it creates a new GregorianCalendar and
727
     * deletes it each time it is called. This is a deprecated method
728
     * and provided only for Java compatibility.
729
     *
730
     * @param date the given UDate.
731
     * @param status Output param filled in with success/error code.
732
     * @return true if the given date is in daylight savings time,
733
     * false, otherwise.
734
     * @deprecated ICU 2.4. Use Calendar::inDaylightTime() instead.
735
     */
736
    virtual UBool inDaylightTime(UDate date, UErrorCode& status) const = 0;
737
738
    /**
739
     * Returns true if this zone has the same rule and offset as another zone.
740
     * That is, if this zone differs only in ID, if at all.
741
     * @param other the <code>TimeZone</code> object to be compared with
742
     * @return true if the given zone is the same as this one,
743
     * with the possible exception of the ID
744
     * @stable ICU 2.0
745
     */
746
    virtual UBool hasSameRules(const TimeZone& other) const;
747
748
    /**
749
     * Clones TimeZone objects polymorphically. Clients are responsible for deleting
750
     * the TimeZone object cloned.
751
     *
752
     * @return   A new copy of this TimeZone object.
753
     * @stable ICU 2.0
754
     */
755
    virtual TimeZone* clone(void) const = 0;
756
757
    /**
758
     * Return the class ID for this class.  This is useful only for
759
     * comparing to a return value from getDynamicClassID().
760
     * @return The class ID for all objects of this class.
761
     * @stable ICU 2.0
762
     */
763
    static UClassID U_EXPORT2 getStaticClassID(void);
764
765
    /**
766
     * Returns a unique class ID POLYMORPHICALLY. This method is to
767
     * implement a simple version of RTTI, since not all C++ compilers support genuine
768
     * RTTI. Polymorphic operator==() and clone() methods call this method.
769
     * <P>
770
     * Concrete subclasses of TimeZone must use the UOBJECT_DEFINE_RTTI_IMPLEMENTATION
771
     *  macro from uobject.h in their implementation to provide correct RTTI information.
772
     * @return   The class ID for this object. All objects of a given class have the
773
     *           same class ID. Objects of other classes have different class IDs.
774
     * @stable ICU 2.0
775
     */
776
    virtual UClassID getDynamicClassID(void) const = 0;
777
    
778
    /**
779
     * Returns the amount of time to be added to local standard time
780
     * to get local wall clock time.
781
     * <p>
782
     * The default implementation always returns 3600000 milliseconds
783
     * (i.e., one hour) if this time zone observes Daylight Saving
784
     * Time. Otherwise, 0 (zero) is returned.
785
     * <p>
786
     * If an underlying TimeZone implementation subclass supports
787
     * historical Daylight Saving Time changes, this method returns
788
     * the known latest daylight saving value.
789
     *
790
     * @return the amount of saving time in milliseconds
791
     * @stable ICU 3.6
792
     */
793
    virtual int32_t getDSTSavings() const;
794
795
    /**
796
     * Gets the region code associated with the given
797
     * system time zone ID. The region code is either ISO 3166
798
     * 2-letter country code or UN M.49 3-digit area code.
799
     * When the time zone is not associated with a specific location,
800
     * for example - "Etc/UTC", "EST5EDT", then this method returns
801
     * "001" (UN M.49 area code for World).
802
     * 
803
     * @param id            The system time zone ID.
804
     * @param region        Output buffer for receiving the region code.
805
     * @param capacity      The size of the output buffer.
806
     * @param status        Receives the status.  When the given time zone ID
807
     *                      is not a known system time zone ID,
808
     *                      U_ILLEGAL_ARGUMENT_ERROR is set.
809
     * @return The length of the output region code.
810
     * @stable ICU 4.8 
811
     */ 
812
    static int32_t U_EXPORT2 getRegion(const UnicodeString& id, 
813
        char *region, int32_t capacity, UErrorCode& status); 
814
815
protected:
816
817
    /**
818
     * Default constructor.  ID is initialized to the empty string.
819
     * @stable ICU 2.0
820
     */
821
    TimeZone();
822
823
    /**
824
     * Construct a TimeZone with a given ID.
825
     * @param id a system time zone ID
826
     * @stable ICU 2.0
827
     */
828
    TimeZone(const UnicodeString &id);
829
830
    /**
831
     * Copy constructor.
832
     * @param source the object to be copied.
833
     * @stable ICU 2.0
834
     */
835
    TimeZone(const TimeZone& source);
836
837
    /**
838
     * Default assignment operator.
839
     * @param right the object to be copied.
840
     * @stable ICU 2.0
841
     */
842
    TimeZone& operator=(const TimeZone& right);
843
844
#ifndef U_HIDE_INTERNAL_API
845
    /**
846
     * Utility function. For internally loading rule data.
847
     * @param top Top resource bundle for tz data
848
     * @param ruleid ID of rule to load
849
     * @param oldbundle Old bundle to reuse or NULL
850
     * @param status Status parameter
851
     * @return either a new bundle or *oldbundle
852
     * @internal
853
     */
854
    static UResourceBundle* loadRule(const UResourceBundle* top, const UnicodeString& ruleid, UResourceBundle* oldbundle, UErrorCode&status);
855
#endif  /* U_HIDE_INTERNAL_API */
856
857
private:
858
    friend class ZoneMeta;
859
860
861
    static TimeZone*        createCustomTimeZone(const UnicodeString&); // Creates a time zone based on the string.
862
863
    /**
864
     * Finds the given ID in the Olson tzdata. If the given ID is found in the tzdata,
865
     * returns the pointer to the ID resource. This method is exposed through ZoneMeta class
866
     * for ICU internal implementation and useful for building hashtable using a time zone
867
     * ID as a key.
868
     * @param id zone id string
869
     * @return the pointer of the ID resource, or NULL.
870
     */
871
    static const char16_t* findID(const UnicodeString& id);
872
873
    /**
874
     * Resolve a link in Olson tzdata.  When the given id is known and it's not a link,
875
     * the id itself is returned.  When the given id is known and it is a link, then
876
     * dereferenced zone id is returned.  When the given id is unknown, then it returns
877
     * NULL.
878
     * @param id zone id string
879
     * @return the dereferenced zone or NULL
880
     */
881
    static const char16_t* dereferOlsonLink(const UnicodeString& id);
882
883
    /**
884
     * Returns the region code associated with the given zone,
885
     * or NULL if the zone is not known.
886
     * @param id zone id string
887
     * @return the region associated with the given zone
888
     */
889
    static const char16_t* getRegion(const UnicodeString& id);
890
891
  public:
892
#ifndef U_HIDE_INTERNAL_API
893
    /**
894
     * Returns the region code associated with the given zone,
895
     * or NULL if the zone is not known.
896
     * @param id zone id string
897
     * @param status Status parameter
898
     * @return the region associated with the given zone
899
     * @internal
900
     */
901
    static const char16_t* getRegion(const UnicodeString& id, UErrorCode& status);
902
#endif  /* U_HIDE_INTERNAL_API */
903
904
  private:
905
    /**
906
     * Parses the given custom time zone identifier
907
     * @param id id A string of the form GMT[+-]hh:mm, GMT[+-]hhmm, or
908
     * GMT[+-]hh.
909
     * @param sign Receves parsed sign, 1 for positive, -1 for negative.
910
     * @param hour Receives parsed hour field
911
     * @param minute Receives parsed minute field
912
     * @param second Receives parsed second field
913
     * @return Returns TRUE when the given custom id is valid.
914
     */
915
    static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour,
916
        int32_t& minute, int32_t& second);
917
918
    /**
919
     * Parse a custom time zone identifier and return the normalized
920
     * custom time zone identifier for the given custom id string.
921
     * @param id a string of the form GMT[+-]hh:mm, GMT[+-]hhmm, or
922
     * GMT[+-]hh.
923
     * @param normalized Receives the normalized custom ID
924
     * @param status Receives the status.  When the input ID string is invalid,
925
     * U_ILLEGAL_ARGUMENT_ERROR is set.
926
     * @return The normalized custom id string.
927
    */
928
    static UnicodeString& getCustomID(const UnicodeString& id, UnicodeString& normalized,
929
        UErrorCode& status);
930
931
    /**
932
     * Returns the normalized custome time zone ID for the given offset fields.
933
     * @param hour offset hours
934
     * @param min offset minutes
935
     * @param sec offset seconds
936
     * @param negative sign of the offset, TRUE for negative offset.
937
     * @param id Receves the format result (normalized custom ID)
938
     * @return The reference to id
939
     */
940
    static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,
941
        UBool negative, UnicodeString& id);
942
943
    UnicodeString           fID;    // this time zone's ID
944
945
    friend class TZEnumeration;
946
};
947
948
949
// -------------------------------------
950
951
inline UnicodeString&
952
TimeZone::getID(UnicodeString& ID) const
953
0
{
954
0
    ID = fID;
955
0
    return ID;
956
0
}
957
958
// -------------------------------------
959
960
inline void
961
TimeZone::setID(const UnicodeString& ID)
962
0
{
963
0
    fID = ID;
964
0
}
965
U_NAMESPACE_END
966
967
#endif /* #if !UCONFIG_NO_FORMATTING */
968
969
#endif //_TIMEZONE
970
//eof