ICU 69.1 69.1
simpletz.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 ********************************************************************************
5 * Copyright (C) 1997-2013, International Business Machines *
6 * Corporation and others. All Rights Reserved. *
7 ********************************************************************************
8 *
9 * File SIMPLETZ.H
10 *
11 * Modification History:
12 *
13 * Date Name Description
14 * 04/21/97 aliu Overhauled header.
15 * 08/10/98 stephen JDK 1.2 sync
16 * Added setStartRule() / setEndRule() overloads
17 * Added hasSameRules()
18 * 09/02/98 stephen Added getOffset(monthLen)
19 * Changed getOffset() to take UErrorCode
20 * 07/09/99 stephen Removed millisPerHour (unused, for HP compiler)
21 * 12/02/99 aliu Added TimeMode and constructor and setStart/EndRule
22 * methods that take TimeMode. Added to docs.
23 ********************************************************************************
24 */
25
26#ifndef SIMPLETZ_H
27#define SIMPLETZ_H
28
29#include "unicode/utypes.h"
30
31#if U_SHOW_CPLUSPLUS_API
32
38#if !UCONFIG_NO_FORMATTING
39
40#include "unicode/basictz.h"
41
42U_NAMESPACE_BEGIN
43
44// forward declaration
45class InitialTimeZoneRule;
46class TimeZoneTransition;
47class AnnualTimeZoneRule;
48
66public:
67
79 enum TimeMode {
80 WALL_TIME = 0,
81 STANDARD_TIME,
82 UTC_TIME
83 };
84
91
98
104
114 virtual UBool operator==(const TimeZone& that) const;
115
128
213
262
272
363
375 void setStartRule(int32_t month, int32_t dayOfMonth, int32_t time,
392
409 void setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
431
456
483
496
512
531
552
575
593 int32_t monthLength, UErrorCode& status) const;
612 int32_t monthLength, int32_t prevMonthLength,
613 UErrorCode& status) const;
614
620 virtual void getOffset(UDate date, UBool local, int32_t& rawOffset,
621 int32_t& dstOffset, UErrorCode& ec) const;
622
623#ifndef U_FORCE_HIDE_DRAFT_API
628 virtual void getOffsetFromLocal(
631 int32_t& rawOffset, int32_t& dstOffset, UErrorCode& status) const;
632#endif /* U_FORCE_HIDE_DRAFT_API */
633
641 virtual int32_t getRawOffset(void) const;
642
651
662
671 virtual int32_t getDSTSavings(void) const;
672
679 virtual UBool useDaylightTime(void) const;
680
681#ifndef U_FORCE_HIDE_DEPRECATED_API
697#endif // U_FORCE_HIDE_DEPRECATED_API
698
706
714 virtual SimpleTimeZone* clone() const;
715
725
735
745
764
765
766public:
767
778 virtual UClassID getDynamicClassID(void) const;
779
792
793private:
797 enum EMode
798 {
799 DOM_MODE = 1,
800 DOW_IN_MONTH_MODE,
801 DOW_GE_DOM_MODE,
802 DOW_LE_DOM_MODE
803 };
804
805 SimpleTimeZone(); // default constructor not implemented
806
826 void construct(int32_t rawOffsetGMT,
827 int8_t startMonth, int8_t startDay, int8_t startDayOfWeek,
828 int32_t startTime, TimeMode startTimeMode,
829 int8_t endMonth, int8_t endDay, int8_t endDayOfWeek,
830 int32_t endTime, TimeMode endTimeMode,
831 int32_t dstSavings, UErrorCode& status);
832
842 static int32_t compareToRule(int8_t month, int8_t monthLen, int8_t prevMonthLen,
847
863 void decodeRules(UErrorCode& status);
864 void decodeStartRule(UErrorCode& status);
865 void decodeEndRule(UErrorCode& status);
866
867 int8_t startMonth, startDay, startDayOfWeek; // the month, day, DOW, and time DST starts
868 int32_t startTime;
869 TimeMode startTimeMode, endTimeMode; // Mode for startTime, endTime; see TimeMode
870 int8_t endMonth, endDay, endDayOfWeek; // the month, day, DOW, and time DST ends
871 int32_t endTime;
872 int32_t startYear; // the year these DST rules took effect
873 int32_t rawOffset; // the TimeZone's raw GMT offset
874 UBool useDaylight; // flag indicating whether this TimeZone uses DST
875 static const int8_t STATICMONTHLENGTH[12]; // lengths of the months
876 EMode startMode, endMode; // flags indicating what kind of rules the DST rules are
877
882 int32_t dstSavings;
883
884 /* Private for BasicTimeZone implementation */
885 void checkTransitionRules(UErrorCode& status) const;
886 void initTransitionRules(UErrorCode& status);
887 void clearTransitionRules(void);
888 void deleteTransitionRules(void);
889 UBool transitionRulesInitialized;
890 InitialTimeZoneRule* initialRule;
891 TimeZoneTransition* firstTransition;
892 AnnualTimeZoneRule* stdRule;
893 AnnualTimeZoneRule* dstRule;
894};
895
896inline void SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfWeekInMonth,
899 setStartRule(month, dayOfWeekInMonth, dayOfWeek, time, WALL_TIME, status);
900}
901
902inline void SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfMonth,
905 setStartRule(month, dayOfMonth, time, WALL_TIME, status);
906}
907
908inline void SimpleTimeZone::setStartRule(int32_t month, int32_t dayOfMonth,
911 setStartRule(month, dayOfMonth, dayOfWeek, time, WALL_TIME, after, status);
912}
913
914inline void SimpleTimeZone::setEndRule(int32_t month, int32_t dayOfWeekInMonth,
917 setEndRule(month, dayOfWeekInMonth, dayOfWeek, time, WALL_TIME, status);
918}
919
920inline void SimpleTimeZone::setEndRule(int32_t month, int32_t dayOfMonth,
922 setEndRule(month, dayOfMonth, time, WALL_TIME, status);
923}
924
925inline void SimpleTimeZone::setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek,
927 setEndRule(month, dayOfMonth, dayOfWeek, time, WALL_TIME, after, status);
928}
929
930inline void
931SimpleTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffsetRef,
933 TimeZone::getOffset(date, local, rawOffsetRef, dstOffsetRef, ec);
934}
935
937
938#endif /* #if !UCONFIG_NO_FORMATTING */
939
940#endif /* U_SHOW_CPLUSPLUS_API */
941
942#endif // _SIMPLETZ
C++ API: ICU TimeZone base class.
AnnualTimeZoneRule is a class used for representing a time zone rule which takes effect annually.
Definition tzrule.h:380
BasicTimeZone is an abstract class extending TimeZone.
Definition basictz.h:38
InitialTimeZoneRule represents a time zone rule representing a time zone effective from the beginning...
Definition tzrule.h:202
"Smart pointer" base class; do not use directly: use LocalPointer etc.
SimpleTimeZone is a concrete subclass of TimeZone that represents a time zone for use with a Gregoria...
Definition simpletz.h:65
virtual UBool getNextTransition(UDate base, UBool inclusive, TimeZoneTransition &result) const
Gets the first time zone transition after the base time.
virtual UBool getPreviousTransition(UDate base, UBool inclusive, TimeZoneTransition &result) const
Gets the most recent time zone transition before the base time.
virtual int32_t getRawOffset(void) const
Returns the TimeZone's raw GMT offset (i.e., the number of milliseconds to add to GMT to get local ti...
SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString &ID, int8_t savingsStartMonth, int8_t savingsStartDayOfWeekInMonth, int8_t savingsStartDayOfWeek, int32_t savingsStartTime, int8_t savingsEndMonth, int8_t savingsEndDayOfWeekInMonth, int8_t savingsEndDayOfWeek, int32_t savingsEndTime, int32_t savingsDST, UErrorCode &status)
Construct a SimpleTimeZone with the given raw GMT offset, time zone ID, and times to start and end da...
TimeMode
TimeMode is used, together with a millisecond offset after midnight, to specify a rule transition tim...
Definition simpletz.h:79
void setStartYear(int32_t year)
Sets the daylight savings starting year, that is, the year this time zone began observing its specifi...
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, int32_t prevMonthLength, UErrorCode &status) const
Gets the time zone offset, for current date, modified in case of daylight savings.
virtual void getTimeZoneRules(const InitialTimeZoneRule *&initial, const TimeZoneRule *trsrules[], int32_t &trscount, UErrorCode &status) const
Gets the InitialTimeZoneRule and the set of TimeZoneRule which represent time transitions for this ti...
virtual int32_t countTransitionRules(UErrorCode &status) const
Returns the number of TimeZoneRules which represents time transitions, for this time zone,...
void setEndRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UErrorCode &status)
Sets the daylight savings ending rule.
UBool hasSameRules(const TimeZone &other) const
Return true if this zone has the same rules and offset as another zone.
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
Gets the time zone offset, for current date, modified in case of daylight savings.
virtual UBool useDaylightTime(void) const
Queries if this TimeZone uses Daylight Savings Time.
virtual int32_t getDSTSavings(void) const
Returns the amount of time in ms that the clock is advanced during DST.
virtual void getOffsetFromLocal(UDate date, UTimeZoneLocalOption nonExistingTimeOpt, UTimeZoneLocalOption duplicatedTimeOpt, int32_t &rawOffset, int32_t &dstOffset, UErrorCode &status) const
Get time zone offsets from local wall time.
SimpleTimeZone & operator=(const SimpleTimeZone &right)
Default assignment operator.
static UClassID getStaticClassID(void)
Return the class ID for this class.
SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString &ID, int8_t savingsStartMonth, int8_t savingsStartDayOfWeekInMonth, int8_t savingsStartDayOfWeek, int32_t savingsStartTime, TimeMode savingsStartTimeMode, int8_t savingsEndMonth, int8_t savingsEndDayOfWeekInMonth, int8_t savingsEndDayOfWeek, int32_t savingsEndTime, TimeMode savingsEndTimeMode, int32_t savingsDST, UErrorCode &status)
Construct a SimpleTimeZone with the given raw GMT offset, time zone ID, and times to start and end da...
void setStartRule(int32_t month, int32_t dayOfWeekInMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UErrorCode &status)
Sets the daylight savings starting rule.
void setEndRule(int32_t month, int32_t dayOfMonth, int32_t time, TimeMode mode, UErrorCode &status)
Sets the DST end rule to a fixed date within a month.
void setDSTSavings(int32_t millisSavedDuringDST, UErrorCode &status)
Sets the amount of time in ms that the clock is advanced during DST.
SimpleTimeZone(const SimpleTimeZone &source)
Copy constructor.
virtual UBool inDaylightTime(UDate date, UErrorCode &status) const
Returns true if the given date is within the period when daylight savings time is in effect; false ot...
virtual UClassID getDynamicClassID(void) const
Override TimeZone Returns a unique class ID POLYMORPHICALLY.
virtual ~SimpleTimeZone()
Destructor.
void setEndRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode &status)
Sets the DST end rule to a weekday before or after a give date within a month, e.g....
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
Returns the TimeZone's adjusted GMT offset (i.e., the number of milliseconds to add to GMT to get loc...
virtual UBool operator==(const TimeZone &that) const
Returns true if the two TimeZone objects are equal; that is, they have the same ID,...
virtual void setRawOffset(int32_t offsetMillis)
Sets the TimeZone's raw GMT offset (i.e., the number of milliseconds to add to GMT to get local time,...
SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString &ID)
Constructs a SimpleTimeZone with the given raw GMT offset and time zone ID, and which doesn't observe...
virtual SimpleTimeZone * clone() const
Clones TimeZone objects polymorphically.
void setStartRule(int32_t month, int32_t dayOfMonth, int32_t dayOfWeek, int32_t time, TimeMode mode, UBool after, UErrorCode &status)
Sets the DST start rule to a weekday before or after a give date within a month, e....
SimpleTimeZone(int32_t rawOffsetGMT, const UnicodeString &ID, int8_t savingsStartMonth, int8_t savingsStartDayOfWeekInMonth, int8_t savingsStartDayOfWeek, int32_t savingsStartTime, int8_t savingsEndMonth, int8_t savingsEndDayOfWeekInMonth, int8_t savingsEndDayOfWeek, int32_t savingsEndTime, UErrorCode &status)
Construct a SimpleTimeZone with the given raw GMT offset, time zone ID, and times to start and end da...
void setStartRule(int32_t month, int32_t dayOfMonth, int32_t time, TimeMode mode, UErrorCode &status)
Sets the DST start rule to a fixed date within a month.
TimeZoneRule is a class representing a rule for time zone.
Definition tzrule.h:36
TimeZoneTransition is a class representing a time zone transition.
Definition tztrans.h:35
TimeZone represents a time zone offset, and also figures out daylight savings.
Definition timezone.h:133
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 loc...
UnicodeString is a string class that stores Unicode characters directly and provides similar function...
Definition unistr.h:296
UTimeZoneLocalOption
Options used by ucal_getTimeZoneOffsetFromLocal and BasicTimeZone::getOffsetFromLocal() to specify ho...
Definition ucal.h:1627
int8_t UBool
The ICU boolean type, a signed-byte integer.
Definition umachine.h:269
void * UClassID
UClassID is used to identify classes without using the compiler's RTTI.
Definition uobject.h:96
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Standard ICU4C error code type, a substitute for exceptions.
Definition utypes.h:415
#define U_I18N_API
Set to export library symbols from inside the i18n library, and to import them from outside.
Definition utypes.h:301
double UDate
Date and Time data type.
Definition utypes.h:203