PlainDate.cpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530
  1. /*
  2. * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
  3. * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #include <AK/TypeCasts.h>
  8. #include <LibJS/Runtime/AbstractOperations.h>
  9. #include <LibJS/Runtime/Completion.h>
  10. #include <LibJS/Runtime/Date.h>
  11. #include <LibJS/Runtime/GlobalObject.h>
  12. #include <LibJS/Runtime/Temporal/Calendar.h>
  13. #include <LibJS/Runtime/Temporal/Duration.h>
  14. #include <LibJS/Runtime/Temporal/Instant.h>
  15. #include <LibJS/Runtime/Temporal/PlainDate.h>
  16. #include <LibJS/Runtime/Temporal/PlainDateConstructor.h>
  17. #include <LibJS/Runtime/Temporal/PlainDateTime.h>
  18. #include <LibJS/Runtime/Temporal/PlainYearMonth.h>
  19. #include <LibJS/Runtime/Temporal/TimeZone.h>
  20. #include <LibJS/Runtime/Temporal/ZonedDateTime.h>
  21. namespace JS::Temporal {
  22. // 3 Temporal.PlainDate Objects, https://tc39.es/proposal-temporal/#sec-temporal-plaindate-objects
  23. PlainDate::PlainDate(i32 year, u8 month, u8 day, Object& calendar, Object& prototype)
  24. : Object(ConstructWithPrototypeTag::Tag, prototype)
  25. , m_iso_year(year)
  26. , m_iso_month(month)
  27. , m_iso_day(day)
  28. , m_calendar(calendar)
  29. {
  30. }
  31. void PlainDate::visit_edges(Visitor& visitor)
  32. {
  33. Base::visit_edges(visitor);
  34. visitor.visit(m_calendar);
  35. }
  36. // 3.5.2 CreateISODateRecord ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-create-iso-date-record
  37. ISODateRecord create_iso_date_record(i32 year, u8 month, u8 day)
  38. {
  39. // 1. Assert: IsValidISODate(year, month, day) is true.
  40. VERIFY(is_valid_iso_date(year, month, day));
  41. // 2. Return the Record { [[Year]]: year, [[Month]]: month, [[Day]]: day }.
  42. return { .year = year, .month = month, .day = day };
  43. }
  44. // 3.5.1 CreateTemporalDate ( isoYear, isoMonth, isoDay, calendar [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporaldate
  45. ThrowCompletionOr<PlainDate*> create_temporal_date(VM& vm, i32 iso_year, u8 iso_month, u8 iso_day, Object& calendar, FunctionObject const* new_target)
  46. {
  47. auto& realm = *vm.current_realm();
  48. // 1. Assert: isoYear is an integer.
  49. // 2. Assert: isoMonth is an integer.
  50. // 3. Assert: isoDay is an integer.
  51. // 4. Assert: Type(calendar) is Object.
  52. // 5. If IsValidISODate(isoYear, isoMonth, isoDay) is false, throw a RangeError exception.
  53. if (!is_valid_iso_date(iso_year, iso_month, iso_day))
  54. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidPlainDate);
  55. // 6. If ISODateTimeWithinLimits(isoYear, isoMonth, isoDay, 12, 0, 0, 0, 0, 0) is false, throw a RangeError exception.
  56. if (!iso_date_time_within_limits(iso_year, iso_month, iso_day, 12, 0, 0, 0, 0, 0))
  57. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidPlainDate);
  58. // 7. If newTarget is not present, set newTarget to %Temporal.PlainDate%.
  59. if (!new_target)
  60. new_target = realm.intrinsics().temporal_plain_date_constructor();
  61. // 8. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.PlainDate.prototype%", « [[InitializedTemporalDate]], [[ISOYear]], [[ISOMonth]], [[ISODay]], [[Calendar]] »).
  62. // 9. Set object.[[ISOYear]] to isoYear.
  63. // 10. Set object.[[ISOMonth]] to isoMonth.
  64. // 11. Set object.[[ISODay]] to isoDay.
  65. // 12. Set object.[[Calendar]] to calendar.
  66. auto object = TRY(ordinary_create_from_constructor<PlainDate>(vm, *new_target, &Intrinsics::temporal_plain_date_prototype, iso_year, iso_month, iso_day, calendar));
  67. return object.ptr();
  68. }
  69. // 3.5.2 ToTemporalDate ( item [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-totemporaldate
  70. ThrowCompletionOr<PlainDate*> to_temporal_date(VM& vm, Value item, Object const* options)
  71. {
  72. // 1. If options is not present, set options to undefined.
  73. // 2. Assert: Type(options) is Object or Undefined.
  74. // 3. If Type(item) is Object, then
  75. if (item.is_object()) {
  76. auto& item_object = item.as_object();
  77. // a. If item has an [[InitializedTemporalDate]] internal slot, then
  78. if (is<PlainDate>(item_object)) {
  79. // i. Return item.
  80. return static_cast<PlainDate*>(&item_object);
  81. }
  82. // b. If item has an [[InitializedTemporalZonedDateTime]] internal slot, then
  83. if (is<ZonedDateTime>(item_object)) {
  84. auto& zoned_date_time = static_cast<ZonedDateTime&>(item_object);
  85. // i. Perform ? ToTemporalOverflow(options).
  86. (void)TRY(to_temporal_overflow(vm, options));
  87. // ii. Let instant be ! CreateTemporalInstant(item.[[Nanoseconds]]).
  88. auto* instant = create_temporal_instant(vm, zoned_date_time.nanoseconds()).release_value();
  89. // iii. Let plainDateTime be ? BuiltinTimeZoneGetPlainDateTimeFor(item.[[TimeZone]], instant, item.[[Calendar]]).
  90. auto* plain_date_time = TRY(builtin_time_zone_get_plain_date_time_for(vm, &zoned_date_time.time_zone(), *instant, zoned_date_time.calendar()));
  91. // iv. Return ! CreateTemporalDate(plainDateTime.[[ISOYear]], plainDateTime.[[ISOMonth]], plainDateTime.[[ISODay]], plainDateTime.[[Calendar]]).
  92. return create_temporal_date(vm, plain_date_time->iso_year(), plain_date_time->iso_month(), plain_date_time->iso_day(), plain_date_time->calendar());
  93. }
  94. // c. If item has an [[InitializedTemporalDateTime]] internal slot, then
  95. if (is<PlainDateTime>(item_object)) {
  96. auto& date_time_item = static_cast<PlainDateTime&>(item_object);
  97. // i. Perform ? ToTemporalOverflow(options).
  98. (void)TRY(to_temporal_overflow(vm, options));
  99. // ii. Return ! CreateTemporalDate(item.[[ISOYear]], item.[[ISOMonth]], item.[[ISODay]], item.[[Calendar]]).
  100. return create_temporal_date(vm, date_time_item.iso_year(), date_time_item.iso_month(), date_time_item.iso_day(), date_time_item.calendar());
  101. }
  102. // d. Let calendar be ? GetTemporalCalendarWithISODefault(item).
  103. auto* calendar = TRY(get_temporal_calendar_with_iso_default(vm, item_object));
  104. // e. Let fieldNames be ? CalendarFields(calendar, « "day", "month", "monthCode", "year" »).
  105. auto field_names = TRY(calendar_fields(vm, *calendar, { "day"sv, "month"sv, "monthCode"sv, "year"sv }));
  106. // f. Let fields be ? PrepareTemporalFields(item, fieldNames, «»).
  107. auto* fields = TRY(prepare_temporal_fields(vm, item_object, field_names, Vector<StringView> {}));
  108. // g. Return ? CalendarDateFromFields(calendar, fields, options).
  109. return calendar_date_from_fields(vm, *calendar, *fields, options);
  110. }
  111. // 4. Perform ? ToTemporalOverflow(options).
  112. (void)TRY(to_temporal_overflow(vm, options));
  113. // 5. Let string be ? ToString(item).
  114. auto string = TRY(item.to_string(vm));
  115. // 6. Let result be ? ParseTemporalDateString(string).
  116. auto result = TRY(parse_temporal_date_string(vm, string));
  117. // 7. Assert: IsValidISODate(result.[[Year]], result.[[Month]], result.[[Day]]) is true.
  118. VERIFY(is_valid_iso_date(result.year, result.month, result.day));
  119. // 8. Let calendar be ? ToTemporalCalendarWithISODefault(result.[[Calendar]]).
  120. auto* calendar = TRY(to_temporal_calendar_with_iso_default(vm, result.calendar.has_value() ? PrimitiveString::create(vm, *result.calendar) : js_undefined()));
  121. // 9. Return ? CreateTemporalDate(result.[[Year]], result.[[Month]], result.[[Day]], calendar).
  122. return create_temporal_date(vm, result.year, result.month, result.day, *calendar);
  123. }
  124. // 3.5.3 DifferenceISODate ( y1, m1, d1, y2, m2, d2, largestUnit ), https://tc39.es/proposal-temporal/#sec-temporal-differenceisodate
  125. DateDurationRecord difference_iso_date(VM& vm, i32 year1, u8 month1, u8 day1, i32 year2, u8 month2, u8 day2, StringView largest_unit)
  126. {
  127. VERIFY(largest_unit.is_one_of("year"sv, "month"sv, "week"sv, "day"sv));
  128. // 1. If largestUnit is "year" or "month", then
  129. if (largest_unit.is_one_of("year"sv, "month"sv)) {
  130. // a. Let sign be -(! CompareISODate(y1, m1, d1, y2, m2, d2)).
  131. auto sign = -compare_iso_date(year1, month1, day1, year2, month2, day2);
  132. // b. If sign is 0, return ! CreateDateDurationRecord(0, 0, 0, 0).
  133. if (sign == 0)
  134. return create_date_duration_record(0, 0, 0, 0);
  135. // c. Let start be the Record { [[Year]]: y1, [[Month]]: m1, [[Day]]: d1 }.
  136. auto start = ISODateRecord { .year = year1, .month = month1, .day = day1 };
  137. // d. Let end be the Record { [[Year]]: y2, [[Month]]: m2, [[Day]]: d2 }.
  138. auto end = ISODateRecord { .year = year2, .month = month2, .day = day2 };
  139. // e. Let years be end.[[Year]] - start.[[Year]].
  140. double years = end.year - start.year;
  141. // f. Let mid be ! AddISODate(y1, m1, d1, years, 0, 0, 0, "constrain").
  142. auto mid = MUST(add_iso_date(vm, year1, month1, day1, years, 0, 0, 0, "constrain"sv));
  143. // g. Let midSign be -(! CompareISODate(mid.[[Year]], mid.[[Month]], mid.[[Day]], y2, m2, d2)).
  144. auto mid_sign = -compare_iso_date(mid.year, mid.month, mid.day, year2, month2, day2);
  145. // h. If midSign is 0, then
  146. if (mid_sign == 0) {
  147. // i. If largestUnit is "year", return ! CreateDateDurationRecord(years, 0, 0, 0).
  148. if (largest_unit == "year"sv)
  149. return create_date_duration_record(years, 0, 0, 0);
  150. // ii. Return ! CreateDateDurationRecord(0, years × 12, 0, 0).
  151. return create_date_duration_record(0, years * 12, 0, 0);
  152. }
  153. // i. Let months be end.[[Month]] - start.[[Month]].
  154. double months = end.month - start.month;
  155. // j. If midSign is not equal to sign, then
  156. if (mid_sign != sign) {
  157. // i. Set years to years - sign.
  158. years -= sign;
  159. // ii. Set months to months + sign × 12.
  160. months += sign * 12;
  161. }
  162. // k. Set mid to ! AddISODate(y1, m1, d1, years, months, 0, 0, "constrain").
  163. mid = MUST(add_iso_date(vm, year1, month1, day1, years, months, 0, 0, "constrain"sv));
  164. // l. Set midSign to -(! CompareISODate(mid.[[Year]], mid.[[Month]], mid.[[Day]], y2, m2, d2)).
  165. mid_sign = -compare_iso_date(mid.year, mid.month, mid.day, year2, month2, day2);
  166. // m. If midSign is 0, then
  167. if (mid_sign == 0) {
  168. // i. If largestUnit is "year", return ! CreateDateDurationRecord(years, months, 0, 0).
  169. if (largest_unit == "year"sv)
  170. return create_date_duration_record(years, months, 0, 0);
  171. // ii. Return ! CreateDateDurationRecord(0, months + years × 12, 0, 0).
  172. return create_date_duration_record(0, months + years * 12, 0, 0);
  173. }
  174. // n. If midSign is not equal to sign, then
  175. if (mid_sign != sign) {
  176. // i. Set months to months - sign.
  177. months -= sign;
  178. // ii. If months is equal to -sign, then
  179. if (months == -sign) {
  180. // 1. Set years to years - sign.
  181. years -= sign;
  182. // 2. Set months to 11 × sign.
  183. months = 11 * sign;
  184. }
  185. // iii. Set mid to ! AddISODate(y1, m1, d1, years, months, 0, 0, "constrain").
  186. mid = MUST(add_iso_date(vm, year1, month1, day1, years, months, 0, 0, "constrain"sv));
  187. }
  188. double days;
  189. // o. If mid.[[Month]] = end.[[Month]], then
  190. if (mid.month == end.month) {
  191. // i. Assert: mid.[[Year]] = end.[[Year]].
  192. VERIFY(mid.year == end.year);
  193. // ii. Let days be end.[[Day]] - mid.[[Day]].
  194. days = end.day - mid.day;
  195. }
  196. // p. Else if sign < 0, let days be -mid.[[Day]] - (! ISODaysInMonth(end.[[Year]], end.[[Month]]) - end.[[Day]]).
  197. else if (sign < 0) {
  198. days = -mid.day - (iso_days_in_month(end.year, end.month) - end.day);
  199. }
  200. // q. Else, let days be end.[[Day]] + (! ISODaysInMonth(mid.[[Year]], mid.[[Month]]) - mid.[[Day]]).
  201. else {
  202. days = end.day + (iso_days_in_month(mid.year, mid.month) - mid.day);
  203. }
  204. // r. If largestUnit is "month", then
  205. if (largest_unit == "month"sv) {
  206. // i. Set months to months + years × 12.
  207. months += years * 12;
  208. // ii. Set years to 0.
  209. years = 0;
  210. }
  211. // s. Return ! CreateDateDurationRecord(years, months, 0, days).
  212. return create_date_duration_record(years, months, 0, days);
  213. }
  214. // 2. Else,
  215. else {
  216. // a. Assert: largestUnit is "day" or "week".
  217. VERIFY(largest_unit.is_one_of("day"sv, "week"sv));
  218. // b. Let epochDays1 be MakeDay(𝔽(y1), 𝔽(m1 - 1), 𝔽(d1)).
  219. auto epoch_days_1 = make_day(year1, month1 - 1, day1);
  220. // c. Assert: epochDays1 is finite.
  221. VERIFY(isfinite(epoch_days_1));
  222. // d. Let epochDays2 be MakeDay(𝔽(y2), 𝔽(m2 - 1), 𝔽(d2)).
  223. auto epoch_days_2 = make_day(year2, month2 - 1, day2);
  224. // e. Assert: epochDays2 is finite.
  225. VERIFY(isfinite(epoch_days_2));
  226. // f. Let days be ℝ(epochDays2) - ℝ(epochDays1).
  227. auto days = epoch_days_2 - epoch_days_1;
  228. // g. Let weeks be 0.
  229. double weeks = 0;
  230. // h. If largestUnit is "week", then
  231. if (largest_unit == "week"sv) {
  232. // i. Set weeks to truncate(days / 7).
  233. weeks = trunc(days / 7);
  234. // ii. Set days to remainder(days, 7).
  235. days = fmod(days, 7);
  236. }
  237. // i. Return ! CreateDateDurationRecord(0, 0, weeks, days).
  238. return create_date_duration_record(0, 0, weeks, days);
  239. }
  240. }
  241. // 3.5.4 RegulateISODate ( year, month, day, overflow ), https://tc39.es/proposal-temporal/#sec-temporal-regulateisodate
  242. ThrowCompletionOr<ISODateRecord> regulate_iso_date(VM& vm, double year, double month, double day, StringView overflow)
  243. {
  244. VERIFY(year == trunc(year) && month == trunc(month) && day == trunc(day));
  245. // 1. If overflow is "constrain", then
  246. if (overflow == "constrain"sv) {
  247. // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat this double as normal integer from this point onwards. This
  248. // does not change the exposed behavior as the parent's call to CreateTemporalDate will immediately check that this value is a valid
  249. // ISO value for years: -273975 - 273975, which is a subset of this check.
  250. if (!AK::is_within_range<i32>(year))
  251. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidPlainDate);
  252. // a. Set month to the result of clamping month between 1 and 12.
  253. month = clamp(month, 1, 12);
  254. // b. Let daysInMonth be ! ISODaysInMonth(year, month).
  255. auto days_in_month = iso_days_in_month(static_cast<i32>(year), static_cast<u8>(month));
  256. // c. Set day to the result of clamping day between 1 and daysInMonth.
  257. day = clamp(day, 1, days_in_month);
  258. // d. Return CreateISODateRecord(year, month, day).
  259. return create_iso_date_record(static_cast<i32>(year), static_cast<u8>(month), static_cast<u8>(day));
  260. }
  261. // 2. Else,
  262. else {
  263. // a. Assert: overflow is "reject".
  264. VERIFY(overflow == "reject"sv);
  265. // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat these doubles as normal integers from this point onwards.
  266. // This does not change the exposed behavior as the call to IsValidISODate will immediately check that these values are valid ISO
  267. // values (for years: -273975 - 273975, for months: 1 - 12, for days: 1 - 31) all of which are subsets of this check.
  268. if (!AK::is_within_range<i32>(year) || !AK::is_within_range<u8>(month) || !AK::is_within_range<u8>(day))
  269. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidPlainDate);
  270. auto y = static_cast<i32>(year);
  271. auto m = static_cast<u8>(month);
  272. auto d = static_cast<u8>(day);
  273. // b. If IsValidISODate(year, month, day) is false, throw a RangeError exception.
  274. if (!is_valid_iso_date(y, m, d))
  275. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidPlainDate);
  276. // c. Return the Record { [[Year]]: year, [[Month]]: month, [[Day]]: day }.
  277. return ISODateRecord { .year = y, .month = m, .day = d };
  278. }
  279. }
  280. // 3.5.5 IsValidISODate ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-isvalidisodate
  281. bool is_valid_iso_date(i32 year, u8 month, u8 day)
  282. {
  283. // 1. If month < 1 or month > 12, then
  284. if (month < 1 || month > 12) {
  285. // a. Return false.
  286. return false;
  287. }
  288. // 2. Let daysInMonth be ! ISODaysInMonth(year, month).
  289. auto days_in_month = iso_days_in_month(year, month);
  290. // 3. If day < 1 or day > daysInMonth, then
  291. if (day < 1 || day > days_in_month) {
  292. // a. Return false.
  293. return false;
  294. }
  295. // 4. Return true.
  296. return true;
  297. }
  298. // 3.5.6 BalanceISODate ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-balanceisodate
  299. ISODateRecord balance_iso_date(double year, double month, double day)
  300. {
  301. // 1. Let epochDays be MakeDay(𝔽(year), 𝔽(month - 1), 𝔽(day)).
  302. auto epoch_days = make_day(year, month - 1, day);
  303. // 2. Assert: epochDays is finite.
  304. VERIFY(isfinite(epoch_days));
  305. // 3. Let ms be MakeDate(epochDays, +0𝔽).
  306. auto ms = make_date(epoch_days, 0);
  307. // 4. Return CreateISODateRecord(ℝ(YearFromTime(ms)), ℝ(MonthFromTime(ms)) + 1, ℝ(DateFromTime(ms))).
  308. return create_iso_date_record(year_from_time(ms), static_cast<u8>(month_from_time(ms) + 1), date_from_time(ms));
  309. }
  310. // 3.5.7 PadISOYear ( y ), https://tc39.es/proposal-temporal/#sec-temporal-padisoyear
  311. ThrowCompletionOr<String> pad_iso_year(VM& vm, i32 y)
  312. {
  313. // 1. Assert: y is an integer.
  314. // 2. If y ≥ 0 and y ≤ 9999, then
  315. if (y >= 0 && y <= 9999) {
  316. // a. Return ToZeroPaddedDecimalString(y, 4).
  317. return TRY_OR_THROW_OOM(vm, String::formatted("{:04}", y));
  318. }
  319. // 3. If y > 0, let yearSign be "+"; otherwise, let yearSign be "-".
  320. auto year_sign = y > 0 ? '+' : '-';
  321. // 4. Let year be ToZeroPaddedDecimalString(abs(y), 6).
  322. // 5. Return the string-concatenation of yearSign and year.
  323. return TRY_OR_THROW_OOM(vm, String::formatted("{}{:06}", year_sign, abs(y)));
  324. }
  325. // 3.5.8 TemporalDateToString ( temporalDate, showCalendar ), https://tc39.es/proposal-temporal/#sec-temporal-temporaldatetostring
  326. ThrowCompletionOr<String> temporal_date_to_string(VM& vm, PlainDate& temporal_date, StringView show_calendar)
  327. {
  328. // 1. Assert: Type(temporalDate) is Object.
  329. // 2. Assert: temporalDate has an [[InitializedTemporalDate]] internal slot.
  330. // 3. Let year be ! PadISOYear(temporalDate.[[ISOYear]]).
  331. auto year = MUST_OR_THROW_OOM(pad_iso_year(vm, temporal_date.iso_year()));
  332. // 4. Let month be ToZeroPaddedDecimalString(monthDay.[[ISOMonth]], 2).
  333. auto month = TRY_OR_THROW_OOM(vm, String::formatted("{:02}", temporal_date.iso_month()));
  334. // 5. Let day be ToZeroPaddedDecimalString(monthDay.[[ISODay]], 2).
  335. auto day = TRY_OR_THROW_OOM(vm, String::formatted("{:02}", temporal_date.iso_day()));
  336. // 6. Let calendar be ? MaybeFormatCalendarAnnotation(temporalDate.[[Calendar]], showCalendar).
  337. auto calendar = TRY(maybe_format_calendar_annotation(vm, &temporal_date.calendar(), show_calendar));
  338. // 7. Return the string-concatenation of year, the code unit 0x002D (HYPHEN-MINUS), month, the code unit 0x002D (HYPHEN-MINUS), day, and calendar.
  339. return TRY_OR_THROW_OOM(vm, String::formatted("{}-{}-{}{}", year, month, day, calendar));
  340. }
  341. // 3.5.9 AddISODate ( year, month, day, years, months, weeks, days, overflow ), https://tc39.es/proposal-temporal/#sec-temporal-addisodate
  342. ThrowCompletionOr<ISODateRecord> add_iso_date(VM& vm, i32 year, u8 month, u8 day, double years, double months, double weeks, double days, StringView overflow)
  343. {
  344. // 1. Assert: year, month, day, years, months, weeks, and days are integers.
  345. VERIFY(years == trunc(years) && months == trunc(months) && weeks == trunc(weeks) && days == trunc(days));
  346. // 2. Assert: overflow is either "constrain" or "reject".
  347. VERIFY(overflow == "constrain"sv || overflow == "reject"sv);
  348. // 3. Let intermediate be ! BalanceISOYearMonth(year + years, month + months).
  349. auto intermediate_year_month = balance_iso_year_month(year + years, month + months);
  350. // 4. Let intermediate be ? RegulateISODate(intermediate.[[Year]], intermediate.[[Month]], day, overflow).
  351. auto intermediate = TRY(regulate_iso_date(vm, intermediate_year_month.year, intermediate_year_month.month, day, overflow));
  352. // 5. Set days to days + 7 × weeks.
  353. days += 7 * weeks;
  354. // 6. Let d be intermediate.[[Day]] + days.
  355. auto d = intermediate.day + days;
  356. // 7. Return BalanceISODate(intermediate.[[Year]], intermediate.[[Month]], d).
  357. return balance_iso_date(intermediate.year, intermediate.month, d);
  358. }
  359. // 3.5.10 CompareISODate ( y1, m1, d1, y2, m2, d2 ), https://tc39.es/proposal-temporal/#sec-temporal-compareisodate
  360. i8 compare_iso_date(i32 year1, u8 month1, u8 day1, i32 year2, u8 month2, u8 day2)
  361. {
  362. // 1. Assert: y1, m1, d1, y2, m2, and d2 are integers.
  363. // 2. If y1 > y2, return 1.
  364. if (year1 > year2)
  365. return 1;
  366. // 3. If y1 < y2, return -1.
  367. if (year1 < year2)
  368. return -1;
  369. // 4. If m1 > m2, return 1.
  370. if (month1 > month2)
  371. return 1;
  372. // 5. If m1 < m2, return -1.
  373. if (month1 < month2)
  374. return -1;
  375. // 6. If d1 > d2, return 1.
  376. if (day1 > day2)
  377. return 1;
  378. // 7. If d1 < d2, return -1.
  379. if (day1 < day2)
  380. return -1;
  381. // 8. Return 0.
  382. return 0;
  383. }
  384. // 3.5.11 DifferenceTemporalPlainDate ( operation, temporalDate, other, options ), https://tc39.es/proposal-temporal/#sec-temporal-differencetemporalplaindate
  385. ThrowCompletionOr<Duration*> difference_temporal_plain_date(VM& vm, DifferenceOperation operation, PlainDate& temporal_date, Value other_value, Value options_value)
  386. {
  387. // 1. If operation is since, let sign be -1. Otherwise, let sign be 1.
  388. i8 sign = operation == DifferenceOperation::Since ? -1 : 1;
  389. // 2. Set other to ? ToTemporalDate(other).
  390. auto* other = TRY(to_temporal_date(vm, other_value));
  391. // 3. If ? CalendarEquals(temporalDate.[[Calendar]], other.[[Calendar]]) is false, throw a RangeError exception.
  392. if (!TRY(calendar_equals(vm, temporal_date.calendar(), other->calendar())))
  393. return vm.throw_completion<RangeError>(ErrorType::TemporalDifferentCalendars);
  394. // 4. Let settings be ? GetDifferenceSettings(operation, options, date, « », "day", "day").
  395. auto settings = TRY(get_difference_settings(vm, operation, options_value, UnitGroup::Date, {}, { "day"sv }, "day"sv));
  396. // 5. Let untilOptions be ? MergeLargestUnitOption(settings.[[Options]], settings.[[LargestUnit]]).
  397. auto* until_options = TRY(merge_largest_unit_option(vm, settings.options, move(settings.largest_unit)));
  398. // 6. Let result be ? CalendarDateUntil(temporalDate.[[Calendar]], temporalDate, other, untilOptions).
  399. auto* duration = TRY(calendar_date_until(vm, temporal_date.calendar(), &temporal_date, other, *until_options));
  400. auto result = DurationRecord { duration->years(), duration->months(), duration->weeks(), duration->days(), 0, 0, 0, 0, 0, 0 };
  401. // 7. If settings.[[SmallestUnit]] is not "day" or settings.[[RoundingIncrement]] ≠ 1, then
  402. if (settings.smallest_unit != "day"sv || settings.rounding_increment != 1) {
  403. // a. Set result to (? RoundDuration(result.[[Years]], result.[[Months]], result.[[Weeks]], result.[[Days]], 0, 0, 0, 0, 0, 0, settings.[[RoundingIncrement]], settings.[[SmallestUnit]], settings.[[RoundingMode]], temporalDate)).[[DurationRecord]].
  404. result = TRY(round_duration(vm, result.years, result.months, result.weeks, result.days, 0, 0, 0, 0, 0, 0, settings.rounding_increment, settings.smallest_unit, settings.rounding_mode, &temporal_date)).duration_record;
  405. }
  406. // 16. Return ! CreateTemporalDuration(sign × result.[[Years]], sign × result.[[Months]], sign × result.[[Weeks]], sign × result.[[Days]], 0, 0, 0, 0, 0, 0).
  407. return TRY(create_temporal_duration(vm, sign * result.years, sign * result.months, sign * result.weeks, sign * result.days, 0, 0, 0, 0, 0, 0));
  408. }
  409. }