ICU 65.1  65.1
timezone.h
Go to the documentation of this file.
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 #if U_SHOW_CPLUSPLUS_API
35 
41 #if !UCONFIG_NO_FORMATTING
42 
43 #include "unicode/uobject.h"
44 #include "unicode/unistr.h"
45 #include "unicode/ures.h"
46 #include "unicode/ucal.h"
47 
48 U_NAMESPACE_BEGIN
49 
50 class StringEnumeration;
51 
133 class U_I18N_API TimeZone : public UObject {
134 public:
138  virtual ~TimeZone();
139 
152  static const TimeZone& U_EXPORT2 getUnknown();
153 
166  static const TimeZone* U_EXPORT2 getGMT(void);
167 
179  static TimeZone* U_EXPORT2 createTimeZone(const UnicodeString& ID);
180 
196  static StringEnumeration* U_EXPORT2 createTimeZoneIDEnumeration(
197  USystemTimeZoneType zoneType,
198  const char* region,
199  const int32_t* rawOffset,
200  UErrorCode& ec);
201 
209  static StringEnumeration* U_EXPORT2 createEnumeration();
210 
228  static StringEnumeration* U_EXPORT2 createEnumeration(int32_t rawOffset);
229 
240  static StringEnumeration* U_EXPORT2 createEnumeration(const char* country);
241 
256  static int32_t U_EXPORT2 countEquivalentIDs(const UnicodeString& id);
257 
277  static const UnicodeString U_EXPORT2 getEquivalentID(const UnicodeString& id,
278  int32_t index);
279 
303  static TimeZone* U_EXPORT2 detectHostTimeZone();
304 
318  static TimeZone* U_EXPORT2 createDefault(void);
319 
329  static void U_EXPORT2 adoptDefault(TimeZone* zone);
330 
331 #ifndef U_HIDE_SYSTEM_API
332 
340  static void U_EXPORT2 setDefault(const TimeZone& zone);
341 #endif /* U_HIDE_SYSTEM_API */
342 
349  static const char* U_EXPORT2 getTZDataVersion(UErrorCode& status);
350 
364  static UnicodeString& U_EXPORT2 getCanonicalID(const UnicodeString& id,
365  UnicodeString& canonicalID, UErrorCode& status);
366 
382  static UnicodeString& U_EXPORT2 getCanonicalID(const UnicodeString& id,
383  UnicodeString& canonicalID, UBool& isSystemID, UErrorCode& status);
384 
407  static UnicodeString& U_EXPORT2 getWindowsID(const UnicodeString& id,
408  UnicodeString& winid, UErrorCode& status);
409 
436  static UnicodeString& U_EXPORT2 getIDForWindowsID(const UnicodeString& winid, const char* region,
437  UnicodeString& id, UErrorCode& status);
438 
448  virtual UBool operator==(const TimeZone& that) const;
449 
459  UBool operator!=(const TimeZone& that) const {return !operator==(that);}
460 
485  virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
486  uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const = 0;
487 
508  virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
509  uint8_t dayOfWeek, int32_t milliseconds,
510  int32_t monthLength, UErrorCode& status) const = 0;
511 
535  virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
536  int32_t& dstOffset, UErrorCode& ec) const;
537 
545  virtual void setRawOffset(int32_t offsetMillis) = 0;
546 
554  virtual int32_t getRawOffset(void) const = 0;
555 
563  UnicodeString& getID(UnicodeString& ID) const;
564 
578  void setID(const UnicodeString& ID);
579 
589  SHORT = 1,
628  GENERIC_LOCATION
629  };
630 
642  UnicodeString& getDisplayName(UnicodeString& result) const;
643 
657  UnicodeString& getDisplayName(const Locale& locale, UnicodeString& result) const;
658 
671  UnicodeString& getDisplayName(UBool inDaylight, EDisplayType style, UnicodeString& result) const;
672 
687  UnicodeString& getDisplayName(UBool inDaylight, EDisplayType style, const Locale& locale, UnicodeString& result) const;
688 
723  virtual UBool useDaylightTime(void) const = 0;
724 
738  virtual UBool inDaylightTime(UDate date, UErrorCode& status) const = 0;
739 
748  virtual UBool hasSameRules(const TimeZone& other) const;
749 
757  virtual TimeZone* clone() const = 0;
758 
765  static UClassID U_EXPORT2 getStaticClassID(void);
766 
778  virtual UClassID getDynamicClassID(void) const = 0;
779 
795  virtual int32_t getDSTSavings() const;
796 
814  static int32_t U_EXPORT2 getRegion(const UnicodeString& id,
815  char *region, int32_t capacity, UErrorCode& status);
816 
817 protected:
818 
823  TimeZone();
824 
830  TimeZone(const UnicodeString &id);
831 
837  TimeZone(const TimeZone& source);
838 
844  TimeZone& operator=(const TimeZone& right);
845 
846 #ifndef U_HIDE_INTERNAL_API
847 
856  static UResourceBundle* loadRule(const UResourceBundle* top, const UnicodeString& ruleid, UResourceBundle* oldbundle, UErrorCode&status);
857 #endif /* U_HIDE_INTERNAL_API */
858 
859 private:
860  friend class ZoneMeta;
861 
862 
863  static TimeZone* createCustomTimeZone(const UnicodeString&); // Creates a time zone based on the string.
864 
873  static const char16_t* findID(const UnicodeString& id);
874 
883  static const char16_t* dereferOlsonLink(const UnicodeString& id);
884 
891  static const char16_t* getRegion(const UnicodeString& id);
892 
893  public:
894 #ifndef U_HIDE_INTERNAL_API
895 
903  static const char16_t* getRegion(const UnicodeString& id, UErrorCode& status);
904 #endif /* U_HIDE_INTERNAL_API */
905 
906  private:
917  static UBool parseCustomID(const UnicodeString& id, int32_t& sign, int32_t& hour,
918  int32_t& minute, int32_t& second);
919 
930  static UnicodeString& getCustomID(const UnicodeString& id, UnicodeString& normalized,
931  UErrorCode& status);
932 
942  static UnicodeString& formatCustomID(int32_t hour, int32_t min, int32_t sec,
943  UBool negative, UnicodeString& id);
944 
945  UnicodeString fID; // this time zone's ID
946 
947  friend class TZEnumeration;
948 };
949 
950 
951 // -------------------------------------
952 
953 inline UnicodeString&
955 {
956  ID = fID;
957  return ID;
958 }
959 
960 // -------------------------------------
961 
962 inline void
964 {
965  fID = ID;
966 }
967 U_NAMESPACE_END
968 
969 #endif /* #if !UCONFIG_NO_FORMATTING */
970 
971 #endif /* U_SHOW_CPLUSPLUS_API */
972 
973 #endif //_TIMEZONE
974 //eof
void setID(const UnicodeString &ID)
Sets the TimeZone's ID to the specified value.
Definition: timezone.h:963
C API: Calendar.
UnicodeString & getID(UnicodeString &ID) const
Fills in "ID" with the TimeZone's ID.
Definition: timezone.h:954
double UDate
Date and Time data type.
Definition: utypes.h:203
C++ API: Unicode String.
U_EXPORT UBool operator==(const StringPiece &x, const StringPiece &y)
Global operator == for StringPiece.
void * UClassID
UClassID is used to identify classes without using the compiler's RTTI.
Definition: uobject.h:96
Base class for 'pure' C++ implementations of uenum api.
Definition: strenum.h:61
EDisplayType
Enum for use with getDisplayName.
Definition: timezone.h:584
TimeZone represents a time zone offset, and also figures out daylight savings.
Definition: timezone.h:133
#define U_I18N_API
Set to export library symbols from inside the i18n library, and to import them from outside...
Definition: utypes.h:301
Selector for short display name derived from time zone offset.
Definition: timezone.h:610
virtual UClassID getDynamicClassID() const
ICU4C "poor man's RTTI", returns a UClassID for the actual ICU class.
Selector for short generic display name.
Definition: timezone.h:599
Selector for long generic display name.
Definition: timezone.h:604
Selector for long display name.
Definition: timezone.h:594
C++ API: Common ICU base class UObject.
Selector for short display name derived from the time zone's fallback name.
Definition: timezone.h:622
USystemTimeZoneType
System time zone type constants used by filtering zones in ucal_openTimeZoneIDEnumeration.
Definition: ucal.h:548
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition: utypes.h:415
Basic definitions for ICU, for both C and C++ APIs.
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
Definition: unistr.h:294
struct UResourceBundle UResourceBundle
Definition: ures.h:59
UObject is the common ICU "boilerplate" class.
Definition: uobject.h:223
Selector for long display name derived from time zone offset.
Definition: timezone.h:616
UBool operator!=(const TimeZone &that) const
Returns true if the two TimeZones are NOT equal; that is, if operator==() returns false...
Definition: timezone.h:459
C API: Resource Bundle.
int8_t UBool
The ICU boolean type.
Definition: umachine.h:260
A Locale object represents a specific geographical, political, or cultural region.
Definition: locid.h:195