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
|
/*
* Copyright (C) 2021 Igalia, S.L. All rights reserved.
* Copyright (C) 2021 Sony Interactive Entertainment Inc.
* Copyright (C) 2021-2022 Apple Inc. All rights reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*
*/
#pragma once
#include "JSObject.h"
#include <wtf/Int128.h>
namespace JSC {
#define JSC_TEMPORAL_PLAIN_DATE_UNITS(macro) \
macro(year, Year) \
macro(month, Month) \
macro(day, Day) \
#define JSC_TEMPORAL_PLAIN_MONTH_DAY_UNITS(macro) \
macro(month, Month) \
macro(day, Day)
#define JSC_TEMPORAL_PLAIN_YEAR_MONTH_UNITS(macro) \
macro(year, Year) \
macro(month, Month)
#define JSC_TEMPORAL_PLAIN_TIME_UNITS(macro) \
macro(hour, Hour) \
macro(minute, Minute) \
macro(second, Second) \
macro(millisecond, Millisecond) \
macro(microsecond, Microsecond) \
macro(nanosecond, Nanosecond) \
#define JSC_TEMPORAL_UNITS(macro) \
macro(year, Year) \
macro(month, Month) \
macro(week, Week) \
macro(day, Day) \
JSC_TEMPORAL_PLAIN_TIME_UNITS(macro) \
enum class TemporalUnit : uint8_t {
#define JSC_DEFINE_TEMPORAL_UNIT_ENUM(name, capitalizedName) capitalizedName,
JSC_TEMPORAL_UNITS(JSC_DEFINE_TEMPORAL_UNIT_ENUM)
#undef JSC_DEFINE_TEMPORAL_UNIT_ENUM
};
#define JSC_COUNT_TEMPORAL_UNITS(name, capitalizedName) + 1
static constexpr unsigned numberOfTemporalUnits = 0 JSC_TEMPORAL_UNITS(JSC_COUNT_TEMPORAL_UNITS);
static constexpr unsigned numberOfTemporalPlainDateUnits = 0 JSC_TEMPORAL_PLAIN_DATE_UNITS(JSC_COUNT_TEMPORAL_UNITS);
static constexpr unsigned numberOfTemporalPlainTimeUnits = 0 JSC_TEMPORAL_PLAIN_TIME_UNITS(JSC_COUNT_TEMPORAL_UNITS);
static constexpr unsigned numberOfTemporalPlainYearMonthUnits = 0 JSC_TEMPORAL_PLAIN_YEAR_MONTH_UNITS(JSC_COUNT_TEMPORAL_UNITS);
static constexpr unsigned numberOfTemporalPlainMonthDayUnits = 0 JSC_TEMPORAL_PLAIN_MONTH_DAY_UNITS(JSC_COUNT_TEMPORAL_UNITS);
#undef JSC_COUNT_TEMPORAL_UNITS
extern const TemporalUnit temporalUnitsInTableOrder[numberOfTemporalUnits];
class TemporalObject final : public JSNonFinalObject {
public:
using Base = JSNonFinalObject;
static constexpr unsigned StructureFlags = Base::StructureFlags | HasStaticPropertyTable;
template<typename CellType, SubspaceAccess>
static GCClient::IsoSubspace* subspaceFor(VM& vm)
{
STATIC_ASSERT_ISO_SUBSPACE_SHARABLE(TemporalObject, Base);
return &vm.plainObjectSpace();
}
static TemporalObject* create(VM&, Structure*);
static Structure* createStructure(VM&, JSGlobalObject*);
DECLARE_INFO;
private:
TemporalObject(VM&, Structure*);
void finishCreation(VM&);
};
enum class RoundingMode : uint8_t {
Ceil,
Floor,
Expand,
Trunc,
HalfCeil,
HalfFloor,
HalfExpand,
HalfTrunc,
HalfEven
};
enum class UnsignedRoundingMode : uint8_t {
Infinity,
Zero,
HalfInfinity,
HalfZero,
HalfEven
};
enum class Precision : uint8_t {
Minute,
Fixed,
Auto,
};
struct PrecisionData {
std::tuple<Precision, unsigned> precision;
TemporalUnit unit;
unsigned increment;
};
enum class UnitGroup : uint8_t {
DateTime,
Date,
Time,
};
enum class Inclusivity : bool {
Inclusive,
Exclusive
};
enum class DifferenceOperation : bool {
Since,
Until
};
enum class AddOrSubtract : bool {
Add,
Subtract
};
struct ParsedMonthCode {
uint8_t monthNumber;
bool isLeapMonth;
};
WTF::String ellipsizeAt(unsigned maxLength, const WTF::String&);
PropertyName temporalUnitPluralPropertyName(VM&, TemporalUnit);
PropertyName temporalUnitSingularPropertyName(VM&, TemporalUnit);
std::optional<TemporalUnit> temporalUnitType(StringView);
std::optional<TemporalUnit> temporalLargestUnit(JSGlobalObject*, JSObject* options, std::initializer_list<TemporalUnit> disallowedUnits, TemporalUnit autoValue);
std::optional<TemporalUnit> temporalSmallestUnit(JSGlobalObject*, JSObject* options, std::initializer_list<TemporalUnit> disallowedUnits);
std::tuple<TemporalUnit, TemporalUnit, RoundingMode, double> extractDifferenceOptions(JSGlobalObject*, JSValue, UnitGroup, TemporalUnit defaultSmallestUnit, TemporalUnit defaultLargestUnit);
std::optional<unsigned> temporalFractionalSecondDigits(JSGlobalObject*, JSObject* options);
PrecisionData secondsStringPrecision(JSGlobalObject*, JSObject* options);
RoundingMode temporalRoundingMode(JSGlobalObject*, JSObject*, RoundingMode);
RoundingMode negateTemporalRoundingMode(RoundingMode);
void formatSecondsStringFraction(StringBuilder&, unsigned fraction, std::tuple<Precision, unsigned>);
void formatSecondsStringPart(StringBuilder&, unsigned second, unsigned fraction, PrecisionData);
std::optional<double> maximumRoundingIncrement(TemporalUnit);
double temporalRoundingIncrement(JSGlobalObject*, JSObject* options, std::optional<double> dividend, bool inclusive);
double roundNumberToIncrement(double, double increment, RoundingMode);
double roundNumberToIncrementDouble(double, double increment, RoundingMode);
Int128 roundNumberToIncrementInt128(Int128, Int128, RoundingMode);
Int128 roundNumberToIncrementAsIfPositive(Int128, Int128, RoundingMode);
double applyUnsignedRoundingMode(double, double, double, UnsignedRoundingMode);
void rejectObjectWithCalendarOrTimeZone(JSGlobalObject*, JSObject*);
constexpr Int128 lengthInNanoseconds(TemporalUnit unit)
{
switch (unit) {
case TemporalUnit::Nanosecond:
return 1;
case TemporalUnit::Microsecond:
return 1000;
case TemporalUnit::Millisecond:
return 1000 * lengthInNanoseconds(TemporalUnit::Microsecond);
case TemporalUnit::Second:
return 1000 * lengthInNanoseconds(TemporalUnit::Millisecond);
case TemporalUnit::Minute:
return 60 * lengthInNanoseconds(TemporalUnit::Second);
case TemporalUnit::Hour:
return 60 * lengthInNanoseconds(TemporalUnit::Minute);
case TemporalUnit::Day:
return 24 * lengthInNanoseconds(TemporalUnit::Hour);
default:
break;
}
RELEASE_ASSERT_NOT_REACHED();
}
// https://tc39.es/proposal-temporal/#sec-getunsignedroundingmode
constexpr UnsignedRoundingMode getUnsignedRoundingMode(RoundingMode roundingMode, bool isNegative)
{
switch (roundingMode) {
case RoundingMode::Ceil:
return isNegative ? UnsignedRoundingMode::Zero : UnsignedRoundingMode::Infinity;
case RoundingMode::Floor:
return isNegative ? UnsignedRoundingMode::Infinity : UnsignedRoundingMode::Zero;
case RoundingMode::Expand:
return UnsignedRoundingMode::Infinity;
case RoundingMode::Trunc:
return UnsignedRoundingMode::Zero;
case RoundingMode::HalfCeil:
return isNegative ? UnsignedRoundingMode::HalfZero : UnsignedRoundingMode::HalfInfinity;
case RoundingMode::HalfFloor:
return isNegative ? UnsignedRoundingMode::HalfInfinity : UnsignedRoundingMode::HalfZero;
case RoundingMode::HalfExpand:
return UnsignedRoundingMode::HalfInfinity;
case RoundingMode::HalfTrunc:
return UnsignedRoundingMode::HalfZero;
default:
return UnsignedRoundingMode::HalfEven;
}
}
enum class TemporalOverflow : bool {
Constrain,
Reject,
};
TemporalOverflow toTemporalOverflow(JSGlobalObject*, JSObject*);
TemporalOverflow toTemporalOverflow(JSGlobalObject*, JSValue);
String toTemporalCalendarName(JSGlobalObject*, JSObject*);
enum class TemporalDisambiguation : uint8_t {
Compatible,
Earlier,
Later,
Reject,
};
enum class TemporalDateFormat : uint8_t {
Date,
YearMonth,
MonthDay
};
enum class TemporalAnyProperties : bool {
None,
Some,
};
} // namespace JSC
|