AbstractOperations.cpp 68 KB

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