AbstractOperations.cpp 66 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472
  1. /*
  2. * Copyright (c) 2021-2022, Idan Horowitz <idan.horowitz@serenityos.org>
  3. * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org>
  4. * Copyright (c) 2021, Luke Wilde <lukew@serenityos.org>
  5. * Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
  6. *
  7. * SPDX-License-Identifier: BSD-2-Clause
  8. */
  9. #include <LibCrypto/BigFraction/BigFraction.h>
  10. #include <LibJS/Runtime/AbstractOperations.h>
  11. #include <LibJS/Runtime/Date.h>
  12. #include <LibJS/Runtime/PropertyKey.h>
  13. #include <LibJS/Runtime/Temporal/AbstractOperations.h>
  14. #include <LibJS/Runtime/Temporal/Calendar.h>
  15. #include <LibJS/Runtime/Temporal/Duration.h>
  16. #include <LibJS/Runtime/Temporal/Instant.h>
  17. #include <LibJS/Runtime/Temporal/PlainDate.h>
  18. #include <LibJS/Runtime/Temporal/PlainDateTime.h>
  19. #include <LibJS/Runtime/Temporal/TimeZone.h>
  20. namespace JS::Temporal {
  21. // https://tc39.es/proposal-temporal/#table-temporal-units
  22. struct TemporalUnit {
  23. Unit value;
  24. StringView singular_property_name;
  25. StringView plural_property_name;
  26. UnitCategory category;
  27. RoundingIncrement maximum_duration_rounding_increment;
  28. };
  29. static auto temporal_units = to_array<TemporalUnit>({
  30. { Unit::Year, "year"sv, "years"sv, UnitCategory::Date, Unset {} },
  31. { Unit::Month, "month"sv, "months"sv, UnitCategory::Date, Unset {} },
  32. { Unit::Week, "week"sv, "weeks"sv, UnitCategory::Date, Unset {} },
  33. { Unit::Day, "day"sv, "days"sv, UnitCategory::Date, Unset {} },
  34. { Unit::Hour, "hour"sv, "hours"sv, UnitCategory::Time, 24 },
  35. { Unit::Minute, "minute"sv, "minutes"sv, UnitCategory::Time, 60 },
  36. { Unit::Second, "second"sv, "seconds"sv, UnitCategory::Time, 60 },
  37. { Unit::Millisecond, "millisecond"sv, "milliseconds"sv, UnitCategory::Time, 1000 },
  38. { Unit::Microsecond, "microsecond"sv, "microseconds"sv, UnitCategory::Time, 1000 },
  39. { Unit::Nanosecond, "nanosecond"sv, "nanoseconds"sv, UnitCategory::Time, 1000 },
  40. });
  41. StringView temporal_unit_to_string(Unit unit)
  42. {
  43. return temporal_units[to_underlying(unit)].singular_property_name;
  44. }
  45. // 13.1 ISODateToEpochDays ( year, month, date ), https://tc39.es/proposal-temporal/#sec-isodatetoepochdays
  46. double iso_date_to_epoch_days(double year, double month, double date)
  47. {
  48. // 1. Let resolvedYear be year + floor(month / 12).
  49. // 2. Let resolvedMonth be month modulo 12.
  50. // 3. Find a time t such that EpochTimeToEpochYear(t) = resolvedYear, EpochTimeToMonthInYear(t) = resolvedMonth, and EpochTimeToDate(t) = 1.
  51. // 4. Return EpochTimeToDayNumber(t) + date - 1.
  52. // EDITOR'S NOTE: This operation corresponds to ECMA-262 operation MakeDay(year, month, date). It calculates the
  53. // result in mathematical values instead of Number values. These two operations would be unified when
  54. // https://github.com/tc39/ecma262/issues/1087 is fixed.
  55. // Since we don't have a real MV type to work with, let's defer to MakeDay.
  56. return JS::make_day(year, month, date);
  57. }
  58. // 13.2 EpochDaysToEpochMs ( day, time ), https://tc39.es/proposal-temporal/#sec-epochdaystoepochms
  59. double epoch_days_to_epoch_ms(double day, double time)
  60. {
  61. // 1. Return day × ℝ(msPerDay) + time.
  62. return day * JS::ms_per_day + time;
  63. }
  64. // 13.6 GetTemporalOverflowOption ( options ), https://tc39.es/proposal-temporal/#sec-temporal-gettemporaloverflowoption
  65. ThrowCompletionOr<Overflow> get_temporal_overflow_option(VM& vm, Object const& options)
  66. {
  67. // 1. Let stringValue be ? GetOption(options, "overflow", STRING, « "constrain", "reject" », "constrain").
  68. auto string_value = TRY(get_option(vm, options, vm.names.overflow, OptionType::String, { "constrain"sv, "reject"sv }, "constrain"sv));
  69. // 2. If stringValue is "constrain", return CONSTRAIN.
  70. if (string_value.as_string().utf8_string() == "constrain"sv)
  71. return Overflow::Constrain;
  72. // 3. Return REJECT.
  73. return Overflow::Reject;
  74. }
  75. // 13.14 ValidateTemporalRoundingIncrement ( increment, dividend, inclusive ), https://tc39.es/proposal-temporal/#sec-validatetemporalroundingincrement
  76. ThrowCompletionOr<void> validate_temporal_rounding_increment(VM& vm, u64 increment, u64 dividend, bool inclusive)
  77. {
  78. u64 maximum = 0;
  79. // 1. If inclusive is true, then
  80. if (inclusive) {
  81. // a. Let maximum be dividend.
  82. maximum = dividend;
  83. }
  84. // 2. Else,
  85. else {
  86. // a. Assert: dividend > 1.
  87. VERIFY(dividend > 1);
  88. // b. Let maximum be dividend - 1.
  89. maximum = dividend - 1;
  90. }
  91. // 3. If increment > maximum, throw a RangeError exception.
  92. if (increment > maximum)
  93. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, increment, "roundingIncrement");
  94. // 5. If dividend modulo increment ≠ 0, then
  95. if (modulo(dividend, increment) != 0) {
  96. // a. Throw a RangeError exception.
  97. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, increment, "roundingIncrement");
  98. }
  99. // 6. Return UNUSED.
  100. return {};
  101. }
  102. // 13.15 GetTemporalFractionalSecondDigitsOption ( options ), https://tc39.es/proposal-temporal/#sec-temporal-gettemporalfractionalseconddigitsoption
  103. ThrowCompletionOr<Precision> get_temporal_fractional_second_digits_option(VM& vm, Object const& options)
  104. {
  105. // 1. Let digitsValue be ? Get(options, "fractionalSecondDigits").
  106. auto digits_value = TRY(options.get(vm.names.fractionalSecondDigits));
  107. // 2. If digitsValue is undefined, return AUTO.
  108. if (digits_value.is_undefined())
  109. return Precision { Auto {} };
  110. // 3. If digitsValue is not a Number, then
  111. if (!digits_value.is_number()) {
  112. // a. If ? ToString(digitsValue) is not "auto", throw a RangeError exception.
  113. auto digits_value_string = TRY(digits_value.to_string(vm));
  114. if (digits_value_string != "auto"sv)
  115. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, digits_value, vm.names.fractionalSecondDigits);
  116. // b. Return AUTO.
  117. return Precision { Auto {} };
  118. }
  119. // 4. If digitsValue is NaN, +∞𝔽, or -∞𝔽, throw a RangeError exception.
  120. if (digits_value.is_nan() || digits_value.is_infinity())
  121. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, digits_value, vm.names.fractionalSecondDigits);
  122. // 5. Let digitCount be floor(ℝ(digitsValue)).
  123. auto digit_count = floor(digits_value.as_double());
  124. // 6. If digitCount < 0 or digitCount > 9, throw a RangeError exception.
  125. if (digit_count < 0 || digit_count > 9)
  126. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, digits_value, vm.names.fractionalSecondDigits);
  127. // 7. Return digitCount.
  128. return Precision { static_cast<u8>(digit_count) };
  129. }
  130. // 13.16 ToSecondsStringPrecisionRecord ( smallestUnit, fractionalDigitCount ), https://tc39.es/proposal-temporal/#sec-temporal-tosecondsstringprecisionrecord
  131. SecondsStringPrecision to_seconds_string_precision_record(UnitValue smallest_unit, Precision fractional_digit_count)
  132. {
  133. if (auto const* unit = smallest_unit.get_pointer<Unit>()) {
  134. // 1. If smallestUnit is MINUTE, then
  135. if (*unit == Unit::Minute) {
  136. // a. Return the Record { [[Precision]]: MINUTE, [[Unit]]: MINUTE, [[Increment]]: 1 }.
  137. return { .precision = SecondsStringPrecision::Minute {}, .unit = Unit::Minute, .increment = 1 };
  138. }
  139. // 2. If smallestUnit is SECOND, then
  140. if (*unit == Unit::Second) {
  141. // a. Return the Record { [[Precision]]: 0, [[Unit]]: SECOND, [[Increment]]: 1 }.
  142. return { .precision = 0, .unit = Unit::Second, .increment = 1 };
  143. }
  144. // 3. If smallestUnit is MILLISECOND, then
  145. if (*unit == Unit::Millisecond) {
  146. // a. Return the Record { [[Precision]]: 3, [[Unit]]: MILLISECOND, [[Increment]]: 1 }.
  147. return { .precision = 3, .unit = Unit::Millisecond, .increment = 1 };
  148. }
  149. // 4. If smallestUnit is MICROSECOND, then
  150. if (*unit == Unit::Microsecond) {
  151. // a. Return the Record { [[Precision]]: 6, [[Unit]]: MICROSECOND, [[Increment]]: 1 }.
  152. return { .precision = 6, .unit = Unit::Microsecond, .increment = 1 };
  153. }
  154. // 5. If smallestUnit is NANOSECOND, then
  155. if (*unit == Unit::Nanosecond) {
  156. // a. Return the Record { [[Precision]]: 9, [[Unit]]: NANOSECOND, [[Increment]]: 1 }.
  157. return { .precision = 9, .unit = Unit::Nanosecond, .increment = 1 };
  158. }
  159. }
  160. // 6. Assert: smallestUnit is UNSET.
  161. VERIFY(smallest_unit.has<Unset>());
  162. // 7. If fractionalDigitCount is auto, then
  163. if (fractional_digit_count.has<Auto>()) {
  164. // a. Return the Record { [[Precision]]: AUTO, [[Unit]]: NANOSECOND, [[Increment]]: 1 }.
  165. return { .precision = Auto {}, .unit = Unit::Nanosecond, .increment = 1 };
  166. }
  167. auto fractional_digits = fractional_digit_count.get<u8>();
  168. // 8. If fractionalDigitCount = 0, then
  169. if (fractional_digits == 0) {
  170. // a. Return the Record { [[Precision]]: 0, [[Unit]]: SECOND, [[Increment]]: 1 }.
  171. return { .precision = 0, .unit = Unit::Second, .increment = 1 };
  172. }
  173. // 9. If fractionalDigitCount is in the inclusive interval from 1 to 3, then
  174. if (fractional_digits >= 1 && fractional_digits <= 3) {
  175. // a. Return the Record { [[Precision]]: fractionalDigitCount, [[Unit]]: MILLISECOND, [[Increment]]: 10**(3 - fractionalDigitCount) }.
  176. return { .precision = fractional_digits, .unit = Unit::Millisecond, .increment = static_cast<u8>(pow(10, 3 - fractional_digits)) };
  177. }
  178. // 10. If fractionalDigitCount is in the inclusive interval from 4 to 6, then
  179. if (fractional_digits >= 4 && fractional_digits <= 6) {
  180. // a. Return the Record { [[Precision]]: fractionalDigitCount, [[Unit]]: MICROSECOND, [[Increment]]: 10**(6 - fractionalDigitCount) }.
  181. return { .precision = fractional_digits, .unit = Unit::Microsecond, .increment = static_cast<u8>(pow(10, 6 - fractional_digits)) };
  182. }
  183. // 11. Assert: fractionalDigitCount is in the inclusive interval from 7 to 9.
  184. VERIFY(fractional_digits >= 7 && fractional_digits <= 9);
  185. // 12. Return the Record { [[Precision]]: fractionalDigitCount, [[Unit]]: NANOSECOND, [[Increment]]: 10**(9 - fractionalDigitCount) }.
  186. return { .precision = fractional_digits, .unit = Unit::Nanosecond, .increment = static_cast<u8>(pow(10, 9 - fractional_digits)) };
  187. }
  188. // 13.17 GetTemporalUnitValuedOption ( options, key, unitGroup, default [ , extraValues ] ), https://tc39.es/proposal-temporal/#sec-temporal-gettemporalunitvaluedoption
  189. ThrowCompletionOr<UnitValue> get_temporal_unit_valued_option(VM& vm, Object const& options, PropertyKey const& key, UnitGroup unit_group, UnitDefault const& default_, ReadonlySpan<UnitValue> extra_values)
  190. {
  191. // 1. Let allowedValues be a new empty List.
  192. Vector<UnitValue> allowed_values;
  193. // 2. For each row of Table 21, except the header row, in table order, do
  194. for (auto const& row : temporal_units) {
  195. // a. Let unit be the value in the "Value" column of the row.
  196. auto unit = row.value;
  197. // b. If the "Category" column of the row is DATE and unitGroup is DATE or DATETIME, append unit to allowedValues.
  198. if (row.category == UnitCategory::Date && (unit_group == UnitGroup::Date || unit_group == UnitGroup::DateTime))
  199. allowed_values.append(unit);
  200. // c. Else if the "Category" column of the row is TIME and unitGroup is TIME or DATETIME, append unit to allowedValues.
  201. if (row.category == UnitCategory::Time && (unit_group == UnitGroup::Time || unit_group == UnitGroup::DateTime))
  202. allowed_values.append(unit);
  203. }
  204. // 3. If extraValues is present, then
  205. if (!extra_values.is_empty()) {
  206. // a. Set allowedValues to the list-concatenation of allowedValues and extraValues.
  207. for (auto value : extra_values)
  208. allowed_values.append(value);
  209. }
  210. OptionDefault default_value;
  211. // 4. If default is UNSET, then
  212. if (default_.has<Unset>()) {
  213. // a. Let defaultValue be undefined.
  214. default_value = {};
  215. }
  216. // 5. Else if default is REQUIRED, then
  217. else if (default_.has<Required>()) {
  218. // a. Let defaultValue be REQUIRED.
  219. default_value = Required {};
  220. }
  221. // 6. Else if default is AUTO, then
  222. else if (default_.has<Auto>()) {
  223. // a. Append default to allowedValues.
  224. allowed_values.append(Auto {});
  225. // b. Let defaultValue be "auto".
  226. default_value = "auto"sv;
  227. }
  228. // 7. Else,
  229. else {
  230. auto unit = default_.get<Unit>();
  231. // a. Assert: allowedValues contains default.
  232. // b. Let defaultValue be the value in the "Singular property name" column of Table 21 corresponding to the row
  233. // with default in the "Value" column.
  234. default_value = temporal_units[to_underlying(unit)].singular_property_name;
  235. }
  236. // 8. Let allowedStrings be a new empty List.
  237. Vector<StringView> allowed_strings;
  238. // 9. For each element value of allowedValues, do
  239. for (auto value : allowed_values) {
  240. // a. If value is auto, then
  241. if (value.has<Auto>()) {
  242. // i. Append "auto" to allowedStrings.
  243. allowed_strings.append("auto"sv);
  244. }
  245. // b. Else,
  246. else {
  247. auto unit = value.get<Unit>();
  248. // i. Let singularName be the value in the "Singular property name" column of Table 21 corresponding to the
  249. // row with value in the "Value" column.
  250. auto singular_name = temporal_units[to_underlying(unit)].singular_property_name;
  251. // ii. Append singularName to allowedStrings.
  252. allowed_strings.append(singular_name);
  253. // iii. Let pluralName be the value in the "Plural property name" column of the corresponding row.
  254. auto plural_name = temporal_units[to_underlying(unit)].plural_property_name;
  255. // iv. Append pluralName to allowedStrings.
  256. allowed_strings.append(plural_name);
  257. }
  258. }
  259. // 10. NOTE: For each singular Temporal unit name that is contained within allowedStrings, the corresponding plural
  260. // name is also contained within it.
  261. // 11. Let value be ? GetOption(options, key, STRING, allowedStrings, defaultValue).
  262. auto value = TRY(get_option(vm, options, key, OptionType::String, allowed_strings, default_value));
  263. // 12. If value is undefined, return UNSET.
  264. if (value.is_undefined())
  265. return UnitValue { Unset {} };
  266. auto value_string = value.as_string().utf8_string_view();
  267. // 13. If value is "auto", return AUTO.
  268. if (value_string == "auto"sv)
  269. return UnitValue { Auto {} };
  270. // 14. Return the value in the "Value" column of Table 21 corresponding to the row with value in its "Singular
  271. // property name" or "Plural property name" column.
  272. for (auto const& row : temporal_units) {
  273. if (value_string.is_one_of(row.singular_property_name, row.plural_property_name))
  274. return UnitValue { row.value };
  275. }
  276. VERIFY_NOT_REACHED();
  277. }
  278. // 13.18 GetTemporalRelativeToOption ( options ), https://tc39.es/proposal-temporal/#sec-temporal-gettemporalrelativetooption
  279. ThrowCompletionOr<RelativeTo> get_temporal_relative_to_option(VM& vm, Object const& options)
  280. {
  281. // 1. Let value be ? Get(options, "relativeTo").
  282. auto value = TRY(options.get(vm.names.relativeTo));
  283. // 2. If value is undefined, return the Record { [[PlainRelativeTo]]: undefined, [[ZonedRelativeTo]]: undefined }.
  284. if (value.is_undefined())
  285. return RelativeTo { .plain_relative_to = {}, .zoned_relative_to = {} };
  286. // FIXME: Implement the remaining steps of this AO when we have implemented PlainRelativeTo and ZonedRelativeTo.
  287. return RelativeTo { .plain_relative_to = {}, .zoned_relative_to = {} };
  288. }
  289. // 13.19 LargerOfTwoTemporalUnits ( u1, u2 ), https://tc39.es/proposal-temporal/#sec-temporal-largeroftwotemporalunits
  290. Unit larger_of_two_temporal_units(Unit unit1, Unit unit2)
  291. {
  292. // 1. For each row of Table 21, except the header row, in table order, do
  293. for (auto const& row : temporal_units) {
  294. // a. Let unit be the value in the "Value" column of the row.
  295. auto unit = row.value;
  296. // b. If u1 is unit, return unit.
  297. if (unit1 == unit)
  298. return unit;
  299. // c. If u2 is unit, return unit.
  300. if (unit2 == unit)
  301. return unit;
  302. }
  303. VERIFY_NOT_REACHED();
  304. }
  305. // 13.20 IsCalendarUnit ( unit ), https://tc39.es/proposal-temporal/#sec-temporal-iscalendarunit
  306. bool is_calendar_unit(Unit unit)
  307. {
  308. // 1. If unit is year, return true.
  309. if (unit == Unit::Year)
  310. return true;
  311. // 2. If unit is month, return true.
  312. if (unit == Unit::Month)
  313. return true;
  314. // 3. If unit is week, return true.
  315. if (unit == Unit::Week)
  316. return true;
  317. // 4. Return false.
  318. return false;
  319. }
  320. // 13.21 TemporalUnitCategory ( unit ), https://tc39.es/proposal-temporal/#sec-temporal-temporalunitcategory
  321. UnitCategory temporal_unit_category(Unit unit)
  322. {
  323. // 1. Return the value from the "Category" column of the row of Table 21 in which unit is in the "Value" column.
  324. return temporal_units[to_underlying(unit)].category;
  325. }
  326. // 13.22 MaximumTemporalDurationRoundingIncrement ( unit ), https://tc39.es/proposal-temporal/#sec-temporal-maximumtemporaldurationroundingincrement
  327. RoundingIncrement maximum_temporal_duration_rounding_increment(Unit unit)
  328. {
  329. // 1. Return the value from the "Maximum duration rounding increment" column of the row of Table 21 in which unit is
  330. // in the "Value" column.
  331. return temporal_units[to_underlying(unit)].maximum_duration_rounding_increment;
  332. }
  333. // AD-HOC
  334. Crypto::UnsignedBigInteger const& temporal_unit_length_in_nanoseconds(Unit unit)
  335. {
  336. switch (unit) {
  337. case Unit::Day:
  338. return NANOSECONDS_PER_DAY;
  339. case Unit::Hour:
  340. return NANOSECONDS_PER_HOUR;
  341. case Unit::Minute:
  342. return NANOSECONDS_PER_MINUTE;
  343. case Unit::Second:
  344. return NANOSECONDS_PER_SECOND;
  345. case Unit::Millisecond:
  346. return NANOSECONDS_PER_MILLISECOND;
  347. case Unit::Microsecond:
  348. return NANOSECONDS_PER_MICROSECOND;
  349. case Unit::Nanosecond:
  350. return NANOSECONDS_PER_NANOSECOND;
  351. default:
  352. VERIFY_NOT_REACHED();
  353. }
  354. }
  355. // 13.24 FormatFractionalSeconds ( subSecondNanoseconds, precision ), https://tc39.es/proposal-temporal/#sec-temporal-formatfractionalseconds
  356. String format_fractional_seconds(u64 sub_second_nanoseconds, Precision precision)
  357. {
  358. String fraction_string;
  359. // 1. If precision is auto, then
  360. if (precision.has<Auto>()) {
  361. // a. If subSecondNanoseconds = 0, return the empty String.
  362. if (sub_second_nanoseconds == 0)
  363. return String {};
  364. // b. Let fractionString be ToZeroPaddedDecimalString(subSecondNanoseconds, 9).
  365. fraction_string = MUST(String::formatted("{:09}", sub_second_nanoseconds));
  366. // c. Set fractionString to the longest prefix of fractionString ending with a code unit other than 0x0030 (DIGIT ZERO).
  367. fraction_string = MUST(fraction_string.trim("0"sv, TrimMode::Right));
  368. }
  369. // 2. Else,
  370. else {
  371. // a. If precision = 0, return the empty String.
  372. if (precision.get<u8>() == 0)
  373. return String {};
  374. // b. Let fractionString be ToZeroPaddedDecimalString(subSecondNanoseconds, 9).
  375. fraction_string = MUST(String::formatted("{:09}", sub_second_nanoseconds));
  376. // c. Set fractionString to the substring of fractionString from 0 to precision.
  377. fraction_string = MUST(fraction_string.substring_from_byte_offset(0, precision.get<u8>()));
  378. }
  379. // 3. Return the string-concatenation of the code unit 0x002E (FULL STOP) and fractionString.
  380. return MUST(String::formatted(".{}", fraction_string));
  381. }
  382. // 13.25 FormatTimeString ( hour, minute, second, subSecondNanoseconds, precision [ , style ] ), https://tc39.es/proposal-temporal/#sec-temporal-formattimestring
  383. String format_time_string(u8 hour, u8 minute, u8 second, u16 sub_second_nanoseconds, SecondsStringPrecision::Precision precision, Optional<TimeStyle> style)
  384. {
  385. // 1. If style is present and style is UNSEPARATED, let separator be the empty String; otherwise, let separator be ":".
  386. auto separator = style == TimeStyle::Unseparated ? ""sv : ":"sv;
  387. // 2. Let hh be ToZeroPaddedDecimalString(hour, 2).
  388. // 3. Let mm be ToZeroPaddedDecimalString(minute, 2).
  389. // 4. If precision is minute, return the string-concatenation of hh, separator, and mm.
  390. if (precision.has<SecondsStringPrecision::Minute>())
  391. return MUST(String::formatted("{:02}{}{:02}", hour, separator, minute));
  392. // 5. Let ss be ToZeroPaddedDecimalString(second, 2).
  393. // 6. Let subSecondsPart be FormatFractionalSeconds(subSecondNanoseconds, precision).
  394. auto sub_seconds_part = format_fractional_seconds(sub_second_nanoseconds, precision.downcast<Auto, u8>());
  395. // 7. Return the string-concatenation of hh, separator, mm, separator, ss, and subSecondsPart.
  396. return MUST(String::formatted("{:02}{}{:02}{}{:02}{}", hour, separator, minute, separator, second, sub_seconds_part));
  397. }
  398. // 13.26 GetUnsignedRoundingMode ( roundingMode, sign ), https://tc39.es/proposal-temporal/#sec-getunsignedroundingmode
  399. UnsignedRoundingMode get_unsigned_rounding_mode(RoundingMode rounding_mode, Sign sign)
  400. {
  401. // 1. Return the specification type in the "Unsigned Rounding Mode" column of Table 22 for the row where the value
  402. // in the "Rounding Mode" column is roundingMode and the value in the "Sign" column is sign.
  403. switch (rounding_mode) {
  404. case RoundingMode::Ceil:
  405. return sign == Sign::Positive ? UnsignedRoundingMode::Infinity : UnsignedRoundingMode::Zero;
  406. case RoundingMode::Floor:
  407. return sign == Sign::Positive ? UnsignedRoundingMode::Zero : UnsignedRoundingMode::Infinity;
  408. case RoundingMode::Expand:
  409. return UnsignedRoundingMode::Infinity;
  410. case RoundingMode::Trunc:
  411. return UnsignedRoundingMode::Zero;
  412. case RoundingMode::HalfCeil:
  413. return sign == Sign::Positive ? UnsignedRoundingMode::HalfInfinity : UnsignedRoundingMode::HalfZero;
  414. case RoundingMode::HalfFloor:
  415. return sign == Sign::Positive ? UnsignedRoundingMode::HalfZero : UnsignedRoundingMode::HalfInfinity;
  416. case RoundingMode::HalfExpand:
  417. return UnsignedRoundingMode::HalfInfinity;
  418. case RoundingMode::HalfTrunc:
  419. return UnsignedRoundingMode::HalfZero;
  420. case RoundingMode::HalfEven:
  421. return UnsignedRoundingMode::HalfEven;
  422. }
  423. VERIFY_NOT_REACHED();
  424. }
  425. // 13.27 ApplyUnsignedRoundingMode ( x, r1, r2, unsignedRoundingMode ), https://tc39.es/proposal-temporal/#sec-applyunsignedroundingmode
  426. double apply_unsigned_rounding_mode(double x, double r1, double r2, UnsignedRoundingMode unsigned_rounding_mode)
  427. {
  428. // 1. If x = r1, return r1.
  429. if (x == r1)
  430. return r1;
  431. // 2. Assert: r1 < x < r2.
  432. VERIFY(r1 < x && x < r2);
  433. // 3. Assert: unsignedRoundingMode is not undefined.
  434. // 4. If unsignedRoundingMode is ZERO, return r1.
  435. if (unsigned_rounding_mode == UnsignedRoundingMode::Zero)
  436. return r1;
  437. // 5. If unsignedRoundingMode is INFINITY, return r2.
  438. if (unsigned_rounding_mode == UnsignedRoundingMode::Infinity)
  439. return r2;
  440. // 6. Let d1 be x – r1.
  441. auto d1 = x - r1;
  442. // 7. Let d2 be r2 – x.
  443. auto d2 = r2 - x;
  444. // 8. If d1 < d2, return r1.
  445. if (d1 < d2)
  446. return r1;
  447. // 9. If d2 < d1, return r2.
  448. if (d2 < d1)
  449. return r2;
  450. // 10. Assert: d1 is equal to d2.
  451. VERIFY(d1 == d2);
  452. // 11. If unsignedRoundingMode is HALF-ZERO, return r1.
  453. if (unsigned_rounding_mode == UnsignedRoundingMode::HalfZero)
  454. return r1;
  455. // 12. If unsignedRoundingMode is HALF-INFINITY, return r2.
  456. if (unsigned_rounding_mode == UnsignedRoundingMode::HalfInfinity)
  457. return r2;
  458. // 13. Assert: unsignedRoundingMode is HALF-EVEN.
  459. VERIFY(unsigned_rounding_mode == UnsignedRoundingMode::HalfEven);
  460. // 14. Let cardinality be (r1 / (r2 – r1)) modulo 2.
  461. auto cardinality = modulo((r1 / (r2 - r1)), 2);
  462. // 15. If cardinality = 0, return r1.
  463. if (cardinality == 0)
  464. return r1;
  465. // 16. Return r2.
  466. return r2;
  467. }
  468. // 13.27 ApplyUnsignedRoundingMode ( x, r1, r2, unsignedRoundingMode ), https://tc39.es/proposal-temporal/#sec-applyunsignedroundingmode
  469. Crypto::SignedBigInteger apply_unsigned_rounding_mode(Crypto::SignedDivisionResult const& x, Crypto::SignedBigInteger const& r1, Crypto::SignedBigInteger const& r2, UnsignedRoundingMode unsigned_rounding_mode, Crypto::UnsignedBigInteger const& increment)
  470. {
  471. // 1. If x = r1, return r1.
  472. if (x.quotient == r1 && x.remainder.unsigned_value().is_zero())
  473. return r1;
  474. // 2. Assert: r1 < x < r2.
  475. // NOTE: Skipped for the sake of performance.
  476. // 3. Assert: unsignedRoundingMode is not undefined.
  477. // 4. If unsignedRoundingMode is ZERO, return r1.
  478. if (unsigned_rounding_mode == UnsignedRoundingMode::Zero)
  479. return r1;
  480. // 5. If unsignedRoundingMode is INFINITY, return r2.
  481. if (unsigned_rounding_mode == UnsignedRoundingMode::Infinity)
  482. return r2;
  483. // 6. Let d1 be x – r1.
  484. auto d1 = x.remainder.unsigned_value();
  485. // 7. Let d2 be r2 – x.
  486. auto d2 = increment.minus(x.remainder.unsigned_value());
  487. // 8. If d1 < d2, return r1.
  488. if (d1 < d2)
  489. return r1;
  490. // 9. If d2 < d1, return r2.
  491. if (d2 < d1)
  492. return r2;
  493. // 10. Assert: d1 is equal to d2.
  494. // NOTE: Skipped for the sake of performance.
  495. // 11. If unsignedRoundingMode is HALF-ZERO, return r1.
  496. if (unsigned_rounding_mode == UnsignedRoundingMode::HalfZero)
  497. return r1;
  498. // 12. If unsignedRoundingMode is HALF-INFINITY, return r2.
  499. if (unsigned_rounding_mode == UnsignedRoundingMode::HalfInfinity)
  500. return r2;
  501. // 13. Assert: unsignedRoundingMode is HALF-EVEN.
  502. VERIFY(unsigned_rounding_mode == UnsignedRoundingMode::HalfEven);
  503. // 14. Let cardinality be (r1 / (r2 – r1)) modulo 2.
  504. auto cardinality = modulo(r1.divided_by(r2.minus(r1)).quotient, "2"_bigint);
  505. // 15. If cardinality = 0, return r1.
  506. if (cardinality.unsigned_value().is_zero())
  507. return r1;
  508. // 16. Return r2.
  509. return r2;
  510. }
  511. // 13.28 RoundNumberToIncrement ( x, increment, roundingMode ), https://tc39.es/proposal-temporal/#sec-temporal-roundnumbertoincrement
  512. double round_number_to_increment(double x, u64 increment, RoundingMode rounding_mode)
  513. {
  514. // 1. Let quotient be x / increment.
  515. auto quotient = x / static_cast<double>(increment);
  516. Sign is_negative;
  517. // 2. If quotient < 0, then
  518. if (quotient < 0) {
  519. // a. Let isNegative be NEGATIVE.
  520. is_negative = Sign::Negative;
  521. // b. Set quotient to -quotient.
  522. quotient = -quotient;
  523. }
  524. // 3. Else,
  525. else {
  526. // a. Let isNegative be POSITIVE.
  527. is_negative = Sign::Positive;
  528. }
  529. // 4. Let unsignedRoundingMode be GetUnsignedRoundingMode(roundingMode, isNegative).
  530. auto unsigned_rounding_mode = get_unsigned_rounding_mode(rounding_mode, is_negative);
  531. // 5. Let r1 be the largest integer such that r1 ≤ quotient.
  532. auto r1 = floor(quotient);
  533. // 6. Let r2 be the smallest integer such that r2 > quotient.
  534. auto r2 = ceil(quotient);
  535. if (quotient == r2)
  536. r2++;
  537. // 7. Let rounded be ApplyUnsignedRoundingMode(quotient, r1, r2, unsignedRoundingMode).
  538. auto rounded = apply_unsigned_rounding_mode(quotient, r1, r2, unsigned_rounding_mode);
  539. // 8. If isNegative is NEGATIVE, set rounded to -rounded.
  540. if (is_negative == Sign::Negative)
  541. rounded = -rounded;
  542. // 9. Return rounded × increment.
  543. return rounded * static_cast<double>(increment);
  544. }
  545. // 13.28 RoundNumberToIncrement ( x, increment, roundingMode ), https://tc39.es/proposal-temporal/#sec-temporal-roundnumbertoincrement
  546. Crypto::SignedBigInteger round_number_to_increment(Crypto::SignedBigInteger const& x, Crypto::UnsignedBigInteger const& increment, RoundingMode rounding_mode)
  547. {
  548. // OPTIMIZATION: If the increment is 1 the number is always rounded.
  549. if (increment == 1)
  550. return x;
  551. // 1. Let quotient be x / increment.
  552. auto division_result = x.divided_by(increment);
  553. // OPTIMIZATION: If there's no remainder the number is already rounded.
  554. if (division_result.remainder.unsigned_value().is_zero())
  555. return x;
  556. Sign is_negative;
  557. // 2. If quotient < 0, then
  558. if (division_result.quotient.is_negative()) {
  559. // a. Let isNegative be NEGATIVE.
  560. is_negative = Sign::Negative;
  561. // b. Set quotient to -quotient.
  562. division_result.quotient.negate();
  563. division_result.remainder.negate();
  564. }
  565. // 3. Else,
  566. else {
  567. // a. Let isNegative be POSITIVE.
  568. is_negative = Sign::Positive;
  569. }
  570. // 4. Let unsignedRoundingMode be GetUnsignedRoundingMode(roundingMode, isNegative).
  571. auto unsigned_rounding_mode = get_unsigned_rounding_mode(rounding_mode, is_negative);
  572. // 5. Let r1 be the largest integer such that r1 ≤ quotient.
  573. auto r1 = division_result.quotient;
  574. // 6. Let r2 be the smallest integer such that r2 > quotient.
  575. auto r2 = division_result.quotient.plus(1_bigint);
  576. // 7. Let rounded be ApplyUnsignedRoundingMode(quotient, r1, r2, unsignedRoundingMode).
  577. auto rounded = apply_unsigned_rounding_mode(division_result, r1, r2, unsigned_rounding_mode, increment);
  578. // 8. If isNegative is NEGATIVE, set rounded to -rounded.
  579. if (is_negative == Sign::Negative)
  580. rounded.negate();
  581. // 9. Return rounded × increment.
  582. return rounded.multiplied_by(increment);
  583. }
  584. // 13.33 ParseISODateTime ( isoString, allowedFormats ), https://tc39.es/proposal-temporal/#sec-temporal-parseisodatetime
  585. ThrowCompletionOr<ParsedISODateTime> parse_iso_date_time(VM& vm, StringView iso_string, ReadonlySpan<Production> allowed_formats)
  586. {
  587. // 1. Let parseResult be EMPTY.
  588. Optional<ParseResult> parse_result;
  589. // 2. Let calendar be EMPTY.
  590. Optional<String> calendar;
  591. // 3. Let yearAbsent be false.
  592. auto year_absent = false;
  593. // 4. For each nonterminal goal of allowedFormats, do
  594. for (auto goal : allowed_formats) {
  595. // a. If parseResult is not a Parse Node, then
  596. if (parse_result.has_value())
  597. break;
  598. // i. Set parseResult to ParseText(StringToCodePoints(isoString), goal).
  599. parse_result = parse_iso8601(goal, iso_string);
  600. // ii. If parseResult is a Parse Node, then
  601. if (parse_result.has_value()) {
  602. // 1. Let calendarWasCritical be false.
  603. auto calendar_was_critical = false;
  604. // 2. For each Annotation Parse Node annotation contained within parseResult, do
  605. for (auto const& annotation : parse_result->annotations) {
  606. // a. Let key be the source text matched by the AnnotationKey Parse Node contained within annotation.
  607. auto const& key = annotation.key;
  608. // b. Let value be the source text matched by the AnnotationValue Parse Node contained within annotation.
  609. auto const& value = annotation.value;
  610. // c. If CodePointsToString(key) is "u-ca", then
  611. if (key == "u-ca"sv) {
  612. // i. If calendar is EMPTY, then
  613. if (!calendar.has_value()) {
  614. // i. Set calendar to CodePointsToString(value).
  615. calendar = String::from_utf8_without_validation(value.bytes());
  616. // ii. If annotation contains an AnnotationCriticalFlag Parse Node, set calendarWasCritical to true.
  617. if (annotation.critical)
  618. calendar_was_critical = true;
  619. }
  620. // ii. Else,
  621. else {
  622. // i. If annotation contains an AnnotationCriticalFlag Parse Node, or calendarWasCritical is true,
  623. // throw a RangeError exception.
  624. if (annotation.critical || calendar_was_critical)
  625. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidCriticalAnnotation, key, value);
  626. }
  627. }
  628. // d. Else,
  629. else {
  630. // i. If annotation contains an AnnotationCriticalFlag Parse Node, throw a RangeError exception.
  631. if (annotation.critical)
  632. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidCriticalAnnotation, key, value);
  633. }
  634. }
  635. // 3. If goal is TemporalMonthDayString or TemporalYearMonthString, calendar is not EMPTY, and the
  636. // ASCII-lowercase of calendar is not "iso8601", throw a RangeError exception.
  637. if (goal == Production::TemporalMonthDayString || goal == Production::TemporalYearMonthString) {
  638. if (calendar.has_value() && !calendar->equals_ignoring_ascii_case("iso8601"sv))
  639. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidCalendarIdentifier, *calendar);
  640. }
  641. // 4. If goal is TemporalMonthDayString and parseResult does not contain a DateYear Parse Node, then
  642. if (goal == Production::TemporalMonthDayString && !parse_result->date_year.has_value()) {
  643. // a. Assert: goal is the last element of allowedFormats.
  644. VERIFY(goal == allowed_formats.last());
  645. // b. Set yearAbsent to true.
  646. year_absent = true;
  647. }
  648. }
  649. }
  650. // 5. If parseResult is not a Parse Node, throw a RangeError exception.
  651. if (!parse_result.has_value())
  652. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidISODateTime);
  653. // 6. NOTE: Applications of StringToNumber below do not lose precision, since each of the parsed values is guaranteed
  654. // to be a sufficiently short string of decimal digits.
  655. // 7. Let each of year, month, day, hour, minute, second, and fSeconds be the source text matched by the respective
  656. // DateYear, DateMonth, DateDay, the first Hour, the first MinuteSecond, TimeSecond, and the first
  657. // TemporalDecimalFraction Parse Node contained within parseResult, or an empty sequence of code points if not present.
  658. auto year = parse_result->date_year.value_or({});
  659. auto month = parse_result->date_month.value_or({});
  660. auto day = parse_result->date_day.value_or({});
  661. auto hour = parse_result->time_hour.value_or({});
  662. auto minute = parse_result->time_minute.value_or({});
  663. auto second = parse_result->time_second.value_or({});
  664. auto fractional_seconds = parse_result->time_fraction.value_or({});
  665. // 8. Let yearMV be ℝ(StringToNumber(CodePointsToString(year))).
  666. auto year_value = string_to_number(year);
  667. // 9. If month is empty, then
  668. // a. Let monthMV be 1.
  669. // 10. Else,
  670. // a. Let monthMV be ℝ(StringToNumber(CodePointsToString(month))).
  671. auto month_value = month.is_empty() ? 1 : string_to_number(month);
  672. // 11. If day is empty, then
  673. // a. Let dayMV be 1.
  674. // 12. Else,
  675. // a. Let dayMV be ℝ(StringToNumber(CodePointsToString(day))).
  676. auto day_value = day.is_empty() ? 1 : string_to_number(day);
  677. // 13. If hour is empty, then
  678. // a. Let hourMV be 0.
  679. // 14. Else,
  680. // a. Let hourMV be ℝ(StringToNumber(CodePointsToString(hour))).
  681. auto hour_value = hour.is_empty() ? 0 : string_to_number(hour);
  682. // 15. If minute is empty, then
  683. // a. Let minuteMV be 0.
  684. // 16. Else,
  685. // a. Let minuteMV be ℝ(StringToNumber(CodePointsToString(minute))).
  686. auto minute_value = minute.is_empty() ? 0 : string_to_number(minute);
  687. // 17. If second is empty, then
  688. // a. Let secondMV be 0.
  689. // 18. Else,
  690. // a. Let secondMV be ℝ(StringToNumber(CodePointsToString(second))).
  691. // b. If secondMV = 60, then
  692. // i. Set secondMV to 59.
  693. auto second_value = second.is_empty() ? 0 : min(string_to_number(second), 59.0);
  694. double millisecond_value = 0;
  695. double microsecond_value = 0;
  696. double nanosecond_value = 0;
  697. // 19. If fSeconds is not empty, then
  698. if (!fractional_seconds.is_empty()) {
  699. // a. Let fSecondsDigits be the substring of CodePointsToString(fSeconds) from 1.
  700. auto fractional_seconds_digits = fractional_seconds.substring_view(1);
  701. // b. Let fSecondsDigitsExtended be the string-concatenation of fSecondsDigits and "000000000".
  702. auto fractional_seconds_extended = MUST(String::formatted("{}000000000", fractional_seconds_digits));
  703. // c. Let millisecond be the substring of fSecondsDigitsExtended from 0 to 3.
  704. auto millisecond = fractional_seconds_extended.bytes_as_string_view().substring_view(0, 3);
  705. // d. Let microsecond be the substring of fSecondsDigitsExtended from 3 to 6.
  706. auto microsecond = fractional_seconds_extended.bytes_as_string_view().substring_view(3, 3);
  707. // e. Let nanosecond be the substring of fSecondsDigitsExtended from 6 to 9.
  708. auto nanosecond = fractional_seconds_extended.bytes_as_string_view().substring_view(6, 3);
  709. // f. Let millisecondMV be ℝ(StringToNumber(millisecond)).
  710. millisecond_value = string_to_number(millisecond);
  711. // g. Let microsecondMV be ℝ(StringToNumber(microsecond)).
  712. microsecond_value = string_to_number(microsecond);
  713. // h. Let nanosecondMV be ℝ(StringToNumber(nanosecond)).
  714. nanosecond_value = string_to_number(nanosecond);
  715. }
  716. // 20. Else,
  717. else {
  718. // a. Let millisecondMV be 0.
  719. // b. Let microsecondMV be 0.
  720. // c. Let nanosecondMV be 0.
  721. }
  722. // 21. Assert: IsValidISODate(yearMV, monthMV, dayMV) is true.
  723. VERIFY(is_valid_iso_date(year_value, month_value, day_value));
  724. Variant<ParsedISODateTime::StartOfDay, Time> time { ParsedISODateTime::StartOfDay {} };
  725. // 22. If hour is empty, then
  726. if (hour.is_empty()) {
  727. // a. Let time be START-OF-DAY.
  728. }
  729. // 23. Else,
  730. else {
  731. // a. Let time be CreateTimeRecord(hourMV, minuteMV, secondMV, millisecondMV, microsecondMV, nanosecondMV).
  732. time = create_time_record(hour_value, minute_value, second_value, millisecond_value, microsecond_value, nanosecond_value);
  733. }
  734. // 24. Let timeZoneResult be ISO String Time Zone Parse Record { [[Z]]: false, [[OffsetString]]: EMPTY, [[TimeZoneAnnotation]]: EMPTY }.
  735. ParsedISOTimeZone time_zone_result;
  736. // 25. If parseResult contains a TimeZoneIdentifier Parse Node, then
  737. if (parse_result->time_zone_identifier.has_value()) {
  738. // a. Let identifier be the source text matched by the TimeZoneIdentifier Parse Node contained within parseResult.
  739. // b. Set timeZoneResult.[[TimeZoneAnnotation]] to CodePointsToString(identifier).
  740. time_zone_result.time_zone_annotation = String::from_utf8_without_validation(parse_result->time_zone_identifier->bytes());
  741. }
  742. // 26. If parseResult contains a UTCDesignator Parse Node, then
  743. if (parse_result->utc_designator.has_value()) {
  744. // a. Set timeZoneResult.[[Z]] to true.
  745. time_zone_result.z_designator = true;
  746. }
  747. // 27. Else if parseResult contains a UTCOffset[+SubMinutePrecision] Parse Node, then
  748. else if (parse_result->date_time_offset.has_value()) {
  749. // a. Let offset be the source text matched by the UTCOffset[+SubMinutePrecision] Parse Node contained within parseResult.
  750. // b. Set timeZoneResult.[[OffsetString]] to CodePointsToString(offset).
  751. time_zone_result.offset_string = String::from_utf8_without_validation(parse_result->date_time_offset->source_text.bytes());
  752. }
  753. // 28. If yearAbsent is true, let yearReturn be EMPTY; else let yearReturn be yearMV.
  754. Optional<i32> year_return;
  755. if (!year_absent)
  756. year_return = static_cast<i32>(year_value);
  757. // 29. Return ISO Date-Time Parse Record { [[Year]]: yearReturn, [[Month]]: monthMV, [[Day]]: dayMV, [[Time]]: time, [[TimeZone]]: timeZoneResult, [[Calendar]]: calendar }.
  758. return ParsedISODateTime { .year = year_return, .month = static_cast<u8>(month_value), .day = static_cast<u8>(day_value), .time = move(time), .time_zone = move(time_zone_result), .calendar = move(calendar) };
  759. }
  760. // 13.34 ParseTemporalCalendarString ( string ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporalcalendarstring
  761. ThrowCompletionOr<String> parse_temporal_calendar_string(VM& vm, String const& string)
  762. {
  763. // 1. Let parseResult be Completion(ParseISODateTime(string, « TemporalDateTimeString[+Zoned], TemporalDateTimeString[~Zoned],
  764. // TemporalInstantString, TemporalTimeString, TemporalMonthDayString, TemporalYearMonthString »)).
  765. static constexpr auto productions = to_array<Production>({
  766. Production::TemporalZonedDateTimeString,
  767. Production::TemporalDateTimeString,
  768. Production::TemporalInstantString,
  769. Production::TemporalTimeString,
  770. Production::TemporalMonthDayString,
  771. Production::TemporalYearMonthString,
  772. });
  773. auto parse_result = parse_iso_date_time(vm, string, productions);
  774. // 2. If parseResult is a normal completion, then
  775. if (!parse_result.is_error()) {
  776. // a. Let calendar be parseResult.[[Value]].[[Calendar]].
  777. auto calendar = parse_result.value().calendar;
  778. // b. If calendar is empty, return "iso8601".
  779. // c. Else, return calendar.
  780. return calendar.value_or("iso8601"_string);
  781. }
  782. // 3. Else,
  783. else {
  784. // a. Set parseResult to ParseText(StringToCodePoints(string), AnnotationValue).
  785. auto annotation_parse_result = parse_iso8601(Production::AnnotationValue, string);
  786. // b. If parseResult is a List of errors, throw a RangeError exception.
  787. if (!annotation_parse_result.has_value())
  788. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidCalendarString, string);
  789. // c. Else, return string.
  790. return string;
  791. }
  792. }
  793. // 13.35 ParseTemporalDurationString ( isoString ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaldurationstring
  794. ThrowCompletionOr<GC::Ref<Duration>> parse_temporal_duration_string(VM& vm, StringView iso_string)
  795. {
  796. // 1. Let duration be ParseText(StringToCodePoints(isoString), TemporalDurationString).
  797. auto parse_result = parse_iso8601(Production::TemporalDurationString, iso_string);
  798. // 2. If duration is a List of errors, throw a RangeError exception.
  799. if (!parse_result.has_value())
  800. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidDurationString, iso_string);
  801. // 3. Let sign be the source text matched by the ASCIISign Parse Node contained within duration, or an empty sequence
  802. // of code points if not present.
  803. auto sign = parse_result->sign;
  804. // 4. If duration contains a DurationYearsPart Parse Node, then
  805. // a. Let yearsNode be that DurationYearsPart Parse Node contained within duration.
  806. // b. Let years be the source text matched by the DecimalDigits Parse Node contained within yearsNode.
  807. // 5. Else,
  808. // a. Let years be an empty sequence of code points.
  809. auto years = parse_result->duration_years.value_or({});
  810. // 6. If duration contains a DurationMonthsPart Parse Node, then
  811. // a. Let monthsNode be the DurationMonthsPart Parse Node contained within duration.
  812. // b. Let months be the source text matched by the DecimalDigits Parse Node contained within monthsNode.
  813. // 7. Else,
  814. // a. Let months be an empty sequence of code points.
  815. auto months = parse_result->duration_months.value_or({});
  816. // 8. If duration contains a DurationWeeksPart Parse Node, then
  817. // a. Let weeksNode be the DurationWeeksPart Parse Node contained within duration.
  818. // b. Let weeks be the source text matched by the DecimalDigits Parse Node contained within weeksNode.
  819. // 9. Else,
  820. // a. Let weeks be an empty sequence of code points.
  821. auto weeks = parse_result->duration_weeks.value_or({});
  822. // 10. If duration contains a DurationDaysPart Parse Node, then
  823. // a. Let daysNode be the DurationDaysPart Parse Node contained within duration.
  824. // b. Let days be the source text matched by the DecimalDigits Parse Node contained within daysNode.
  825. // 11. Else,
  826. // a. Let days be an empty sequence of code points.
  827. auto days = parse_result->duration_days.value_or({});
  828. // 12. If duration contains a DurationHoursPart Parse Node, then
  829. // a. Let hoursNode be the DurationHoursPart Parse Node contained within duration.
  830. // b. Let hours be the source text matched by the DecimalDigits Parse Node contained within hoursNode.
  831. // c. Let fHours be the source text matched by the TemporalDecimalFraction Parse Node contained within
  832. // hoursNode, or an empty sequence of code points if not present.
  833. // 13. Else,
  834. // a. Let hours be an empty sequence of code points.
  835. // b. Let fHours be an empty sequence of code points.
  836. auto hours = parse_result->duration_hours.value_or({});
  837. auto fractional_hours = parse_result->duration_hours_fraction.value_or({});
  838. // 14. If duration contains a DurationMinutesPart Parse Node, then
  839. // a. Let minutesNode be the DurationMinutesPart Parse Node contained within duration.
  840. // b. Let minutes be the source text matched by the DecimalDigits Parse Node contained within minutesNode.
  841. // c. Let fMinutes be the source text matched by the TemporalDecimalFraction Parse Node contained within
  842. // minutesNode, or an empty sequence of code points if not present.
  843. // 15. Else,
  844. // a. Let minutes be an empty sequence of code points.
  845. // b. Let fMinutes be an empty sequence of code points.
  846. auto minutes = parse_result->duration_minutes.value_or({});
  847. auto fractional_minutes = parse_result->duration_minutes_fraction.value_or({});
  848. // 16. If duration contains a DurationSecondsPart Parse Node, then
  849. // a. Let secondsNode be the DurationSecondsPart Parse Node contained within duration.
  850. // b. Let seconds be the source text matched by the DecimalDigits Parse Node contained within secondsNode.
  851. // c. Let fSeconds be the source text matched by the TemporalDecimalFraction Parse Node contained within
  852. // secondsNode, or an empty sequence of code points if not present.
  853. // 17. Else,
  854. // a. Let seconds be an empty sequence of code points.
  855. // b. Let fSeconds be an empty sequence of code points.
  856. auto seconds = parse_result->duration_seconds.value_or({});
  857. auto fractional_seconds = parse_result->duration_seconds_fraction.value_or({});
  858. // 18. Let yearsMV be ? ToIntegerWithTruncation(CodePointsToString(years)).
  859. auto years_value = TRY(to_integer_with_truncation(vm, years, ErrorType::TemporalInvalidDurationString, iso_string));
  860. // 19. Let monthsMV be ? ToIntegerWithTruncation(CodePointsToString(months)).
  861. auto months_value = TRY(to_integer_with_truncation(vm, months, ErrorType::TemporalInvalidDurationString, iso_string));
  862. // 20. Let weeksMV be ? ToIntegerWithTruncation(CodePointsToString(weeks)).
  863. auto weeks_value = TRY(to_integer_with_truncation(vm, weeks, ErrorType::TemporalInvalidDurationString, iso_string));
  864. // 21. Let daysMV be ? ToIntegerWithTruncation(CodePointsToString(days)).
  865. auto days_value = TRY(to_integer_with_truncation(vm, days, ErrorType::TemporalInvalidDurationString, iso_string));
  866. // 22. Let hoursMV be ? ToIntegerWithTruncation(CodePointsToString(hours)).
  867. auto hours_value = TRY(to_integer_with_truncation(vm, hours, ErrorType::TemporalInvalidDurationString, iso_string));
  868. Crypto::BigFraction minutes_value;
  869. Crypto::BigFraction seconds_value;
  870. Crypto::BigFraction milliseconds_value;
  871. auto remainder_one = [](Crypto::BigFraction const& value) {
  872. // FIXME: We should add a generic remainder() method to BigFraction, or a method equivalent to modf(). But for
  873. // now, since we know we are only dividing by powers of 10, we can implement a very situationally specific
  874. // method to extract the fractional part of the BigFraction.
  875. auto res = value.numerator().divided_by(value.denominator());
  876. return Crypto::BigFraction { move(res.remainder), value.denominator() };
  877. };
  878. // 23. If fHours is not empty, then
  879. if (!fractional_hours.is_empty()) {
  880. // a. Assert: minutes, fMinutes, seconds, and fSeconds are empty.
  881. VERIFY(minutes.is_empty());
  882. VERIFY(fractional_minutes.is_empty());
  883. VERIFY(seconds.is_empty());
  884. VERIFY(fractional_seconds.is_empty());
  885. // b. Let fHoursDigits be the substring of CodePointsToString(fHours) from 1.
  886. auto fractional_hours_digits = fractional_hours.substring_view(1);
  887. // c. Let fHoursScale be the length of fHoursDigits.
  888. auto fractional_hours_scale = fractional_hours_digits.length();
  889. // d. Let minutesMV be ? ToIntegerWithTruncation(fHoursDigits) / 10**fHoursScale × 60.
  890. auto minutes_integer = TRY(to_integer_with_truncation(vm, fractional_hours_digits, ErrorType::TemporalInvalidDurationString, iso_string));
  891. minutes_value = Crypto::BigFraction { minutes_integer } / Crypto::BigFraction { pow(10.0, fractional_hours_scale) } * Crypto::BigFraction { 60.0 };
  892. }
  893. // 24. Else,
  894. else {
  895. // a. Let minutesMV be ? ToIntegerWithTruncation(CodePointsToString(minutes)).
  896. auto minutes_integer = TRY(to_integer_with_truncation(vm, minutes, ErrorType::TemporalInvalidDurationString, iso_string));
  897. minutes_value = Crypto::BigFraction { minutes_integer };
  898. }
  899. // 25. If fMinutes is not empty, then
  900. if (!fractional_minutes.is_empty()) {
  901. // a. Assert: seconds and fSeconds are empty.
  902. VERIFY(seconds.is_empty());
  903. VERIFY(fractional_seconds.is_empty());
  904. // b. Let fMinutesDigits be the substring of CodePointsToString(fMinutes) from 1.
  905. auto fractional_minutes_digits = fractional_minutes.substring_view(1);
  906. // c. Let fMinutesScale be the length of fMinutesDigits.
  907. auto fractional_minutes_scale = fractional_minutes_digits.length();
  908. // d. Let secondsMV be ? ToIntegerWithTruncation(fMinutesDigits) / 10**fMinutesScale × 60.
  909. auto seconds_integer = TRY(to_integer_with_truncation(vm, fractional_minutes_digits, ErrorType::TemporalInvalidDurationString, iso_string));
  910. seconds_value = Crypto::BigFraction { seconds_integer } / Crypto::BigFraction { pow(10.0, fractional_minutes_scale) } * Crypto::BigFraction { 60.0 };
  911. }
  912. // 26. Else if seconds is not empty, then
  913. else if (!seconds.is_empty()) {
  914. // a. Let secondsMV be ? ToIntegerWithTruncation(CodePointsToString(seconds)).
  915. auto seconds_integer = TRY(to_integer_with_truncation(vm, seconds, ErrorType::TemporalInvalidDurationString, iso_string));
  916. seconds_value = Crypto::BigFraction { seconds_integer };
  917. }
  918. // 27. Else,
  919. else {
  920. // a. Let secondsMV be remainder(minutesMV, 1) × 60.
  921. seconds_value = remainder_one(minutes_value) * Crypto::BigFraction { 60.0 };
  922. }
  923. // 28. If fSeconds is not empty, then
  924. if (!fractional_seconds.is_empty()) {
  925. // a. Let fSecondsDigits be the substring of CodePointsToString(fSeconds) from 1.
  926. auto fractional_seconds_digits = fractional_seconds.substring_view(1);
  927. // b. Let fSecondsScale be the length of fSecondsDigits.
  928. auto fractional_seconds_scale = fractional_seconds_digits.length();
  929. // c. Let millisecondsMV be ? ToIntegerWithTruncation(fSecondsDigits) / 10**fSecondsScale × 1000.
  930. auto milliseconds_integer = TRY(to_integer_with_truncation(vm, fractional_seconds_digits, ErrorType::TemporalInvalidDurationString, iso_string));
  931. milliseconds_value = Crypto::BigFraction { milliseconds_integer } / Crypto::BigFraction { pow(10.0, fractional_seconds_scale) } * Crypto::BigFraction { 1000.0 };
  932. }
  933. // 29. Else,
  934. else {
  935. // a. Let millisecondsMV be remainder(secondsMV, 1) × 1000.
  936. milliseconds_value = remainder_one(seconds_value) * Crypto::BigFraction { 1000.0 };
  937. }
  938. // 30. Let microsecondsMV be remainder(millisecondsMV, 1) × 1000.
  939. auto microseconds_value = remainder_one(milliseconds_value) * Crypto::BigFraction { 1000.0 };
  940. // 31. Let nanosecondsMV be remainder(microsecondsMV, 1) × 1000.
  941. auto nanoseconds_value = remainder_one(microseconds_value) * Crypto::BigFraction { 1000.0 };
  942. // 32. If sign contains the code point U+002D (HYPHEN-MINUS), then
  943. // a. Let factor be -1.
  944. // 33. Else,
  945. // a. Let factor be 1.
  946. i8 factor = sign == '-' ? -1 : 1;
  947. // 34. Set yearsMV to yearsMV × factor.
  948. years_value *= factor;
  949. // 35. Set monthsMV to monthsMV × factor.
  950. months_value *= factor;
  951. // 36. Set weeksMV to weeksMV × factor.
  952. weeks_value *= factor;
  953. // 37. Set daysMV to daysMV × factor.
  954. days_value *= factor;
  955. // 38. Set hoursMV to hoursMV × factor.
  956. hours_value *= factor;
  957. // 39. Set minutesMV to floor(minutesMV) × factor.
  958. auto factored_minutes_value = floor(minutes_value.to_double()) * factor;
  959. // 40. Set secondsMV to floor(secondsMV) × factor.
  960. auto factored_seconds_value = floor(seconds_value.to_double()) * factor;
  961. // 41. Set millisecondsMV to floor(millisecondsMV) × factor.
  962. auto factored_milliseconds_value = floor(milliseconds_value.to_double()) * factor;
  963. // 42. Set microsecondsMV to floor(microsecondsMV) × factor.
  964. auto factored_microseconds_value = floor(microseconds_value.to_double()) * factor;
  965. // 43. Set nanosecondsMV to floor(nanosecondsMV) × factor.
  966. auto factored_nanoseconds_value = floor(nanoseconds_value.to_double()) * factor;
  967. // 44. Return ? CreateTemporalDuration(yearsMV, monthsMV, weeksMV, daysMV, hoursMV, minutesMV, secondsMV, millisecondsMV, microsecondsMV, nanosecondsMV).
  968. return TRY(create_temporal_duration(vm, years_value, months_value, weeks_value, days_value, hours_value, factored_minutes_value, factored_seconds_value, factored_milliseconds_value, factored_microseconds_value, factored_nanoseconds_value));
  969. }
  970. // 13.36 ParseTemporalTimeZoneString ( timeZoneString ), https://tc39.es/proposal-temporal/#sec-temporal-parsetemporaltimezonestring
  971. ThrowCompletionOr<TimeZone> parse_temporal_time_zone_string(VM& vm, StringView time_zone_string)
  972. {
  973. // 1. Let parseResult be ParseText(StringToCodePoints(timeZoneString), TimeZoneIdentifier).
  974. auto parse_result = parse_iso8601(Production::TimeZoneIdentifier, time_zone_string);
  975. // 2. If parseResult is a Parse Node, then
  976. if (parse_result.has_value()) {
  977. // a. Return ! ParseTimeZoneIdentifier(timeZoneString).
  978. return parse_time_zone_identifier(parse_result.release_value());
  979. }
  980. // 3. Let result be ? ParseISODateTime(timeZoneString, « TemporalDateTimeString[+Zoned], TemporalDateTimeString[~Zoned],
  981. // TemporalInstantString, TemporalTimeString, TemporalMonthDayString, TemporalYearMonthString »).
  982. static constexpr auto productions = to_array<Production>({
  983. Production::TemporalZonedDateTimeString,
  984. Production::TemporalDateTimeString,
  985. Production::TemporalInstantString,
  986. Production::TemporalTimeString,
  987. Production::TemporalMonthDayString,
  988. Production::TemporalYearMonthString,
  989. });
  990. auto result = TRY(parse_iso_date_time(vm, time_zone_string, productions));
  991. // 4. Let timeZoneResult be result.[[TimeZone]].
  992. auto time_zone_result = move(result.time_zone);
  993. // 5. If timeZoneResult.[[TimeZoneAnnotation]] is not empty, then
  994. if (time_zone_result.time_zone_annotation.has_value()) {
  995. // a. Return ! ParseTimeZoneIdentifier(timeZoneResult.[[TimeZoneAnnotation]]).
  996. return MUST(parse_time_zone_identifier(vm, *time_zone_result.time_zone_annotation));
  997. }
  998. // 6. If timeZoneResult.[[Z]] is true, then
  999. if (time_zone_result.z_designator) {
  1000. // a. Return ! ParseTimeZoneIdentifier("UTC").
  1001. return MUST(parse_time_zone_identifier(vm, "UTC"sv));
  1002. }
  1003. // 7. If timeZoneResult.[[OffsetString]] is not empty, then
  1004. if (time_zone_result.offset_string.has_value()) {
  1005. // a. Return ? ParseTimeZoneIdentifier(timeZoneResult.[[OffsetString]]).
  1006. return TRY(parse_time_zone_identifier(vm, *time_zone_result.offset_string));
  1007. }
  1008. // 8. Throw a RangeError exception.
  1009. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidTimeZoneString, time_zone_string);
  1010. }
  1011. // 13.40 ToMonthCode ( argument ), https://tc39.es/proposal-temporal/#sec-temporal-tomonthcode
  1012. ThrowCompletionOr<String> to_month_code(VM& vm, Value argument)
  1013. {
  1014. // 1. Let monthCode be ? ToPrimitive(argument, STRING).
  1015. auto month_code = TRY(argument.to_primitive(vm, Value::PreferredType::String));
  1016. // 2. If monthCode is not a String, throw a TypeError exception.
  1017. if (!month_code.is_string())
  1018. return vm.throw_completion<TypeError>(ErrorType::TemporalInvalidMonthCode);
  1019. auto month_code_string = month_code.as_string().utf8_string_view();
  1020. // 3. If the length of monthCode is not 3 or 4, throw a RangeError exception.
  1021. if (month_code_string.length() != 3 && month_code_string.length() != 4)
  1022. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidMonthCode);
  1023. // 4. If the first code unit of monthCode is not 0x004D (LATIN CAPITAL LETTER M), throw a RangeError exception.
  1024. if (month_code_string[0] != 'M')
  1025. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidMonthCode);
  1026. // 5. If the second code unit of monthCode is not in the inclusive interval from 0x0030 (DIGIT ZERO) to 0x0039 (DIGIT NINE),
  1027. // throw a RangeError exception.
  1028. if (!is_ascii_digit(month_code_string[1]) || parse_ascii_digit(month_code_string[1]) > 9)
  1029. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidMonthCode);
  1030. // 6. If the third code unit of monthCode is not in the inclusive interval from 0x0030 (DIGIT ZERO) to 0x0039 (DIGIT NINE),
  1031. // throw a RangeError exception.
  1032. if (!is_ascii_digit(month_code_string[2]) || parse_ascii_digit(month_code_string[2]) > 9)
  1033. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidMonthCode);
  1034. // 7. If the length of monthCode is 4 and the fourth code unit of monthCode is not 0x004C (LATIN CAPITAL LETTER L),
  1035. // throw a RangeError exception.
  1036. if (month_code_string.length() == 4 && month_code_string[3] != 'L')
  1037. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidMonthCode);
  1038. // 8. Let monthCodeDigits be the substring of monthCode from 1 to 3.
  1039. auto month_code_digits = month_code_string.substring_view(1, 2);
  1040. // 9. Let monthCodeInteger be ℝ(StringToNumber(monthCodeDigits)).
  1041. auto month_code_integer = month_code_digits.to_number<u8>().value();
  1042. // 10. If monthCodeInteger is 0 and the length of monthCode is not 4, throw a RangeError exception.
  1043. if (month_code_integer == 0 && month_code_string.length() != 4)
  1044. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidMonthCode);
  1045. // 11. Return monthCode.
  1046. return month_code.as_string().utf8_string();
  1047. }
  1048. // 13.41 ToOffsetString ( argument ), https://tc39.es/proposal-temporal/#sec-temporal-tooffsetstring
  1049. ThrowCompletionOr<String> to_offset_string(VM& vm, Value argument)
  1050. {
  1051. // 1. Let offset be ? ToPrimitive(argument, STRING).
  1052. auto offset = TRY(argument.to_primitive(vm, Value::PreferredType::String));
  1053. // 2. If offset is not a String, throw a TypeError exception.
  1054. if (!offset.is_string())
  1055. return vm.throw_completion<TypeError>(ErrorType::TemporalInvalidTimeZoneString, offset);
  1056. // 3. Perform ? ParseDateTimeUTCOffset(offset).
  1057. // FIXME: ParseTimeZoneOffsetString should be renamed to ParseDateTimeUTCOffset and updated for Temporal. For now, we
  1058. // can just check with the ISO8601 parser directly.
  1059. if (!parse_utc_offset(argument.as_string().utf8_string_view(), SubMinutePrecision::Yes).has_value())
  1060. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidTimeZoneString, offset);
  1061. // 4. Return offset.
  1062. return offset.as_string().utf8_string();
  1063. }
  1064. // 13.42 ISODateToFields ( calendar, isoDate, type ), https://tc39.es/proposal-temporal/#sec-temporal-isodatetofields
  1065. CalendarFields iso_date_to_fields(StringView calendar, ISODate const& iso_date, DateType type)
  1066. {
  1067. // 1. Let fields be an empty Calendar Fields Record with all fields set to unset.
  1068. auto fields = CalendarFields::unset();
  1069. // 2. Let calendarDate be CalendarISOToDate(calendar, isoDate).
  1070. auto calendar_date = calendar_iso_to_date(calendar, iso_date);
  1071. // 3. Set fields.[[MonthCode]] to calendarDate.[[MonthCode]].
  1072. fields.month_code = calendar_date.month_code;
  1073. // 4. If type is MONTH-DAY or DATE, then
  1074. if (type == DateType::MonthDay || type == DateType::Date) {
  1075. // a. Set fields.[[Day]] to calendarDate.[[Day]].
  1076. fields.day = calendar_date.day;
  1077. }
  1078. // 5. If type is YEAR-MONTH or DATE, then
  1079. if (type == DateType::YearMonth || type == DateType::Date) {
  1080. // a. Set fields.[[Year]] to calendarDate.[[Year]].
  1081. fields.year = calendar_date.year;
  1082. }
  1083. // 6. Return fields.
  1084. return fields;
  1085. }
  1086. // 14.4.1.1 GetOptionsObject ( options ), https://tc39.es/proposal-temporal/#sec-getoptionsobject
  1087. ThrowCompletionOr<GC::Ref<Object>> get_options_object(VM& vm, Value options)
  1088. {
  1089. auto& realm = *vm.current_realm();
  1090. // 1. If options is undefined, then
  1091. if (options.is_undefined()) {
  1092. // a. Return OrdinaryObjectCreate(null).
  1093. return Object::create(realm, nullptr);
  1094. }
  1095. // 2. If options is an Object, then
  1096. if (options.is_object()) {
  1097. // a. Return options.
  1098. return options.as_object();
  1099. }
  1100. // 3. Throw a TypeError exception.
  1101. return vm.throw_completion<TypeError>(ErrorType::NotAnObject, "Options");
  1102. }
  1103. // 14.4.1.2 GetOption ( options, property, type, values, default ), https://tc39.es/proposal-temporal/#sec-getoption
  1104. ThrowCompletionOr<Value> get_option(VM& vm, Object const& options, PropertyKey const& property, OptionType type, ReadonlySpan<StringView> values, OptionDefault const& default_)
  1105. {
  1106. VERIFY(property.is_string());
  1107. // 1. Let value be ? Get(options, property).
  1108. auto value = TRY(options.get(property));
  1109. // 2. If value is undefined, then
  1110. if (value.is_undefined()) {
  1111. // a. If default is REQUIRED, throw a RangeError exception.
  1112. if (default_.has<Required>())
  1113. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, "undefined"sv, property.as_string());
  1114. // b. Return default.
  1115. return default_.visit(
  1116. [](Required) -> Value { VERIFY_NOT_REACHED(); },
  1117. [](Empty) -> Value { return js_undefined(); },
  1118. [](bool default_) -> Value { return Value { default_ }; },
  1119. [](double default_) -> Value { return Value { default_ }; },
  1120. [&](StringView default_) -> Value { return PrimitiveString::create(vm, default_); });
  1121. }
  1122. // 3. If type is BOOLEAN, then
  1123. if (type == OptionType::Boolean) {
  1124. // a. Set value to ToBoolean(value).
  1125. value = Value { value.to_boolean() };
  1126. }
  1127. // 4. Else,
  1128. else {
  1129. // a. Assert: type is STRING.
  1130. VERIFY(type == OptionType::String);
  1131. // b. Set value to ? ToString(value).
  1132. value = TRY(value.to_primitive_string(vm));
  1133. }
  1134. // 5. If values is not EMPTY and values does not contain value, throw a RangeError exception.
  1135. if (!values.is_empty()) {
  1136. // NOTE: Every location in the spec that invokes GetOption with type=boolean also has values=undefined.
  1137. VERIFY(value.is_string());
  1138. if (auto value_string = value.as_string().utf8_string(); !values.contains_slow(value_string))
  1139. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, value_string, property.as_string());
  1140. }
  1141. // 6. Return value.
  1142. return value;
  1143. }
  1144. // 14.4.1.3 GetRoundingModeOption ( options, fallback ), https://tc39.es/proposal-temporal/#sec-temporal-getroundingmodeoption
  1145. ThrowCompletionOr<RoundingMode> get_rounding_mode_option(VM& vm, Object const& options, RoundingMode fallback)
  1146. {
  1147. // 1. Let allowedStrings be the List of Strings from the "String Identifier" column of Table 26.
  1148. static constexpr auto allowed_strings = to_array({ "ceil"sv, "floor"sv, "expand"sv, "trunc"sv, "halfCeil"sv, "halfFloor"sv, "halfExpand"sv, "halfTrunc"sv, "halfEven"sv });
  1149. // 2. Let stringFallback be the value from the "String Identifier" column of the row with fallback in its "Rounding Mode" column.
  1150. auto string_fallback = allowed_strings[to_underlying(fallback)];
  1151. // 3. Let stringValue be ? GetOption(options, "roundingMode", STRING, allowedStrings, stringFallback).
  1152. auto string_value = TRY(get_option(vm, options, vm.names.roundingMode, OptionType::String, allowed_strings, string_fallback));
  1153. // 4. Return the value from the "Rounding Mode" column of the row with stringValue in its "String Identifier" column.
  1154. return static_cast<RoundingMode>(allowed_strings.first_index_of(string_value.as_string().utf8_string_view()).value());
  1155. }
  1156. // 14.4.1.4 GetRoundingIncrementOption ( options ), https://tc39.es/proposal-temporal/#sec-temporal-getroundingincrementoption
  1157. ThrowCompletionOr<u64> get_rounding_increment_option(VM& vm, Object const& options)
  1158. {
  1159. // 1. Let value be ? Get(options, "roundingIncrement").
  1160. auto value = TRY(options.get(vm.names.roundingIncrement));
  1161. // 2. If value is undefined, return 1𝔽.
  1162. if (value.is_undefined())
  1163. return 1;
  1164. // 3. Let integerIncrement be ? ToIntegerWithTruncation(value).
  1165. auto integer_increment = TRY(to_integer_with_truncation(vm, value, ErrorType::OptionIsNotValidValue, value, "roundingIncrement"sv));
  1166. // 4. If integerIncrement < 1 or integerIncrement > 10**9, throw a RangeError exception.
  1167. if (integer_increment < 1 || integer_increment > 1'000'000'000u)
  1168. return vm.throw_completion<RangeError>(ErrorType::OptionIsNotValidValue, value, "roundingIncrement");
  1169. // 5. Return integerIncrement.
  1170. return static_cast<u64>(integer_increment);
  1171. }
  1172. // 14.5.1 GetUTCEpochNanoseconds ( isoDateTime ), https://tc39.es/proposal-temporal/#sec-getutcepochnanoseconds
  1173. Crypto::SignedBigInteger get_utc_epoch_nanoseconds(ISODateTime const& iso_date_time)
  1174. {
  1175. return JS::get_utc_epoch_nanoseconds(
  1176. iso_date_time.iso_date.year,
  1177. iso_date_time.iso_date.month,
  1178. iso_date_time.iso_date.day,
  1179. iso_date_time.time.hour,
  1180. iso_date_time.time.minute,
  1181. iso_date_time.time.second,
  1182. iso_date_time.time.millisecond,
  1183. iso_date_time.time.microsecond,
  1184. iso_date_time.time.nanosecond);
  1185. }
  1186. }