TimeZone
58 * Typically, you get a TimeZone using createDefault 59 * which creates a TimeZone based on the time zone where the program 60 * is running. For example, for a program running in Japan, createDefault 61 * creates a TimeZone object based on Japanese Standard Time. 62 * 63 *
createDefault
64 * You can also get a TimeZone using createTimeZone along 65 * with a time zone ID. For instance, the time zone ID for the US Pacific 66 * Time zone is "America/Los_Angeles". So, you can get a Pacific Time TimeZone object 67 * with: 68 * \htmlonly
createTimeZone
\endhtmlonly 69 * 70 * TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles"); 71 * 72 * \htmlonly
70 * TimeZone *tz = TimeZone::createTimeZone("America/Los_Angeles"); 71 *
createEnumeration
getCanonicalID
\endhtmlonly 82 * 83 * GMT[+|-]hh[[:]mm] 84 * 85 * \htmlonly
83 * GMT[+|-]hh[[:]mm] 84 *
114 * The TimeZone class contains a static list containing a TimeZone object for every 115 * combination of GMT offset and daylight-savings time rules currently in use in the 116 * world, each with a unique ID. Each ID consists of a region (usually a continent or 117 * ocean) and a city in that region, separated by a slash, (for example, US Pacific 118 * Time is "America/Los_Angeles.") Because older versions of this class used 119 * three- or four-letter abbreviations instead, there is also a table that maps the older 120 * abbreviations to the newer ones (for example, "PST" maps to "America/Los_Angeles"). 121 * Anywhere the API requires an ID, you can use either form. 122 *
123 * To create a new TimeZone, you call the factory function TimeZone::createTimeZone() 124 * and pass it a time zone ID. You can use the createEnumeration() function to 125 * obtain a list of all the time zone IDs recognized by createTimeZone(). 126 *
127 * You can also use TimeZone::createDefault() to create a TimeZone. This function uses 128 * platform-specific APIs to produce a TimeZone for the time zone corresponding to 129 * the client's computer's physical location. For example, if you're in Japan (assuming 130 * your machine is set up correctly), TimeZone::createDefault() will return a TimeZone 131 * for Japanese Standard Time ("Asia/Tokyo"). 132 */ 133 class U_I18N_API TimeZone : public UObject { 134 public: 135 /** 136 * @stable ICU 2.0 137 */ 138 virtual ~TimeZone(); 139 140 /** 141 * Returns the "unknown" time zone. 142 * It behaves like the GMT/UTC time zone but has the 143 * UCAL_UNKNOWN_ZONE_ID = "Etc/Unknown". 144 * createTimeZone() returns a mutable clone of this time zone if the input ID is not recognized. 145 * 146 * @return the "unknown" time zone. 147 * @see UCAL_UNKNOWN_ZONE_ID 148 * @see createTimeZone 149 * @see getGMT 150 * @stable ICU 49 151 */ 152 static const TimeZone& U_EXPORT2 getUnknown(); 153 154 /** 155 * The GMT (=UTC) time zone has a raw offset of zero and does not use daylight 156 * savings time. This is a commonly used time zone. 157 * 158 *
UCAL_UNKNOWN_ZONE_ID
Note: For backward compatibility reason, the ID used by the time 159 * zone returned by this method is "GMT", although the ICU's canonical 160 * ID for the GMT time zone is "Etc/GMT". 161 * 162 * @return the GMT/UTC time zone. 163 * @see getUnknown 164 * @stable ICU 2.0 165 */ 166 static const TimeZone* U_EXPORT2 getGMT(void); 167 168 /** 169 * Creates a TimeZone for the given ID. 170 * @param ID the ID for a TimeZone, such as "America/Los_Angeles", 171 * or a custom ID such as "GMT-8:00". 172 * @return the specified TimeZone, or a mutable clone of getUnknown() 173 * if the given ID cannot be understood or if the given ID is "Etc/Unknown". 174 * The return result is guaranteed to be non-nullptr. 175 * If you require that the specific zone asked for be returned, 176 * compare the result with getUnknown() or check the ID of the return result. 177 * @stable ICU 2.0 178 */ 179 static TimeZone* U_EXPORT2 createTimeZone(const UnicodeString& ID); 180 181 /** 182 * Returns an enumeration over system time zone IDs with the given 183 * filter conditions. 184 * @param zoneType The system time zone type. 185 * @param region The ISO 3166 two-letter country code or UN M.49 186 * three-digit area code. When nullptr, no filtering 187 * done by region. 188 * @param rawOffset An offset from GMT in milliseconds, ignoring 189 * the effect of daylight savings time, if any. 190 * When nullptr, no filtering done by zone offset. 191 * @param ec Output param to filled in with a success or 192 * an error. 193 * @return an enumeration object, owned by the caller. 194 * @stable ICU 4.8 195 */ 196 static StringEnumeration* U_EXPORT2 createTimeZoneIDEnumeration( 197 USystemTimeZoneType zoneType, 198 const char* region, 199 const int32_t* rawOffset, 200 UErrorCode& ec); 201 202 #ifndef U_HIDE_DEPRECATED_API 203 /** 204 * Returns an enumeration over all recognized time zone IDs. (i.e., 205 * all strings that createTimeZone() accepts) 206 * 207 * @return an enumeration object, owned by the caller. 208 * @deprecated ICU 70 Use createEnumeration(UErrorCode&) instead. 209 */ 210 static StringEnumeration* U_EXPORT2 createEnumeration(); 211 #endif // U_HIDE_DEPRECATED_API 212 213 /** 214 * Returns an enumeration over all recognized time zone IDs. (i.e., 215 * all strings that createTimeZone() accepts) 216 * 217 * @param status Receives the status. 218 * @return an enumeration object, owned by the caller. 219 * @stable ICU 70 220 */ 221 static StringEnumeration* U_EXPORT2 createEnumeration(UErrorCode& status); 222 223 #ifndef U_HIDE_DEPRECATED_API 224 /** 225 * Returns an enumeration over time zone IDs with a given raw 226 * offset from GMT. There may be several times zones with the 227 * same GMT offset that differ in the way they handle daylight 228 * savings time. For example, the state of Arizona doesn't 229 * observe daylight savings time. If you ask for the time zone 230 * IDs corresponding to GMT-7:00, you'll get back an enumeration 231 * over two time zone IDs: "America/Denver," which corresponds to 232 * Mountain Standard Time in the winter and Mountain Daylight Time 233 * in the summer, and "America/Phoenix", which corresponds to 234 * Mountain Standard Time year-round, even in the summer. 235 * 236 * @param rawOffset an offset from GMT in milliseconds, ignoring 237 * the effect of daylight savings time, if any 238 * @return an enumeration object, owned by the caller 239 * @deprecated ICU 70 Use createEnumerationForRawOffset(int32_t,UErrorCode&) instead. 240 */ 241 static StringEnumeration* U_EXPORT2 createEnumeration(int32_t rawOffset); 242 #endif // U_HIDE_DEPRECATED_API 243 244 /** 245 * Returns an enumeration over time zone IDs with a given raw 246 * offset from GMT. There may be several times zones with the 247 * same GMT offset that differ in the way they handle daylight 248 * savings time. For example, the state of Arizona doesn't 249 * observe daylight savings time. If you ask for the time zone 250 * IDs corresponding to GMT-7:00, you'll get back an enumeration 251 * over two time zone IDs: "America/Denver," which corresponds to 252 * Mountain Standard Time in the winter and Mountain Daylight Time 253 * in the summer, and "America/Phoenix", which corresponds to 254 * Mountain Standard Time year-round, even in the summer. 255 * 256 * @param rawOffset an offset from GMT in milliseconds, ignoring 257 * the effect of daylight savings time, if any 258 * @param status Receives the status. 259 * @return an enumeration object, owned by the caller 260 * @stable ICU 70 261 */ 262 static StringEnumeration* U_EXPORT2 createEnumerationForRawOffset(int32_t rawOffset, UErrorCode& status); 263 264 #ifndef U_HIDE_DEPRECATED_API 265 /** 266 * Returns an enumeration over time zone IDs associated with the 267 * given region. Some zones are affiliated with no region 268 * (e.g., "UTC"); these may also be retrieved, as a group. 269 * 270 * @param region The ISO 3166 two-letter country code, or nullptr to 271 * retrieve zones not affiliated with any region. 272 * @return an enumeration object, owned by the caller 273 * @deprecated ICU 70 Use createEnumerationForRegion(const char*,UErrorCode&) instead. 274 */ 275 static StringEnumeration* U_EXPORT2 createEnumeration(const char* region); 276 #endif // U_HIDE_DEPRECATED_API 277 278 /** 279 * Returns an enumeration over time zone IDs associated with the 280 * given region. Some zones are affiliated with no region 281 * (e.g., "UTC"); these may also be retrieved, as a group. 282 * 283 * @param region The ISO 3166 two-letter country code, or nullptr to 284 * retrieve zones not affiliated with any region. 285 * @param status Receives the status. 286 * @return an enumeration object, owned by the caller 287 * @stable ICU 70 288 */ 289 static StringEnumeration* U_EXPORT2 createEnumerationForRegion(const char* region, UErrorCode& status); 290 291 /** 292 * Returns the number of IDs in the equivalency group that 293 * includes the given ID. An equivalency group contains zones 294 * that have the same GMT offset and rules. 295 * 296 *
The returned count includes the given ID; it is always >= 1. 297 * The given ID must be a system time zone. If it is not, returns 298 * zero. 299 * @param id a system time zone ID 300 * @return the number of zones in the equivalency group containing 301 * 'id', or zero if 'id' is not a valid system ID 302 * @see #getEquivalentID 303 * @stable ICU 2.0 304 */ 305 static int32_t U_EXPORT2 countEquivalentIDs(const UnicodeString& id); 306 307 /** 308 * Returns an ID in the equivalency group that 309 * includes the given ID. An equivalency group contains zones 310 * that have the same GMT offset and rules. 311 * 312 *
The given index must be in the range 0..n-1, where n is the 313 * value returned by countEquivalentIDs(id). For 314 * some value of 'index', the returned value will be equal to the 315 * given id. If the given id is not a valid system time zone, or 316 * if 'index' is out of range, then returns an empty string. 317 * @param id a system time zone ID 318 * @param index a value from 0 to n-1, where n is the value 319 * returned by countEquivalentIDs(id) 320 * @return the ID of the index-th zone in the equivalency group 321 * containing 'id', or an empty string if 'id' is not a valid 322 * system ID or 'index' is out of range 323 * @see #countEquivalentIDs 324 * @stable ICU 2.0 325 */ 326 static const UnicodeString U_EXPORT2 getEquivalentID(const UnicodeString& id, 327 int32_t index); 328 329 /** 330 * Creates an instance of TimeZone detected from the current host 331 * system configuration. If the host system detection routines fail, 332 * or if they specify a TimeZone or TimeZone offset which is not 333 * recognized, then the special TimeZone "Etc/Unknown" is returned. 334 * 335 * Note that ICU4C does not change the default time zone unless 336 * `TimeZone::adoptDefault(TimeZone*)` or 337 * `TimeZone::setDefault(const TimeZone&)` is explicitly called by a 338 * user. This method does not update the current ICU's default, 339 * and may return a different TimeZone from the one returned by 340 * `TimeZone::createDefault()`. 341 * 342 *
countEquivalentIDs(id)
This function is not thread safe.
Note: For most of valid time zone IDs, this method returns an ID same as getCanonicalID(). 456 * getCanonicalID() is based on canonical time zone IDs defined in Unicode CLDR. 457 * These canonical time zone IDs in CLDR were based on very old version of the time zone database. 458 * In the IANA time zone database, some IDs were updated since then. This API returns a newer 459 * time zone ID. For example, CLDR defines "Asia/Calcutta" as the canonical time zone ID. This 460 * method returns "Asia/Kolkata" instead. 461 *
"Etc/Unknown" is a special time zone ID defined by CLDR. There are no corresponding zones 462 * in the IANA time zone database. Therefore, this API returns U_ILLEGAL_ARGUMENT_ERROR when the 463 * input ID is "Etc/Unknown". 464 * 465 * @param id The input time zone ID. 466 * @param ianaID Receives the preferred time zone ID in the IANA time zone database. When 467 * the given time zone ID is not a known time zone ID, this method sets an 468 * invalid (bogus) string. 469 * @param status Receives the status. When the given time zone ID is not a known time zone 470 * ID, U_ILLEGAL_ARGUMENT_ERROR is set. 471 * @return A reference to the result. 472 * @draft ICU 74 473 */ 474 static UnicodeString& U_EXPORT2 getIanaID(const UnicodeString&id, UnicodeString& ianaID, 475 UErrorCode& status); 476 #endif // U_HIDE_DRAFT_API 477 478 /** 479 * Converts a system time zone ID to an equivalent Windows time zone ID. For example, 480 * Windows time zone ID "Pacific Standard Time" is returned for input "America/Los_Angeles". 481 * 482 *
There are system time zones that cannot be mapped to Windows zones. When the input 483 * system time zone ID is unknown or unmappable to a Windows time zone, then the result will be 484 * empty, but the operation itself remains successful (no error status set on return). 485 * 486 *
This implementation utilizes 487 * Zone-Tzid mapping data. The mapping data is updated time to time. To get the latest changes, 488 * please read the ICU user guide section 489 * Updating the Time Zone Data. 490 * 491 * @param id A system time zone ID. 492 * @param winid Receives a Windows time zone ID. When the input system time zone ID is unknown 493 * or unmappable to a Windows time zone ID, then an empty string is set on return. 494 * @param status Receives the status. 495 * @return A reference to the result (winid). 496 * @see getIDForWindowsID 497 * 498 * @stable ICU 52 499 */ 500 static UnicodeString& U_EXPORT2 getWindowsID(const UnicodeString& id, 501 UnicodeString& winid, UErrorCode& status); 502 503 /** 504 * Converts a Windows time zone ID to an equivalent system time zone ID 505 * for a region. For example, system time zone ID "America/Los_Angeles" is returned 506 * for input Windows ID "Pacific Standard Time" and region "US" (or null), 507 * "America/Vancouver" is returned for the same Windows ID "Pacific Standard Time" and 508 * region "CA". 509 * 510 *
winid
null
Not all Windows time zones can be mapped to system time zones. When the input 511 * Windows time zone ID is unknown or unmappable to a system time zone, then the result 512 * will be empty, but the operation itself remains successful (no error status set on return). 513 * 514 *
This implementation utilizes 515 * Zone-Tzid mapping data. The mapping data is updated time to time. To get the latest changes, 516 * please read the ICU user guide section 517 * Updating the Time Zone Data. 518 * 519 * @param winid A Windows time zone ID. 520 * @param region A NUL-terminated region code, or nullptr if no regional preference. 521 * @param id Receives a system time zone ID. When the input Windows time zone ID is unknown 522 * or unmappable to a system time zone ID, then an empty string is set on return. 523 * @param status Receives the status. 524 * @return A reference to the result (id). 525 * @see getWindowsID 526 * 527 * @stable ICU 52 528 */ 529 static UnicodeString& U_EXPORT2 getIDForWindowsID(const UnicodeString& winid, const char* region, 530 UnicodeString& id, UErrorCode& status); 531 532 /** 533 * Returns true if the two TimeZones are equal. (The TimeZone version only compares 534 * IDs, but subclasses are expected to also compare the fields they add.) 535 * 536 * @param that The TimeZone object to be compared with. 537 * @return true if the given TimeZone is equal to this TimeZone; false 538 * otherwise. 539 * @stable ICU 2.0 540 */ 541 virtual bool operator==(const TimeZone& that) const; 542 543 /** 544 * Returns true if the two TimeZones are NOT equal; that is, if operator==() returns 545 * false. 546 * 547 * @param that The TimeZone object to be compared with. 548 * @return true if the given TimeZone is not equal to this TimeZone; false 549 * otherwise. 550 * @stable ICU 2.0 551 */ 552 bool operator!=(const TimeZone& that) const {return !operator==(that);} 553 554 /** 555 * Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add 556 * to GMT to get local time in this time zone, taking daylight savings time into 557 * account) as of a particular reference date. The reference date is used to determine 558 * whether daylight savings time is in effect and needs to be figured into the offset 559 * that is returned (in other words, what is the adjusted GMT offset in this time zone 560 * at this particular date and time?). For the time zones produced by createTimeZone(), 561 * the reference data is specified according to the Gregorian calendar, and the date 562 * and time fields are local standard time. 563 * 564 *
nullptr
id
Note: Don't call this method. Instead, call the getOffset(UDate...) overload, 565 * which returns both the raw and the DST offset for a given time. This method 566 * is retained only for backward compatibility. 567 * 568 * @param era The reference date's era 569 * @param year The reference date's year 570 * @param month The reference date's month (0-based; 0 is January) 571 * @param day The reference date's day-in-month (1-based) 572 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday) 573 * @param millis The reference date's milliseconds in day, local standard time 574 * @param status Output param to filled in with a success or an error. 575 * @return The offset in milliseconds to add to GMT to get local time. 576 * @stable ICU 2.0 577 */ 578 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 579 uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const = 0; 580 581 /** 582 * Gets the time zone offset, for current date, modified in case of 583 * daylight savings. This is the offset to add *to* UTC to get local time. 584 * 585 *
Note: Don't call this method. Instead, call the getOffset(UDate...) overload, 586 * which returns both the raw and the DST offset for a given time. This method 587 * is retained only for backward compatibility. 588 * 589 * @param era the era of the given date. 590 * @param year the year in the given date. 591 * @param month the month in the given date. 592 * Month is 0-based. e.g., 0 for January. 593 * @param day the day-in-month of the given date. 594 * @param dayOfWeek the day-of-week of the given date. 595 * @param milliseconds the millis in day in standard local time. 596 * @param monthLength the length of the given month in days. 597 * @param status Output param to filled in with a success or an error. 598 * @return the offset to add *to* GMT to get local time. 599 * @stable ICU 2.0 600 */ 601 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 602 uint8_t dayOfWeek, int32_t milliseconds, 603 int32_t monthLength, UErrorCode& status) const = 0; 604 605 /** 606 * Returns the time zone raw and GMT offset for the given moment 607 * in time. Upon return, local-millis = GMT-millis + rawOffset + 608 * dstOffset. All computations are performed in the proleptic 609 * Gregorian calendar. The default implementation in the TimeZone 610 * class delegates to the 8-argument getOffset(). 611 * 612 * @param date moment in time for which to return offsets, in 613 * units of milliseconds from January 1, 1970 0:00 GMT, either GMT 614 * time or local wall time, depending on `local'. 615 * @param local if true, `date' is local wall time; otherwise it 616 * is in GMT time. 617 * @param rawOffset output parameter to receive the raw offset, that 618 * is, the offset not including DST adjustments 619 * @param dstOffset output parameter to receive the DST offset, 620 * that is, the offset to be added to `rawOffset' to obtain the 621 * total offset between local and GMT time. If DST is not in 622 * effect, this value is zero; otherwise it is a positive value, 623 * typically one hour. 624 * @param ec input-output error code 625 * 626 * @stable ICU 2.8 627 */ 628 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset, 629 int32_t& dstOffset, UErrorCode& ec) const; 630 631 /** 632 * Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add 633 * to GMT to get local time, before taking daylight savings time into account). 634 * 635 * @param offsetMillis The new raw GMT offset for this time zone. 636 * @stable ICU 2.0 637 */ 638 virtual void setRawOffset(int32_t offsetMillis) = 0; 639 640 /** 641 * Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add 642 * to GMT to get local time, before taking daylight savings time into account). 643 * 644 * @return The TimeZone's raw GMT offset. 645 * @stable ICU 2.0 646 */ 647 virtual int32_t getRawOffset(void) const = 0; 648 649 /** 650 * Fills in "ID" with the TimeZone's ID. 651 * 652 * @param ID Receives this TimeZone's ID. 653 * @return A reference to 'ID' 654 * @stable ICU 2.0 655 */ 656 UnicodeString& getID(UnicodeString& ID) const; 657 658 /** 659 * Sets the TimeZone's ID to the specified value. This doesn't affect any other 660 * fields (for example, if you say< 661 * blockquote>
662 * . TimeZone* foo = TimeZone::createTimeZone("America/New_York"); 663 * . foo.setID("America/Los_Angeles"); 664 *
GMT[+-]HH:mm
Note:The default implementation of 787 * ICU TimeZone uses the tz database, which supports historic 788 * rule changes, for system time zones. With the implementation, 789 * there are time zones that used daylight savings time in the 790 * past, but no longer used currently. For example, Asia/Tokyo has 791 * never used daylight savings time since 1951. Most clients would 792 * expect that this method to return false for such case. 793 * The default implementation of this method returns true 794 * when the time zone uses daylight savings time in the current 795 * (Gregorian) calendar year. 796 *
false
true
In Java 7, observesDaylightTime() was added in 797 * addition to useDaylightTime(). In Java, useDaylightTime() 798 * only checks if daylight saving time is observed by the last known 799 * rule. This specification might not be what most users would expect 800 * if daylight saving time is currently observed, but not scheduled 801 * in future. In this case, Java's userDaylightTime() returns 802 * false. To resolve the issue, Java 7 added observesDaylightTime(), 803 * which takes the current rule into account. The method observesDaylightTime() 804 * was added in ICU4J for supporting API signature compatibility with JDK. 805 * In general, ICU4C also provides JDK compatible methods, but the current 806 * implementation userDaylightTime() serves the purpose 807 * (takes the current rule into account), observesDaylightTime() 808 * is not added in ICU4C. In addition to useDaylightTime(), ICU4C 809 * BasicTimeZone class (Note that TimeZone::createTimeZone(const UnicodeString &ID) 810 * always returns a BasicTimeZone) provides a series of methods allowing 811 * historic and future time zone rule iteration, so you can check if daylight saving 812 * time is observed or not within a given period. 813 * 814 * @stable ICU 2.0 815 */ 816 virtual UBool useDaylightTime(void) const = 0; 817 818 #ifndef U_FORCE_HIDE_DEPRECATED_API 819 /** 820 * Queries if the given date is in daylight savings time in 821 * this time zone. 822 * This method is wasteful since it creates a new GregorianCalendar and 823 * deletes it each time it is called. This is a deprecated method 824 * and provided only for Java compatibility. 825 * 826 * @param date the given UDate. 827 * @param status Output param filled in with success/error code. 828 * @return true if the given date is in daylight savings time, 829 * false, otherwise. 830 * @deprecated ICU 2.4. Use Calendar::inDaylightTime() instead. 831 */ 832 virtual UBool inDaylightTime(UDate date, UErrorCode& status) const = 0; 833 #endif // U_FORCE_HIDE_DEPRECATED_API 834 835 /** 836 * Returns true if this zone has the same rule and offset as another zone. 837 * That is, if this zone differs only in ID, if at all. 838 * @param other the TimeZone object to be compared with 839 * @return true if the given zone is the same as this one, 840 * with the possible exception of the ID 841 * @stable ICU 2.0 842 */ 843 virtual UBool hasSameRules(const TimeZone& other) const; 844 845 /** 846 * Clones TimeZone objects polymorphically. Clients are responsible for deleting 847 * the TimeZone object cloned. 848 * 849 * @return A new copy of this TimeZone object. 850 * @stable ICU 2.0 851 */ 852 virtual TimeZone* clone() const = 0; 853 854 /** 855 * Return the class ID for this class. This is useful only for 856 * comparing to a return value from getDynamicClassID(). 857 * @return The class ID for all objects of this class. 858 * @stable ICU 2.0 859 */ 860 static UClassID U_EXPORT2 getStaticClassID(void); 861 862 /** 863 * Returns a unique class ID POLYMORPHICALLY. This method is to 864 * implement a simple version of RTTI, since not all C++ compilers support genuine 865 * RTTI. Polymorphic operator==() and clone() methods call this method. 866 *
observesDaylightTime()
useDaylightTime()
userDaylightTime()
BasicTimeZone
TimeZone::createTimeZone(const UnicodeString &ID)
867 * Concrete subclasses of TimeZone must use the UOBJECT_DEFINE_RTTI_IMPLEMENTATION 868 * macro from uobject.h in their implementation to provide correct RTTI information. 869 * @return The class ID for this object. All objects of a given class have the 870 * same class ID. Objects of other classes have different class IDs. 871 * @stable ICU 2.0 872 */ 873 virtual UClassID getDynamicClassID(void) const override = 0; 874 875 /** 876 * Returns the amount of time to be added to local standard time 877 * to get local wall clock time. 878 *
879 * The default implementation always returns 3600000 milliseconds 880 * (i.e., one hour) if this time zone observes Daylight Saving 881 * Time. Otherwise, 0 (zero) is returned. 882 *
883 * If an underlying TimeZone implementation subclass supports 884 * historical Daylight Saving Time changes, this method returns 885 * the known latest daylight saving value. 886 * 887 * @return the amount of saving time in milliseconds 888 * @stable ICU 3.6 889 */ 890 virtual int32_t getDSTSavings() const; 891 892 /** 893 * Gets the region code associated with the given 894 * system time zone ID. The region code is either ISO 3166 895 * 2-letter country code or UN M.49 3-digit area code. 896 * When the time zone is not associated with a specific location, 897 * for example - "Etc/UTC", "EST5EDT", then this method returns 898 * "001" (UN M.49 area code for World). 899 * 900 * @param id The system time zone ID. 901 * @param region Output buffer for receiving the region code. 902 * @param capacity The size of the output buffer. 903 * @param status Receives the status. When the given time zone ID 904 * is not a known system time zone ID, 905 * U_ILLEGAL_ARGUMENT_ERROR is set. 906 * @return The length of the output region code. 907 * @stable ICU 4.8 908 */ 909 static int32_t U_EXPORT2 getRegion(const UnicodeString& id, 910 char *region, int32_t capacity, UErrorCode& status); 911 912 protected: 913 914 /** 915 * Default constructor. ID is initialized to the empty string. 916 * @stable ICU 2.0 917 */ 918 TimeZone(); 919 920 /** 921 * Construct a TimeZone with a given ID. 922 * @param id a system time zone ID 923 * @stable ICU 2.0 924 */ 925 TimeZone(const UnicodeString &id); 926 927 /** 928 * Copy constructor. 929 * @param source the object to be copied. 930 * @stable ICU 2.0 931 */ 932 TimeZone(const TimeZone& source); 933 934 /** 935 * Default assignment operator. 936 * @param right the object to be copied. 937 * @stable ICU 2.0 938 */ 939 TimeZone& operator=(const TimeZone& right); 940 941 #ifndef U_HIDE_INTERNAL_API 942 /** 943 * Utility function. For internally loading rule data. 944 * @param top Top resource bundle for tz data 945 * @param ruleid ID of rule to load 946 * @param oldbundle Old bundle to reuse or nullptr 947 * @param status Status parameter 948 * @return either a new bundle or *oldbundle 949 * @internal 950 */ 951 static UResourceBundle* loadRule(const UResourceBundle* top, const UnicodeString& ruleid, UResourceBundle* oldbundle, UErrorCode&status); 952 #endif /* U_HIDE_INTERNAL_API */ 953 954 private: 955 friend class ZoneMeta; 956 957 958 static TimeZone* createCustomTimeZone(const UnicodeString&); // Creates a time zone based on the string. 959 960 /** 961 * Finds the given ID in the Olson tzdata. If the given ID is found in the tzdata, 962 * returns the pointer to the ID resource. This method is exposed through ZoneMeta class 963 * for ICU internal implementation and useful for building hashtable using a time zone 964 * ID as a key. 965 * @param id zone id string 966 * @return the pointer of the ID resource, or nullptr. 967 */ 968 static const char16_t* findID(const UnicodeString& id); 969 970 /** 971 * Resolve a link in Olson tzdata. When the given id is known and it's not a link, 972 * the id itself is returned. When the given id is known and it is a link, then 973 * dereferenced zone id is returned. When the given id is unknown, then it returns 974 * nullptr. 975 * @param id zone id string 976 * @return the dereferenced zone or nullptr 977 */ 978 static const char16_t* dereferOlsonLink(const UnicodeString& id); 979 980 /** 981 * Returns the region code associated with the given zone, 982 * or nullptr if the zone is not known. 983 * @param id zone id string 984 * @return the region associated with the given zone 985 */ 986 static const char16_t* getRegion(const UnicodeString& id); 987 988 public: 989 #ifndef U_HIDE_INTERNAL_API 990 /** 991 * Returns the region code associated with the given zone, 992 * or nullptr if the zone is not known. 993 * @param id zone id string 994 * @param status Status parameter 995 * @return the region associated with the given zone 996 * @internal 997 */ 998 static const char16_t* getRegion(const UnicodeString& id, UErrorCode& status); 999 #endif /* U_HIDE_INTERNAL_API */ 1000 1001 private: 1002 /** 1003 * Parses the given custom time zone identifier 1004 * @param id id A string of the form GMT[+-]hh:mm, GMT[+-]hhmm, or 1005 * GMT[+-]hh. 1006 * @param sign Receives parsed sign, 1 for positive, -1 for negative. 1007 * @param hour Receives parsed hour field 1008 * @param minute Receives parsed minute field 1009 * @param second Receives parsed second field 1010 * @return Returns true when the given custom id is valid. 1011 */ 1012 static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour, 1013 int32_t& minute, int32_t& second); 1014 1015 /** 1016 * Parse a custom time zone identifier and return the normalized 1017 * custom time zone identifier for the given custom id string. 1018 * @param id a string of the form GMT[+-]hh:mm, GMT[+-]hhmm, or 1019 * GMT[+-]hh. 1020 * @param normalized Receives the normalized custom ID 1021 * @param status Receives the status. When the input ID string is invalid, 1022 * U_ILLEGAL_ARGUMENT_ERROR is set. 1023 * @return The normalized custom id string. 1024 */ 1025 static UnicodeString& getCustomID(const UnicodeString& id, UnicodeString& normalized, 1026 UErrorCode& status); 1027 1028 /** 1029 * Returns the normalized custom time zone ID for the given offset fields. 1030 * @param hour offset hours 1031 * @param min offset minutes 1032 * @param sec offset seconds 1033 * @param negative sign of the offset, true for negative offset. 1034 * @param id Receives the format result (normalized custom ID) 1035 * @return The reference to id 1036 */ 1037 static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec, 1038 UBool negative, UnicodeString& id); 1039 1040 UnicodeString fID; // this time zone's ID 1041 1042 friend class TZEnumeration; 1043 }; 1044 1045 1046 // ------------------------------------- 1047 1048 inline UnicodeString& 1049 TimeZone::getID(UnicodeString& ID) const 1050 { 1051 ID = fID; 1052 return ID; 1053 } 1054 1055 // ------------------------------------- 1056 1057 inline void 1058 TimeZone::setID(const UnicodeString& ID) 1059 { 1060 fID = ID; 1061 } 1062 U_NAMESPACE_END 1063 1064 #endif /* #if !UCONFIG_NO_FORMATTING */ 1065 1066 #endif /* U_SHOW_CPLUSPLUS_API */ 1067 1068 #endif //_TIMEZONE 1069 //eof