TimeZone
represents a time zone offset, and also figures out daylight savings.
More...
#include <timezone.h>
Inheritance diagram for TimeZone:
Public Types | |
enum | EDisplayType { SHORT = 1, LONG } |
Enum for use with getDisplayName. More... | |
Public Methods | |
virtual | ~TimeZone () |
virtual UBool | operator== (const TimeZone& that) const |
Returns true if the two TimeZones are equal. More... | |
UBool | operator!= (const TimeZone& that) const |
Returns true if the two TimeZones are NOT equal; that is, if operator==() returns false. More... | |
virtual int32_t | getOffset (uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis, UErrorCode& status) const = 0 |
Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add to GMT to get local time in this time zone, taking daylight savings time into account) as of a particular reference date. More... | |
virtual int32_t | getOffset (uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t millis) const = 0 |
virtual int32_t | getOffset (uint8_t era, int32_t year, int32_t month, int32_t day, uint8_t dayOfWeek, int32_t milliseconds, int32_t monthLength, UErrorCode& status) const = 0 |
Gets the time zone offset, for current date, modified in case of daylight savings. More... | |
virtual void | setRawOffset (int32_t offsetMillis) = 0 |
Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add to GMT to get local time, before taking daylight savings time into account). More... | |
virtual int32_t | getRawOffset (void) const = 0 |
Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add to GMT to get local time, before taking daylight savings time into account). More... | |
UnicodeString& | getID (UnicodeString& ID) const |
Fills in "ID" with the TimeZone's ID. More... | |
void | setID (const UnicodeString& ID) |
Sets the TimeZone's ID to the specified value. More... | |
UnicodeString& | getDisplayName (UnicodeString& result) const |
Returns a name of this time zone suitable for presentation to the user in the default locale. More... | |
UnicodeString& | getDisplayName (const Locale& locale, UnicodeString& result) const |
Returns a name of this time zone suitable for presentation to the user in the specified locale. More... | |
UnicodeString& | getDisplayName (UBool daylight, EDisplayType style, UnicodeString& result) const |
Returns a name of this time zone suitable for presentation to the user in the default locale. More... | |
UnicodeString& | getDisplayName (UBool daylight, EDisplayType style, const Locale& locale, UnicodeString& result) const |
Returns a name of this time zone suitable for presentation to the user in the specified locale. More... | |
virtual UBool | useDaylightTime (void) const = 0 |
Queries if this time zone uses daylight savings time. More... | |
virtual UBool | inDaylightTime (UDate date, UErrorCode& status) const = 0 |
Queries if the given date is in daylight savings time in this time zone. More... | |
virtual UBool | hasSameRules (const TimeZone& other) const |
Returns true if this zone has the same rule and offset as another zone. More... | |
virtual TimeZone* | clone (void) const = 0 |
Clones TimeZone objects polymorphically. More... | |
virtual UClassID | getDynamicClassID (void) const = 0 |
Returns a unique class ID POLYMORPHICALLY. More... | |
Static Public Methods | |
TimeZone* | createTimeZone (const UnicodeString& ID) |
Creates a TimeZone for the given ID. More... | |
const UnicodeString** const | createAvailableIDs (int32_t rawOffset, int32_t& numIDs) |
Returns a list of time zone IDs, one for each time zone with a given GMT offset. More... | |
const UnicodeString** const | createAvailableIDs (const char* country, int32_t& numIDs) |
Returns a list of time zone IDs associated with the given country. More... | |
const UnicodeString** const | createAvailableIDs (int32_t& numIDs) |
Returns a list of all time zone IDs supported by the TimeZone class (i.e., all IDs that it's legal to pass to createTimeZone()). More... | |
int32_t | countEquivalentIDs (const UnicodeString& id) |
Returns the number of IDs in the equivalency group that includes the given ID. More... | |
const UnicodeString | getEquivalentID (const UnicodeString& id, int32_t index) |
Returns an ID in the equivalency group that includes the given ID. More... | |
TimeZone* | createDefault (void) |
Creates a new copy of the default TimeZone for this host. More... | |
void | adoptDefault (TimeZone* zone) |
Sets the default time zone (i.e., what's returned by getDefault()) to be the specified time zone. More... | |
void | setDefault (const TimeZone& zone) |
Same as adoptDefault(), except that the TimeZone object passed in is NOT adopted; the caller remains responsible for deleting it. More... | |
UClassID | getStaticClassID (void) |
Return the class ID for this class. More... | |
Static Public Attributes | |
const TimeZone* | GMT |
The GMT zone has a raw offset of zero and does not use daylight savings time. More... | |
Protected Methods | |
TimeZone () | |
Default constructor. More... | |
TimeZone (const TimeZone& source) | |
Copy constructor. More... | |
TimeZone& | operator= (const TimeZone& right) |
Default assignment operator. More... | |
Private Attributes | |
UnicodeString | fID |
Static Private Methods | |
TimeZone* | createCustomTimeZone (const UnicodeString&) |
void | initDefault (void) |
Responsible for setting up fgDefaultZone. More... | |
void | loadZoneData (void) |
UBool U_CALLCONV | isDataAcceptable (void *context, const char *type, const char *name, const UDataInfo *pInfo) |
TimeZone* | createSystemTimeZone (const UnicodeString& name) |
const TZEquivalencyGroup* | lookupEquivalencyGroup (const UnicodeString& id) |
Static Private Attributes | |
char | fgClassID |
TimeZone* | fgDefaultZone |
const UnicodeString | GMT_ID |
const int32_t | GMT_ID_LENGTH |
const UnicodeString | CUSTOM_ID |
const TZHeader* | DATA |
DATA is the start of the memory-mapped zone data, and specifically points to the header object located there. More... | |
const uint32_t* | INDEX_BY_ID |
INDEX_BY_ID is an index table in lexicographic order of ID. More... | |
const OffsetIndex* | INDEX_BY_OFFSET |
INDEX_BY_OFFSET is an OffsetIndex table. More... | |
const CountryIndex* | INDEX_BY_COUNTRY |
INDEX_BY_COUNTRY is a CountryIndex table. More... | |
UnicodeString* | ZONE_IDS |
ZONE_IDS is an array of all the system zone ID strings, in lexicographic order. More... | |
UBool | DATA_LOADED |
If DATA_LOADED is true, then an attempt has already been made to load the system zone data, and further attempts will not be made. More... | |
UDataMemory* | UDATA_POINTER |
UMTX | LOCK |
The mutex object used to control write access to DATA, INDEX_BY_ID, INDEX_BY_OFFSET, and ZONE_IDS. More... |
TimeZone
represents a time zone offset, and also figures out daylight savings.
Typically, you get a TimeZone
using createDefault
which creates a TimeZone
based on the time zone where the program is running. For example, for a program running in Japan, createDefault
creates a TimeZone
object based on Japanese Standard Time.
You can also get a TimeZone
using createTimeZone
along with a time zone ID. For instance, the time zone ID for the Pacific Standard Time zone is "PST". So, you can get a PST TimeZone
object with:
You can useTimeZone *tz = TimeZone::createTimeZone("PST");
getAvailableIDs
method to iterate through all the supported time zone IDs. You can then choose a supported ID to get a TimeZone
. If the time zone you want is not represented by one of the supported IDs, then you can create a custom time zone ID with the following syntax:
GMT[+|-]hh[[:]mm]
For example, you might specify GMT+14:00 as a custom time zone ID. The TimeZone
that is returned when you specify a custom time zone ID does not include daylight savings time.
TimeZone is an abstract class representing a time zone. A TimeZone is needed for Calendar to produce local time for a particular time zone. A TimeZone comprises three basic pieces of information:
(Only the ID is actually implemented in TimeZone; subclasses of TimeZone may handle daylight savings time and GMT offset in different ways. Currently we only have one TimeZone subclass: SimpleTimeZone.)
The TimeZone class contains a static list containing a TimeZone object for every combination of GMT offset and daylight-savings time rules currently in use in the world, each with a unique ID. Each ID consists of a region (usually a continent or ocean) and a city in that region, separated by a slash, (for example, Pacific Standard Time is "America/Los_Angeles.") Because older versions of this class used three- or four-letter abbreviations instead, there is also a table that maps the older abbreviations to the newer ones (for example, "PST" maps to "America/LosAngeles"). Anywhere the API requires an ID, you can use either form.
To create a new TimeZone, you call the factory function TimeZone::createTimeZone() and pass it a time zone ID. You can use the createAvailableIDs() function to obtain a list of all the time zone IDs recognized by createTimeZone().
You can also use TimeZone::createDefault() to create a TimeZone. This function uses platform-specific APIs to produce a TimeZone for the time zone corresponding to the client's computer's physical location. For example, if you're in Japan (assuming your machine is set up correctly), TimeZone::createDefault() will return a TimeZone for Japanese Standard Time ("Asia/Tokyo").
Definition at line 114 of file timezone.h.
|
Enum for use with getDisplayName.
Definition at line 382 of file timezone.h. |
|
|
|
Default constructor. ID is initialized to the empty string.
|
|
Copy constructor.
|
|
Sets the default time zone (i.e., what's returned by getDefault()) to be the specified time zone. If NULL is specified for the time zone, the default time zone is set to the default host time zone. This call adopts the TimeZone object passed in; the clent is no longer responsible for deleting it.
|
|
Clones TimeZone objects polymorphically. Clients are responsible for deleting the TimeZone object cloned.
Reimplemented in SimpleTimeZone. |
|
Returns the number of IDs in the equivalency group that includes the given ID. An equivalency group contains zones that have the same GMT offset and rules.
The returned count includes the given ID; it is always >= 1. The given ID must be a system time zone. If it is not, returns zero.
|
|
Returns a list of all time zone IDs supported by the TimeZone class (i.e., all IDs that it's legal to pass to createTimeZone()). The caller owns the list that is returned, but does not own the strings contained in that list. Delete the array, but DON'T delete the elements in the array.
|
|
Returns a list of time zone IDs associated with the given country. Some zones are affiliated with no country (e.g., "UTC"); these may also be retrieved, as a group.
The caller owns the list that is returned, but does not own the strings contained in that list. Delete the array, but DON'T delete the elements in the array.
|
|
Returns a list of time zone IDs, one for each time zone with a given GMT offset. The return value is a list because there may be several times zones with the same GMT offset that differ in the way they handle daylight savings time. For example, the state of Arizona doesn't observe Daylight Savings time. So if you ask for the time zone IDs corresponding to GMT-7:00, you'll get back two time zone IDs: "America/Denver," which corresponds to Mountain Standard Time in the winter and Mountain Daylight Time in the summer, and "America/Phoenix", which corresponds to Mountain Standard Time year-round, even in the summer. The caller owns the list that is returned, but does not own the strings contained in that list. Delete the array, but DON'T delete the elements in the array.
|
|
|
|
Creates a new copy of the default TimeZone for this host. Unless the default time zone has already been set using adoptDefault() or setDefault(), the default is determined by querying the system using methods in TPlatformUtilities. If the system routines fail, or if they specify a TimeZone or TimeZone offset which is not recognized, the TimeZone indicated by the ID kLastResortID is instantiated and made the default.
|
|
|
|
Creates a
|
|
Returns a name of this time zone suitable for presentation to the user in the specified locale.
If the display name is not available for the locale, then this method returns a string in the format
|
|
Returns a name of this time zone suitable for presentation to the user in the default locale.
If the display name is not available for the locale, then this method returns a string in the format
|
|
Returns a name of this time zone suitable for presentation to the user in the specified locale.
This method returns the long name, not including daylight savings. If the display name is not available for the locale, then this method returns a string in the format
|
|
Returns a name of this time zone suitable for presentation to the user in the default locale.
This method returns the long name, not including daylight savings. If the display name is not available for the locale, then this method returns a string in the format
|
|
Returns a unique class ID POLYMORPHICALLY. Pure virtual method. This method is to implement a simple version of RTTI, since not all C++ compilers support genuine RTTI. Polymorphic operator==() and clone() methods call this method. Concrete subclasses of TimeZone must implement getDynamicClassID() and also a static method and data member: . static UClassID getStaticClassID() { return (UClassID)&fgClassID; } . static char fgClassID;
Reimplemented in SimpleTimeZone. |
|
Returns an ID in the equivalency group that includes the given ID. An equivalency group contains zones that have the same GMT offset and rules.
The given index must be in the range 0..n-1, where n is the value returned by
|
|
Fills in "ID" with the TimeZone's ID.
Definition at line 625 of file timezone.h. |
|
Gets the time zone offset, for current date, modified in case of daylight savings. This is the offset to add *to* UTC to get local time.
Reimplemented in SimpleTimeZone. |
|
Reimplemented in SimpleTimeZone. |
|
Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add to GMT to get local time in this time zone, taking daylight savings time into account) as of a particular reference date. The reference date is used to determine whether daylight savings time is in effect and needs to be figured into the offset that is returned (in other words, what is the adjusted GMT offset in this time zone at this particular date and time?). For the time zones produced by createTimeZone(), the reference data is specified according to the Gregorian calendar, and the date and time fields are in GMT, NOT local time.
Reimplemented in SimpleTimeZone. |
|
Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add to GMT to get local time, before taking daylight savings time into account).
Reimplemented in SimpleTimeZone. |
|
Return the class ID for this class. This is useful only for comparing to a return value from getDynamicClassID(). For example: . Base* polymorphic_pointer = createPolymorphicObject(); . if (polymorphic_pointer->getDynamicClassID() == . Derived::getStaticClassID()) ...
Reimplemented in SimpleTimeZone. Definition at line 489 of file timezone.h. |
|
Returns true if this zone has the same rule and offset as another zone. That is, if this zone differs only in ID, if at all.
Reimplemented in SimpleTimeZone. |
|
Queries if the given date is in daylight savings time in this time zone.
Reimplemented in SimpleTimeZone. |
|
Responsible for setting up fgDefaultZone. Uses routines in TPlatformUtilities (i.e., platform-specific calls) to get the current system time zone. Failing that, uses the platform-specific default time zone. Failing that, uses GMT. |
|
|
|
|
|
|
|
Returns true if the two TimeZones are NOT equal; that is, if operator==() returns false.
Definition at line 289 of file timezone.h. |
|
Default assignment operator.
|
|
Returns true if the two TimeZones are equal. (The TimeZone version only compares IDs, but subclasses are expected to also compare the fields they add.)
Reimplemented in SimpleTimeZone. Referenced by operator!=(). |
|
Same as adoptDefault(), except that the TimeZone object passed in is NOT adopted; the caller remains responsible for deleting it.
|
|
Sets the TimeZone's ID to the specified value. This doesn't affect any other fields (for example, if you say< blockquote> . TimeZone* foo = TimeZone::createTimeZone("America/New_York"); . foo.setID("America/Los_Angeles");the time zone's GMT offset and daylight-savings rules don't change to those for Los Angeles. They're still those for New York. Only the ID has changed.)
Definition at line 634 of file timezone.h. |
|
Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add to GMT to get local time, before taking daylight savings time into account).
Reimplemented in SimpleTimeZone. |
|
Queries if this time zone uses daylight savings time.
Reimplemented in SimpleTimeZone. |
|
Definition at line 537 of file timezone.h. |
|
DATA is the start of the memory-mapped zone data, and specifically points to the header object located there. May be zero if loading failed for some reason. Definition at line 549 of file timezone.h. |
|
If DATA_LOADED is true, then an attempt has already been made to load the system zone data, and further attempts will not be made. If DATA_LOADED is true, DATA itself will be zero if loading failed, or non-zero if it succeeded. Definition at line 587 of file timezone.h. |
|
The GMT zone has a raw offset of zero and does not use daylight savings time.
Definition at line 125 of file timezone.h. |
|
Definition at line 535 of file timezone.h. |
|
Definition at line 536 of file timezone.h. |
|
INDEX_BY_COUNTRY is a CountryIndex table. This table can be walked through sequentially because the entries are of variable size. Definition at line 569 of file timezone.h. |
|
INDEX_BY_ID is an index table in lexicographic order of ID. Each entry is an offset from DATA to an equivalency group. Definition at line 555 of file timezone.h. |
|
INDEX_BY_OFFSET is an OffsetIndex table. This table can only be walked through sequentially because the entries are of variable size. Definition at line 562 of file timezone.h. |
|
The mutex object used to control write access to DATA, INDEX_BY_ID, INDEX_BY_OFFSET, and ZONE_IDS. Also used to control read/write access to fgDefaultZone. Definition at line 595 of file timezone.h. |
|
Definition at line 588 of file timezone.h. |
|
ZONE_IDS is an array of all the system zone ID strings, in lexicographic order. The createAvailableIDs() methods return arrays of pointers into this array. Definition at line 579 of file timezone.h. |
|
Definition at line 618 of file timezone.h. |
|
Reimplemented in SimpleTimeZone. Definition at line 529 of file timezone.h. |
|
Definition at line 533 of file timezone.h. |