123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318 |
- /*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
- * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org>
- * Copyright (c) 2024, Shannon Booth <shannon@serenityos.org>
- * Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <AK/Checked.h>
- #include <LibJS/Runtime/AbstractOperations.h>
- #include <LibJS/Runtime/Temporal/Calendar.h>
- #include <LibJS/Runtime/Temporal/DateEquations.h>
- #include <LibJS/Runtime/Temporal/PlainDate.h>
- #include <LibJS/Runtime/Temporal/PlainDateConstructor.h>
- #include <LibJS/Runtime/Temporal/PlainDateTime.h>
- #include <LibJS/Runtime/Temporal/PlainTime.h>
- namespace JS::Temporal {
- GC_DEFINE_ALLOCATOR(PlainDate);
- // 3 Temporal.PlainDate Objects, https://tc39.es/proposal-temporal/#sec-temporal-plaindate-objects
- PlainDate::PlainDate(ISODate iso_date, String calendar, Object& prototype)
- : Object(ConstructWithPrototypeTag::Tag, prototype)
- , m_iso_date(iso_date)
- , m_calendar(move(calendar))
- {
- }
- // 3.5.2 CreateISODateRecord ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-create-iso-date-record
- ISODate create_iso_date_record(double year, double month, double day)
- {
- // 1. Assert: IsValidISODate(year, month, day) is true.
- VERIFY(is_valid_iso_date(year, month, day));
- // 2. Return ISO Date Record { [[Year]]: year, [[Month]]: month, [[Day]]: day }.
- return { .year = static_cast<i32>(year), .month = static_cast<u8>(month), .day = static_cast<u8>(day) };
- }
- // 3.5.3 CreateTemporalDate ( isoDate, calendar [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporaldate
- ThrowCompletionOr<GC::Ref<PlainDate>> create_temporal_date(VM& vm, ISODate iso_date, String calendar, GC::Ptr<FunctionObject> new_target)
- {
- auto& realm = *vm.current_realm();
- // 1. If ISODateWithinLimits(isoDate) is false, throw a RangeError exception.
- if (!iso_date_within_limits(iso_date))
- return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidPlainDate);
- // 2. If newTarget is not present, set newTarget to %Temporal.PlainDate%.
- if (!new_target)
- new_target = realm.intrinsics().temporal_plain_date_constructor();
- // 3. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.PlainDate.prototype%", « [[InitializedTemporalDate]], [[ISODate]], [[Calendar]] »).
- // 4. Set object.[[ISODate]] to isoDate.
- // 5. Set object.[[Calendar]] to calendar.
- auto object = TRY(ordinary_create_from_constructor<PlainDate>(vm, *new_target, &Intrinsics::temporal_plain_date_prototype, iso_date, move(calendar)));
- // 6. Return object.
- return object;
- }
- // 3.5.4 ToTemporalDate ( item [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-totemporaldate
- ThrowCompletionOr<GC::Ref<PlainDate>> to_temporal_date(VM& vm, Value item, Value options)
- {
- // 1. If options is not present, set options to undefined.
- // 2. If item is an Object, then
- if (item.is_object()) {
- auto const& object = item.as_object();
- // a. If item has an [[InitializedTemporalDate]] internal slot, then
- if (is<PlainDate>(object)) {
- auto const& plain_date = static_cast<PlainDate const&>(object);
- // i. Let resolvedOptions be ? GetOptionsObject(options).
- auto resolved_options = TRY(get_options_object(vm, options));
- // ii. Perform ? GetTemporalOverflowOption(resolvedOptions).
- TRY(get_temporal_overflow_option(vm, resolved_options));
- // iii. Return ! CreateTemporalDate(item.[[ISODate]], item.[[Calendar]]).
- return MUST(create_temporal_date(vm, plain_date.iso_date(), plain_date.calendar()));
- }
- // FIXME: b. If item has an [[InitializedTemporalZonedDateTime]] internal slot, then
- // FIXME: i. Let isoDateTime be GetISODateTimeFor(item.[[TimeZone]], item.[[EpochNanoseconds]]).
- // FIXME: ii. Let resolvedOptions be ? GetOptionsObject(options).
- // FIXME: iii. Perform ? GetTemporalOverflowOption(resolvedOptions).
- // FIXME: iv. Return ! CreateTemporalDate(isoDateTime.[[ISODate]], item.[[Calendar]]).
- // FIXME: c. If item has an [[InitializedTemporalDateTime]] internal slot, then
- // FIXME: i. Let resolvedOptions be ? GetOptionsObject(options).
- // FIXME: ii. Perform ? GetTemporalOverflowOption(resolvedOptions).
- // FIXME: iii. Return ! CreateTemporalDate(item.[[ISODateTime]].[[ISODate]], item.[[Calendar]]).
- // d. Let calendar be ? GetTemporalCalendarIdentifierWithISODefault(item).
- auto calendar = TRY(get_temporal_calendar_identifier_with_iso_default(vm, object));
- // e. Let fields be ? PrepareCalendarFields(calendar, item, « YEAR, MONTH, MONTH-CODE, DAY », «», «»).
- auto fields = TRY(prepare_calendar_fields(vm, calendar, object, { { CalendarField::Year, CalendarField::Month, CalendarField::MonthCode, CalendarField::Day } }, {}, CalendarFieldList {}));
- // f. Let resolvedOptions be ? GetOptionsObject(options).
- auto resolved_options = TRY(get_options_object(vm, options));
- // g. Let overflow be ? GetTemporalOverflowOption(resolvedOptions).
- auto overflow = TRY(get_temporal_overflow_option(vm, resolved_options));
- // h. Let isoDate be ? CalendarDateFromFields(calendar, fields, overflow).
- auto iso_date = TRY(calendar_date_from_fields(vm, calendar, move(fields), overflow));
- // i. Return ! CreateTemporalDate(isoDate, calendar).
- return MUST(create_temporal_date(vm, iso_date, move(calendar)));
- }
- // 3. If item is not a String, throw a TypeError exception.
- if (!item.is_string())
- return vm.throw_completion<TypeError>(ErrorType::TemporalInvalidPlainDate);
- // 4. Let result be ? ParseISODateTime(item, « TemporalDateTimeString[~Zoned] »).
- auto result = TRY(parse_iso_date_time(vm, item.as_string().utf8_string_view(), { { Production::TemporalDateTimeString } }));
- // 5. Let calendar be result.[[Calendar]].
- // 6. If calendar is empty, set calendar to "iso8601".
- auto calendar = result.calendar.value_or("iso8601"_string);
- // 7. Set calendar to ? CanonicalizeCalendar(calendar).
- calendar = TRY(canonicalize_calendar(vm, calendar));
- // 8. Let resolvedOptions be ? GetOptionsObject(options).
- auto resolved_options = TRY(get_options_object(vm, options));
- // 9. Perform ? GetTemporalOverflowOption(resolvedOptions).
- TRY(get_temporal_overflow_option(vm, resolved_options));
- // 10. Let isoDate be CreateISODateRecord(result.[[Year]], result.[[Month]], result.[[Day]]).
- auto iso_date = create_iso_date_record(*result.year, result.month, result.day);
- // 11. Return ? CreateTemporalDate(isoDate, calendar).
- return TRY(create_temporal_date(vm, iso_date, move(calendar)));
- }
- // 3.5.5 ISODateSurpasses ( sign, y1, m1, d1, isoDate2 ), https://tc39.es/proposal-temporal/#sec-temporal-isodatesurpasses
- bool iso_date_surpasses(i8 sign, double year1, double month1, double day1, ISODate iso_date2)
- {
- // 1. If y1 ≠ isoDate2.[[Year]], then
- if (year1 != iso_date2.year) {
- // a. If sign × (y1 - isoDate2.[[Year]]) > 0, return true.
- if (sign * (year1 - iso_date2.year) > 0)
- return true;
- }
- // 2. Else if m1 ≠ isoDate2.[[Month]], then
- else if (month1 != iso_date2.month) {
- // a. If sign × (m1 - isoDate2.[[Month]]) > 0, return true.
- if (sign * (month1 - iso_date2.month) > 0)
- return true;
- }
- // 3. Else if d1 ≠ isoDate2.[[Day]], then
- else if (day1 != iso_date2.day) {
- // a. If sign × (d1 - isoDate2.[[Day]]) > 0, return true.
- if (sign * (day1 - iso_date2.day) > 0)
- return true;
- }
- // 4. Return false.
- return false;
- }
- // 3.5.6 RegulateISODate ( year, month, day, overflow ), https://tc39.es/proposal-temporal/#sec-temporal-regulateisodate
- ThrowCompletionOr<ISODate> regulate_iso_date(VM& vm, double year, double month, double day, Overflow overflow)
- {
- switch (overflow) {
- // 1. If overflow is CONSTRAIN, then
- case Overflow::Constrain:
- // a. Set month to the result of clamping month between 1 and 12.
- month = clamp(month, 1, 12);
- // b. Let daysInMonth be ISODaysInMonth(year, month).
- // c. Set day to the result of clamping day between 1 and daysInMonth.
- day = clamp(day, 1, iso_days_in_month(year, month));
- // AD-HOC: We further clamp the year to the range allowed by ISOYearMonthWithinLimits, to ensure we do not
- // overflow when we store the year as an integer.
- year = clamp(year, -271821, 275760);
- break;
- // 2. Else,
- case Overflow::Reject:
- // a. Assert: overflow is REJECT.
- // b. If IsValidISODate(year, month, day) is false, throw a RangeError exception.
- if (!is_valid_iso_date(year, month, day))
- return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidISODate);
- break;
- }
- // 3. Return CreateISODateRecord(year, month, day).
- return create_iso_date_record(year, month, day);
- }
- // 3.5.7 IsValidISODate ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-isvalidisodate
- bool is_valid_iso_date(double year, double month, double day)
- {
- // AD-HOC: This is an optimization that allows us to treat these doubles as normal integers from this point onwards.
- // This does not change the exposed behavior as the call to CreateISODateRecord will immediately check that
- // these values are valid ISO values (years: [-271821, 275760], months: [1, 12], days: [1, 31]), all of
- // which are subsets of this check.
- if (!AK::is_within_range<i32>(year) || !AK::is_within_range<u8>(month) || !AK::is_within_range<u8>(day))
- return false;
- // 1. If month < 1 or month > 12, then
- if (month < 1 || month > 12) {
- // a. Return false.
- return false;
- }
- // 2. Let daysInMonth be ISODaysInMonth(year, month).
- auto days_in_month = iso_days_in_month(year, month);
- // 3. If day < 1 or day > daysInMonth, then
- if (day < 1 || day > days_in_month) {
- // a. Return false.
- return false;
- }
- // 4. Return true.
- return true;
- }
- // 3.5.8 BalanceISODate ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-balanceisodate
- ISODate balance_iso_date(double year, double month, double day)
- {
- // 1. Let epochDays be ISODateToEpochDays(year, month - 1, day).
- auto epoch_days = iso_date_to_epoch_days(year, month - 1, day);
- // 2. Let ms be EpochDaysToEpochMs(epochDays, 0).
- auto ms = epoch_days_to_epoch_ms(epoch_days, 0);
- // 3. Return CreateISODateRecord(EpochTimeToEpochYear(ms), EpochTimeToMonthInYear(ms) + 1, EpochTimeToDate(ms)).
- return create_iso_date_record(epoch_time_to_epoch_year(ms), epoch_time_to_month_in_year(ms) + 1.0, epoch_time_to_date(ms));
- }
- // 3.5.9 PadISOYear ( y ), https://tc39.es/proposal-temporal/#sec-temporal-padisoyear
- String pad_iso_year(i32 year)
- {
- // 1. If y ≥ 0 and y ≤ 9999, then
- if (year >= 0 && year <= 9999) {
- // a. Return ToZeroPaddedDecimalString(y, 4).
- return MUST(String::formatted("{:04}", year));
- }
- // 2. If y > 0, let yearSign be "+"; otherwise, let yearSign be "-".
- auto year_sign = year > 0 ? '+' : '-';
- // 3. Let year be ToZeroPaddedDecimalString(abs(y), 6).
- // 4. Return the string-concatenation of yearSign and year.
- return MUST(String::formatted("{}{:06}", year_sign, abs(year)));
- }
- // 3.5.10 TemporalDateToString ( temporalDate, showCalendar ), https://tc39.es/proposal-temporal/#sec-temporal-temporaldatetostring
- String temporal_date_to_string(PlainDate const& temporal_date, ShowCalendar show_calendar)
- {
- // 1. Let year be PadISOYear(temporalDate.[[ISODate]].[[Year]]).
- auto year = pad_iso_year(temporal_date.iso_date().year);
- // 2. Let month be ToZeroPaddedDecimalString(temporalDate.[[ISODate]].[[Month]], 2).
- auto month = temporal_date.iso_date().month;
- // 3. Let day be ToZeroPaddedDecimalString(temporalDate.[[ISODate]].[[Day]], 2).
- auto day = temporal_date.iso_date().day;
- // 4. Let calendar be FormatCalendarAnnotation(temporalDate.[[Calendar]], showCalendar).
- auto calendar = format_calendar_annotation(temporal_date.calendar(), show_calendar);
- // 5. Return the string-concatenation of year, the code unit 0x002D (HYPHEN-MINUS), month, the code unit 0x002D (HYPHEN-MINUS), day, and calendar.
- return MUST(String::formatted("{}-{:02}-{:02}{}", year, month, day, calendar));
- }
- // 3.5.11 ISODateWithinLimits ( isoDate ), https://tc39.es/proposal-temporal/#sec-temporal-isodatewithinlimits
- bool iso_date_within_limits(ISODate iso_date)
- {
- // 1. Let isoDateTime be CombineISODateAndTimeRecord(isoDate, NoonTimeRecord()).
- auto iso_date_time = combine_iso_date_and_time_record(iso_date, noon_time_record());
- // 2. Return ISODateTimeWithinLimits(isoDateTime).
- return iso_date_time_within_limits(iso_date_time);
- }
- // 3.5.12 CompareISODate ( isoDate1, isoDate2 ), https://tc39.es/proposal-temporal/#sec-temporal-compareisodate
- i8 compare_iso_date(ISODate iso_date1, ISODate iso_date2)
- {
- // 1. If isoDate1.[[Year]] > isoDate2.[[Year]], return 1.
- if (iso_date1.year > iso_date2.year)
- return 1;
- // 2. If isoDate1.[[Year]] < isoDate2.[[Year]], return -1.
- if (iso_date1.year < iso_date2.year)
- return -1;
- // 3. If isoDate1.[[Month]] > isoDate2.[[Month]], return 1.
- if (iso_date1.month > iso_date2.month)
- return 1;
- // 4. If isoDate1.[[Month]] < isoDate2.[[Month]], return -1.
- if (iso_date1.month < iso_date2.month)
- return -1;
- // 5. If isoDate1.[[Day]] > isoDate2.[[Day]], return 1.
- if (iso_date1.day > iso_date2.day)
- return 1;
- // 6. If isoDate1.[[Day]] < isoDate2.[[Day]], return -1.
- if (iso_date1.day < iso_date2.day)
- return -1;
- // 7. Return 0.
- return 0;
- }
- }
|