Bump version to 6.0-36
[LibreOffice.git] / i18npool / source / calendar / calendar_jewish.cxx
blob3dff440e7e1b4c7607074cb7d6a6755fad8fc627
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
21 #include <math.h>
22 #include <stdio.h>
24 #include <calendar_jewish.hxx>
26 using namespace ::com::sun::star::uno;
27 using namespace ::com::sun::star::i18n;
28 using namespace ::com::sun::star::lang;
30 namespace i18npool {
32 // not used
33 //static UErrorCode status; // status is shared in all calls to Calendar, it has to be reset for each call.
35 Calendar_jewish::Calendar_jewish()
37 cCalendar = "com.sun.star.i18n.Calendar_jewish";
40 // The following C++ code is translated from the Lisp code in
41 // ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
42 // Software---Practice & Experience, vol. 20, no. 9 (September, 1990),
43 // pp. 899--928.
45 // This code is in the public domain, but any use of it
46 // should acknowledge its source.
47 // https://web.archive.org/web/20010222054702/http://www.ntu.edu.sg/home/ayxyan/date1.txt
49 // Hebrew dates
51 const int HebrewEpoch = -1373429; // Absolute date of start of Hebrew calendar
53 // True if year is an Hebrew leap year
54 bool HebrewLeapYear(sal_Int32 year) {
55 return ((((7 * year) + 1) % 19) < 7);
58 // Last month of Hebrew year.
59 sal_Int32 LastMonthOfHebrewYear(sal_Int32 year) {
60 return (HebrewLeapYear(year)) ? 13 : 12;
63 // Number of days elapsed from the Sunday prior to the start of the
64 // Hebrew calendar to the mean conjunction of Tishri of Hebrew year.
65 sal_Int32 HebrewCalendarElapsedDays(sal_Int32 year) {
66 sal_Int32 MonthsElapsed =
67 (235 * ((year - 1) / 19)) // Months in complete cycles so far.
68 + (12 * ((year - 1) % 19)) // Regular months in this cycle.
69 + (7 * ((year - 1) % 19) + 1) / 19; // Leap months this cycle
70 sal_Int32 PartsElapsed = 204 + 793 * (MonthsElapsed % 1080);
71 int HoursElapsed =
72 5 + 12 * MonthsElapsed + 793 * (MonthsElapsed / 1080)
73 + PartsElapsed / 1080;
74 sal_Int32 ConjunctionDay = 1 + 29 * MonthsElapsed + HoursElapsed / 24;
75 sal_Int32 ConjunctionParts = 1080 * (HoursElapsed % 24) + PartsElapsed % 1080;
76 sal_Int32 AlternativeDay;
78 if ((ConjunctionParts >= 19440) // If new moon is at or after midday,
79 || (((ConjunctionDay % 7) == 2) // ...or is on a Tuesday...
80 && (ConjunctionParts >= 9924) // at 9 hours, 204 parts or later...
81 && !(HebrewLeapYear(year))) // ...of a common year,
82 || (((ConjunctionDay % 7) == 1) // ...or is on a Monday at...
83 && (ConjunctionParts >= 16789) // 15 hours, 589 parts or later...
84 && (HebrewLeapYear(year - 1))))// at the end of a leap year
85 // Then postpone Rosh HaShanah one day
86 AlternativeDay = ConjunctionDay + 1;
87 else
88 AlternativeDay = ConjunctionDay;
90 if (((AlternativeDay % 7) == 0)// If Rosh HaShanah would occur on Sunday,
91 || ((AlternativeDay % 7) == 3) // or Wednesday,
92 || ((AlternativeDay % 7) == 5)) // or Friday
93 // Then postpone it one (more) day
94 return (1+ AlternativeDay);
95 else
96 return AlternativeDay;
99 // Number of days in Hebrew year.
100 sal_Int32 DaysInHebrewYear(sal_Int32 year) {
101 return ((HebrewCalendarElapsedDays(year + 1)) -
102 (HebrewCalendarElapsedDays(year)));
105 // True if Heshvan is long in Hebrew year.
106 bool LongHeshvan(sal_Int32 year) {
107 return ((DaysInHebrewYear(year) % 10) == 5);
110 // True if Kislev is short in Hebrew year.
111 bool ShortKislev(sal_Int32 year) {
112 return ((DaysInHebrewYear(year) % 10) == 3);
115 // Last day of month in Hebrew year.
116 sal_Int32 LastDayOfHebrewMonth(sal_Int32 month, sal_Int32 year) {
117 if ((month == 2)
118 || (month == 4)
119 || (month == 6)
120 || ((month == 8) && !(LongHeshvan(year)))
121 || ((month == 9) && ShortKislev(year))
122 || (month == 10)
123 || ((month == 12) && !(HebrewLeapYear(year)))
124 || (month == 13))
125 return 29;
126 else
127 return 30;
131 class HebrewDate {
132 private:
133 sal_Int32 year; // 1...
134 sal_Int32 month; // 1..LastMonthOfHebrewYear(year)
135 sal_Int32 day; // 1..LastDayOfHebrewMonth(month, year)
137 public:
138 HebrewDate(sal_Int32 m, sal_Int32 d, sal_Int32 y) { month = m; day = d; year = y; }
140 explicit HebrewDate(sal_Int32 d) { // Computes the Hebrew date from the absolute date.
141 year = (d + HebrewEpoch) / 366; // Approximation from below.
142 // Search forward for year from the approximation.
143 while (d >= HebrewDate(7,1,year + 1).GetAbsoluteDate())
144 year++;
145 // Search forward for month from either Tishri or Nisan.
146 if (d < HebrewDate(1, 1, year).GetAbsoluteDate())
147 month = 7; // Start at Tishri
148 else
149 month = 1; // Start at Nisan
150 while (d > HebrewDate(month, (LastDayOfHebrewMonth(month,year)), year).GetAbsoluteDate())
151 month++;
152 // Calculate the day by subtraction.
153 day = d - HebrewDate(month, 1, year).GetAbsoluteDate() + 1;
156 int GetAbsoluteDate() const { // Computes the absolute date of Hebrew date.
157 sal_Int32 DayInYear = day; // Days so far this month.
158 if (month < 7) { // Before Tishri, so add days in prior months
159 // this year before and after Nisan.
160 sal_Int32 m = 7;
161 while (m <= (LastMonthOfHebrewYear(year))) {
162 DayInYear = DayInYear + LastDayOfHebrewMonth(m, year);
163 m++;
165 m = 1;
166 while (m < month) {
167 DayInYear = DayInYear + LastDayOfHebrewMonth(m, year);
168 m++;
171 else { // Add days in prior months this year
172 sal_Int32 m = 7;
173 while (m < month) {
174 DayInYear = DayInYear + LastDayOfHebrewMonth(m, year);
175 m++;
178 return (DayInYear +
179 (HebrewCalendarElapsedDays(year)// Days in prior years.
180 + HebrewEpoch)); // Days elapsed before absolute date 1.
183 sal_Int32 GetMonth() const { return month; }
184 sal_Int32 GetDay() const { return day; }
185 sal_Int32 GetYear() const { return year; }
189 // Gregorian dates
191 int LastDayOfGregorianMonth(int month, int year) {
192 // Compute the last date of the month for the Gregorian calendar.
194 switch (month) {
195 case 2:
196 if ((((year % 4) == 0) && ((year % 100) != 0))
197 || ((year % 400) == 0))
198 return 29;
199 else
200 return 28;
201 case 4:
202 case 6:
203 case 9:
204 case 11: return 30;
205 default: return 31;
209 class GregorianDate {
210 private:
211 int year; // 1...
212 int month; // 1 == January, ..., 12 == December
213 int day; // 1..LastDayOfGregorianMonth(month, year)
215 public:
216 GregorianDate(int m, int d, int y) { month = m; day = d; year = y; }
218 explicit GregorianDate(int d) { // Computes the Gregorian date from the absolute date.
219 // Search forward year by year from approximate year
220 year = d/366;
221 while (d >= GregorianDate(1,1,year+1).GetAbsoluteDate())
222 year++;
223 // Search forward month by month from January
224 month = 1;
225 while (d > GregorianDate(month, LastDayOfGregorianMonth(month,year), year).GetAbsoluteDate())
226 month++;
227 day = d - GregorianDate(month,1,year).GetAbsoluteDate() + 1;
230 int GetAbsoluteDate() const { // Computes the absolute date from the Gregorian date.
231 int N = day; // days this month
232 for (int m = month - 1; m > 0; m--) // days in prior months this year
233 N = N + LastDayOfGregorianMonth(m, year);
234 return
235 (N // days this year
236 + 365 * (year - 1) // days in previous years ignoring leap days
237 + (year - 1)/4 // Julian leap days before this year...
238 - (year - 1)/100 // ...minus prior century years...
239 + (year - 1)/400); // ...plus prior years divisible by 400
242 int GetMonth() const { return month; }
243 int GetDay() const { return day; }
244 int GetYear() const { return year; }
248 // map field value from gregorian calendar to other calendar, it can be overwritten by derived class.
249 void Calendar_jewish::mapFromGregorian()
251 int y = fieldValue[CalendarFieldIndex::YEAR];
252 if (fieldValue[CalendarFieldIndex::ERA] == 0)
253 y = 1 - y;
254 GregorianDate Temp(fieldValue[CalendarFieldIndex::MONTH] + 1, fieldValue[CalendarFieldIndex::DAY_OF_MONTH], y);
255 HebrewDate hd(Temp.GetAbsoluteDate());
257 fieldValue[CalendarFieldIndex::ERA] = hd.GetYear() <= 0 ? 0 : 1;
258 fieldValue[CalendarFieldIndex::MONTH] = sal::static_int_cast<sal_Int16>( hd.GetMonth() - 1 );
259 fieldValue[CalendarFieldIndex::DAY_OF_MONTH] = (sal_Int16)hd.GetDay();
260 fieldValue[CalendarFieldIndex::YEAR] = (sal_Int16)(hd.GetYear() <= 0 ? 1 - hd.GetYear() : hd.GetYear());
263 #define FIELDS ((1 << CalendarFieldIndex::ERA) | (1 << CalendarFieldIndex::YEAR) | (1 << CalendarFieldIndex::MONTH) | (1 << CalendarFieldIndex::DAY_OF_MONTH))
264 // map field value from other calendar to gregorian calendar, it should be implemented.
265 void Calendar_jewish::mapToGregorian()
267 if (fieldSet & FIELDS) {
268 sal_Int16 y = fieldSetValue[CalendarFieldIndex::YEAR];
269 if (fieldSetValue[CalendarFieldIndex::ERA] == 0)
270 y = 1 - y;
271 HebrewDate Temp(fieldSetValue[CalendarFieldIndex::MONTH] + 1, fieldSetValue[CalendarFieldIndex::DAY_OF_MONTH], y);
272 GregorianDate gd(Temp.GetAbsoluteDate());
274 fieldSetValue[CalendarFieldIndex::ERA] = gd.GetYear() <= 0 ? 0 : 1;
275 fieldSetValue[CalendarFieldIndex::MONTH] = sal::static_int_cast<sal_Int16>( gd.GetMonth() - 1 );
276 fieldSetValue[CalendarFieldIndex::DAY_OF_MONTH] = (sal_Int16)gd.GetDay();
277 fieldSetValue[CalendarFieldIndex::YEAR] = (sal_Int16)(gd.GetYear() <= 0 ? 1 - gd.GetYear() : gd.GetYear());
278 fieldSet |= FIELDS;
282 // Methods in XExtendedCalendar
283 OUString SAL_CALL
284 Calendar_jewish::getDisplayString( sal_Int32 nCalendarDisplayCode, sal_Int16 nNativeNumberMode )
286 nNativeNumberMode = NativeNumberMode::NATNUM2; // make Hebrew number for Jewish calendar
288 if (nCalendarDisplayCode == CalendarDisplayCode::SHORT_YEAR) {
289 sal_Int32 value = getValue(CalendarFieldIndex::YEAR) % 1000; // take last 3 digits
290 return mxNatNum->getNativeNumberString(OUString::number(value), aLocale, nNativeNumberMode );
292 else
293 return Calendar_gregorian::getDisplayString(nCalendarDisplayCode, nNativeNumberMode );
298 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */