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
|
/*
* Copyright (C) 2022 Apple Inc. All rights reserved.
* Copyright (C) 2022 Sony Interactive Entertainment Inc.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "TemporalPlainYearMonth.h"
#include "IntlObjectInlines.h"
#include "JSCInlines.h"
#include "LazyPropertyInlines.h"
#include "TemporalDuration.h"
#include "TemporalPlainDate.h"
#include "TemporalPlainDateTime.h"
#include "VMTrapsInlines.h"
namespace JSC {
const ClassInfo TemporalPlainYearMonth::s_info = { "Object"_s, &Base::s_info, nullptr, nullptr, CREATE_METHOD_TABLE(TemporalPlainYearMonth) };
TemporalPlainYearMonth* TemporalPlainYearMonth::create(VM& vm, Structure* structure, ISO8601::PlainYearMonth&& plainYearMonth)
{
auto* object = new (NotNull, allocateCell<TemporalPlainYearMonth>(vm)) TemporalPlainYearMonth(vm, structure, WTFMove(plainYearMonth));
object->finishCreation(vm);
return object;
}
Structure* TemporalPlainYearMonth::createStructure(VM& vm, JSGlobalObject* globalObject, JSValue prototype)
{
return Structure::create(vm, globalObject, prototype, TypeInfo(ObjectType, StructureFlags), info());
}
TemporalPlainYearMonth::TemporalPlainYearMonth(VM& vm, Structure* structure, ISO8601::PlainYearMonth&& plainYearMonth)
: Base(vm, structure)
, m_plainYearMonth(WTFMove(plainYearMonth))
{
}
void TemporalPlainYearMonth::finishCreation(VM& vm)
{
Base::finishCreation(vm);
ASSERT(inherits(info()));
m_calendar.initLater(
[] (const auto& init) {
VM& vm = init.vm;
auto* plainYearMonth = jsCast<TemporalPlainYearMonth*>(init.owner);
auto* globalObject = plainYearMonth->globalObject();
auto* calendar = TemporalCalendar::create(vm, globalObject->calendarStructure(), iso8601CalendarID());
init.set(calendar);
});
}
template<typename Visitor>
void TemporalPlainYearMonth::visitChildrenImpl(JSCell* cell, Visitor& visitor)
{
Base::visitChildren(cell, visitor);
auto* thisObject = jsCast<TemporalPlainYearMonth*>(cell);
thisObject->m_calendar.visit(visitor);
}
DEFINE_VISIT_CHILDREN(TemporalPlainYearMonth);
// CreateTemporalYearMonth ( isoDate, calendar [, newTarget ] )
// https://tc39.es/proposal-temporal/#sec-temporal-createtemporalyearmonth
TemporalPlainYearMonth* TemporalPlainYearMonth::tryCreateIfValid(JSGlobalObject* globalObject, Structure* structure, ISO8601::PlainDate&& plainDate)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if (!ISO8601::isYearMonthWithinLimits(plainDate.year(), plainDate.month())) [[unlikely]] {
throwRangeError(globalObject, scope, "PlainYearMonth is out of range of ECMAScript representation"_s);
return { };
}
return TemporalPlainYearMonth::create(vm, structure, ISO8601::PlainYearMonth(WTFMove(plainDate)));
}
String TemporalPlainYearMonth::toString() const
{
return ISO8601::temporalYearMonthToString(m_plainYearMonth, ""_s);
}
String TemporalPlainYearMonth::toString(JSGlobalObject* globalObject, JSValue optionsValue) const
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
JSObject* options = intlGetOptionsObject(globalObject, optionsValue);
RETURN_IF_EXCEPTION(scope, { });
if (!options) [[likely]]
return toString();
String calendarName = toTemporalCalendarName(globalObject, options);
RETURN_IF_EXCEPTION(scope, { });
return ISO8601::temporalYearMonthToString(m_plainYearMonth, calendarName);
}
// https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.from
// https://tc39.es/proposal-temporal/#sec-temporal-totemporalyearmonth
// optionsValue may be undefined, which is treated as the absence of an options argument
TemporalPlainYearMonth* TemporalPlainYearMonth::from(JSGlobalObject* globalObject, JSValue item, JSValue optionsValue)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
// Handle string case first so that string parsing errors (RangeError)
// can be thrown before options-related errors (TypeError);
// see step 4 of ToTemporalYearMonth
auto string = item.getString(globalObject);
RETURN_IF_EXCEPTION(scope, { });
if (!string.isNull()) {
auto* result = TemporalPlainYearMonth::from(globalObject, string);
RETURN_IF_EXCEPTION(scope, { });
// See step 11 of ToTemporalYearMonth
if (!optionsValue.isUndefined()) {
toTemporalOverflow(globalObject, optionsValue);
RETURN_IF_EXCEPTION(scope, { });
}
RELEASE_AND_RETURN(scope, result);
}
JSObject* options = intlGetOptionsObject(globalObject, optionsValue);
RETURN_IF_EXCEPTION(scope, { });
if (item.isObject()) {
if (item.inherits<TemporalPlainYearMonth>())
return jsCast<TemporalPlainYearMonth*>(item);
JSObject* calendar = TemporalCalendar::getTemporalCalendarWithISODefault(globalObject, item);
RETURN_IF_EXCEPTION(scope, { });
// FIXME: Implement after fleshing out Temporal.Calendar.
if (!calendar->inherits<TemporalCalendar>() || !jsCast<TemporalCalendar*>(calendar)->isISO8601()) [[unlikely]] {
throwRangeError(globalObject, scope, "unimplemented: from non-ISO8601 calendar"_s);
return { };
}
Variant<JSObject*, TemporalOverflow> optionsOrOverflow = TemporalOverflow::Constrain;
if (options)
optionsOrOverflow = options;
auto overflow = TemporalOverflow::Constrain;
auto plainYearMonth = TemporalCalendar::isoDateFromFields(globalObject, asObject(item), TemporalDateFormat::YearMonth, optionsOrOverflow, overflow);
RETURN_IF_EXCEPTION(scope, { });
return TemporalPlainYearMonth::create(vm, globalObject->plainYearMonthStructure(), WTFMove(plainYearMonth));
}
throwTypeError(globalObject, scope, "can only convert to PlainYearMonth from object or string values"_s);
return { };
}
// https://tc39.es/proposal-temporal/#sec-temporal.plainyearmonth.from
TemporalPlainYearMonth* TemporalPlainYearMonth::from(JSGlobalObject* globalObject, StringView string)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
// https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaldatestring
// TemporalDateString :
// CalendarDateTime
auto dateTime = ISO8601::parseCalendarDateTime(string, TemporalDateFormat::YearMonth);
if (dateTime) [[likely]] {
auto [plainDate, plainTimeOptional, timeZoneOptional, calendarOptional] = WTFMove(dateTime.value());
if (calendarOptional && !equal(calendarOptional.value().span(), "iso8601"_span8)) [[unlikely]] {
throwRangeError(globalObject, scope,
"YYYY-MM format is only valid with iso8601 calendar"_s);
return { };
}
if (!(timeZoneOptional && timeZoneOptional->m_z)) [[likely]]
RELEASE_AND_RETURN(scope, TemporalPlainYearMonth::tryCreateIfValid(globalObject, globalObject->plainYearMonthStructure(), WTFMove(plainDate)));
}
String message = tryMakeString("Temporal.PlainYearMonth.from: invalid date string "_s, string);
if (!message)
message = "Temporal.PlainYearMonth.from: invalid date string"_s;
throwRangeError(globalObject, scope, message);
return { };
}
ISO8601::PlainDate TemporalPlainYearMonth::with(JSGlobalObject* globalObject, JSObject* temporalYearMonthLike, JSValue optionsValue)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
rejectObjectWithCalendarOrTimeZone(globalObject, temporalYearMonthLike);
RETURN_IF_EXCEPTION(scope, { });
if (!calendar()->isISO8601()) [[unlikely]] {
throwRangeError(globalObject, scope, "unimplemented: with non-ISO8601 calendar"_s);
return { };
}
auto [optionalMonth, optionalMonthCode, optionalYear] = TemporalPlainDate::toYearMonth(globalObject, temporalYearMonthLike);
RETURN_IF_EXCEPTION(scope, { });
if (!optionalMonth && !optionalMonthCode && !optionalYear) [[unlikely]] {
throwTypeError(globalObject, scope, "Object must contain at least one Temporal date property"_s);
return { };
}
TemporalOverflow overflow = toTemporalOverflow(globalObject, optionsValue);
RETURN_IF_EXCEPTION(scope, { });
int32_t y = optionalYear.value_or(year());
int32_t m = optionalMonth.value_or(month());
RELEASE_AND_RETURN(scope, TemporalCalendar::yearMonthFromFields(globalObject, y, m, optionalMonthCode, overflow));
}
String TemporalPlainYearMonth::monthCode() const
{
return ISO8601::monthCode(m_plainYearMonth.month());
}
// https://tc39.es/proposal-temporal/#sec-temporal-adddurationtoyearmonth
template<AddOrSubtract op>
ISO8601::PlainYearMonth TemporalPlainYearMonth::addDurationToYearMonth(JSGlobalObject* globalObject, ISO8601::PlainYearMonth yearMonth, ISO8601::Duration duration, TemporalOverflow overflow)
{
VM& vm = globalObject->vm();
auto scope = DECLARE_THROW_SCOPE(vm);
if constexpr (op == AddOrSubtract::Subtract)
duration = -duration;
auto sign = TemporalDuration::sign(duration);
auto year = yearMonth.year();
auto month = yearMonth.month();
auto constexpr day = 1;
auto intermediateDate = ISO8601::PlainDate(year, month, day);
if (!ISO8601::isDateTimeWithinLimits(year, month, day, 0, 0, 0, 0, 0, 0)) [[unlikely]] {
throwRangeError(globalObject, scope, "date out of range in add or subtract"_s);
return { };
}
ISO8601::PlainDate date;
if (sign < 0) {
auto oneMonthDuration = ISO8601::Duration { 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 };
auto nextMonth = TemporalCalendar::isoDateAdd(globalObject,
intermediateDate, oneMonthDuration, TemporalOverflow::Constrain);
RETURN_IF_EXCEPTION(scope, { });
int32_t y = nextMonth.year();
uint8_t m = nextMonth.month();
uint8_t d = nextMonth.day() - 1;
date = TemporalCalendar::balanceISODate(globalObject, y, m, d);
} else
date = intermediateDate;
auto durationToAdd = TemporalDuration::toDateDurationRecordWithoutTime(globalObject, duration);
RETURN_IF_EXCEPTION(scope, { });
auto addedDate = TemporalCalendar::isoDateAdd(globalObject, date, durationToAdd, overflow);
RETURN_IF_EXCEPTION(scope, { });
return ISO8601::PlainYearMonth(addedDate.year(), addedDate.month());
}
} // namespace JSC
|