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