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
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
137 StackUResourceBundle r
;
139 // Pre-32bit second transitions
140 ures_getByKey(res
, kTRANSPRE32
, r
.getAlias(), &ec
);
141 transitionTimesPre32
= ures_getIntVector(r
.getAlias(), &len
, &ec
);
142 transitionCountPre32
= static_cast<int16_t>(len
>> 1);
143 if (ec
== U_MISSING_RESOURCE_ERROR
) {
144 // No pre-32bit transitions
145 transitionTimesPre32
= NULL
;
146 transitionCountPre32
= 0;
148 } else if (U_SUCCESS(ec
) && (len
< 0 || len
> 0x7FFF || (len
& 1) != 0) /* len must be even */) {
149 ec
= U_INVALID_FORMAT_ERROR
;
152 // 32bit second transitions
153 ures_getByKey(res
, kTRANS
, r
.getAlias(), &ec
);
154 transitionTimes32
= ures_getIntVector(r
.getAlias(), &len
, &ec
);
155 transitionCount32
= static_cast<int16_t>(len
);
156 if (ec
== U_MISSING_RESOURCE_ERROR
) {
157 // No 32bit transitions
158 transitionTimes32
= NULL
;
159 transitionCount32
= 0;
161 } else if (U_SUCCESS(ec
) && (len
< 0 || len
> 0x7FFF)) {
162 ec
= U_INVALID_FORMAT_ERROR
;
165 // Post-32bit second transitions
166 ures_getByKey(res
, kTRANSPOST32
, r
.getAlias(), &ec
);
167 transitionTimesPost32
= ures_getIntVector(r
.getAlias(), &len
, &ec
);
168 transitionCountPost32
= static_cast<int16_t>(len
>> 1);
169 if (ec
== U_MISSING_RESOURCE_ERROR
) {
170 // No pre-32bit transitions
171 transitionTimesPost32
= NULL
;
172 transitionCountPost32
= 0;
174 } else if (U_SUCCESS(ec
) && (len
< 0 || len
> 0x7FFF || (len
& 1) != 0) /* len must be even */) {
175 ec
= U_INVALID_FORMAT_ERROR
;
178 // Type offsets list must be of even size, with size >= 2
179 ures_getByKey(res
, kTYPEOFFSETS
, r
.getAlias(), &ec
);
180 typeOffsets
= ures_getIntVector(r
.getAlias(), &len
, &ec
);
181 if (U_SUCCESS(ec
) && (len
< 2 || len
> 0x7FFE || (len
& 1) != 0)) {
182 ec
= U_INVALID_FORMAT_ERROR
;
184 typeCount
= (int16_t) len
>> 1;
186 // Type map data must be of the same size as the transition count
188 if (transitionCount() > 0) {
189 ures_getByKey(res
, kTYPEMAP
, r
.getAlias(), &ec
);
190 typeMapData
= ures_getBinary(r
.getAlias(), &len
, &ec
);
191 if (ec
== U_MISSING_RESOURCE_ERROR
) {
192 // no type mapping data
193 ec
= U_INVALID_FORMAT_ERROR
;
194 } else if (U_SUCCESS(ec
) && len
!= transitionCount()) {
195 ec
= U_INVALID_FORMAT_ERROR
;
199 // Process final rule and data, if any
200 const UChar
*ruleIdUStr
= ures_getStringByKey(res
, kFINALRULE
, &len
, &ec
);
201 ures_getByKey(res
, kFINALRAW
, r
.getAlias(), &ec
);
202 int32_t ruleRaw
= ures_getInt(r
.getAlias(), &ec
);
203 ures_getByKey(res
, kFINALYEAR
, r
.getAlias(), &ec
);
204 int32_t ruleYear
= ures_getInt(r
.getAlias(), &ec
);
206 UnicodeString
ruleID(TRUE
, ruleIdUStr
, len
);
207 UResourceBundle
*rule
= TimeZone::loadRule(top
, ruleID
, NULL
, ec
);
208 const int32_t *ruleData
= ures_getIntVector(rule
, &len
, &ec
);
209 if (U_SUCCESS(ec
) && len
== 11) {
210 UnicodeString emptyStr
;
211 finalZone
= new SimpleTimeZone(
212 ruleRaw
* U_MILLIS_PER_SECOND
,
214 (int8_t)ruleData
[0], (int8_t)ruleData
[1], (int8_t)ruleData
[2],
215 ruleData
[3] * U_MILLIS_PER_SECOND
,
216 (SimpleTimeZone::TimeMode
) ruleData
[4],
217 (int8_t)ruleData
[5], (int8_t)ruleData
[6], (int8_t)ruleData
[7],
218 ruleData
[8] * U_MILLIS_PER_SECOND
,
219 (SimpleTimeZone::TimeMode
) ruleData
[9],
220 ruleData
[10] * U_MILLIS_PER_SECOND
, ec
);
221 if (finalZone
== NULL
) {
222 ec
= U_MEMORY_ALLOCATION_ERROR
;
224 finalStartYear
= ruleYear
;
226 // Note: Setting finalStartYear to the finalZone is problematic. When a date is around
227 // year boundary, SimpleTimeZone may return false result when DST is observed at the
228 // beginning of year. We could apply safe margin (day or two), but when one of recurrent
229 // rules falls around year boundary, it could return false result. Without setting the
230 // start year, finalZone works fine around the year boundary of the start year.
232 // finalZone->setStartYear(finalStartYear);
235 // Compute the millis for Jan 1, 0:00 GMT of the finalYear
237 // Note: finalStartMillis is used for detecting either if
238 // historic transition data or finalZone to be used. In an
239 // extreme edge case - for example, two transitions fall into
240 // small windows of time around the year boundary, this may
241 // result incorrect offset computation. But I think it will
242 // never happen practically. Yoshito - Feb 20, 2010
243 finalStartMillis
= Grego::fieldsToDay(finalStartYear
, 0, 1) * U_MILLIS_PER_DAY
;
246 ec
= U_INVALID_FORMAT_ERROR
;
249 } else if (ec
== U_MISSING_RESOURCE_ERROR
) {
254 // initialize canonical ID
255 canonicalID
= ZoneMeta::getCanonicalCLDRID(tzid
, ec
);
266 OlsonTimeZone::OlsonTimeZone(const OlsonTimeZone
& other
) :
267 BasicTimeZone(other
), finalZone(0) {
272 * Assignment operator
274 OlsonTimeZone
& OlsonTimeZone::operator=(const OlsonTimeZone
& other
) {
275 canonicalID
= other
.canonicalID
;
277 transitionTimesPre32
= other
.transitionTimesPre32
;
278 transitionTimes32
= other
.transitionTimes32
;
279 transitionTimesPost32
= other
.transitionTimesPost32
;
281 transitionCountPre32
= other
.transitionCountPre32
;
282 transitionCount32
= other
.transitionCount32
;
283 transitionCountPost32
= other
.transitionCountPost32
;
285 typeCount
= other
.typeCount
;
286 typeOffsets
= other
.typeOffsets
;
287 typeMapData
= other
.typeMapData
;
290 finalZone
= (other
.finalZone
!= 0) ?
291 (SimpleTimeZone
*) other
.finalZone
->clone() : 0;
293 finalStartYear
= other
.finalStartYear
;
294 finalStartMillis
= other
.finalStartMillis
;
296 clearTransitionRules();
304 OlsonTimeZone::~OlsonTimeZone() {
305 deleteTransitionRules();
310 * Returns true if the two TimeZone objects are equal.
312 UBool
OlsonTimeZone::operator==(const TimeZone
& other
) const {
313 return ((this == &other
) ||
314 (typeid(*this) == typeid(other
) &&
315 TimeZone::operator==(other
) &&
316 hasSameRules(other
)));
322 TimeZone
* OlsonTimeZone::clone() const {
323 return new OlsonTimeZone(*this);
329 int32_t OlsonTimeZone::getOffset(uint8_t era
, int32_t year
, int32_t month
,
330 int32_t dom
, uint8_t dow
,
331 int32_t millis
, UErrorCode
& ec
) const {
332 if (month
< UCAL_JANUARY
|| month
> UCAL_DECEMBER
) {
334 ec
= U_ILLEGAL_ARGUMENT_ERROR
;
338 return getOffset(era
, year
, month
, dom
, dow
, millis
,
339 Grego::monthLength(year
, month
),
347 int32_t OlsonTimeZone::getOffset(uint8_t era
, int32_t year
, int32_t month
,
348 int32_t dom
, uint8_t dow
,
349 int32_t millis
, int32_t monthLength
,
350 UErrorCode
& ec
) const {
355 if ((era
!= GregorianCalendar::AD
&& era
!= GregorianCalendar::BC
)
356 || month
< UCAL_JANUARY
357 || month
> UCAL_DECEMBER
361 || dow
> UCAL_SATURDAY
363 || millis
>= U_MILLIS_PER_DAY
365 || monthLength
> 31) {
366 ec
= U_ILLEGAL_ARGUMENT_ERROR
;
370 if (era
== GregorianCalendar::BC
) {
374 if (finalZone
!= NULL
&& year
>= finalStartYear
) {
375 return finalZone
->getOffset(era
, year
, month
, dom
, dow
,
376 millis
, monthLength
, ec
);
379 // Compute local epoch millis from input fields
380 UDate date
= (UDate
)(Grego::fieldsToDay(year
, month
, dom
) * U_MILLIS_PER_DAY
+ millis
);
381 int32_t rawoff
, dstoff
;
382 getHistoricalOffset(date
, TRUE
, kDaylight
, kStandard
, rawoff
, dstoff
);
383 return rawoff
+ dstoff
;
389 void OlsonTimeZone::getOffset(UDate date
, UBool local
, int32_t& rawoff
,
390 int32_t& dstoff
, UErrorCode
& ec
) const {
394 if (finalZone
!= NULL
&& date
>= finalStartMillis
) {
395 finalZone
->getOffset(date
, local
, rawoff
, dstoff
, ec
);
397 getHistoricalOffset(date
, local
, kFormer
, kLatter
, rawoff
, dstoff
);
402 OlsonTimeZone::getOffsetFromLocal(UDate date
, int32_t nonExistingTimeOpt
, int32_t duplicatedTimeOpt
,
403 int32_t& rawoff
, int32_t& dstoff
, UErrorCode
& ec
) const {
407 if (finalZone
!= NULL
&& date
>= finalStartMillis
) {
408 finalZone
->getOffsetFromLocal(date
, nonExistingTimeOpt
, duplicatedTimeOpt
, rawoff
, dstoff
, ec
);
410 getHistoricalOffset(date
, TRUE
, nonExistingTimeOpt
, duplicatedTimeOpt
, rawoff
, dstoff
);
418 void OlsonTimeZone::setRawOffset(int32_t /*offsetMillis*/) {
419 // We don't support this operation, since OlsonTimeZones are
420 // immutable (except for the ID, which is in the base class).
428 int32_t OlsonTimeZone::getRawOffset() const {
429 UErrorCode ec
= U_ZERO_ERROR
;
431 getOffset((double) uprv_getUTCtime() * U_MILLIS_PER_SECOND
,
432 FALSE
, raw
, dst
, ec
);
436 #if defined U_DEBUG_TZ
437 void printTime(double ms
) {
438 int32_t year
, month
, dom
, dow
;
440 double days
= ClockMath::floorDivide(((double)ms
), (double)U_MILLIS_PER_DAY
, millis
);
442 Grego::dayToFields(days
, year
, month
, dom
, dow
);
443 U_DEBUG_TZ_MSG((" getHistoricalOffset: time %.1f (%04d.%02d.%02d+%.1fh)\n", ms
,
444 year
, month
+1, dom
, (millis
/kOneHour
)));
449 OlsonTimeZone::transitionTimeInSeconds(int16_t transIdx
) const {
450 U_ASSERT(transIdx
>= 0 && transIdx
< transitionCount());
452 if (transIdx
< transitionCountPre32
) {
453 return (((int64_t)((uint32_t)transitionTimesPre32
[transIdx
<< 1])) << 32)
454 | ((int64_t)((uint32_t)transitionTimesPre32
[(transIdx
<< 1) + 1]));
457 transIdx
-= transitionCountPre32
;
458 if (transIdx
< transitionCount32
) {
459 return (int64_t)transitionTimes32
[transIdx
];
462 transIdx
-= transitionCount32
;
463 return (((int64_t)((uint32_t)transitionTimesPost32
[transIdx
<< 1])) << 32)
464 | ((int64_t)((uint32_t)transitionTimesPost32
[(transIdx
<< 1) + 1]));
467 // Maximum absolute offset in seconds (86400 seconds = 1 day)
468 // getHistoricalOffset uses this constant as safety margin of
469 // quick zone transition checking.
470 #define MAX_OFFSET_SECONDS 86400
473 OlsonTimeZone::getHistoricalOffset(UDate date
, UBool local
,
474 int32_t NonExistingTimeOpt
, int32_t DuplicatedTimeOpt
,
475 int32_t& rawoff
, int32_t& dstoff
) const {
476 U_DEBUG_TZ_MSG(("getHistoricalOffset(%.1f, %s, %d, %d, raw, dst)\n",
477 date
, local
?"T":"F", NonExistingTimeOpt
, DuplicatedTimeOpt
));
478 #if defined U_DEBUG_TZ
479 printTime(date
*1000.0);
481 int16_t transCount
= transitionCount();
483 if (transCount
> 0) {
484 double sec
= uprv_floor(date
/ U_MILLIS_PER_SECOND
);
485 if (!local
&& sec
< transitionTimeInSeconds(0)) {
486 // Before the first transition time
487 rawoff
= initialRawOffset() * U_MILLIS_PER_SECOND
;
488 dstoff
= initialDstOffset() * U_MILLIS_PER_SECOND
;
490 // Linear search from the end is the fastest approach, since
491 // most lookups will happen at/near the end.
493 for (transIdx
= transCount
- 1; transIdx
>= 0; transIdx
--) {
494 int64_t transition
= transitionTimeInSeconds(transIdx
);
496 if (local
&& (sec
>= (transition
- MAX_OFFSET_SECONDS
))) {
497 int32_t offsetBefore
= zoneOffsetAt(transIdx
- 1);
498 UBool dstBefore
= dstOffsetAt(transIdx
- 1) != 0;
500 int32_t offsetAfter
= zoneOffsetAt(transIdx
);
501 UBool dstAfter
= dstOffsetAt(transIdx
) != 0;
503 UBool dstToStd
= dstBefore
&& !dstAfter
;
504 UBool stdToDst
= !dstBefore
&& dstAfter
;
506 if (offsetAfter
- offsetBefore
>= 0) {
507 // Positive transition, which makes a non-existing local time range
508 if (((NonExistingTimeOpt
& kStdDstMask
) == kStandard
&& dstToStd
)
509 || ((NonExistingTimeOpt
& kStdDstMask
) == kDaylight
&& stdToDst
)) {
510 transition
+= offsetBefore
;
511 } else if (((NonExistingTimeOpt
& kStdDstMask
) == kStandard
&& stdToDst
)
512 || ((NonExistingTimeOpt
& kStdDstMask
) == kDaylight
&& dstToStd
)) {
513 transition
+= offsetAfter
;
514 } else if ((NonExistingTimeOpt
& kFormerLatterMask
) == kLatter
) {
515 transition
+= offsetBefore
;
517 // Interprets the time with rule before the transition,
518 // default for non-existing time range
519 transition
+= offsetAfter
;
522 // Negative transition, which makes a duplicated local time range
523 if (((DuplicatedTimeOpt
& kStdDstMask
) == kStandard
&& dstToStd
)
524 || ((DuplicatedTimeOpt
& kStdDstMask
) == kDaylight
&& stdToDst
)) {
525 transition
+= offsetAfter
;
526 } else if (((DuplicatedTimeOpt
& kStdDstMask
) == kStandard
&& stdToDst
)
527 || ((DuplicatedTimeOpt
& kStdDstMask
) == kDaylight
&& dstToStd
)) {
528 transition
+= offsetBefore
;
529 } else if ((DuplicatedTimeOpt
& kFormerLatterMask
) == kFormer
) {
530 transition
+= offsetBefore
;
532 // Interprets the time with rule after the transition,
533 // default for duplicated local time range
534 transition
+= offsetAfter
;
538 if (sec
>= transition
) {
542 // transIdx could be -1 when local=true
543 rawoff
= rawOffsetAt(transIdx
) * U_MILLIS_PER_SECOND
;
544 dstoff
= dstOffsetAt(transIdx
) * U_MILLIS_PER_SECOND
;
547 // No transitions, single pair of offsets only
548 rawoff
= initialRawOffset() * U_MILLIS_PER_SECOND
;
549 dstoff
= initialDstOffset() * U_MILLIS_PER_SECOND
;
551 U_DEBUG_TZ_MSG(("getHistoricalOffset(%.1f, %s, %d, %d, raw, dst) - raw=%d, dst=%d\n",
552 date
, local
?"T":"F", NonExistingTimeOpt
, DuplicatedTimeOpt
, rawoff
, dstoff
));
558 UBool
OlsonTimeZone::useDaylightTime() const {
559 // If DST was observed in 1942 (for example) but has never been
560 // observed from 1943 to the present, most clients will expect
561 // this method to return FALSE. This method determines whether
562 // DST is in use in the current year (at any point in the year)
563 // and returns TRUE if so.
565 UDate current
= uprv_getUTCtime();
566 if (finalZone
!= NULL
&& current
>= finalStartMillis
) {
567 return finalZone
->useDaylightTime();
570 int32_t year
, month
, dom
, dow
, doy
, mid
;
571 Grego::timeToFields(current
, year
, month
, dom
, dow
, doy
, mid
);
573 // Find start of this year, and start of next year
574 double start
= Grego::fieldsToDay(year
, 0, 1) * SECONDS_PER_DAY
;
575 double limit
= Grego::fieldsToDay(year
+1, 0, 1) * SECONDS_PER_DAY
;
577 // Return TRUE if DST is observed at any time during the current
579 for (int16_t i
= 0; i
< transitionCount(); ++i
) {
580 double transition
= (double)transitionTimeInSeconds(i
);
581 if (transition
>= limit
) {
584 if ((transition
>= start
&& dstOffsetAt(i
) != 0)
585 || (transition
> start
&& dstOffsetAt(i
- 1) != 0)) {
592 OlsonTimeZone::getDSTSavings() const{
593 if (finalZone
!= NULL
){
594 return finalZone
->getDSTSavings();
596 return TimeZone::getDSTSavings();
601 UBool
OlsonTimeZone::inDaylightTime(UDate date
, UErrorCode
& ec
) const {
603 getOffset(date
, FALSE
, raw
, dst
, ec
);
608 OlsonTimeZone::hasSameRules(const TimeZone
&other
) const {
609 if (this == &other
) {
612 const OlsonTimeZone
* z
= dynamic_cast<const OlsonTimeZone
*>(&other
);
617 // [sic] pointer comparison: typeMapData points into
618 // memory-mapped or DLL space, so if two zones have the same
619 // pointer, they are equal.
620 if (typeMapData
== z
->typeMapData
) {
624 // If the pointers are not equal, the zones may still
625 // be equal if their rules and transitions are equal
626 if ((finalZone
== NULL
&& z
->finalZone
!= NULL
)
627 || (finalZone
!= NULL
&& z
->finalZone
== NULL
)
628 || (finalZone
!= NULL
&& z
->finalZone
!= NULL
&& *finalZone
!= *z
->finalZone
)) {
632 if (finalZone
!= NULL
) {
633 if (finalStartYear
!= z
->finalStartYear
|| finalStartMillis
!= z
->finalStartMillis
) {
637 if (typeCount
!= z
->typeCount
638 || transitionCountPre32
!= z
->transitionCountPre32
639 || transitionCount32
!= z
->transitionCount32
640 || transitionCountPost32
!= z
->transitionCountPost32
) {
645 arrayEqual(transitionTimesPre32
, z
->transitionTimesPre32
, sizeof(transitionTimesPre32
[0]) * transitionCountPre32
<< 1)
646 && arrayEqual(transitionTimes32
, z
->transitionTimes32
, sizeof(transitionTimes32
[0]) * transitionCount32
)
647 && arrayEqual(transitionTimesPost32
, z
->transitionTimesPost32
, sizeof(transitionTimesPost32
[0]) * transitionCountPost32
<< 1)
648 && arrayEqual(typeOffsets
, z
->typeOffsets
, sizeof(typeOffsets
[0]) * typeCount
<< 1)
649 && arrayEqual(typeMapData
, z
->typeMapData
, sizeof(typeMapData
[0]) * transitionCount());
653 OlsonTimeZone::clearTransitionRules(void) {
655 firstTZTransition
= NULL
;
656 firstFinalTZTransition
= NULL
;
657 historicRules
= NULL
;
658 historicRuleCount
= 0;
659 finalZoneWithStartYear
= NULL
;
660 firstTZTransitionIdx
= 0;
661 transitionRulesInitOnce
.reset();
665 OlsonTimeZone::deleteTransitionRules(void) {
666 if (initialRule
!= NULL
) {
669 if (firstTZTransition
!= NULL
) {
670 delete firstTZTransition
;
672 if (firstFinalTZTransition
!= NULL
) {
673 delete firstFinalTZTransition
;
675 if (finalZoneWithStartYear
!= NULL
) {
676 delete finalZoneWithStartYear
;
678 if (historicRules
!= NULL
) {
679 for (int i
= 0; i
< historicRuleCount
; i
++) {
680 if (historicRules
[i
] != NULL
) {
681 delete historicRules
[i
];
684 uprv_free(historicRules
);
686 clearTransitionRules();
690 * Lazy transition rules initializer
693 static void U_CALLCONV
initRules(OlsonTimeZone
*This
, UErrorCode
&status
) {
694 This
->initTransitionRules(status
);
698 OlsonTimeZone::checkTransitionRules(UErrorCode
& status
) const {
699 OlsonTimeZone
*ncThis
= const_cast<OlsonTimeZone
*>(this);
700 umtx_initOnce(ncThis
->transitionRulesInitOnce
, &initRules
, ncThis
, status
);
704 OlsonTimeZone::initTransitionRules(UErrorCode
& status
) {
705 if(U_FAILURE(status
)) {
708 deleteTransitionRules();
712 UnicodeString stdName
= tzid
+ UNICODE_STRING_SIMPLE("(STD)");
713 UnicodeString dstName
= tzid
+ UNICODE_STRING_SIMPLE("(DST)");
717 // Create initial rule
718 raw
= initialRawOffset() * U_MILLIS_PER_SECOND
;
719 dst
= initialDstOffset() * U_MILLIS_PER_SECOND
;
720 initialRule
= new InitialTimeZoneRule((dst
== 0 ? stdName
: dstName
), raw
, dst
);
721 // Check to make sure initialRule was created
722 if (initialRule
== NULL
) {
723 status
= U_MEMORY_ALLOCATION_ERROR
;
724 deleteTransitionRules();
728 int32_t transCount
= transitionCount();
729 if (transCount
> 0) {
730 int16_t transitionIdx
, typeIdx
;
732 // We probably no longer need to check the first "real" transition
733 // here, because the new tzcode remove such transitions already.
734 // For now, keeping this code for just in case. Feb 19, 2010 Yoshito
735 firstTZTransitionIdx
= 0;
736 for (transitionIdx
= 0; transitionIdx
< transCount
; transitionIdx
++) {
737 if (typeMapData
[transitionIdx
] != 0) { // type 0 is the initial type
740 firstTZTransitionIdx
++;
742 if (transitionIdx
== transCount
) {
743 // Actually no transitions...
745 // Build historic rule array
746 UDate
* times
= (UDate
*)uprv_malloc(sizeof(UDate
)*transCount
); /* large enough to store all transition times */
748 status
= U_MEMORY_ALLOCATION_ERROR
;
749 deleteTransitionRules();
752 for (typeIdx
= 0; typeIdx
< typeCount
; typeIdx
++) {
753 // Gather all start times for each pair of offsets
755 for (transitionIdx
= firstTZTransitionIdx
; transitionIdx
< transCount
; transitionIdx
++) {
756 if (typeIdx
== (int16_t)typeMapData
[transitionIdx
]) {
757 UDate tt
= (UDate
)transitionTime(transitionIdx
);
758 if (finalZone
== NULL
|| tt
<= finalStartMillis
) {
759 // Exclude transitions after finalMillis
760 times
[nTimes
++] = tt
;
765 // Create a TimeArrayTimeZoneRule
766 raw
= typeOffsets
[typeIdx
<< 1] * U_MILLIS_PER_SECOND
;
767 dst
= typeOffsets
[(typeIdx
<< 1) + 1] * U_MILLIS_PER_SECOND
;
768 if (historicRules
== NULL
) {
769 historicRuleCount
= typeCount
;
770 historicRules
= (TimeArrayTimeZoneRule
**)uprv_malloc(sizeof(TimeArrayTimeZoneRule
*)*historicRuleCount
);
771 if (historicRules
== NULL
) {
772 status
= U_MEMORY_ALLOCATION_ERROR
;
773 deleteTransitionRules();
777 for (int i
= 0; i
< historicRuleCount
; i
++) {
778 // Initialize TimeArrayTimeZoneRule pointers as NULL
779 historicRules
[i
] = NULL
;
782 historicRules
[typeIdx
] = new TimeArrayTimeZoneRule((dst
== 0 ? stdName
: dstName
),
783 raw
, dst
, times
, nTimes
, DateTimeRule::UTC_TIME
);
784 // Check for memory allocation error
785 if (historicRules
[typeIdx
] == NULL
) {
786 status
= U_MEMORY_ALLOCATION_ERROR
;
787 deleteTransitionRules();
794 // Create initial transition
795 typeIdx
= (int16_t)typeMapData
[firstTZTransitionIdx
];
796 firstTZTransition
= new TimeZoneTransition((UDate
)transitionTime(firstTZTransitionIdx
),
797 *initialRule
, *historicRules
[typeIdx
]);
798 // Check to make sure firstTZTransition was created.
799 if (firstTZTransition
== NULL
) {
800 status
= U_MEMORY_ALLOCATION_ERROR
;
801 deleteTransitionRules();
806 if (finalZone
!= NULL
) {
807 // Get the first occurence of final rule starts
808 UDate startTime
= (UDate
)finalStartMillis
;
809 TimeZoneRule
*firstFinalRule
= NULL
;
811 if (finalZone
->useDaylightTime()) {
813 * Note: When an OlsonTimeZone is constructed, we should set the final year
814 * as the start year of finalZone. However, the bounday condition used for
815 * getting offset from finalZone has some problems.
816 * For now, we do not set the valid start year when the construction time
817 * and create a clone and set the start year when extracting rules.
819 finalZoneWithStartYear
= (SimpleTimeZone
*)finalZone
->clone();
820 // Check to make sure finalZone was actually cloned.
821 if (finalZoneWithStartYear
== NULL
) {
822 status
= U_MEMORY_ALLOCATION_ERROR
;
823 deleteTransitionRules();
826 finalZoneWithStartYear
->setStartYear(finalStartYear
);
828 TimeZoneTransition tzt
;
829 finalZoneWithStartYear
->getNextTransition(startTime
, false, tzt
);
830 firstFinalRule
= tzt
.getTo()->clone();
831 // Check to make sure firstFinalRule received proper clone.
832 if (firstFinalRule
== NULL
) {
833 status
= U_MEMORY_ALLOCATION_ERROR
;
834 deleteTransitionRules();
837 startTime
= tzt
.getTime();
839 // final rule with no transitions
840 finalZoneWithStartYear
= (SimpleTimeZone
*)finalZone
->clone();
841 // Check to make sure finalZone was actually cloned.
842 if (finalZoneWithStartYear
== NULL
) {
843 status
= U_MEMORY_ALLOCATION_ERROR
;
844 deleteTransitionRules();
847 finalZone
->getID(tzid
);
848 firstFinalRule
= new TimeArrayTimeZoneRule(tzid
,
849 finalZone
->getRawOffset(), 0, &startTime
, 1, DateTimeRule::UTC_TIME
);
850 // Check firstFinalRule was properly created.
851 if (firstFinalRule
== NULL
) {
852 status
= U_MEMORY_ALLOCATION_ERROR
;
853 deleteTransitionRules();
857 TimeZoneRule
*prevRule
= NULL
;
858 if (transCount
> 0) {
859 prevRule
= historicRules
[typeMapData
[transCount
- 1]];
861 if (prevRule
== NULL
) {
862 // No historic transitions, but only finalZone available
863 prevRule
= initialRule
;
865 firstFinalTZTransition
= new TimeZoneTransition();
866 // Check to make sure firstFinalTZTransition was created before dereferencing
867 if (firstFinalTZTransition
== NULL
) {
868 status
= U_MEMORY_ALLOCATION_ERROR
;
869 deleteTransitionRules();
872 firstFinalTZTransition
->setTime(startTime
);
873 firstFinalTZTransition
->adoptFrom(prevRule
->clone());
874 firstFinalTZTransition
->adoptTo(firstFinalRule
);
879 OlsonTimeZone::getNextTransition(UDate base
, UBool inclusive
, TimeZoneTransition
& result
) const {
880 UErrorCode status
= U_ZERO_ERROR
;
881 checkTransitionRules(status
);
882 if (U_FAILURE(status
)) {
886 if (finalZone
!= NULL
) {
887 if (inclusive
&& base
== firstFinalTZTransition
->getTime()) {
888 result
= *firstFinalTZTransition
;
890 } else if (base
>= firstFinalTZTransition
->getTime()) {
891 if (finalZone
->useDaylightTime()) {
892 //return finalZone->getNextTransition(base, inclusive, result);
893 return finalZoneWithStartYear
->getNextTransition(base
, inclusive
, result
);
895 // No more transitions
900 if (historicRules
!= NULL
) {
901 // Find a historical transition
902 int16_t transCount
= transitionCount();
903 int16_t ttidx
= transCount
- 1;
904 for (; ttidx
>= firstTZTransitionIdx
; ttidx
--) {
905 UDate t
= (UDate
)transitionTime(ttidx
);
906 if (base
> t
|| (!inclusive
&& base
== t
)) {
910 if (ttidx
== transCount
- 1) {
911 if (firstFinalTZTransition
!= NULL
) {
912 result
= *firstFinalTZTransition
;
917 } else if (ttidx
< firstTZTransitionIdx
) {
918 result
= *firstTZTransition
;
921 // Create a TimeZoneTransition
922 TimeZoneRule
*to
= historicRules
[typeMapData
[ttidx
+ 1]];
923 TimeZoneRule
*from
= historicRules
[typeMapData
[ttidx
]];
924 UDate startTime
= (UDate
)transitionTime(ttidx
+1);
926 // The transitions loaded from zoneinfo.res may contain non-transition data
927 UnicodeString fromName
, toName
;
928 from
->getName(fromName
);
930 if (fromName
== toName
&& from
->getRawOffset() == to
->getRawOffset()
931 && from
->getDSTSavings() == to
->getDSTSavings()) {
932 return getNextTransition(startTime
, false, result
);
934 result
.setTime(startTime
);
935 result
.adoptFrom(from
->clone());
936 result
.adoptTo(to
->clone());
944 OlsonTimeZone::getPreviousTransition(UDate base
, UBool inclusive
, TimeZoneTransition
& result
) const {
945 UErrorCode status
= U_ZERO_ERROR
;
946 checkTransitionRules(status
);
947 if (U_FAILURE(status
)) {
951 if (finalZone
!= NULL
) {
952 if (inclusive
&& base
== firstFinalTZTransition
->getTime()) {
953 result
= *firstFinalTZTransition
;
955 } else if (base
> firstFinalTZTransition
->getTime()) {
956 if (finalZone
->useDaylightTime()) {
957 //return finalZone->getPreviousTransition(base, inclusive, result);
958 return finalZoneWithStartYear
->getPreviousTransition(base
, inclusive
, result
);
960 result
= *firstFinalTZTransition
;
966 if (historicRules
!= NULL
) {
967 // Find a historical transition
968 int16_t ttidx
= transitionCount() - 1;
969 for (; ttidx
>= firstTZTransitionIdx
; ttidx
--) {
970 UDate t
= (UDate
)transitionTime(ttidx
);
971 if (base
> t
|| (inclusive
&& base
== t
)) {
975 if (ttidx
< firstTZTransitionIdx
) {
976 // No more transitions
978 } else if (ttidx
== firstTZTransitionIdx
) {
979 result
= *firstTZTransition
;
982 // Create a TimeZoneTransition
983 TimeZoneRule
*to
= historicRules
[typeMapData
[ttidx
]];
984 TimeZoneRule
*from
= historicRules
[typeMapData
[ttidx
-1]];
985 UDate startTime
= (UDate
)transitionTime(ttidx
);
987 // The transitions loaded from zoneinfo.res may contain non-transition data
988 UnicodeString fromName
, toName
;
989 from
->getName(fromName
);
991 if (fromName
== toName
&& from
->getRawOffset() == to
->getRawOffset()
992 && from
->getDSTSavings() == to
->getDSTSavings()) {
993 return getPreviousTransition(startTime
, false, result
);
995 result
.setTime(startTime
);
996 result
.adoptFrom(from
->clone());
997 result
.adoptTo(to
->clone());
1005 OlsonTimeZone::countTransitionRules(UErrorCode
& status
) const {
1006 if (U_FAILURE(status
)) {
1009 checkTransitionRules(status
);
1010 if (U_FAILURE(status
)) {
1015 if (historicRules
!= NULL
) {
1016 // historicRules may contain null entries when original zoneinfo data
1017 // includes non transition data.
1018 for (int32_t i
= 0; i
< historicRuleCount
; i
++) {
1019 if (historicRules
[i
] != NULL
) {
1024 if (finalZone
!= NULL
) {
1025 if (finalZone
->useDaylightTime()) {
1035 OlsonTimeZone::getTimeZoneRules(const InitialTimeZoneRule
*& initial
,
1036 const TimeZoneRule
* trsrules
[],
1038 UErrorCode
& status
) const {
1039 if (U_FAILURE(status
)) {
1042 checkTransitionRules(status
);
1043 if (U_FAILURE(status
)) {
1048 initial
= initialRule
;
1052 if (historicRules
!= NULL
&& trscount
> cnt
) {
1053 // historicRules may contain null entries when original zoneinfo data
1054 // includes non transition data.
1055 for (int32_t i
= 0; i
< historicRuleCount
; i
++) {
1056 if (historicRules
[i
] != NULL
) {
1057 trsrules
[cnt
++] = historicRules
[i
];
1058 if (cnt
>= trscount
) {
1064 if (finalZoneWithStartYear
!= NULL
&& trscount
> cnt
) {
1065 const InitialTimeZoneRule
*tmpini
;
1066 int32_t tmpcnt
= trscount
- cnt
;
1067 finalZoneWithStartYear
->getTimeZoneRules(tmpini
, &trsrules
[cnt
], tmpcnt
, status
);
1068 if (U_FAILURE(status
)) {
1073 // Set the result length
1079 #endif // !UCONFIG_NO_FORMATTING