1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
//! This module contains types and traits for use in the Chinese traditional lunar calendar,
//! as well as in related and derived calendars such as the Korean and Vietnamese lunar calendars.
use crate::{
calendar_arithmetic::{ArithmeticDate, CalendarArithmetic, PrecomputedDataSource},
error::DateError,
provider::chinese_based::{ChineseBasedCache, PackedChineseBasedYearInfo},
types::{MonthCode, MonthInfo},
Calendar, Iso,
};
use calendrical_calculations::chinese_based::{self, ChineseBased, YearBounds};
use calendrical_calculations::rata_die::RataDie;
use core::marker::PhantomData;
use tinystr::tinystr;
/// The trait ChineseBased is used by Chinese-based calendars to perform computations shared by such calendar.
///
/// For an example of how to use this trait, see `impl ChineseBasedWithDataLoading for Chinese` in [`Chinese`].
pub(crate) trait ChineseBasedWithDataLoading: Calendar {
type CB: ChineseBased;
/// Get the compiled const data for a ChineseBased calendar; can return `None` if the given year
/// does not correspond to any compiled data.
fn get_precomputed_data(&self) -> ChineseBasedPrecomputedData<'_, Self::CB>;
}
/// Contains any loaded precomputed data. If constructed with Default, will
/// *not* contain any extra data and will always compute stuff from scratch
#[derive(Default)]
pub(crate) struct ChineseBasedPrecomputedData<'a, CB: ChineseBased> {
data: Option<&'a ChineseBasedCache<'a>>,
_cb: PhantomData<CB>,
}
impl<CB: ChineseBased> PrecomputedDataSource<ChineseBasedYearInfo>
for ChineseBasedPrecomputedData<'_, CB>
{
fn load_or_compute_info(&self, related_iso: i32) -> ChineseBasedYearInfo {
self.data
.and_then(|d| {
Some(ChineseBasedYearInfo {
packed_data: d
.data
.get(usize::try_from(related_iso - d.first_related_iso_year).ok()?)?,
related_iso,
})
})
.unwrap_or_else(|| ChineseBasedYearInfo::compute::<CB>(related_iso))
}
}
impl<'b, CB: ChineseBased> ChineseBasedPrecomputedData<'b, CB> {
pub(crate) fn new(data: Option<&'b ChineseBasedCache<'b>>) -> Self {
Self {
data,
_cb: PhantomData,
}
}
/// Given an ISO date (in both ArithmeticDate and R.D. format), returns the ChineseBasedYearInfo and extended year for that date, loading
/// from cache or computing.
pub(crate) fn load_or_compute_info_for_rd(
&self,
rd: RataDie,
iso: ArithmeticDate<Iso>,
) -> ChineseBasedYearInfo {
if let Some(cached) = self.data.and_then(|d| {
let delta = usize::try_from(iso.year - d.first_related_iso_year).ok()?;
if delta == 0 {
return None;
}
let packed_data = d.data.get(delta)?;
if iso.day_of_year().0 > packed_data.ny_offset() as u16 {
Some(ChineseBasedYearInfo {
packed_data,
related_iso: iso.year,
})
} else {
// We're dealing with an ISO day in the beginning of the year, before Chinese New Year.
// Return data for the previous Chinese year instead.
if delta <= 1 {
return None;
}
Some(ChineseBasedYearInfo {
packed_data: d.data.get(delta - 1)?,
related_iso: iso.year - 1,
})
}
}) {
return cached;
};
// compute
let mid_year = calendrical_calculations::iso::fixed_from_iso(iso.year, 7, 1);
let year_bounds = YearBounds::compute::<CB>(mid_year);
let YearBounds { new_year, .. } = year_bounds;
if rd >= new_year {
ChineseBasedYearInfo::compute_with_yb::<CB>(iso.year, year_bounds)
} else {
ChineseBasedYearInfo::compute::<CB>(iso.year - 1)
}
}
}
/// A data struct used to load and use information for a set of ChineseBasedDates
#[derive(Copy, Clone, Debug, Eq, PartialEq, PartialOrd, Ord)]
// TODO(#3933): potentially make this smaller
pub(crate) struct ChineseBasedYearInfo {
/// Contains:
/// - length of each month in the year
/// - whether or not there is a leap month, and which month it is
/// - the date of Chinese New Year in the related ISO year
packed_data: PackedChineseBasedYearInfo,
pub(crate) related_iso: i32,
}
impl From<ChineseBasedYearInfo> for i32 {
fn from(value: ChineseBasedYearInfo) -> Self {
value.related_iso
}
}
impl ChineseBasedYearInfo {
/// Compute ChineseBasedYearInfo for a given extended year
fn compute<CB: ChineseBased>(related_iso: i32) -> Self {
let mid_year = calendrical_calculations::iso::fixed_from_iso(related_iso, 7, 1);
let year_bounds = YearBounds::compute::<CB>(mid_year);
Self::compute_with_yb::<CB>(related_iso, year_bounds)
}
/// Compute ChineseBasedYearInfo for a given extended year, for which you have already computed the YearBounds
fn compute_with_yb<CB: ChineseBased>(related_iso: i32, year_bounds: YearBounds) -> Self {
let YearBounds {
new_year,
next_new_year,
..
} = year_bounds;
let (month_lengths, leap_month) =
chinese_based::month_structure_for_year::<CB>(new_year, next_new_year);
let ny_offset = new_year - calendrical_calculations::iso::fixed_from_iso(related_iso, 1, 1);
Self {
packed_data: PackedChineseBasedYearInfo::new(month_lengths, leap_month, ny_offset),
related_iso,
}
}
/// Get the new year R.D.
pub(crate) fn new_year(self) -> RataDie {
calendrical_calculations::iso::fixed_from_iso(self.related_iso, 1, 1)
+ self.packed_data.ny_offset() as i64
}
/// Get the next new year R.D.
fn next_new_year(self) -> RataDie {
self.new_year() + i64::from(self.days_in_year())
}
/// Get which month is the leap month. This produces the month *number*
/// that is the leap month (not the ordinal month). In other words, for
/// a year with an M05L, this will return Some(5). Note that the regular month precedes
/// the leap month.
fn leap_month(self) -> Option<u8> {
self.packed_data.leap_month()
}
/// The last day of year in the previous month.
/// `month` is 1-indexed, and the returned value is also
/// a 1-indexed day of year
///
/// Will be zero for the first month as the last day of the previous month
/// is not in this year
fn last_day_of_previous_month(self, month: u8) -> u16 {
debug_assert!((1..=13).contains(&month), "Month out of bounds!");
// Get the last day of the previous month.
// Since `month` is 1-indexed, this needs to check if the month is 1 for the zero case
if month == 1 {
0
} else {
self.packed_data.last_day_of_month(month - 1)
}
}
fn days_in_year(self) -> u16 {
self.last_day_of_month(self.months_in_year())
}
/// Return the number of months in a given year, which is 13 in a leap year, and 12 in a common year.
fn months_in_year(self) -> u8 {
if self.leap_month().is_some() {
13
} else {
12
}
}
/// The last day of year in the current month.
/// `month` is 1-indexed, and the returned value is also
/// a 1-indexed day of year
///
/// Will be zero for the first month as the last day of the previous month
/// is not in this year
fn last_day_of_month(self, month: u8) -> u16 {
debug_assert!((1..=13).contains(&month), "Month out of bounds!");
self.packed_data.last_day_of_month(month)
}
fn days_in_month(self, month: u8) -> u8 {
if self.packed_data.month_has_30_days(month) {
30
} else {
29
}
}
pub(crate) fn md_from_rd(self, rd: RataDie) -> (u8, u8) {
debug_assert!(
rd < self.next_new_year(),
"Stored date {rd:?} out of bounds!"
);
// 1-indexed day of year
let day_of_year = u16::try_from(rd - self.new_year() + 1);
debug_assert!(day_of_year.is_ok(), "Somehow got a very large year in data");
let day_of_year = day_of_year.unwrap_or(1);
let mut month = 1;
// TODO(#3933) perhaps use a binary search
for iter_month in 1..=13 {
month = iter_month;
if self.last_day_of_month(iter_month) >= day_of_year {
break;
}
}
debug_assert!((1..=13).contains(&month), "Month out of bounds!");
debug_assert!(
month < 13 || self.leap_month().is_some(),
"Cannot have 13 months in a non-leap year!"
);
let day_before_month_start = self.last_day_of_previous_month(month);
let day_of_month = day_of_year - day_before_month_start;
let day_of_month = u8::try_from(day_of_month);
debug_assert!(day_of_month.is_ok(), "Month too big!");
let day_of_month = day_of_month.unwrap_or(1);
(month, day_of_month)
}
pub(crate) fn rd_from_md(self, month: u8, day: u8) -> RataDie {
self.new_year() + self.day_of_year(month, day) as i64 - 1
}
/// Calculate the number of days in the year so far for a ChineseBasedDate;
/// similar to `CalendarArithmetic::day_of_year`
pub(crate) fn day_of_year(self, month: u8, day: u8) -> u16 {
self.last_day_of_previous_month(month) + day as u16
}
/// The calendar-specific month code represented by `month`;
/// since the Chinese calendar has leap months, an "L" is appended to the month code for
/// leap months. For example, in a year where an intercalary month is added after the second
/// month, the month codes for ordinal months 1, 2, 3, 4, 5 would be "M01", "M02", "M02L", "M03", "M04".
pub(crate) fn month(self, month: u8) -> MonthInfo {
// 1 indexed leap month name. This is also the ordinal for the leap month
// in the year (e.g. in `M01, M01L, M02, ..`, the leap month is for month 1, and it is also
// ordinally `month 2`, zero-indexed)
// 14 is a sentinel value
let leap_month = self.leap_month().unwrap_or(14);
let code_inner = if leap_month == month {
// Month cannot be 1 because a year cannot have a leap month before the first actual month,
// and the maximum num of months ina leap year is 13.
debug_assert!((2..=13).contains(&month));
match month {
2 => tinystr!(4, "M01L"),
3 => tinystr!(4, "M02L"),
4 => tinystr!(4, "M03L"),
5 => tinystr!(4, "M04L"),
6 => tinystr!(4, "M05L"),
7 => tinystr!(4, "M06L"),
8 => tinystr!(4, "M07L"),
9 => tinystr!(4, "M08L"),
10 => tinystr!(4, "M09L"),
11 => tinystr!(4, "M10L"),
12 => tinystr!(4, "M11L"),
13 => tinystr!(4, "M12L"),
_ => tinystr!(4, "und"),
}
} else {
let mut adjusted_ordinal = month;
if month > leap_month {
// Before adjusting for leap month, if ordinal > leap_month,
// the month cannot be 1 because this implies the leap month is < 1, which is impossible;
// cannot be 2 because that implies the leap month is = 1, which is impossible,
// and cannot be more than 13 because max number of months in a year is 13.
debug_assert!((2..=13).contains(&month));
adjusted_ordinal -= 1;
}
debug_assert!((1..=12).contains(&adjusted_ordinal));
match adjusted_ordinal {
1 => tinystr!(4, "M01"),
2 => tinystr!(4, "M02"),
3 => tinystr!(4, "M03"),
4 => tinystr!(4, "M04"),
5 => tinystr!(4, "M05"),
6 => tinystr!(4, "M06"),
7 => tinystr!(4, "M07"),
8 => tinystr!(4, "M08"),
9 => tinystr!(4, "M09"),
10 => tinystr!(4, "M10"),
11 => tinystr!(4, "M11"),
12 => tinystr!(4, "M12"),
_ => tinystr!(4, "und"),
}
};
let code = MonthCode(code_inner);
MonthInfo {
ordinal: month,
standard_code: code,
formatting_code: code,
}
}
/// Create a new arithmetic date from a year, month ordinal, and day with bounds checking; returns the
/// result of creating this arithmetic date, as well as a ChineseBasedYearInfo - either the one passed in
/// optionally as an argument, or a new ChineseBasedYearInfo for the given year, month, and day args.
pub(crate) fn validate_md(self, month: u8, day: u8) -> Result<(), DateError> {
let max_month = self.months_in_year();
if month == 0 || !(1..=max_month).contains(&month) {
return Err(DateError::Range {
field: "month",
value: month as i32,
min: 1,
max: max_month as i32,
});
}
let max_day = self.days_in_month(month);
if day == 0 || day > max_day {
return Err(DateError::Range {
field: "day",
value: day as i32,
min: 1,
max: max_day as i32,
});
}
Ok(())
}
/// Get the ordinal lunar month from a code for chinese-based calendars.
pub(crate) fn parse_month_code(self, code: MonthCode) -> Option<u8> {
// 14 is a sentinel value, greater than all other months, for the purpose of computation only;
// it is impossible to actually have 14 months in a year.
let leap_month = self.leap_month().unwrap_or(14);
if code.0.len() < 3 {
return None;
}
let bytes = code.0.all_bytes();
if bytes[0] != b'M' {
return None;
}
if code.0.len() == 4 && bytes[3] != b'L' {
return None;
}
// Unadjusted is zero-indexed month index, must add one to it to use
let mut unadjusted = 0;
if bytes[1] == b'0' {
if bytes[2] >= b'1' && bytes[2] <= b'9' {
unadjusted = bytes[2] - b'0';
}
} else if bytes[1] == b'1' && bytes[2] >= b'0' && bytes[2] <= b'2' {
unadjusted = 10 + bytes[2] - b'0';
}
if bytes[3] == b'L' {
// Asked for a leap month that doesn't exist
if unadjusted + 1 != leap_month {
return None;
} else {
// The leap month occurs after the regular month of the same name
return Some(unadjusted + 1);
}
}
if unadjusted != 0 {
// If the month has an index greater than that of the leap month,
// bump it up by one
if unadjusted + 1 > leap_month {
return Some(unadjusted + 1);
} else {
return Some(unadjusted);
}
}
None
}
}
impl<C: ChineseBasedWithDataLoading> CalendarArithmetic for C {
type YearInfo = ChineseBasedYearInfo;
fn days_in_provided_month(year: ChineseBasedYearInfo, month: u8) -> u8 {
year.days_in_month(month)
}
/// Returns the number of months in a given year, which is 13 in a leap year, and 12 in a common year.
fn months_in_provided_year(year: ChineseBasedYearInfo) -> u8 {
year.months_in_year()
}
/// Returns true if the given year is a leap year, and false if not.
fn provided_year_is_leap(year: ChineseBasedYearInfo) -> bool {
year.leap_month().is_some()
}
/// Returns the (month, day) of the last day in a Chinese year (the day before Chinese New Year).
/// The last month in a year will always be 12 in a common year or 13 in a leap year. The day is
/// determined by finding the day immediately before the next new year and calculating the number
/// of days since the last new moon (beginning of the last month in the year).
fn last_month_day_in_provided_year(year: ChineseBasedYearInfo) -> (u8, u8) {
if year.leap_month().is_some() {
(13, year.days_in_month(13))
} else {
(12, year.days_in_month(12))
}
}
fn days_in_provided_year(year: ChineseBasedYearInfo) -> u16 {
year.days_in_year()
}
}
#[cfg(feature = "datagen")]
impl ChineseBasedCache<'_> {
/// Compute this data for a range of years
pub fn compute_for<CB: ChineseBased>(related_isos: core::ops::Range<i32>) -> Self {
ChineseBasedCache {
first_related_iso_year: related_isos.start,
data: related_isos
.map(|related_iso| ChineseBasedYearInfo::compute::<CB>(related_iso).packed_data)
.collect(),
}
}
}