2 ******************************************************************************
3 * Copyright (C) 2007-2014, International Business Machines Corporation
4 * and others. All Rights Reserved.
5 ******************************************************************************
9 * Modification History:
11 * Date Name Description
12 * 9/18/2007 ajmacher ported from java ChineseCalendar
13 *****************************************************************************
18 #if !UCONFIG_NO_FORMATTING
22 #include "gregoimp.h" // Math
23 #include "astro.h" // CalendarAstronomer
24 #include "unicode/simpletz.h"
29 #ifdef U_DEBUG_CHNSECAL
32 static void debug_chnsecal_loc(const char *f
, int32_t l
)
34 fprintf(stderr
, "%s:%d: ", f
, l
);
37 static void debug_chnsecal_msg(const char *pat
, ...)
41 vfprintf(stderr
, pat
, ap
);
44 // must use double parens, i.e.: U_DEBUG_CHNSECAL_MSG(("four is: %d",4));
45 #define U_DEBUG_CHNSECAL_MSG(x) {debug_chnsecal_loc(__FILE__,__LINE__);debug_chnsecal_msg x;}
47 #define U_DEBUG_CHNSECAL_MSG(x)
52 static UMutex astroLock
= U_MUTEX_INITIALIZER
; // pod bay door lock
53 static icu::CalendarAstronomer
*gChineseCalendarAstro
= NULL
;
54 static icu::CalendarCache
*gChineseCalendarWinterSolsticeCache
= NULL
;
55 static icu::CalendarCache
*gChineseCalendarNewYearCache
= NULL
;
56 static icu::TimeZone
*gChineseCalendarZoneAstroCalc
= NULL
;
57 static icu::UInitOnce gChineseCalendarZoneAstroCalcInitOnce
= U_INITONCE_INITIALIZER
;
60 * The start year of the Chinese calendar, the 61st year of the reign
61 * of Huang Di. Some sources use the first year of his reign,
62 * resulting in EXTENDED_YEAR values 60 years greater and ERA (cycle)
65 static const int32_t CHINESE_EPOCH_YEAR
= -2636; // Gregorian year
68 * The offset from GMT in milliseconds at which we perform astronomical
69 * computations. Some sources use a different historically accurate
70 * offset of GMT+7:45:40 for years before 1929; we do not do this.
72 static const int32_t CHINA_OFFSET
= 8 * kOneHour
;
75 * Value to be added or subtracted from the local days of a new moon to
76 * get close to the next or prior new moon, but not cross it. Must be
77 * >= 1 and < CalendarAstronomer.SYNODIC_MONTH.
79 static const int32_t SYNODIC_GAP
= 25;
83 static UBool
calendar_chinese_cleanup(void) {
84 if (gChineseCalendarAstro
) {
85 delete gChineseCalendarAstro
;
86 gChineseCalendarAstro
= NULL
;
88 if (gChineseCalendarWinterSolsticeCache
) {
89 delete gChineseCalendarWinterSolsticeCache
;
90 gChineseCalendarWinterSolsticeCache
= NULL
;
92 if (gChineseCalendarNewYearCache
) {
93 delete gChineseCalendarNewYearCache
;
94 gChineseCalendarNewYearCache
= NULL
;
96 if (gChineseCalendarZoneAstroCalc
) {
97 delete gChineseCalendarZoneAstroCalc
;
98 gChineseCalendarZoneAstroCalc
= NULL
;
100 gChineseCalendarZoneAstroCalcInitOnce
.reset();
108 // Implementation of the ChineseCalendar class
111 //-------------------------------------------------------------------------
113 //-------------------------------------------------------------------------
116 Calendar
* ChineseCalendar::clone() const {
117 return new ChineseCalendar(*this);
120 ChineseCalendar::ChineseCalendar(const Locale
& aLocale
, UErrorCode
& success
)
121 : Calendar(TimeZone::createDefault(), aLocale
, success
),
123 fEpochYear(CHINESE_EPOCH_YEAR
),
124 fZoneAstroCalc(getChineseCalZoneAstroCalc())
126 setTimeInMillis(getNow(), success
); // Call this again now that the vtable is set up properly.
129 ChineseCalendar::ChineseCalendar(const Locale
& aLocale
, int32_t epochYear
,
130 const TimeZone
* zoneAstroCalc
, UErrorCode
&success
)
131 : Calendar(TimeZone::createDefault(), aLocale
, success
),
133 fEpochYear(epochYear
),
134 fZoneAstroCalc(zoneAstroCalc
)
136 setTimeInMillis(getNow(), success
); // Call this again now that the vtable is set up properly.
139 ChineseCalendar::ChineseCalendar(const ChineseCalendar
& other
) : Calendar(other
) {
140 isLeapYear
= other
.isLeapYear
;
141 fEpochYear
= other
.fEpochYear
;
142 fZoneAstroCalc
= other
.fZoneAstroCalc
;
145 ChineseCalendar::~ChineseCalendar()
149 const char *ChineseCalendar::getType() const {
153 static void U_CALLCONV
initChineseCalZoneAstroCalc() {
154 gChineseCalendarZoneAstroCalc
= new SimpleTimeZone(CHINA_OFFSET
, UNICODE_STRING_SIMPLE("CHINA_ZONE") );
155 ucln_i18n_registerCleanup(UCLN_I18N_CHINESE_CALENDAR
, calendar_chinese_cleanup
);
158 const TimeZone
* ChineseCalendar::getChineseCalZoneAstroCalc(void) const {
159 umtx_initOnce(gChineseCalendarZoneAstroCalcInitOnce
, &initChineseCalZoneAstroCalc
);
160 return gChineseCalendarZoneAstroCalc
;
163 //-------------------------------------------------------------------------
164 // Minimum / Maximum access functions
165 //-------------------------------------------------------------------------
168 static const int32_t LIMITS
[UCAL_FIELD_COUNT
][4] = {
169 // Minimum Greatest Least Maximum
171 { 1, 1, 83333, 83333}, // ERA
172 { 1, 1, 60, 60}, // YEAR
173 { 0, 0, 11, 11}, // MONTH
174 { 1, 1, 50, 55}, // WEEK_OF_YEAR
175 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // WEEK_OF_MONTH
176 { 1, 1, 29, 30}, // DAY_OF_MONTH
177 { 1, 1, 353, 385}, // DAY_OF_YEAR
178 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // DAY_OF_WEEK
179 { -1, -1, 5, 5}, // DAY_OF_WEEK_IN_MONTH
180 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // AM_PM
181 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // HOUR
182 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // HOUR_OF_DAY
183 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // MINUTE
184 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // SECOND
185 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // MILLISECOND
186 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // ZONE_OFFSET
187 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // DST_OFFSET
188 { -5000000, -5000000, 5000000, 5000000}, // YEAR_WOY
189 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // DOW_LOCAL
190 { -5000000, -5000000, 5000000, 5000000}, // EXTENDED_YEAR
191 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // JULIAN_DAY
192 {/*N/A*/-1,/*N/A*/-1,/*N/A*/-1,/*N/A*/-1}, // MILLISECONDS_IN_DAY
193 { 0, 0, 1, 1}, // IS_LEAP_MONTH
200 int32_t ChineseCalendar::handleGetLimit(UCalendarDateFields field
, ELimitType limitType
) const {
201 return LIMITS
[field
][limitType
];
205 //----------------------------------------------------------------------
206 // Calendar framework
207 //----------------------------------------------------------------------
210 * Implement abstract Calendar method to return the extended year
211 * defined by the current fields. This will use either the ERA and
212 * YEAR field as the cycle and year-of-cycle, or the EXTENDED_YEAR
213 * field as the continuous year count, depending on which is newer.
216 int32_t ChineseCalendar::handleGetExtendedYear() {
218 if (newestStamp(UCAL_ERA
, UCAL_YEAR
, kUnset
) <= fStamp
[UCAL_EXTENDED_YEAR
]) {
219 year
= internalGet(UCAL_EXTENDED_YEAR
, 1); // Default to year 1
221 int32_t cycle
= internalGet(UCAL_ERA
, 1) - 1; // 0-based cycle
222 // adjust to the instance specific epoch
223 year
= cycle
* 60 + internalGet(UCAL_YEAR
, 1) - (fEpochYear
- CHINESE_EPOCH_YEAR
);
229 * Override Calendar method to return the number of days in the given
230 * extended year and month.
232 * <p>Note: This method also reads the IS_LEAP_MONTH field to determine
233 * whether or not the given month is a leap month.
236 int32_t ChineseCalendar::handleGetMonthLength(int32_t extendedYear
, int32_t month
) const {
237 int32_t thisStart
= handleComputeMonthStart(extendedYear
, month
, TRUE
) -
238 kEpochStartAsJulianDay
+ 1; // Julian day -> local days
239 int32_t nextStart
= newMoonNear(thisStart
+ SYNODIC_GAP
, TRUE
);
240 return nextStart
- thisStart
;
244 * Override Calendar to compute several fields specific to the Chinese
245 * calendar system. These are:
252 * <li>EXTENDED_YEAR</ul>
254 * The DAY_OF_WEEK and DOW_LOCAL fields are already set when this
255 * method is called. The getGregorianXxx() methods return Gregorian
256 * calendar equivalents for the given Julian day.
258 * <p>Compute the ChineseCalendar-specific field IS_LEAP_MONTH.
261 void ChineseCalendar::handleComputeFields(int32_t julianDay
, UErrorCode
&/*status*/) {
263 computeChineseFields(julianDay
- kEpochStartAsJulianDay
, // local days
264 getGregorianYear(), getGregorianMonth(),
265 TRUE
); // set all fields
269 * Field resolution table that incorporates IS_LEAP_MONTH.
271 const UFieldResolutionTable
ChineseCalendar::CHINESE_DATE_PRECEDENCE
[] =
274 { UCAL_DAY_OF_MONTH
, kResolveSTOP
},
275 { UCAL_WEEK_OF_YEAR
, UCAL_DAY_OF_WEEK
, kResolveSTOP
},
276 { UCAL_WEEK_OF_MONTH
, UCAL_DAY_OF_WEEK
, kResolveSTOP
},
277 { UCAL_DAY_OF_WEEK_IN_MONTH
, UCAL_DAY_OF_WEEK
, kResolveSTOP
},
278 { UCAL_WEEK_OF_YEAR
, UCAL_DOW_LOCAL
, kResolveSTOP
},
279 { UCAL_WEEK_OF_MONTH
, UCAL_DOW_LOCAL
, kResolveSTOP
},
280 { UCAL_DAY_OF_WEEK_IN_MONTH
, UCAL_DOW_LOCAL
, kResolveSTOP
},
281 { UCAL_DAY_OF_YEAR
, kResolveSTOP
},
282 { kResolveRemap
| UCAL_DAY_OF_MONTH
, UCAL_IS_LEAP_MONTH
, kResolveSTOP
},
286 { UCAL_WEEK_OF_YEAR
, kResolveSTOP
},
287 { UCAL_WEEK_OF_MONTH
, kResolveSTOP
},
288 { UCAL_DAY_OF_WEEK_IN_MONTH
, kResolveSTOP
},
289 { kResolveRemap
| UCAL_DAY_OF_WEEK_IN_MONTH
, UCAL_DAY_OF_WEEK
, kResolveSTOP
},
290 { kResolveRemap
| UCAL_DAY_OF_WEEK_IN_MONTH
, UCAL_DOW_LOCAL
, kResolveSTOP
},
297 * Override Calendar to add IS_LEAP_MONTH to the field resolution
301 const UFieldResolutionTable
* ChineseCalendar::getFieldResolutionTable() const {
302 return CHINESE_DATE_PRECEDENCE
;
306 * Return the Julian day number of day before the first day of the
307 * given month in the given extended year.
309 * <p>Note: This method reads the IS_LEAP_MONTH field to determine
310 * whether the given month is a leap month.
311 * @param eyear the extended year
312 * @param month the zero-based month. The month is also determined
313 * by reading the IS_LEAP_MONTH field.
314 * @return the Julian day number of the day before the first
315 * day of the given month and year
318 int32_t ChineseCalendar::handleComputeMonthStart(int32_t eyear
, int32_t month
, UBool useMonth
) const {
320 ChineseCalendar
*nonConstThis
= (ChineseCalendar
*)this; // cast away const
322 // If the month is out of range, adjust it into range, and
323 // modify the extended year value accordingly.
324 if (month
< 0 || month
> 11) {
326 eyear
+= (int32_t)ClockMath::floorDivide(m
, 12.0, m
);
330 int32_t gyear
= eyear
+ fEpochYear
- 1; // Gregorian year
331 int32_t theNewYear
= newYear(gyear
);
332 int32_t newMoon
= newMoonNear(theNewYear
+ month
* 29, TRUE
);
334 int32_t julianDay
= newMoon
+ kEpochStartAsJulianDay
;
336 // Save fields for later restoration
337 int32_t saveMonth
= internalGet(UCAL_MONTH
);
338 int32_t saveIsLeapMonth
= internalGet(UCAL_IS_LEAP_MONTH
);
340 // Ignore IS_LEAP_MONTH field if useMonth is false
341 int32_t isLeapMonth
= useMonth
? saveIsLeapMonth
: 0;
343 UErrorCode status
= U_ZERO_ERROR
;
344 nonConstThis
->computeGregorianFields(julianDay
, status
);
345 if (U_FAILURE(status
))
348 // This will modify the MONTH and IS_LEAP_MONTH fields (only)
349 nonConstThis
->computeChineseFields(newMoon
, getGregorianYear(),
350 getGregorianMonth(), FALSE
);
352 if (month
!= internalGet(UCAL_MONTH
) ||
353 isLeapMonth
!= internalGet(UCAL_IS_LEAP_MONTH
)) {
354 newMoon
= newMoonNear(newMoon
+ SYNODIC_GAP
, TRUE
);
355 julianDay
= newMoon
+ kEpochStartAsJulianDay
;
358 nonConstThis
->internalSet(UCAL_MONTH
, saveMonth
);
359 nonConstThis
->internalSet(UCAL_IS_LEAP_MONTH
, saveIsLeapMonth
);
361 return julianDay
- 1;
366 * Override Calendar to handle leap months properly.
369 void ChineseCalendar::add(UCalendarDateFields field
, int32_t amount
, UErrorCode
& status
) {
373 int32_t dom
= get(UCAL_DAY_OF_MONTH
, status
);
374 if (U_FAILURE(status
)) break;
375 int32_t day
= get(UCAL_JULIAN_DAY
, status
) - kEpochStartAsJulianDay
; // Get local day
376 if (U_FAILURE(status
)) break;
377 int32_t moon
= day
- dom
+ 1; // New moon
378 offsetMonth(moon
, dom
, amount
);
382 Calendar::add(field
, amount
, status
);
388 * Override Calendar to handle leap months properly.
391 void ChineseCalendar::add(EDateFields field
, int32_t amount
, UErrorCode
& status
) {
392 add((UCalendarDateFields
)field
, amount
, status
);
396 * Override Calendar to handle leap months properly.
399 void ChineseCalendar::roll(UCalendarDateFields field
, int32_t amount
, UErrorCode
& status
) {
403 int32_t dom
= get(UCAL_DAY_OF_MONTH
, status
);
404 if (U_FAILURE(status
)) break;
405 int32_t day
= get(UCAL_JULIAN_DAY
, status
) - kEpochStartAsJulianDay
; // Get local day
406 if (U_FAILURE(status
)) break;
407 int32_t moon
= day
- dom
+ 1; // New moon (start of this month)
409 // Note throughout the following: Months 12 and 1 are never
410 // followed by a leap month (D&R p. 185).
412 // Compute the adjusted month number m. This is zero-based
413 // value from 0..11 in a non-leap year, and from 0..12 in a
415 int32_t m
= get(UCAL_MONTH
, status
); // 0-based month
416 if (U_FAILURE(status
)) break;
417 if (isLeapYear
) { // (member variable)
418 if (get(UCAL_IS_LEAP_MONTH
, status
) == 1) {
421 // Check for a prior leap month. (In the
422 // following, month 0 is the first month of the
423 // year.) Month 0 is never followed by a leap
424 // month, and we know month m is not a leap month.
425 // moon1 will be the start of month 0 if there is
426 // no leap month between month 0 and month m;
427 // otherwise it will be the start of month 1.
429 (int) (CalendarAstronomer::SYNODIC_MONTH
* (m
- 0.5));
430 moon1
= newMoonNear(moon1
, TRUE
);
431 if (isLeapMonthBetween(moon1
, moon
)) {
435 if (U_FAILURE(status
)) break;
438 // Now do the standard roll computation on m, with the
439 // allowed range of 0..n-1, where n is 12 or 13.
440 int32_t n
= isLeapYear
? 13 : 12; // Months in this year
441 int32_t newM
= (m
+ amount
) % n
;
447 offsetMonth(moon
, dom
, newM
- m
);
452 Calendar::roll(field
, amount
, status
);
457 void ChineseCalendar::roll(EDateFields field
, int32_t amount
, UErrorCode
& status
) {
458 roll((UCalendarDateFields
)field
, amount
, status
);
462 //------------------------------------------------------------------
463 // Support methods and constants
464 //------------------------------------------------------------------
467 * Convert local days to UTC epoch milliseconds.
468 * This is not an accurate conversion in that getTimezoneOffset
469 * takes the milliseconds in GMT (not local time). In theory, more
470 * accurate algorithm can be implemented but practically we do not need
471 * to go through that complication as long as the historical timezone
472 * changes did not happen around the 'tricky' new moon (new moon around
475 * @param days days after January 1, 1970 0:00 in the astronomical base zone
476 * @return milliseconds after January 1, 1970 0:00 GMT
478 double ChineseCalendar::daysToMillis(double days
) const {
479 double millis
= days
* (double)kOneDay
;
480 if (fZoneAstroCalc
!= NULL
) {
481 int32_t rawOffset
, dstOffset
;
482 UErrorCode status
= U_ZERO_ERROR
;
483 fZoneAstroCalc
->getOffset(millis
, FALSE
, rawOffset
, dstOffset
, status
);
484 if (U_SUCCESS(status
)) {
485 return millis
- (double)(rawOffset
+ dstOffset
);
488 return millis
- (double)CHINA_OFFSET
;
492 * Convert UTC epoch milliseconds to local days.
493 * @param millis milliseconds after January 1, 1970 0:00 GMT
494 * @return days after January 1, 1970 0:00 in the astronomical base zone
496 double ChineseCalendar::millisToDays(double millis
) const {
497 if (fZoneAstroCalc
!= NULL
) {
498 int32_t rawOffset
, dstOffset
;
499 UErrorCode status
= U_ZERO_ERROR
;
500 fZoneAstroCalc
->getOffset(millis
, FALSE
, rawOffset
, dstOffset
, status
);
501 if (U_SUCCESS(status
)) {
502 return ClockMath::floorDivide(millis
+ (double)(rawOffset
+ dstOffset
), kOneDay
);
505 return ClockMath::floorDivide(millis
+ (double)CHINA_OFFSET
, kOneDay
);
508 //------------------------------------------------------------------
509 // Astronomical computations
510 //------------------------------------------------------------------
512 // bit array for gregorian 1900-2100 indicating years in
513 // which the linear estimate needs to be adjusted by -1
514 static const uint16_t winterSolsticeAdj
[] = {
515 0x0001, // 1900-1915, deltas for 1900
516 0x0444, // 1916-1931, deltas for 1918, 1922, 1926
518 0x8880, // 1948-1963, deltas for 1955, 1959, 1963
520 0x1100, // 1980-1995, deltas for 1988, 1992
521 0x0011, // 1996-2011, deltas for 1996, 2000
522 0x2200, // 2012-2027, deltas for 2021, 2025
523 0x0022, // 2028-2043, deltas for 2029, 2033
524 0x4000, // 2044-2059, deltas for 2058
525 0x0444, // 2060-2075, deltas for 2062, 2066, 2070
526 0x8000, // 2076-2091, deltas for 2091
527 0x0088, // 2092-2100, deltas for 2095, 2099
531 * Return the major solar term on or after December 15 of the given
532 * Gregorian year, that is, the winter solstice of the given year.
533 * Computations are relative to Asia/Shanghai time zone.
534 * @param gyear a Gregorian year
535 * @return days after January 1, 1970 0:00 Asia/Shanghai of the
536 * winter solstice of the given year
538 int32_t ChineseCalendar::winterSolstice(int32_t gyear
) const {
539 if (gyear
>= 1900 && gyear
<= 2100) {
540 // Don't use cache, just return linear estimate + table correction
541 int32_t gyearadj
= gyear
- 1900;
542 int32_t result
= (int32_t)(365.243*((double)gyearadj
) - 0.3) - 25211;
543 uint16_t bitmap
= winterSolsticeAdj
[gyearadj
/ 16];
545 uint16_t bitmask
= 1 << (gyearadj
% 16);
546 if ((bitmask
& bitmap
) != 0) {
553 UErrorCode status
= U_ZERO_ERROR
;
554 int32_t cacheValue
= CalendarCache::get(&gChineseCalendarWinterSolsticeCache
, gyear
, status
);
556 if (cacheValue
== 0) {
557 // In books December 15 is used, but it fails for some years
558 // using our algorithms, e.g.: 1298 1391 1492 1553 1560. That
559 // is, winterSolstice(1298) starts search at Dec 14 08:00:00
560 // PST 1298 with a final result of Dec 14 10:31:59 PST 1299.
561 double ms
= daysToMillis(Grego::fieldsToDay(gyear
, UCAL_DECEMBER
, 1));
563 umtx_lock(&astroLock
);
564 if(gChineseCalendarAstro
== NULL
) {
565 gChineseCalendarAstro
= new CalendarAstronomer();
566 ucln_i18n_registerCleanup(UCLN_I18N_CHINESE_CALENDAR
, calendar_chinese_cleanup
);
568 gChineseCalendarAstro
->setTime(ms
);
569 UDate solarLong
= gChineseCalendarAstro
->getSunTime(CalendarAstronomer::WINTER_SOLSTICE(), TRUE
);
570 umtx_unlock(&astroLock
);
572 // Winter solstice is 270 degrees solar longitude aka Dongzhi
573 cacheValue
= (int32_t)millisToDays(solarLong
);
574 CalendarCache::put(&gChineseCalendarWinterSolsticeCache
, gyear
, cacheValue
, status
);
576 if(U_FAILURE(status
)) {
583 * Return the closest new moon to the given date, searching either
584 * forward or backward in time.
585 * @param days days after January 1, 1970 0:00 Asia/Shanghai
586 * @param after if true, search for a new moon on or after the given
587 * date; otherwise, search for a new moon before it
588 * @return days after January 1, 1970 0:00 Asia/Shanghai of the nearest
589 * new moon after or before <code>days</code>
591 int32_t ChineseCalendar::newMoonNear(double days
, UBool after
) const {
592 double ms
= daysToMillis(days
);
593 // Try to get the new moon via static function directly from the table in
594 // CalendarAstronomer (for approx gregorian range 1900-2100) without having
595 // to use a CalendarAstronomer instance which requires a lock. This still
596 // involves extra conversion to/from millis. If static function returns 0
597 // we are out of its range and need to use the full machinery.
598 UDate newMoon
= CalendarAstronomer::getNewMoonTimeInRange(ms
, after
);
599 if (newMoon
== 0.0) {
600 umtx_lock(&astroLock
);
601 if(gChineseCalendarAstro
== NULL
) {
602 gChineseCalendarAstro
= new CalendarAstronomer();
603 ucln_i18n_registerCleanup(UCLN_I18N_CHINESE_CALENDAR
, calendar_chinese_cleanup
);
605 gChineseCalendarAstro
->setTime(ms
);
606 newMoon
= gChineseCalendarAstro
->getMoonTime(CalendarAstronomer::NEW_MOON(), after
);
607 umtx_unlock(&astroLock
);
610 return (int32_t) millisToDays(newMoon
);
614 * Return the nearest integer number of synodic months between
616 * @param day1 days after January 1, 1970 0:00 Asia/Shanghai
617 * @param day2 days after January 1, 1970 0:00 Asia/Shanghai
618 * @return the nearest integer number of months between day1 and day2
620 int32_t ChineseCalendar::synodicMonthsBetween(int32_t day1
, int32_t day2
) const {
621 double roundme
= ((day2
- day1
) / CalendarAstronomer::SYNODIC_MONTH
);
622 return (int32_t) (roundme
+ (roundme
>= 0 ? .5 : -.5));
626 * Return the major solar term on or before a given date. This
627 * will be an integer from 1..12, with 1 corresponding to 330 degrees,
628 * 2 to 0 degrees, 3 to 30 degrees,..., and 12 to 300 degrees.
629 * @param days days after January 1, 1970 0:00 Asia/Shanghai
631 int32_t ChineseCalendar::majorSolarTerm(int32_t days
) const {
633 double ms
= daysToMillis(days
);
634 UDate solarLongitude
= CalendarAstronomer::getSunLongitudeForTime(ms
);
636 // There was almost never any benefit to using the CalendarAstronomer instance;
637 // it could cache intermediate results, but we rarely used it multiple times in
638 // succession for the same setTime value, so the intermediate results got
641 // Deleted call to gChineseCalendarAstro->getSunLongitude() now that
642 // we use CalendarAstronomer::getSunLongitudeForTime()
644 // Compute (floor(solarLongitude / (pi/6)) + 2) % 12
645 int32_t term
= ( ((int32_t)(6 * solarLongitude
/ CalendarAstronomer::PI
)) + 2 ) % 12;
653 * Return true if the given month lacks a major solar term.
654 * @param newMoon days after January 1, 1970 0:00 Asia/Shanghai of a new
657 UBool
ChineseCalendar::hasNoMajorSolarTerm(int32_t newMoon
) const {
658 return majorSolarTerm(newMoon
) ==
659 majorSolarTerm(newMoonNear(newMoon
+ SYNODIC_GAP
, TRUE
));
663 //------------------------------------------------------------------
665 //------------------------------------------------------------------
668 * Return true if there is a leap month on or after month newMoon1 and
669 * at or before month newMoon2.
670 * @param newMoon1 days after January 1, 1970 0:00 astronomical base zone
672 * @param newMoon2 days after January 1, 1970 0:00 astronomical base zone
675 UBool
ChineseCalendar::isLeapMonthBetween(int32_t newMoon1
, int32_t newMoon2
) const {
677 #ifdef U_DEBUG_CHNSECAL
678 // This is only needed to debug the timeOfAngle divergence bug.
679 // Remove this later. Liu 11/9/00
680 if (synodicMonthsBetween(newMoon1
, newMoon2
) >= 50) {
681 U_DEBUG_CHNSECAL_MSG((
682 "isLeapMonthBetween(%d, %d): Invalid parameters", newMoon1
, newMoon2
687 return (newMoon2
>= newMoon1
) &&
688 (isLeapMonthBetween(newMoon1
, newMoonNear(newMoon2
- SYNODIC_GAP
, FALSE
)) ||
689 hasNoMajorSolarTerm(newMoon2
));
693 * Compute fields for the Chinese calendar system. This method can
694 * either set all relevant fields, as required by
695 * <code>handleComputeFields()</code>, or it can just set the MONTH and
696 * IS_LEAP_MONTH fields, as required by
697 * <code>handleComputeMonthStart()</code>.
699 * <p>As a side effect, this method sets {@link #isLeapYear}.
700 * @param days days after January 1, 1970 0:00 astronomical base zone
701 * of the date to compute fields for
702 * @param gyear the Gregorian year of the given date
703 * @param gmonth the Gregorian month of the given date
704 * @param setAllFields if true, set the EXTENDED_YEAR, ERA, YEAR,
705 * DAY_OF_MONTH, and DAY_OF_YEAR fields. In either case set the MONTH
706 * and IS_LEAP_MONTH fields.
708 void ChineseCalendar::computeChineseFields(int32_t days
, int32_t gyear
, int32_t gmonth
,
709 UBool setAllFields
) {
711 // Find the winter solstices before and after the target date.
712 // These define the boundaries of this Chinese year, specifically,
713 // the position of month 11, which always contains the solstice.
714 // We want solsticeBefore <= date < solsticeAfter.
715 int32_t solsticeBefore
;
716 int32_t solsticeAfter
= winterSolstice(gyear
);
717 if (days
< solsticeAfter
) {
718 solsticeBefore
= winterSolstice(gyear
- 1);
720 solsticeBefore
= solsticeAfter
;
721 solsticeAfter
= winterSolstice(gyear
+ 1);
724 // Find the start of the month after month 11. This will be either
725 // the prior month 12 or leap month 11 (very rare). Also find the
726 // start of the following month 11.
727 int32_t firstMoon
= newMoonNear(solsticeBefore
+ 1, TRUE
);
728 int32_t lastMoon
= newMoonNear(solsticeAfter
+ 1, FALSE
);
729 int32_t thisMoon
= newMoonNear(days
+ 1, FALSE
); // Start of this month
730 // Note: isLeapYear is a member variable
731 isLeapYear
= synodicMonthsBetween(firstMoon
, lastMoon
) == 12;
733 int32_t month
= synodicMonthsBetween(firstMoon
, thisMoon
);
734 if (isLeapYear
&& isLeapMonthBetween(firstMoon
, thisMoon
)) {
741 UBool isLeapMonth
= isLeapYear
&&
742 hasNoMajorSolarTerm(thisMoon
) &&
743 !isLeapMonthBetween(firstMoon
, newMoonNear(thisMoon
- SYNODIC_GAP
, FALSE
));
745 internalSet(UCAL_MONTH
, month
-1); // Convert from 1-based to 0-based
746 internalSet(UCAL_IS_LEAP_MONTH
, isLeapMonth
?1:0);
750 // Extended year and cycle year is based on the epoch year
752 int32_t extended_year
= gyear
- fEpochYear
;
753 int cycle_year
= gyear
- CHINESE_EPOCH_YEAR
;
755 gmonth
>= UCAL_JULY
) {
759 int32_t dayOfMonth
= days
- thisMoon
+ 1;
761 internalSet(UCAL_EXTENDED_YEAR
, extended_year
);
763 // 0->0,60 1->1,1 60->1,60 61->2,1 etc.
765 int32_t cycle
= ClockMath::floorDivide(cycle_year
- 1, 60, yearOfCycle
);
766 internalSet(UCAL_ERA
, cycle
+ 1);
767 internalSet(UCAL_YEAR
, yearOfCycle
+ 1);
769 internalSet(UCAL_DAY_OF_MONTH
, dayOfMonth
);
771 // Days will be before the first new year we compute if this
772 // date is in month 11, leap 11, 12. There is never a leap 12.
773 // New year computations are cached so this should be cheap in
775 int32_t theNewYear
= newYear(gyear
);
776 if (days
< theNewYear
) {
777 theNewYear
= newYear(gyear
-1);
779 internalSet(UCAL_DAY_OF_YEAR
, days
- theNewYear
+ 1);
784 //------------------------------------------------------------------
786 //------------------------------------------------------------------
788 // for gyear 1900 through 2100, corrections to linear estimate of newYear
789 static const int8_t newYearAdj
[] = {
790 -5, 14, 3, -7, 11, -1, -11, 8, -3, -14, 5, -6, 13, 1, -10, 9, -1, -13, 6, -4, // 1900-1919
791 15, 3, -8, 11, 0, -12, 8, -3, -13, 5, -6, 12, 1, -10, 9, -1, -12, 6, -5, 14, // 1920-1939
792 3, -9, 10, 0, -11, 9, -3, -14, 5, -6, 12, 1, -9, 10, -2, -12, 7, -4, 13, 3, // 1940-1959
793 -8, 11, 0, -11, 8, -2, -15, 4, -6, 13, 1, -9, 10, -1, -13, 6, -5, 14, 2, -8, // 1960-1979
794 11, 1, -11, 8, -3, 16, 5, -7, 12, 2, -8, 10, -1, -12, 6, -5, 14, 3, -7, 11, // 1980-1999
795 0, -11, 8, -4, -14, 5, -6, 13, 2, -9, 10, -2, -13, 6, -4, 14, 3, -7, 12, 0, // 2000-2019
796 -11, 8, -3, -14, 5, -6, 13, 2, -10, 9, -1, -12, 6, -4, 15, 4, -8, 11, 0, -11, // 2020-2039
797 7, -3, -13, 6, -6, 13, 2, -9, 9, -2, -12, 7, -4, 15, 4, -7, 10, 0, -11, 8, // 2040-2059
798 -3, -14, 5, -6, 12, 1, -9, 10, -1, -12, 7, -4, 15, 3, -8, 11, 1, -11, 8, -2, // 2060-2079
799 -13, 5, -6, 13, 2, -9, 10, -1, -11, 6, -5, 14, 3, -8, 11, 1, -10, 8, -3, -14, // 2080-2099
804 * Return the Chinese new year of the given Gregorian year.
805 * @param gyear a Gregorian year
806 * @return days after January 1, 1970 0:00 astronomical base zone of the
807 * Chinese new year of the given year (this will be a new moon)
809 int32_t ChineseCalendar::newYear(int32_t gyear
) const {
810 if (gyear
>= 1900 && gyear
<= 2100) {
811 // Don't use cache, just return linear estimate + table correction
812 int32_t gyearadj
= gyear
- 1900;
813 return (int32_t)(365.244*((double)gyearadj
)) - 25532 + newYearAdj
[gyearadj
];
816 UErrorCode status
= U_ZERO_ERROR
;
817 int32_t cacheValue
= CalendarCache::get(&gChineseCalendarNewYearCache
, gyear
, status
);
819 if (cacheValue
== 0) {
821 int32_t solsticeBefore
= winterSolstice(gyear
- 1);
822 int32_t solsticeAfter
= winterSolstice(gyear
);
823 int32_t newMoon1
= newMoonNear(solsticeBefore
+ 1, TRUE
);
824 int32_t newMoon2
= newMoonNear(newMoon1
+ SYNODIC_GAP
, TRUE
);
825 int32_t newMoon11
= newMoonNear(solsticeAfter
+ 1, FALSE
);
827 if (synodicMonthsBetween(newMoon1
, newMoon11
) == 12 &&
828 (hasNoMajorSolarTerm(newMoon1
) || hasNoMajorSolarTerm(newMoon2
))) {
829 cacheValue
= newMoonNear(newMoon2
+ SYNODIC_GAP
, TRUE
);
831 cacheValue
= newMoon2
;
834 CalendarCache::put(&gChineseCalendarNewYearCache
, gyear
, cacheValue
, status
);
836 if(U_FAILURE(status
)) {
843 * Adjust this calendar to be delta months before or after a given
844 * start position, pinning the day of month if necessary. The start
845 * position is given as a local days number for the start of the month
846 * and a day-of-month. Used by add() and roll().
847 * @param newMoon the local days of the first day of the month of the
848 * start position (days after January 1, 1970 0:00 Asia/Shanghai)
849 * @param dom the 1-based day-of-month of the start position
850 * @param delta the number of months to move forward or backward from
853 void ChineseCalendar::offsetMonth(int32_t newMoon
, int32_t dom
, int32_t delta
) {
854 UErrorCode status
= U_ZERO_ERROR
;
856 // Move to the middle of the month before our target month.
857 newMoon
+= (int32_t) (CalendarAstronomer::SYNODIC_MONTH
* (delta
- 0.5));
859 // Search forward to the target month's new moon
860 newMoon
= newMoonNear(newMoon
, TRUE
);
862 // Find the target dom
863 int32_t jd
= newMoon
+ kEpochStartAsJulianDay
- 1 + dom
;
865 // Pin the dom. In this calendar all months are 29 or 30 days
866 // so pinning just means handling dom 30.
868 set(UCAL_JULIAN_DAY
, jd
-1);
869 // TODO Fix this. We really shouldn't ever have to
870 // explicitly call complete(). This is either a bug in
871 // this method, in ChineseCalendar, or in
872 // Calendar.getActualMaximum(). I suspect the last.
874 if (U_FAILURE(status
)) return;
875 if (getActualMaximum(UCAL_DAY_OF_MONTH
, status
) >= dom
) {
876 if (U_FAILURE(status
)) return;
877 set(UCAL_JULIAN_DAY
, jd
);
880 set(UCAL_JULIAN_DAY
, jd
);
886 ChineseCalendar::inDaylightTime(UErrorCode
& status
) const
888 // copied from GregorianCalendar
889 if (U_FAILURE(status
) || !getTimeZone().useDaylightTime())
892 // Force an update of the state of the Calendar.
893 ((ChineseCalendar
*)this)->complete(status
); // cast away const
895 return (UBool
)(U_SUCCESS(status
) ? (internalGet(UCAL_DST_OFFSET
) != 0) : FALSE
);
900 static UDate gSystemDefaultCenturyStart
= DBL_MIN
;
901 static int32_t gSystemDefaultCenturyStartYear
= -1;
902 static icu::UInitOnce gSystemDefaultCenturyInitOnce
= U_INITONCE_INITIALIZER
;
905 UBool
ChineseCalendar::haveDefaultCentury() const
910 UDate
ChineseCalendar::defaultCenturyStart() const
912 return internalGetDefaultCenturyStart();
915 int32_t ChineseCalendar::defaultCenturyStartYear() const
917 return internalGetDefaultCenturyStartYear();
920 static void U_CALLCONV
initializeSystemDefaultCentury()
922 // initialize systemDefaultCentury and systemDefaultCenturyYear based
923 // on the current time. They'll be set to 80 years before
925 UErrorCode status
= U_ZERO_ERROR
;
926 ChineseCalendar
calendar(Locale("@calendar=chinese"),status
);
927 if (U_SUCCESS(status
)) {
928 calendar
.setTime(Calendar::getNow(), status
);
929 calendar
.add(UCAL_YEAR
, -80, status
);
930 gSystemDefaultCenturyStart
= calendar
.getTime(status
);
931 gSystemDefaultCenturyStartYear
= calendar
.get(UCAL_YEAR
, status
);
933 // We have no recourse upon failure unless we want to propagate the failure
938 ChineseCalendar::internalGetDefaultCenturyStart() const
940 // lazy-evaluate systemDefaultCenturyStart
941 umtx_initOnce(gSystemDefaultCenturyInitOnce
, &initializeSystemDefaultCentury
);
942 return gSystemDefaultCenturyStart
;
946 ChineseCalendar::internalGetDefaultCenturyStartYear() const
948 // lazy-evaluate systemDefaultCenturyStartYear
949 umtx_initOnce(gSystemDefaultCenturyInitOnce
, &initializeSystemDefaultCentury
);
950 return gSystemDefaultCenturyStartYear
;
953 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(ChineseCalendar
)