/* * Copyright (c) 2021, Linus Groh * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include #include #include #include namespace JS::Temporal { // 7 Temporal.Duration Objects, https://tc39.es/proposal-temporal/#sec-temporal-duration-objects Duration::Duration(double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds, Object& prototype) : Object(prototype) , m_years(years) , m_months(months) , m_weeks(weeks) , m_days(days) , m_hours(hours) , m_minutes(minutes) , m_seconds(seconds) , m_milliseconds(milliseconds) , m_microseconds(microseconds) , m_nanoseconds(nanoseconds) { } // 7.5.1 ToTemporalDuration ( item ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalduration Duration* to_temporal_duration(GlobalObject& global_object, Value item) { auto& vm = global_object.vm(); Optional result; // 1. If Type(item) is Object, then if (item.is_object()) { // a. If item has an [[InitializedTemporalDuration]] internal slot, then if (is(item.as_object())) { // i. Return item. return &static_cast(item.as_object()); } // b. Let result be ? ToTemporalDurationRecord(item). result = to_temporal_duration_record(global_object, item.as_object()); if (vm.exception()) return {}; } // 2. Else, else { // a. Let string be ? ToString(item). auto string = item.to_string(global_object); if (vm.exception()) return {}; // b. Let result be ? ParseTemporalDurationString(string). result = parse_temporal_duration_string(global_object, string); if (vm.exception()) return {}; } // 3. Return ? CreateTemporalDuration(result.[[Years]], result.[[Months]], result.[[Weeks]], result.[[Days]], result.[[Hours]], result.[[Minutes]], result.[[Seconds]], result.[[Milliseconds]], result.[[Microseconds]], result.[[Nanoseconds]]). return create_temporal_duration(global_object, result->years, result->months, result->weeks, result->days, result->hours, result->minutes, result->seconds, result->milliseconds, result->microseconds, result->nanoseconds); } // 7.5.2 ToTemporalDurationRecord ( temporalDurationLike ), https://tc39.es/proposal-temporal/#sec-temporal-totemporaldurationrecord TemporalDuration to_temporal_duration_record(GlobalObject& global_object, Object& temporal_duration_like) { auto& vm = global_object.vm(); // 1. Assert: Type(temporalDurationLike) is Object. // 2. If temporalDurationLike has an [[InitializedTemporalDuration]] internal slot, then if (is(temporal_duration_like)) { auto& duration = static_cast(temporal_duration_like); // a. Return the Record { [[Years]]: temporalDurationLike.[[Years]], [[Months]]: temporalDurationLike.[[Months]], [[Weeks]]: temporalDurationLike.[[Weeks]], [[Days]]: temporalDurationLike.[[Days]], [[Hours]]: temporalDurationLike.[[Hours]], [[Minutes]]: temporalDurationLike.[[Minutes]], [[Seconds]]: temporalDurationLike.[[Seconds]], [[Milliseconds]]: temporalDurationLike.[[Milliseconds]], [[Microseconds]]: temporalDurationLike.[[Microseconds]], [[Nanoseconds]]: temporalDurationLike.[[Nanoseconds]] }. return TemporalDuration { .years = duration.years(), .months = duration.months(), .weeks = duration.weeks(), .days = duration.days(), .hours = duration.hours(), .minutes = duration.minutes(), .seconds = duration.seconds(), .milliseconds = duration.milliseconds(), .microseconds = duration.microseconds(), .nanoseconds = duration.nanoseconds() }; } // 3. Let result be a new Record with all the internal slots given in the Internal Slot column in Table 7. auto result = TemporalDuration {}; // 4. Let any be false. auto any = false; // 5. For each row of Table 7, except the header row, in table order, do for (auto& [internal_slot, property] : temporal_duration_like_properties(vm)) { // a. Let prop be the Property value of the current row. // b. Let val be ? Get(temporalDurationLike, prop). auto value = temporal_duration_like.get(property); if (vm.exception()) return {}; // c. If val is not undefined, then if (!value.is_undefined()) { // i. Set any to true. any = true; } // TODO: This is not in the spec but it seems to be implied, and is also what the polyfill does. // I think the steps d, e, and f should be conditional based on c - otherwise we call ToNumber(undefined), // get NaN and immediately fail the floor(val) ≠ val check, making the `any` flag pointless. See: // - https://github.com/tc39/proposal-temporal/blob/4b4dbd427d4b0468a3b064ca7082f25b209923bc/polyfill/lib/ecmascript.mjs#L556-L607 // - https://github.com/tc39/proposal-temporal/blob/4b4dbd427d4b0468a3b064ca7082f25b209923bc/polyfill/lib/ecmascript.mjs#L876-L893 else { continue; } // d. Let val be ? ToNumber(val). value = value.to_number(global_object); if (vm.exception()) return {}; // e. If floor(val) ≠ val, then if (floor(value.as_double()) != value.as_double()) { // i. Throw a RangeError exception. vm.throw_exception(global_object, ErrorType::TemporalInvalidDurationPropertyValueNonIntegral, property.as_string(), value.to_string_without_side_effects()); return {}; } // f. Set result's internal slot whose name is the Internal Slot value of the current row to val. result.*internal_slot = value.as_double(); } // 6. If any is false, then if (!any) { // a. Throw a TypeError exception. vm.throw_exception(global_object, ErrorType::TemporalInvalidDurationLikeObject); return {}; } // 7. Return result. return result; } // 7.5.3 DurationSign ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds ), https://tc39.es/proposal-temporal/#sec-temporal-durationsign i8 duration_sign(double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds) { // 1. For each value v of « years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds », do for (auto& v : { years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds }) { // a. If v < 0, return −1. if (v < 0) return -1; // b. If v > 0, return 1. if (v > 0) return 1; } // 2. Return 0. return 0; } // 7.5.4 IsValidDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds ), https://tc39.es/proposal-temporal/#sec-temporal-isvalidduration bool is_valid_duration(double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds) { // 1. Let sign be ! DurationSign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds). auto sign = duration_sign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds); // 2. For each value v of « years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds », do for (auto& v : { years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds }) { // a. If v is not finite, return false. if (!isfinite(v)) return false; // b. If v < 0 and sign > 0, return false. if (v < 0 && sign > 0) return false; // c. If v > 0 and sign < 0, return false. if (v > 0 && sign < 0) return false; } // 3. Return true. return true; } // 7.5.6 ToPartialDuration ( temporalDurationLike ), https://tc39.es/proposal-temporal/#sec-temporal-topartialduration PartialDuration to_partial_duration(GlobalObject& global_object, Value temporal_duration_like) { auto& vm = global_object.vm(); // 1. If Type(temporalDurationLike) is not Object, then if (!temporal_duration_like.is_object()) { vm.throw_exception(global_object, ErrorType::NotAnObject, temporal_duration_like.to_string_without_side_effects()); return {}; } // 2. Let result be the new Record { [[Years]]: undefined, [[Months]]: undefined, [[Weeks]]: undefined, [[Days]]: undefined, [[Hours]]: undefined, [[Minutes]]: undefined, [[Seconds]]: undefined, [[Milliseconds]]: undefined, [[Microseconds]]: undefined, [[Nanoseconds]]: undefined }. auto result = PartialDuration {}; // 3. Let any be false. auto any = false; // 4. For each row of Table 7, except the header row, in table order, do for (auto& [internal_slot, property] : temporal_duration_like_properties>(vm)) { // a. Let property be the Property value of the current row. // b. Let value be ? Get(temporalDurationLike, property). auto value = temporal_duration_like.as_object().get(property); if (vm.exception()) return {}; // c. If value is not undefined, then if (!value.is_undefined()) { // i. Set any to true. any = true; // ii. Set value to ? ToIntegerOrInfinity(value). auto value_number = value.to_integer_or_infinity(global_object); if (vm.exception()) return {}; // iii. Set result's internal slot whose name is the Internal Slot value of the current row to value. result.*internal_slot = value_number; } } // 5. If any is false, then if (!any) { // a. Throw a TypeError exception. vm.throw_exception(global_object, ErrorType::TemporalInvalidDurationLikeObject); return {}; } // 6. Return result. return result; } // 7.5.7 CreateTemporalDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporalduration Duration* create_temporal_duration(GlobalObject& global_object, double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds, FunctionObject* new_target) { auto& vm = global_object.vm(); // 1. If ! IsValidDuration(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds) is false, throw a RangeError exception. if (!is_valid_duration(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds)) { vm.throw_exception(global_object, ErrorType::TemporalInvalidDuration); return {}; } // 2. If newTarget is not present, set it to %Temporal.Duration%. if (!new_target) new_target = global_object.temporal_duration_constructor(); // 3. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.Duration.prototype%", « [[InitializedTemporalDuration]], [[Years]], [[Months]], [[Weeks]], [[Days]], [[Hours]], [[Minutes]], [[Seconds]], [[Milliseconds]], [[Microseconds]], [[Nanoseconds]] »). // 4. Set object.[[Years]] to years. // 5. Set object.[[Months]] to months. // 6. Set object.[[Weeks]] to weeks. // 7. Set object.[[Days]] to days. // 8. Set object.[[Hours]] to hours. // 9. Set object.[[Minutes]] to minutes. // 10. Set object.[[Seconds]] to seconds. // 11. Set object.[[Milliseconds]] to milliseconds. // 12. Set object.[[Microseconds]] to microseconds. // 13. Set object.[[Nanoseconds]] to nanoseconds. auto* object = ordinary_create_from_constructor(global_object, *new_target, &GlobalObject::temporal_duration_prototype, years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds); if (vm.exception()) return {}; // 14. Return object. return object; } // 7.5.19 ToLimitedTemporalDuration ( temporalDurationLike, disallowedFields ),https://tc39.es/proposal-temporal/#sec-temporal-tolimitedtemporalduration Optional to_limited_temporal_duration(GlobalObject& global_object, Value temporal_duration_like, Vector const& disallowed_fields) { auto& vm = global_object.vm(); Optional duration; // 1. If Type(temporalDurationLike) is not Object, then if (!temporal_duration_like.is_object()) { // a. Let str be ? ToString(temporalDurationLike). auto str = temporal_duration_like.to_string(global_object); if (vm.exception()) return {}; // b. Let duration be ? ParseTemporalDurationString(str). duration = parse_temporal_duration_string(global_object, str); if (vm.exception()) return {}; } // 2. Else, else { // a. Let duration be ? ToTemporalDurationRecord(temporalDurationLike). duration = to_temporal_duration_record(global_object, temporal_duration_like.as_object()); if (vm.exception()) return {}; } // 3. If ! IsValidDuration(duration.[[Years]], duration.[[Months]], duration.[[Weeks]], duration.[[Days]], duration.[[Hours]], duration.[[Minutes]], duration.[[Seconds]], duration.[[Milliseconds]], duration.[[Microseconds]], duration.[[Nanoseconds]]) is false, throw a RangeError exception. if (!is_valid_duration(duration->years, duration->months, duration->weeks, duration->days, duration->hours, duration->minutes, duration->seconds, duration->milliseconds, duration->microseconds, duration->nanoseconds)) { vm.throw_exception(global_object, ErrorType::TemporalInvalidDuration); return {}; } // 4. For each row of Table 7, except the header row, in table order, do for (auto& [internal_slot, property] : temporal_duration_like_properties(vm)) { // a. Let prop be the Property value of the current row. // b. Let value be duration's internal slot whose name is the Internal Slot value of the current row. auto value = (*duration).*internal_slot; // If value is not 0 and disallowedFields contains prop, then if (value != 0 && disallowed_fields.contains_slow(property.as_string())) { // i. Throw a RangeError exception. vm.throw_exception(global_object, ErrorType::TemporalInvalidDurationPropertyValueNonZero, property.as_string(), value); return {}; } } // 5. Return duration. return duration; } }