123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223 |
- /*
- * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #include <LibJS/Runtime/AbstractOperations.h>
- #include <LibJS/Runtime/GlobalObject.h>
- #include <LibJS/Runtime/Temporal/Calendar.h>
- #include <LibJS/Runtime/Temporal/PlainDate.h>
- #include <LibJS/Runtime/Temporal/PlainDateConstructor.h>
- #include <LibJS/Runtime/Temporal/PlainDateTime.h>
- namespace JS::Temporal {
- // 3 Temporal.PlainDate Objects, https://tc39.es/proposal-temporal/#sec-temporal-plaindate-objects
- PlainDate::PlainDate(i32 year, u8 month, u8 day, Object& calendar, Object& prototype)
- : Object(prototype)
- , m_iso_year(year)
- , m_iso_month(month)
- , m_iso_day(day)
- , m_calendar(calendar)
- {
- }
- void PlainDate::visit_edges(Visitor& visitor)
- {
- visitor.visit(&m_calendar);
- }
- // 3.5.1 CreateTemporalDate ( isoYear, isoMonth, isoDay, calendar [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporaldate
- PlainDate* create_temporal_date(GlobalObject& global_object, i32 iso_year, u8 iso_month, u8 iso_day, Object& calendar, FunctionObject* new_target)
- {
- auto& vm = global_object.vm();
- // 1. Assert: isoYear is an integer.
- // 2. Assert: isoMonth is an integer.
- // 3. Assert: isoDay is an integer.
- // 4. Assert: Type(calendar) is Object.
- // 5. If ! IsValidISODate(isoYear, isoMonth, isoDay) is false, throw a RangeError exception.
- if (!is_valid_iso_date(iso_year, iso_month, iso_day)) {
- vm.throw_exception<RangeError>(global_object, ErrorType::TemporalInvalidPlainDate);
- return {};
- }
- // 6. If ! ISODateTimeWithinLimits(isoYear, isoMonth, isoDay, 12, 0, 0, 0, 0, 0) is false, throw a RangeError exception.
- if (!iso_date_time_within_limits(global_object, iso_year, iso_month, iso_day, 12, 0, 0, 0, 0, 0)) {
- vm.throw_exception<RangeError>(global_object, ErrorType::TemporalInvalidPlainDate);
- return {};
- }
- // 7. If newTarget is not present, set it to %Temporal.PlainDate%.
- if (!new_target)
- new_target = global_object.temporal_plain_date_constructor();
- // 8. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.PlainDate.prototype%", « [[InitializedTemporalDate]], [[ISOYear]], [[ISOMonth]], [[ISODay]], [[Calendar]] »).
- // 9. Set object.[[ISOYear]] to isoYear.
- // 10. Set object.[[ISOMonth]] to isoMonth.
- // 11. Set object.[[ISODay]] to isoDay.
- // 12. Set object.[[Calendar]] to calendar.
- auto* object = ordinary_create_from_constructor<PlainDate>(global_object, *new_target, &GlobalObject::temporal_plain_date_prototype, iso_year, iso_month, iso_day, calendar);
- if (vm.exception())
- return {};
- return object;
- }
- // 3.5.2 ToTemporalDate ( item [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-totemporaldate
- PlainDate* to_temporal_date(GlobalObject& global_object, Value item, Object* options)
- {
- auto& vm = global_object.vm();
- // 1. If options is not present, set options to ! OrdinaryObjectCreate(null).
- if (!options)
- options = Object::create(global_object, nullptr);
- // 2. Assert: Type(options) is Object.
- // 3. If Type(item) is Object, then
- if (item.is_object()) {
- auto& item_object = item.as_object();
- // a. If item has an [[InitializedTemporalDate]] internal slot, then
- if (is<PlainDate>(item_object)) {
- // i. Return item.
- return static_cast<PlainDate*>(&item_object);
- }
- // b. If item has an [[InitializedTemporalZonedDateTime]] internal slot, then
- // i. Let instant be ! CreateTemporalInstant(item.[[Nanoseconds]]).
- // ii. Let plainDateTime be ? BuiltinTimeZoneGetPlainDateTimeFor(item.[[TimeZone]], instant, item.[[Calendar]]).
- // iii. Return ! CreateTemporalDate(plainDateTime.[[ISOYear]], plainDateTime.[[ISOMonth]], plainDateTime.[[ISODay]], plainDateTime.[[Calendar]]).
- // TODO
- // c. If item has an [[InitializedTemporalDateTime]] internal slot, then
- if (is<PlainDateTime>(item_object)) {
- auto& date_time_item = static_cast<PlainDateTime&>(item_object);
- // i. Return ! CreateTemporalDate(item.[[ISOYear]], item.[[ISOMonth]], item.[[ISODay]], item.[[Calendar]]).
- return create_temporal_date(global_object, date_time_item.iso_year(), date_time_item.iso_month(), date_time_item.iso_day(), date_time_item.calendar());
- }
- // d. Let calendar be ? GetTemporalCalendarWithISODefault(item).
- auto* calendar = get_temporal_calendar_with_iso_default(global_object, item_object);
- if (vm.exception())
- return {};
- // e. Let fieldNames be ? CalendarFields(calendar, « "day", "month", "monthCode", "year" »).
- auto field_names = calendar_fields(global_object, *calendar, { "day"sv, "month"sv, "monthCode"sv, "year"sv });
- if (vm.exception())
- return {};
- // f. Let fields be ? PrepareTemporalFields(item, fieldNames, «»).
- auto* fields = prepare_temporal_fields(global_object, item_object, field_names, {});
- if (vm.exception())
- return {};
- // g. Return ? DateFromFields(calendar, fields, options).
- return date_from_fields(global_object, *calendar, *fields, *options);
- }
- // 4. Perform ? ToTemporalOverflow(options).
- (void)to_temporal_overflow(global_object, *options);
- if (vm.exception())
- return {};
- // 5. Let string be ? ToString(item).
- auto string = item.to_string(global_object);
- if (vm.exception())
- return {};
- // 6. Let result be ? ParseTemporalDateString(string).
- auto result = parse_temporal_date_string(global_object, string);
- if (vm.exception())
- return {};
- // 7. Assert: ! IsValidISODate(result.[[Year]], result.[[Month]], result.[[Day]]) is true.
- VERIFY(is_valid_iso_date(result->year, result->month, result->day));
- // 8. Let calendar be ? ToTemporalCalendarWithISODefault(result.[[Calendar]]).
- auto calendar = to_temporal_calendar_with_iso_default(global_object, result->calendar.has_value() ? js_string(vm, *result->calendar) : js_undefined());
- if (vm.exception())
- return {};
- // 9. Return ? CreateTemporalDate(result.[[Year]], result.[[Month]], result.[[Day]], calendar).
- return create_temporal_date(global_object, result->year, result->month, result->day, *calendar);
- }
- // 3.5.4 RegulateISODate ( year, month, day, overflow ), https://tc39.es/proposal-temporal/#sec-temporal-regulateisodate
- Optional<TemporalDate> regulate_iso_date(GlobalObject& global_object, double year, double month, double day, String const& overflow)
- {
- auto& vm = global_object.vm();
- // 1. Assert: year, month, and day are integers.
- VERIFY(year == trunc(year) && month == trunc(month) && day == trunc(day));
- // 2. Assert: overflow is either "constrain" or "reject".
- // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
- // 3. If overflow is "reject", then
- if (overflow == "reject"sv) {
- // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat these doubles as normal integers from this point onwards.
- // This does not change the exposed behaviour as the call to IsValidISODate will immediately check that these values are valid ISO
- // values (for years: -273975 - 273975, for months: 1 - 12, for 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)) {
- vm.throw_exception<RangeError>(global_object, ErrorType::TemporalInvalidPlainDate);
- return {};
- }
- auto y = static_cast<i32>(year);
- auto m = static_cast<u8>(month);
- auto d = static_cast<u8>(day);
- // a. If ! IsValidISODate(year, month, day) is false, throw a RangeError exception.
- if (is_valid_iso_date(y, m, d)) {
- vm.throw_exception<RangeError>(global_object, ErrorType::TemporalInvalidPlainDate);
- return {};
- }
- // b. Return the Record { [[Year]]: year, [[Month]]: month, [[Day]]: day }.
- return TemporalDate { .year = y, .month = m, .day = d, .calendar = {} };
- }
- // 4. If overflow is "constrain", then
- else if (overflow == "constrain"sv) {
- // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat this double as normal integer from this point onwards. This
- // does not change the exposed behaviour as the parent's call to CreateTemporalDate will immediately check that this value is a valid
- // ISO value for years: -273975 - 273975, which is a subset of this check.
- if (!AK::is_within_range<i32>(year)) {
- vm.throw_exception<RangeError>(global_object, ErrorType::TemporalInvalidPlainDate);
- return {};
- }
- auto y = static_cast<i32>(year);
- // a. Set month to ! ConstrainToRange(month, 1, 12).
- month = constrain_to_range(month, 1, 12);
- // b. Set day to ! ConstrainToRange(day, 1, ! ISODaysInMonth(year, month)).
- day = constrain_to_range(day, 1, iso_days_in_month(y, month));
- // c. Return the Record { [[Year]]: year, [[Month]]: month, [[Day]]: day }.
- return TemporalDate { .year = y, .month = static_cast<u8>(month), .day = static_cast<u8>(day), .calendar = {} };
- }
- VERIFY_NOT_REACHED();
- }
- // 3.5.5 IsValidISODate ( year, month, day ), https://tc39.es/proposal-temporal/#sec-temporal-isvalidisodate
- bool is_valid_iso_date(i32 year, u8 month, u8 day)
- {
- // 1. Assert: year, month, and day are integers.
- // 2. If month < 1 or month > 12, then
- if (month < 1 || month > 12) {
- // a. Return false.
- return false;
- }
- // 3. Let daysInMonth be ! ISODaysInMonth(year, month).
- auto days_in_month = iso_days_in_month(year, month);
- // 4. If day < 1 or day > daysInMonth, then
- if (day < 1 || day > days_in_month) {
- // a. Return false.
- return false;
- }
- // 5. Return true.
- return true;
- }
- }
|