1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 **********************************************************************
5 * Copyright (c) 2003-2013, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 **********************************************************************
9 * Created: July 21 2003
11 **********************************************************************
14 #include "utypeinfo.h" // for 'typeid' to work
18 #if !UCONFIG_NO_FORMATTING
20 #include "unicode/ures.h"
21 #include "unicode/simpletz.h"
22 #include "unicode/gregocal.h"
27 #include <float.h> // DBL_MAX
28 #include "uresimp.h" // struct UResourceBundle
34 # include "uresimp.h" // for debugging
36 static void debug_tz_loc(const char *f
, int32_t l
)
38 fprintf(stderr
, "%s:%d: ", f
, l
);
41 static void debug_tz_msg(const char *pat
, ...)
45 vfprintf(stderr
, pat
, ap
);
48 // must use double parens, i.e.: U_DEBUG_TZ_MSG(("four is: %d",4));
49 #define U_DEBUG_TZ_MSG(x) {debug_tz_loc(__FILE__,__LINE__);debug_tz_msg x;}
51 #define U_DEBUG_TZ_MSG(x)
54 static UBool
arrayEqual(const void *a1
, const void *a2
, int32_t size
) {
55 if (a1
== NULL
&& a2
== NULL
) {
58 if ((a1
!= NULL
&& a2
== NULL
) || (a1
== NULL
&& a2
!= NULL
)) {
65 return (uprv_memcmp(a1
, a2
, size
) == 0);
70 #define kTRANS "trans"
71 #define kTRANSPRE32 "transPre32"
72 #define kTRANSPOST32 "transPost32"
73 #define kTYPEOFFSETS "typeOffsets"
74 #define kTYPEMAP "typeMap"
75 #define kLINKS "links"
76 #define kFINALRULE "finalRule"
77 #define kFINALRAW "finalRaw"
78 #define kFINALYEAR "finalYear"
80 #define SECONDS_PER_DAY (24*60*60)
82 static const int32_t ZEROS
[] = {0,0};
84 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(OlsonTimeZone
)
87 * Default constructor. Creates a time zone with an empty ID and
88 * a fixed GMT offset of zero.
90 /*OlsonTimeZone::OlsonTimeZone() : finalYear(INT32_MAX), finalMillis(DBL_MAX), finalZone(0), transitionRulesInitialized(FALSE) {
91 clearTransitionRules();
96 * Construct a GMT+0 zone with no transitions. This is done when a
97 * constructor fails so the resultant object is well-behaved.
99 void OlsonTimeZone::constructEmpty() {
102 transitionCountPre32
= transitionCount32
= transitionCountPost32
= 0;
103 transitionTimesPre32
= transitionTimes32
= transitionTimesPost32
= NULL
;
114 * Construct from a resource bundle
115 * @param top the top-level zoneinfo resource bundle. This is used
116 * to lookup the rule that `res' may refer to, if there is one.
117 * @param res the resource bundle of the zone to be constructed
118 * @param ec input-output error code
120 OlsonTimeZone::OlsonTimeZone(const UResourceBundle
* top
,
121 const UResourceBundle
* res
,
122 const UnicodeString
& tzid
,
124 BasicTimeZone(tzid
), finalZone(NULL
)
126 clearTransitionRules();
127 U_DEBUG_TZ_MSG(("OlsonTimeZone(%s)\n", ures_getKey((UResourceBundle
*)res
)));
128 if ((top
== NULL
|| res
== NULL
) && U_SUCCESS(ec
)) {
129 ec
= U_ILLEGAL_ARGUMENT_ERROR
;
132 // TODO -- clean up -- Doesn't work if res points to an alias
133 // // TODO remove nonconst casts below when ures_* API is fixed
134 // setID(ures_getKey((UResourceBundle*) res)); // cast away const
138 ures_initStackObject(&r
);
140 // Pre-32bit second transitions
141 ures_getByKey(res
, kTRANSPRE32
, &r
, &ec
);
142 transitionTimesPre32
= ures_getIntVector(&r
, &len
, &ec
);
143 transitionCountPre32
= len
>> 1;
144 if (ec
== U_MISSING_RESOURCE_ERROR
) {
145 // No pre-32bit transitions
146 transitionTimesPre32
= NULL
;
147 transitionCountPre32
= 0;
149 } else if (U_SUCCESS(ec
) && (len
< 0 || len
> 0x7FFF || (len
& 1) != 0) /* len must be even */) {
150 ec
= U_INVALID_FORMAT_ERROR
;
153 // 32bit second transitions
154 ures_getByKey(res
, kTRANS
, &r
, &ec
);
155 transitionTimes32
= ures_getIntVector(&r
, &len
, &ec
);
156 transitionCount32
= len
;
157 if (ec
== U_MISSING_RESOURCE_ERROR
) {
158 // No 32bit transitions
159 transitionTimes32
= NULL
;
160 transitionCount32
= 0;
162 } else if (U_SUCCESS(ec
) && (len
< 0 || len
> 0x7FFF)) {
163 ec
= U_INVALID_FORMAT_ERROR
;
166 // Post-32bit second transitions
167 ures_getByKey(res
, kTRANSPOST32
, &r
, &ec
);
168 transitionTimesPost32
= ures_getIntVector(&r
, &len
, &ec
);
169 transitionCountPost32
= len
>> 1;
170 if (ec
== U_MISSING_RESOURCE_ERROR
) {
171 // No pre-32bit transitions
172 transitionTimesPost32
= NULL
;
173 transitionCountPost32
= 0;
175 } else if (U_SUCCESS(ec
) && (len
< 0 || len
> 0x7FFF || (len
& 1) != 0) /* len must be even */) {
176 ec
= U_INVALID_FORMAT_ERROR
;
179 // Type offsets list must be of even size, with size >= 2
180 ures_getByKey(res
, kTYPEOFFSETS
, &r
, &ec
);
181 typeOffsets
= ures_getIntVector(&r
, &len
, &ec
);
182 if (U_SUCCESS(ec
) && (len
< 2 || len
> 0x7FFE || (len
& 1) != 0)) {
183 ec
= U_INVALID_FORMAT_ERROR
;
185 typeCount
= (int16_t) len
>> 1;
187 // Type map data must be of the same size as the transition count
189 if (transitionCount() > 0) {
190 ures_getByKey(res
, kTYPEMAP
, &r
, &ec
);
191 typeMapData
= ures_getBinary(&r
, &len
, &ec
);
192 if (ec
== U_MISSING_RESOURCE_ERROR
) {
193 // no type mapping data
194 ec
= U_INVALID_FORMAT_ERROR
;
195 } else if (U_SUCCESS(ec
) && len
!= transitionCount()) {
196 ec
= U_INVALID_FORMAT_ERROR
;
200 // Process final rule and data, if any
201 const UChar
*ruleIdUStr
= ures_getStringByKey(res
, kFINALRULE
, &len
, &ec
);
202 ures_getByKey(res
, kFINALRAW
, &r
, &ec
);
203 int32_t ruleRaw
= ures_getInt(&r
, &ec
);
204 ures_getByKey(res
, kFINALYEAR
, &r
, &ec
);
205 int32_t ruleYear
= ures_getInt(&r
, &ec
);
207 UnicodeString
ruleID(TRUE
, ruleIdUStr
, len
);
208 UResourceBundle
*rule
= TimeZone::loadRule(top
, ruleID
, NULL
, ec
);
209 const int32_t *ruleData
= ures_getIntVector(rule
, &len
, &ec
);
210 if (U_SUCCESS(ec
) && len
== 11) {
211 UnicodeString emptyStr
;
212 finalZone
= new SimpleTimeZone(
213 ruleRaw
* U_MILLIS_PER_SECOND
,
215 (int8_t)ruleData
[0], (int8_t)ruleData
[1], (int8_t)ruleData
[2],
216 ruleData
[3] * U_MILLIS_PER_SECOND
,
217 (SimpleTimeZone::TimeMode
) ruleData
[4],
218 (int8_t)ruleData
[5], (int8_t)ruleData
[6], (int8_t)ruleData
[7],
219 ruleData
[8] * U_MILLIS_PER_SECOND
,
220 (SimpleTimeZone::TimeMode
) ruleData
[9],
221 ruleData
[10] * U_MILLIS_PER_SECOND
, ec
);
222 if (finalZone
== NULL
) {
223 ec
= U_MEMORY_ALLOCATION_ERROR
;
225 finalStartYear
= ruleYear
;
227 // Note: Setting finalStartYear to the finalZone is problematic. When a date is around
228 // year boundary, SimpleTimeZone may return false result when DST is observed at the
229 // beginning of year. We could apply safe margin (day or two), but when one of recurrent
230 // rules falls around year boundary, it could return false result. Without setting the
231 // start year, finalZone works fine around the year boundary of the start year.
233 // finalZone->setStartYear(finalStartYear);
236 // Compute the millis for Jan 1, 0:00 GMT of the finalYear
238 // Note: finalStartMillis is used for detecting either if
239 // historic transition data or finalZone to be used. In an
240 // extreme edge case - for example, two transitions fall into
241 // small windows of time around the year boundary, this may
242 // result incorrect offset computation. But I think it will
243 // never happen practically. Yoshito - Feb 20, 2010
244 finalStartMillis
= Grego::fieldsToDay(finalStartYear
, 0, 1) * U_MILLIS_PER_DAY
;
247 ec
= U_INVALID_FORMAT_ERROR
;
250 } else if (ec
== U_MISSING_RESOURCE_ERROR
) {
256 // initialize canonical ID
257 canonicalID
= ZoneMeta::getCanonicalCLDRID(tzid
, ec
);
268 OlsonTimeZone::OlsonTimeZone(const OlsonTimeZone
& other
) :
269 BasicTimeZone(other
), finalZone(0) {
274 * Assignment operator
276 OlsonTimeZone
& OlsonTimeZone::operator=(const OlsonTimeZone
& other
) {
277 canonicalID
= other
.canonicalID
;
279 transitionTimesPre32
= other
.transitionTimesPre32
;
280 transitionTimes32
= other
.transitionTimes32
;
281 transitionTimesPost32
= other
.transitionTimesPost32
;
283 transitionCountPre32
= other
.transitionCountPre32
;
284 transitionCount32
= other
.transitionCount32
;
285 transitionCountPost32
= other
.transitionCountPost32
;
287 typeCount
= other
.typeCount
;
288 typeOffsets
= other
.typeOffsets
;
289 typeMapData
= other
.typeMapData
;
292 finalZone
= (other
.finalZone
!= 0) ?
293 (SimpleTimeZone
*) other
.finalZone
->clone() : 0;
295 finalStartYear
= other
.finalStartYear
;
296 finalStartMillis
= other
.finalStartMillis
;
298 clearTransitionRules();
306 OlsonTimeZone::~OlsonTimeZone() {
307 deleteTransitionRules();
312 * Returns true if the two TimeZone objects are equal.
314 UBool
OlsonTimeZone::operator==(const TimeZone
& other
) const {
315 return ((this == &other
) ||
316 (typeid(*this) == typeid(other
) &&
317 TimeZone::operator==(other
) &&
318 hasSameRules(other
)));
324 TimeZone
* OlsonTimeZone::clone() const {
325 return new OlsonTimeZone(*this);
331 int32_t OlsonTimeZone::getOffset(uint8_t era
, int32_t year
, int32_t month
,
332 int32_t dom
, uint8_t dow
,
333 int32_t millis
, UErrorCode
& ec
) const {
334 if (month
< UCAL_JANUARY
|| month
> UCAL_DECEMBER
) {
336 ec
= U_ILLEGAL_ARGUMENT_ERROR
;
340 return getOffset(era
, year
, month
, dom
, dow
, millis
,
341 Grego::monthLength(year
, month
),
349 int32_t OlsonTimeZone::getOffset(uint8_t era
, int32_t year
, int32_t month
,
350 int32_t dom
, uint8_t dow
,
351 int32_t millis
, int32_t monthLength
,
352 UErrorCode
& ec
) const {
357 if ((era
!= GregorianCalendar::AD
&& era
!= GregorianCalendar::BC
)
358 || month
< UCAL_JANUARY
359 || month
> UCAL_DECEMBER
363 || dow
> UCAL_SATURDAY
365 || millis
>= U_MILLIS_PER_DAY
367 || monthLength
> 31) {
368 ec
= U_ILLEGAL_ARGUMENT_ERROR
;
372 if (era
== GregorianCalendar::BC
) {
376 if (finalZone
!= NULL
&& year
>= finalStartYear
) {
377 return finalZone
->getOffset(era
, year
, month
, dom
, dow
,
378 millis
, monthLength
, ec
);
381 // Compute local epoch millis from input fields
382 UDate date
= (UDate
)(Grego::fieldsToDay(year
, month
, dom
) * U_MILLIS_PER_DAY
+ millis
);
383 int32_t rawoff
, dstoff
;
384 getHistoricalOffset(date
, TRUE
, kDaylight
, kStandard
, rawoff
, dstoff
);
385 return rawoff
+ dstoff
;
391 void OlsonTimeZone::getOffset(UDate date
, UBool local
, int32_t& rawoff
,
392 int32_t& dstoff
, UErrorCode
& ec
) const {
396 if (finalZone
!= NULL
&& date
>= finalStartMillis
) {
397 finalZone
->getOffset(date
, local
, rawoff
, dstoff
, ec
);
399 getHistoricalOffset(date
, local
, kFormer
, kLatter
, rawoff
, dstoff
);
404 OlsonTimeZone::getOffsetFromLocal(UDate date
, int32_t nonExistingTimeOpt
, int32_t duplicatedTimeOpt
,
405 int32_t& rawoff
, int32_t& dstoff
, UErrorCode
& ec
) const {
409 if (finalZone
!= NULL
&& date
>= finalStartMillis
) {
410 finalZone
->getOffsetFromLocal(date
, nonExistingTimeOpt
, duplicatedTimeOpt
, rawoff
, dstoff
, ec
);
412 getHistoricalOffset(date
, TRUE
, nonExistingTimeOpt
, duplicatedTimeOpt
, rawoff
, dstoff
);
420 void OlsonTimeZone::setRawOffset(int32_t /*offsetMillis*/) {
421 // We don't support this operation, since OlsonTimeZones are
422 // immutable (except for the ID, which is in the base class).
430 int32_t OlsonTimeZone::getRawOffset() const {
431 UErrorCode ec
= U_ZERO_ERROR
;
433 getOffset((double) uprv_getUTCtime() * U_MILLIS_PER_SECOND
,
434 FALSE
, raw
, dst
, ec
);
438 #if defined U_DEBUG_TZ
439 void printTime(double ms
) {
440 int32_t year
, month
, dom
, dow
;
442 double days
= ClockMath::floorDivide(((double)ms
), (double)U_MILLIS_PER_DAY
, millis
);
444 Grego::dayToFields(days
, year
, month
, dom
, dow
);
445 U_DEBUG_TZ_MSG((" getHistoricalOffset: time %.1f (%04d.%02d.%02d+%.1fh)\n", ms
,
446 year
, month
+1, dom
, (millis
/kOneHour
)));
451 OlsonTimeZone::transitionTimeInSeconds(int16_t transIdx
) const {
452 U_ASSERT(transIdx
>= 0 && transIdx
< transitionCount());
454 if (transIdx
< transitionCountPre32
) {
455 return (((int64_t)((uint32_t)transitionTimesPre32
[transIdx
<< 1])) << 32)
456 | ((int64_t)((uint32_t)transitionTimesPre32
[(transIdx
<< 1) + 1]));
459 transIdx
-= transitionCountPre32
;
460 if (transIdx
< transitionCount32
) {
461 return (int64_t)transitionTimes32
[transIdx
];
464 transIdx
-= transitionCount32
;
465 return (((int64_t)((uint32_t)transitionTimesPost32
[transIdx
<< 1])) << 32)
466 | ((int64_t)((uint32_t)transitionTimesPost32
[(transIdx
<< 1) + 1]));
469 // Maximum absolute offset in seconds (86400 seconds = 1 day)
470 // getHistoricalOffset uses this constant as safety margin of
471 // quick zone transition checking.
472 #define MAX_OFFSET_SECONDS 86400
475 OlsonTimeZone::getHistoricalOffset(UDate date
, UBool local
,
476 int32_t NonExistingTimeOpt
, int32_t DuplicatedTimeOpt
,
477 int32_t& rawoff
, int32_t& dstoff
) const {
478 U_DEBUG_TZ_MSG(("getHistoricalOffset(%.1f, %s, %d, %d, raw, dst)\n",
479 date
, local
?"T":"F", NonExistingTimeOpt
, DuplicatedTimeOpt
));
480 #if defined U_DEBUG_TZ
481 printTime(date
*1000.0);
483 int16_t transCount
= transitionCount();
485 if (transCount
> 0) {
486 double sec
= uprv_floor(date
/ U_MILLIS_PER_SECOND
);
487 if (!local
&& sec
< transitionTimeInSeconds(0)) {
488 // Before the first transition time
489 rawoff
= initialRawOffset() * U_MILLIS_PER_SECOND
;
490 dstoff
= initialDstOffset() * U_MILLIS_PER_SECOND
;
492 // Linear search from the end is the fastest approach, since
493 // most lookups will happen at/near the end.
495 for (transIdx
= transCount
- 1; transIdx
>= 0; transIdx
--) {
496 int64_t transition
= transitionTimeInSeconds(transIdx
);
498 if (local
&& (sec
>= (transition
- MAX_OFFSET_SECONDS
))) {
499 int32_t offsetBefore
= zoneOffsetAt(transIdx
- 1);
500 UBool dstBefore
= dstOffsetAt(transIdx
- 1) != 0;
502 int32_t offsetAfter
= zoneOffsetAt(transIdx
);
503 UBool dstAfter
= dstOffsetAt(transIdx
) != 0;
505 UBool dstToStd
= dstBefore
&& !dstAfter
;
506 UBool stdToDst
= !dstBefore
&& dstAfter
;
508 if (offsetAfter
- offsetBefore
>= 0) {
509 // Positive transition, which makes a non-existing local time range
510 if (((NonExistingTimeOpt
& kStdDstMask
) == kStandard
&& dstToStd
)
511 || ((NonExistingTimeOpt
& kStdDstMask
) == kDaylight
&& stdToDst
)) {
512 transition
+= offsetBefore
;
513 } else if (((NonExistingTimeOpt
& kStdDstMask
) == kStandard
&& stdToDst
)
514 || ((NonExistingTimeOpt
& kStdDstMask
) == kDaylight
&& dstToStd
)) {
515 transition
+= offsetAfter
;
516 } else if ((NonExistingTimeOpt
& kFormerLatterMask
) == kLatter
) {
517 transition
+= offsetBefore
;
519 // Interprets the time with rule before the transition,
520 // default for non-existing time range
521 transition
+= offsetAfter
;
524 // Negative transition, which makes a duplicated local time range
525 if (((DuplicatedTimeOpt
& kStdDstMask
) == kStandard
&& dstToStd
)
526 || ((DuplicatedTimeOpt
& kStdDstMask
) == kDaylight
&& stdToDst
)) {
527 transition
+= offsetAfter
;
528 } else if (((DuplicatedTimeOpt
& kStdDstMask
) == kStandard
&& stdToDst
)
529 || ((DuplicatedTimeOpt
& kStdDstMask
) == kDaylight
&& dstToStd
)) {
530 transition
+= offsetBefore
;
531 } else if ((DuplicatedTimeOpt
& kFormerLatterMask
) == kFormer
) {
532 transition
+= offsetBefore
;
534 // Interprets the time with rule after the transition,
535 // default for duplicated local time range
536 transition
+= offsetAfter
;
540 if (sec
>= transition
) {
544 // transIdx could be -1 when local=true
545 rawoff
= rawOffsetAt(transIdx
) * U_MILLIS_PER_SECOND
;
546 dstoff
= dstOffsetAt(transIdx
) * U_MILLIS_PER_SECOND
;
549 // No transitions, single pair of offsets only
550 rawoff
= initialRawOffset() * U_MILLIS_PER_SECOND
;
551 dstoff
= initialDstOffset() * U_MILLIS_PER_SECOND
;
553 U_DEBUG_TZ_MSG(("getHistoricalOffset(%.1f, %s, %d, %d, raw, dst) - raw=%d, dst=%d\n",
554 date
, local
?"T":"F", NonExistingTimeOpt
, DuplicatedTimeOpt
, rawoff
, dstoff
));
560 UBool
OlsonTimeZone::useDaylightTime() const {
561 // If DST was observed in 1942 (for example) but has never been
562 // observed from 1943 to the present, most clients will expect
563 // this method to return FALSE. This method determines whether
564 // DST is in use in the current year (at any point in the year)
565 // and returns TRUE if so.
567 UDate current
= uprv_getUTCtime();
568 if (finalZone
!= NULL
&& current
>= finalStartMillis
) {
569 return finalZone
->useDaylightTime();
572 int32_t year
, month
, dom
, dow
, doy
, mid
;
573 Grego::timeToFields(current
, year
, month
, dom
, dow
, doy
, mid
);
575 // Find start of this year, and start of next year
576 double start
= Grego::fieldsToDay(year
, 0, 1) * SECONDS_PER_DAY
;
577 double limit
= Grego::fieldsToDay(year
+1, 0, 1) * SECONDS_PER_DAY
;
579 // Return TRUE if DST is observed at any time during the current
581 for (int16_t i
= 0; i
< transitionCount(); ++i
) {
582 double transition
= (double)transitionTimeInSeconds(i
);
583 if (transition
>= limit
) {
586 if ((transition
>= start
&& dstOffsetAt(i
) != 0)
587 || (transition
> start
&& dstOffsetAt(i
- 1) != 0)) {
594 OlsonTimeZone::getDSTSavings() const{
595 if (finalZone
!= NULL
){
596 return finalZone
->getDSTSavings();
598 return TimeZone::getDSTSavings();
603 UBool
OlsonTimeZone::inDaylightTime(UDate date
, UErrorCode
& ec
) const {
605 getOffset(date
, FALSE
, raw
, dst
, ec
);
610 OlsonTimeZone::hasSameRules(const TimeZone
&other
) const {
611 if (this == &other
) {
614 const OlsonTimeZone
* z
= dynamic_cast<const OlsonTimeZone
*>(&other
);
619 // [sic] pointer comparison: typeMapData points into
620 // memory-mapped or DLL space, so if two zones have the same
621 // pointer, they are equal.
622 if (typeMapData
== z
->typeMapData
) {
626 // If the pointers are not equal, the zones may still
627 // be equal if their rules and transitions are equal
628 if ((finalZone
== NULL
&& z
->finalZone
!= NULL
)
629 || (finalZone
!= NULL
&& z
->finalZone
== NULL
)
630 || (finalZone
!= NULL
&& z
->finalZone
!= NULL
&& *finalZone
!= *z
->finalZone
)) {
634 if (finalZone
!= NULL
) {
635 if (finalStartYear
!= z
->finalStartYear
|| finalStartMillis
!= z
->finalStartMillis
) {
639 if (typeCount
!= z
->typeCount
640 || transitionCountPre32
!= z
->transitionCountPre32
641 || transitionCount32
!= z
->transitionCount32
642 || transitionCountPost32
!= z
->transitionCountPost32
) {
647 arrayEqual(transitionTimesPre32
, z
->transitionTimesPre32
, sizeof(transitionTimesPre32
[0]) * transitionCountPre32
<< 1)
648 && arrayEqual(transitionTimes32
, z
->transitionTimes32
, sizeof(transitionTimes32
[0]) * transitionCount32
)
649 && arrayEqual(transitionTimesPost32
, z
->transitionTimesPost32
, sizeof(transitionTimesPost32
[0]) * transitionCountPost32
<< 1)
650 && arrayEqual(typeOffsets
, z
->typeOffsets
, sizeof(typeOffsets
[0]) * typeCount
<< 1)
651 && arrayEqual(typeMapData
, z
->typeMapData
, sizeof(typeMapData
[0]) * transitionCount());
655 OlsonTimeZone::clearTransitionRules(void) {
657 firstTZTransition
= NULL
;
658 firstFinalTZTransition
= NULL
;
659 historicRules
= NULL
;
660 historicRuleCount
= 0;
661 finalZoneWithStartYear
= NULL
;
662 firstTZTransitionIdx
= 0;
663 transitionRulesInitOnce
.reset();
667 OlsonTimeZone::deleteTransitionRules(void) {
668 if (initialRule
!= NULL
) {
671 if (firstTZTransition
!= NULL
) {
672 delete firstTZTransition
;
674 if (firstFinalTZTransition
!= NULL
) {
675 delete firstFinalTZTransition
;
677 if (finalZoneWithStartYear
!= NULL
) {
678 delete finalZoneWithStartYear
;
680 if (historicRules
!= NULL
) {
681 for (int i
= 0; i
< historicRuleCount
; i
++) {
682 if (historicRules
[i
] != NULL
) {
683 delete historicRules
[i
];
686 uprv_free(historicRules
);
688 clearTransitionRules();
692 * Lazy transition rules initializer
695 static void U_CALLCONV
initRules(OlsonTimeZone
*This
, UErrorCode
&status
) {
696 This
->initTransitionRules(status
);
700 OlsonTimeZone::checkTransitionRules(UErrorCode
& status
) const {
701 OlsonTimeZone
*ncThis
= const_cast<OlsonTimeZone
*>(this);
702 umtx_initOnce(ncThis
->transitionRulesInitOnce
, &initRules
, ncThis
, status
);
706 OlsonTimeZone::initTransitionRules(UErrorCode
& status
) {
707 if(U_FAILURE(status
)) {
710 deleteTransitionRules();
714 UnicodeString stdName
= tzid
+ UNICODE_STRING_SIMPLE("(STD)");
715 UnicodeString dstName
= tzid
+ UNICODE_STRING_SIMPLE("(DST)");
719 // Create initial rule
720 raw
= initialRawOffset() * U_MILLIS_PER_SECOND
;
721 dst
= initialDstOffset() * U_MILLIS_PER_SECOND
;
722 initialRule
= new InitialTimeZoneRule((dst
== 0 ? stdName
: dstName
), raw
, dst
);
723 // Check to make sure initialRule was created
724 if (initialRule
== NULL
) {
725 status
= U_MEMORY_ALLOCATION_ERROR
;
726 deleteTransitionRules();
730 int32_t transCount
= transitionCount();
731 if (transCount
> 0) {
732 int16_t transitionIdx
, typeIdx
;
734 // We probably no longer need to check the first "real" transition
735 // here, because the new tzcode remove such transitions already.
736 // For now, keeping this code for just in case. Feb 19, 2010 Yoshito
737 firstTZTransitionIdx
= 0;
738 for (transitionIdx
= 0; transitionIdx
< transCount
; transitionIdx
++) {
739 if (typeMapData
[transitionIdx
] != 0) { // type 0 is the initial type
742 firstTZTransitionIdx
++;
744 if (transitionIdx
== transCount
) {
745 // Actually no transitions...
747 // Build historic rule array
748 UDate
* times
= (UDate
*)uprv_malloc(sizeof(UDate
)*transCount
); /* large enough to store all transition times */
750 status
= U_MEMORY_ALLOCATION_ERROR
;
751 deleteTransitionRules();
754 for (typeIdx
= 0; typeIdx
< typeCount
; typeIdx
++) {
755 // Gather all start times for each pair of offsets
757 for (transitionIdx
= firstTZTransitionIdx
; transitionIdx
< transCount
; transitionIdx
++) {
758 if (typeIdx
== (int16_t)typeMapData
[transitionIdx
]) {
759 UDate tt
= (UDate
)transitionTime(transitionIdx
);
760 if (finalZone
== NULL
|| tt
<= finalStartMillis
) {
761 // Exclude transitions after finalMillis
762 times
[nTimes
++] = tt
;
767 // Create a TimeArrayTimeZoneRule
768 raw
= typeOffsets
[typeIdx
<< 1] * U_MILLIS_PER_SECOND
;
769 dst
= typeOffsets
[(typeIdx
<< 1) + 1] * U_MILLIS_PER_SECOND
;
770 if (historicRules
== NULL
) {
771 historicRuleCount
= typeCount
;
772 historicRules
= (TimeArrayTimeZoneRule
**)uprv_malloc(sizeof(TimeArrayTimeZoneRule
*)*historicRuleCount
);
773 if (historicRules
== NULL
) {
774 status
= U_MEMORY_ALLOCATION_ERROR
;
775 deleteTransitionRules();
779 for (int i
= 0; i
< historicRuleCount
; i
++) {
780 // Initialize TimeArrayTimeZoneRule pointers as NULL
781 historicRules
[i
] = NULL
;
784 historicRules
[typeIdx
] = new TimeArrayTimeZoneRule((dst
== 0 ? stdName
: dstName
),
785 raw
, dst
, times
, nTimes
, DateTimeRule::UTC_TIME
);
786 // Check for memory allocation error
787 if (historicRules
[typeIdx
] == NULL
) {
788 status
= U_MEMORY_ALLOCATION_ERROR
;
789 deleteTransitionRules();
796 // Create initial transition
797 typeIdx
= (int16_t)typeMapData
[firstTZTransitionIdx
];
798 firstTZTransition
= new TimeZoneTransition((UDate
)transitionTime(firstTZTransitionIdx
),
799 *initialRule
, *historicRules
[typeIdx
]);
800 // Check to make sure firstTZTransition was created.
801 if (firstTZTransition
== NULL
) {
802 status
= U_MEMORY_ALLOCATION_ERROR
;
803 deleteTransitionRules();
808 if (finalZone
!= NULL
) {
809 // Get the first occurence of final rule starts
810 UDate startTime
= (UDate
)finalStartMillis
;
811 TimeZoneRule
*firstFinalRule
= NULL
;
813 if (finalZone
->useDaylightTime()) {
815 * Note: When an OlsonTimeZone is constructed, we should set the final year
816 * as the start year of finalZone. However, the bounday condition used for
817 * getting offset from finalZone has some problems.
818 * For now, we do not set the valid start year when the construction time
819 * and create a clone and set the start year when extracting rules.
821 finalZoneWithStartYear
= (SimpleTimeZone
*)finalZone
->clone();
822 // Check to make sure finalZone was actually cloned.
823 if (finalZoneWithStartYear
== NULL
) {
824 status
= U_MEMORY_ALLOCATION_ERROR
;
825 deleteTransitionRules();
828 finalZoneWithStartYear
->setStartYear(finalStartYear
);
830 TimeZoneTransition tzt
;
831 finalZoneWithStartYear
->getNextTransition(startTime
, false, tzt
);
832 firstFinalRule
= tzt
.getTo()->clone();
833 // Check to make sure firstFinalRule received proper clone.
834 if (firstFinalRule
== NULL
) {
835 status
= U_MEMORY_ALLOCATION_ERROR
;
836 deleteTransitionRules();
839 startTime
= tzt
.getTime();
841 // final rule with no transitions
842 finalZoneWithStartYear
= (SimpleTimeZone
*)finalZone
->clone();
843 // Check to make sure finalZone was actually cloned.
844 if (finalZoneWithStartYear
== NULL
) {
845 status
= U_MEMORY_ALLOCATION_ERROR
;
846 deleteTransitionRules();
849 finalZone
->getID(tzid
);
850 firstFinalRule
= new TimeArrayTimeZoneRule(tzid
,
851 finalZone
->getRawOffset(), 0, &startTime
, 1, DateTimeRule::UTC_TIME
);
852 // Check firstFinalRule was properly created.
853 if (firstFinalRule
== NULL
) {
854 status
= U_MEMORY_ALLOCATION_ERROR
;
855 deleteTransitionRules();
859 TimeZoneRule
*prevRule
= NULL
;
860 if (transCount
> 0) {
861 prevRule
= historicRules
[typeMapData
[transCount
- 1]];
863 if (prevRule
== NULL
) {
864 // No historic transitions, but only finalZone available
865 prevRule
= initialRule
;
867 firstFinalTZTransition
= new TimeZoneTransition();
868 // Check to make sure firstFinalTZTransition was created before dereferencing
869 if (firstFinalTZTransition
== NULL
) {
870 status
= U_MEMORY_ALLOCATION_ERROR
;
871 deleteTransitionRules();
874 firstFinalTZTransition
->setTime(startTime
);
875 firstFinalTZTransition
->adoptFrom(prevRule
->clone());
876 firstFinalTZTransition
->adoptTo(firstFinalRule
);
881 OlsonTimeZone::getNextTransition(UDate base
, UBool inclusive
, TimeZoneTransition
& result
) const {
882 UErrorCode status
= U_ZERO_ERROR
;
883 checkTransitionRules(status
);
884 if (U_FAILURE(status
)) {
888 if (finalZone
!= NULL
) {
889 if (inclusive
&& base
== firstFinalTZTransition
->getTime()) {
890 result
= *firstFinalTZTransition
;
892 } else if (base
>= firstFinalTZTransition
->getTime()) {
893 if (finalZone
->useDaylightTime()) {
894 //return finalZone->getNextTransition(base, inclusive, result);
895 return finalZoneWithStartYear
->getNextTransition(base
, inclusive
, result
);
897 // No more transitions
902 if (historicRules
!= NULL
) {
903 // Find a historical transition
904 int16_t transCount
= transitionCount();
905 int16_t ttidx
= transCount
- 1;
906 for (; ttidx
>= firstTZTransitionIdx
; ttidx
--) {
907 UDate t
= (UDate
)transitionTime(ttidx
);
908 if (base
> t
|| (!inclusive
&& base
== t
)) {
912 if (ttidx
== transCount
- 1) {
913 if (firstFinalTZTransition
!= NULL
) {
914 result
= *firstFinalTZTransition
;
919 } else if (ttidx
< firstTZTransitionIdx
) {
920 result
= *firstTZTransition
;
923 // Create a TimeZoneTransition
924 TimeZoneRule
*to
= historicRules
[typeMapData
[ttidx
+ 1]];
925 TimeZoneRule
*from
= historicRules
[typeMapData
[ttidx
]];
926 UDate startTime
= (UDate
)transitionTime(ttidx
+1);
928 // The transitions loaded from zoneinfo.res may contain non-transition data
929 UnicodeString fromName
, toName
;
930 from
->getName(fromName
);
932 if (fromName
== toName
&& from
->getRawOffset() == to
->getRawOffset()
933 && from
->getDSTSavings() == to
->getDSTSavings()) {
934 return getNextTransition(startTime
, false, result
);
936 result
.setTime(startTime
);
937 result
.adoptFrom(from
->clone());
938 result
.adoptTo(to
->clone());
946 OlsonTimeZone::getPreviousTransition(UDate base
, UBool inclusive
, TimeZoneTransition
& result
) const {
947 UErrorCode status
= U_ZERO_ERROR
;
948 checkTransitionRules(status
);
949 if (U_FAILURE(status
)) {
953 if (finalZone
!= NULL
) {
954 if (inclusive
&& base
== firstFinalTZTransition
->getTime()) {
955 result
= *firstFinalTZTransition
;
957 } else if (base
> firstFinalTZTransition
->getTime()) {
958 if (finalZone
->useDaylightTime()) {
959 //return finalZone->getPreviousTransition(base, inclusive, result);
960 return finalZoneWithStartYear
->getPreviousTransition(base
, inclusive
, result
);
962 result
= *firstFinalTZTransition
;
968 if (historicRules
!= NULL
) {
969 // Find a historical transition
970 int16_t ttidx
= transitionCount() - 1;
971 for (; ttidx
>= firstTZTransitionIdx
; ttidx
--) {
972 UDate t
= (UDate
)transitionTime(ttidx
);
973 if (base
> t
|| (inclusive
&& base
== t
)) {
977 if (ttidx
< firstTZTransitionIdx
) {
978 // No more transitions
980 } else if (ttidx
== firstTZTransitionIdx
) {
981 result
= *firstTZTransition
;
984 // Create a TimeZoneTransition
985 TimeZoneRule
*to
= historicRules
[typeMapData
[ttidx
]];
986 TimeZoneRule
*from
= historicRules
[typeMapData
[ttidx
-1]];
987 UDate startTime
= (UDate
)transitionTime(ttidx
);
989 // The transitions loaded from zoneinfo.res may contain non-transition data
990 UnicodeString fromName
, toName
;
991 from
->getName(fromName
);
993 if (fromName
== toName
&& from
->getRawOffset() == to
->getRawOffset()
994 && from
->getDSTSavings() == to
->getDSTSavings()) {
995 return getPreviousTransition(startTime
, false, result
);
997 result
.setTime(startTime
);
998 result
.adoptFrom(from
->clone());
999 result
.adoptTo(to
->clone());
1007 OlsonTimeZone::countTransitionRules(UErrorCode
& status
) const {
1008 if (U_FAILURE(status
)) {
1011 checkTransitionRules(status
);
1012 if (U_FAILURE(status
)) {
1017 if (historicRules
!= NULL
) {
1018 // historicRules may contain null entries when original zoneinfo data
1019 // includes non transition data.
1020 for (int32_t i
= 0; i
< historicRuleCount
; i
++) {
1021 if (historicRules
[i
] != NULL
) {
1026 if (finalZone
!= NULL
) {
1027 if (finalZone
->useDaylightTime()) {
1037 OlsonTimeZone::getTimeZoneRules(const InitialTimeZoneRule
*& initial
,
1038 const TimeZoneRule
* trsrules
[],
1040 UErrorCode
& status
) const {
1041 if (U_FAILURE(status
)) {
1044 checkTransitionRules(status
);
1045 if (U_FAILURE(status
)) {
1050 initial
= initialRule
;
1054 if (historicRules
!= NULL
&& trscount
> cnt
) {
1055 // historicRules may contain null entries when original zoneinfo data
1056 // includes non transition data.
1057 for (int32_t i
= 0; i
< historicRuleCount
; i
++) {
1058 if (historicRules
[i
] != NULL
) {
1059 trsrules
[cnt
++] = historicRules
[i
];
1060 if (cnt
>= trscount
) {
1066 if (finalZoneWithStartYear
!= NULL
&& trscount
> cnt
) {
1067 const InitialTimeZoneRule
*tmpini
;
1068 int32_t tmpcnt
= trscount
- cnt
;
1069 finalZoneWithStartYear
->getTimeZoneRules(tmpini
, &trsrules
[cnt
], tmpcnt
, status
);
1070 if (U_FAILURE(status
)) {
1075 // Set the result length
1081 #endif // !UCONFIG_NO_FORMATTING