jollyday icon indicating copy to clipboard operation
jollyday copied to clipboard

Chinese Holiday

Open fanste opened this issue 7 years ago • 10 comments

Is there a chance to get a chinese holiday XML file? Is the library even prepared to calculate those holidays?

Thanks.

fanste avatar Mar 08 '17 11:03 fanste

There is a branch of jollyday from Soeren Strassfeld who tried to implement a chinese calendar. I haven't checked if he succeeded. Do you mind checking it? Come back any time an if it is ok I will try to merge it then.

https://github.com/soe78/jollyday

Cheers and thanks in advance.

svendiedrichsen avatar Mar 08 '17 19:03 svendiedrichsen

I still hat no time to check the fork in my application, but the code doesn't look like it is completed.

I will come back as soon as I had the time to try it.

fanste avatar Mar 14 '17 10:03 fanste

I'm very sorry I "ignored" Jollyday for almost 2 years after playing around with it and then coming back and find my name in an open issue. Three things kept me from making a pull request.

  1. The calculations are based on the icu4j chinese calendar, so it would introduce another dependeny.
  2. I am still unsure about Qingming - is it just 15 days after spring equinox or is its celebration based on the solar term celestial longitude of 15°
  3. I did not implement "holiday swapping" for example if labour day is on a weekend, you will get an extra day of on monday. I'm also not clear if this is in the scope of jollyday I also ignored the special holidays for ethic minorities. As java 8 comes with an islamic calendar it should be easy to implement these (jollyday does already), but I hardly found information about the tibetan calendar.

soe78 avatar Nov 30 '17 21:11 soe78

@soe78 My main problem with ICU4J is not that it forms another dependency but because its astronomical calculations are known to be not very precise. And this fact causes some chinese calendar dates in ICU4J to be wrong at least in historic times.

By the way, my hope that standard Java will ever realize this calendar is almost zero because it is not simple at all, requires strong astronomical background and has occasionally leap months which don't fit well in the java.time-calendar design (Chinese leap months require the SAME number as the foregoing month but this is not possible neither in the ICU4J-design nor in the new java.time.chrono-design). You seem to think that the islamic calendar of Java-8 is difficult, but it is basically just a data table of month lengths per year (always 12 months) so it was relatively easy to implement. The Chinese calendar is really in another league of complexity.

Anyway, I think I can implement the Chinese calendar in medium term (hopefully until spring 2018) because I have already done some important preparations, for example calculation of new moon and east asian months, see also an issue in my lib Time4J. After that, I can also imagine to contribute Chinese holidays to this project.

MenoData avatar Dec 04 '17 15:12 MenoData

@MenoData @soe78 A perfect implementation would be imho a JDK Chronology based one. Ideally as an contribution to the Threeten Project. This way a maximnum number of people would benefit from it.

svendiedrichsen avatar Dec 04 '17 16:12 svendiedrichsen

@svendiedrichsen Unfortunately the calendar design of JDK (java.time.chrono) is not perfect. It is mainly designed for calendars with regular year-month-day-scheme and was never tested or discussed in more depth for calendars with different structures (calendar experts for Hebrew or Chinese were practically not involved).

So I fear that any hackish workaround in Threeten-Extra will also be broken or insufficient in several details (like now the i18n-features of Ethiopian calendar [to be fair, here not relevant for Jollyday] or the algorithmic limitations of actual JDK-8-HijrahCalendar - only Umalqura is offered [this is relevant for Jollyday]).

MenoData avatar Dec 04 '17 16:12 MenoData

If a java.time.chrono.ChineseChronology is ever to be happen then it must be an Oracle project, not in Threeten-Extra because otherwise it would not be possible to parse or format any real Chinese date due to some special features around leap months or year representations (year of the rat etc.). This task requires deeper changes to JDK-code which is not in the scope of Threeten-Extra.

But the good news is, my lib Time4J would take into account all aspects of a Chinese calendar in the future, including wide formatting and parsing capabilities in many languages.

MenoData avatar Dec 04 '17 17:12 MenoData

Looking forward to hearing from you.

svendiedrichsen avatar Dec 04 '17 18:12 svendiedrichsen

@MenoData as I've seen you have completed your work on the chinese calendar part in your lib Time4J. Could you tell us if and when your time allows you to contribute Chinese holidays to jolliday?

fanste avatar Jun 01 '18 11:06 fanste

@fanste Yes, the Chinese calendar part of Time4J is now finished and ready to use. If we only speak about Java-8 then nothing will prevent a new pull request.

But some few things are still to do in context of modular Java-9 and OSGi. I hope to find some time for the necessary adjustments soon (mainly on the area of resource loading). Some work has already been done, for example automatic module names. These issues are similar to the obstacles with the combination of Jollyday and Java-9 (indirectly via the actual dependency on Threeten-Extra).

MenoData avatar Jun 05 '18 06:06 MenoData