Duration.cpp 59 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115
  1. /*
  2. * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/StringBuilder.h>
  7. #include <LibJS/Runtime/AbstractOperations.h>
  8. #include <LibJS/Runtime/Completion.h>
  9. #include <LibJS/Runtime/GlobalObject.h>
  10. #include <LibJS/Runtime/Object.h>
  11. #include <LibJS/Runtime/Temporal/AbstractOperations.h>
  12. #include <LibJS/Runtime/Temporal/Calendar.h>
  13. #include <LibJS/Runtime/Temporal/Duration.h>
  14. #include <LibJS/Runtime/Temporal/DurationConstructor.h>
  15. #include <LibJS/Runtime/Temporal/Instant.h>
  16. #include <LibJS/Runtime/Temporal/PlainDateTime.h>
  17. #include <LibJS/Runtime/Temporal/TimeZone.h>
  18. #include <LibJS/Runtime/Temporal/ZonedDateTime.h>
  19. namespace JS::Temporal {
  20. // 7 Temporal.Duration Objects, https://tc39.es/proposal-temporal/#sec-temporal-duration-objects
  21. Duration::Duration(double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds, Object& prototype)
  22. : Object(prototype)
  23. , m_years(years)
  24. , m_months(months)
  25. , m_weeks(weeks)
  26. , m_days(days)
  27. , m_hours(hours)
  28. , m_minutes(minutes)
  29. , m_seconds(seconds)
  30. , m_milliseconds(milliseconds)
  31. , m_microseconds(microseconds)
  32. , m_nanoseconds(nanoseconds)
  33. {
  34. }
  35. // 7.5.1 ToTemporalDuration ( item ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalduration
  36. ThrowCompletionOr<Duration*> to_temporal_duration(GlobalObject& global_object, Value item)
  37. {
  38. TemporalDuration result;
  39. // 1. If Type(item) is Object, then
  40. if (item.is_object()) {
  41. // a. If item has an [[InitializedTemporalDuration]] internal slot, then
  42. if (is<Duration>(item.as_object())) {
  43. // i. Return item.
  44. return &static_cast<Duration&>(item.as_object());
  45. }
  46. // b. Let result be ? ToTemporalDurationRecord(item).
  47. result = TRY(to_temporal_duration_record(global_object, item.as_object()));
  48. }
  49. // 2. Else,
  50. else {
  51. // a. Let string be ? ToString(item).
  52. auto string = TRY(item.to_string(global_object));
  53. // b. Let result be ? ParseTemporalDurationString(string).
  54. result = TRY(parse_temporal_duration_string(global_object, string));
  55. }
  56. // 3. Return ? CreateTemporalDuration(result.[[Years]], result.[[Months]], result.[[Weeks]], result.[[Days]], result.[[Hours]], result.[[Minutes]], result.[[Seconds]], result.[[Milliseconds]], result.[[Microseconds]], result.[[Nanoseconds]]).
  57. return create_temporal_duration(global_object, result.years, result.months, result.weeks, result.days, result.hours, result.minutes, result.seconds, result.milliseconds, result.microseconds, result.nanoseconds);
  58. }
  59. // 7.5.2 ToTemporalDurationRecord ( temporalDurationLike ), https://tc39.es/proposal-temporal/#sec-temporal-totemporaldurationrecord
  60. ThrowCompletionOr<TemporalDuration> to_temporal_duration_record(GlobalObject& global_object, Object const& temporal_duration_like)
  61. {
  62. auto& vm = global_object.vm();
  63. // 1. Assert: Type(temporalDurationLike) is Object.
  64. // 2. If temporalDurationLike has an [[InitializedTemporalDuration]] internal slot, then
  65. if (is<Duration>(temporal_duration_like)) {
  66. auto& duration = static_cast<Duration const&>(temporal_duration_like);
  67. // a. Return the Record { [[Years]]: temporalDurationLike.[[Years]], [[Months]]: temporalDurationLike.[[Months]], [[Weeks]]: temporalDurationLike.[[Weeks]], [[Days]]: temporalDurationLike.[[Days]], [[Hours]]: temporalDurationLike.[[Hours]], [[Minutes]]: temporalDurationLike.[[Minutes]], [[Seconds]]: temporalDurationLike.[[Seconds]], [[Milliseconds]]: temporalDurationLike.[[Milliseconds]], [[Microseconds]]: temporalDurationLike.[[Microseconds]], [[Nanoseconds]]: temporalDurationLike.[[Nanoseconds]] }.
  68. return TemporalDuration { .years = duration.years(), .months = duration.months(), .weeks = duration.weeks(), .days = duration.days(), .hours = duration.hours(), .minutes = duration.minutes(), .seconds = duration.seconds(), .milliseconds = duration.milliseconds(), .microseconds = duration.microseconds(), .nanoseconds = duration.nanoseconds() };
  69. }
  70. // 3. Let result be a new Record with all the internal slots given in the Internal Slot column in Table 7.
  71. auto result = TemporalDuration {};
  72. // 4. Let any be false.
  73. auto any = false;
  74. // 5. For each row of Table 7, except the header row, in table order, do
  75. for (auto& [internal_slot, property] : temporal_duration_like_properties<TemporalDuration, double>(vm)) {
  76. // a. Let prop be the Property value of the current row.
  77. // b. Let val be ? Get(temporalDurationLike, prop).
  78. auto value = TRY(temporal_duration_like.get(property));
  79. // c. If val is undefined, then
  80. if (value.is_undefined()) {
  81. // i. Set result's internal slot whose name is the Internal Slot value of the current row to 0.
  82. result.*internal_slot = 0;
  83. }
  84. // d. Else,
  85. else {
  86. // i. Set any to true.
  87. any = true;
  88. // ii. Let val be ? ToNumber(val).
  89. value = TRY(value.to_number(global_object));
  90. // iii. If ! IsIntegralNumber(val) is false, then
  91. if (!value.is_integral_number()) {
  92. // 1. Throw a RangeError exception.
  93. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidDurationPropertyValueNonIntegral, property.as_string(), value.to_string_without_side_effects());
  94. }
  95. // iv. Set result's internal slot whose name is the Internal Slot value of the current row to val.
  96. result.*internal_slot = value.as_double();
  97. }
  98. }
  99. // 6. If any is false, then
  100. if (!any) {
  101. // a. Throw a TypeError exception.
  102. return vm.throw_completion<TypeError>(global_object, ErrorType::TemporalInvalidDurationLikeObject);
  103. }
  104. // 7. Return result.
  105. return result;
  106. }
  107. // 7.5.3 DurationSign ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds ), https://tc39.es/proposal-temporal/#sec-temporal-durationsign
  108. i8 duration_sign(double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds)
  109. {
  110. // 1. For each value v of « years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds », do
  111. for (auto& v : { years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds }) {
  112. // a. If v < 0, return −1.
  113. if (v < 0)
  114. return -1;
  115. // b. If v > 0, return 1.
  116. if (v > 0)
  117. return 1;
  118. }
  119. // 2. Return 0.
  120. return 0;
  121. }
  122. // 7.5.4 IsValidDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds ), https://tc39.es/proposal-temporal/#sec-temporal-isvalidduration
  123. bool is_valid_duration(double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds)
  124. {
  125. // 1. Let sign be ! DurationSign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds).
  126. auto sign = duration_sign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds);
  127. // 2. For each value v of « years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds », do
  128. for (auto& v : { years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds }) {
  129. // a. If v is not finite, return false.
  130. if (!isfinite(v))
  131. return false;
  132. // b. If v < 0 and sign > 0, return false.
  133. if (v < 0 && sign > 0)
  134. return false;
  135. // c. If v > 0 and sign < 0, return false.
  136. if (v > 0 && sign < 0)
  137. return false;
  138. }
  139. // 3. Return true.
  140. return true;
  141. }
  142. // 7.5.6 ToPartialDuration ( temporalDurationLike ), https://tc39.es/proposal-temporal/#sec-temporal-topartialduration
  143. ThrowCompletionOr<PartialDuration> to_partial_duration(GlobalObject& global_object, Value temporal_duration_like)
  144. {
  145. auto& vm = global_object.vm();
  146. // 1. If Type(temporalDurationLike) is not Object, then
  147. if (!temporal_duration_like.is_object()) {
  148. // a. Throw a TypeError exception.
  149. return vm.throw_completion<TypeError>(global_object, ErrorType::NotAnObject, temporal_duration_like.to_string_without_side_effects());
  150. }
  151. // 2. Let result be the Record { [[Years]]: undefined, [[Months]]: undefined, [[Weeks]]: undefined, [[Days]]: undefined, [[Hours]]: undefined, [[Minutes]]: undefined, [[Seconds]]: undefined, [[Milliseconds]]: undefined, [[Microseconds]]: undefined, [[Nanoseconds]]: undefined }.
  152. auto result = PartialDuration {};
  153. // 3. Let any be false.
  154. auto any = false;
  155. // 4. For each row of Table 7, except the header row, in table order, do
  156. for (auto& [internal_slot, property] : temporal_duration_like_properties<PartialDuration, Optional<double>>(vm)) {
  157. // a. Let property be the Property value of the current row.
  158. // b. Let value be ? Get(temporalDurationLike, property).
  159. auto value = TRY(temporal_duration_like.as_object().get(property));
  160. // c. If value is not undefined, then
  161. if (!value.is_undefined()) {
  162. // i. Set any to true.
  163. any = true;
  164. // ii. Set value to ? ToNumber(value).
  165. value = TRY(value.to_number(global_object));
  166. // iii. If ! IsIntegralNumber(value) is false, then
  167. if (!value.is_integral_number()) {
  168. // 1. Throw a RangeError exception.
  169. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidDurationPropertyValueNonIntegral, property.as_string(), value.to_string_without_side_effects());
  170. }
  171. // iv. Set result's internal slot whose name is the Internal Slot value of the current row to value.
  172. result.*internal_slot = value.as_double();
  173. }
  174. }
  175. // 5. If any is false, then
  176. if (!any) {
  177. // a. Throw a TypeError exception.
  178. return vm.throw_completion<TypeError>(global_object, ErrorType::TemporalInvalidDurationLikeObject);
  179. }
  180. // 6. Return result.
  181. return result;
  182. }
  183. // 7.5.7 CreateTemporalDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporalduration
  184. ThrowCompletionOr<Duration*> create_temporal_duration(GlobalObject& global_object, double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds, FunctionObject const* new_target)
  185. {
  186. auto& vm = global_object.vm();
  187. // 1. If ! IsValidDuration(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds) is false, throw a RangeError exception.
  188. if (!is_valid_duration(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds))
  189. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidDuration);
  190. // 2. If newTarget is not present, set it to %Temporal.Duration%.
  191. if (!new_target)
  192. new_target = global_object.temporal_duration_constructor();
  193. // 3. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.Duration.prototype%", « [[InitializedTemporalDuration]], [[Years]], [[Months]], [[Weeks]], [[Days]], [[Hours]], [[Minutes]], [[Seconds]], [[Milliseconds]], [[Microseconds]], [[Nanoseconds]] »).
  194. // 4. Set object.[[Years]] to years.
  195. // 5. Set object.[[Months]] to months.
  196. // 6. Set object.[[Weeks]] to weeks.
  197. // 7. Set object.[[Days]] to days.
  198. // 8. Set object.[[Hours]] to hours.
  199. // 9. Set object.[[Minutes]] to minutes.
  200. // 10. Set object.[[Seconds]] to seconds.
  201. // 11. Set object.[[Milliseconds]] to milliseconds.
  202. // 12. Set object.[[Microseconds]] to microseconds.
  203. // 13. Set object.[[Nanoseconds]] to nanoseconds.
  204. auto* object = TRY(ordinary_create_from_constructor<Duration>(global_object, *new_target, &GlobalObject::temporal_duration_prototype, years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds));
  205. // 14. Return object.
  206. return object;
  207. }
  208. // 7.5.8 CreateNegatedTemporalDuration ( duration ), https://tc39.es/proposal-temporal/#sec-temporal-createnegatedtemporalduration
  209. Duration* create_negated_temporal_duration(GlobalObject& global_object, Duration const& duration)
  210. {
  211. // 1. Assert: Type(duration) is Object.
  212. // 2. Assert: duration has an [[InitializedTemporalDuration]] internal slot.
  213. // 3. Return ! CreateTemporalDuration(−duration.[[Years]], −duration.[[Months]], −duration.[[Weeks]], −duration.[[Days]], −duration.[[Hours]], −duration.[[Minutes]], −duration.[[Seconds]], −duration.[[Milliseconds]], −duration.[[Microseconds]], −duration.[[Nanoseconds]]).
  214. return MUST(create_temporal_duration(global_object, -duration.years(), -duration.months(), -duration.weeks(), -duration.days(), -duration.hours(), -duration.minutes(), -duration.seconds(), -duration.milliseconds(), -duration.microseconds(), -duration.nanoseconds()));
  215. }
  216. // 7.5.10 TotalDurationNanoseconds ( days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, offsetShift ), https://tc39.es/proposal-temporal/#sec-temporal-totaldurationnanoseconds
  217. BigInt* total_duration_nanoseconds(GlobalObject& global_object, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, BigInt const& nanoseconds, double offset_shift)
  218. {
  219. auto& vm = global_object.vm();
  220. // 1. Assert: offsetShift is an integer.
  221. VERIFY(offset_shift == trunc(offset_shift));
  222. // 2. Set nanoseconds to ℝ(nanoseconds).
  223. auto result_nanoseconds = nanoseconds.big_integer();
  224. // TODO: Add a way to create SignedBigIntegers from doubles with full precision and remove this restriction
  225. VERIFY(AK::is_within_range<i64>(days) && AK::is_within_range<i64>(hours) && AK::is_within_range<i64>(minutes) && AK::is_within_range<i64>(seconds) && AK::is_within_range<i64>(milliseconds) && AK::is_within_range<i64>(microseconds));
  226. // 3. If days ≠ 0, then
  227. if (days != 0) {
  228. // a. Set nanoseconds to nanoseconds − offsetShift.
  229. result_nanoseconds = result_nanoseconds.minus(Crypto::SignedBigInteger::create_from(offset_shift));
  230. }
  231. // 4. Set hours to ℝ(hours) + ℝ(days) × 24.
  232. auto total_hours = Crypto::SignedBigInteger::create_from(hours).plus(Crypto::SignedBigInteger::create_from(days).multiplied_by(Crypto::UnsignedBigInteger(24)));
  233. // 5. Set minutes to ℝ(minutes) + hours × 60.
  234. auto total_minutes = Crypto::SignedBigInteger::create_from(minutes).plus(total_hours.multiplied_by(Crypto::UnsignedBigInteger(60)));
  235. // 6. Set seconds to ℝ(seconds) + minutes × 60.
  236. auto total_seconds = Crypto::SignedBigInteger::create_from(seconds).plus(total_minutes.multiplied_by(Crypto::UnsignedBigInteger(60)));
  237. // 7. Set milliseconds to ℝ(milliseconds) + seconds × 1000.
  238. auto total_milliseconds = Crypto::SignedBigInteger::create_from(milliseconds).plus(total_seconds.multiplied_by(Crypto::UnsignedBigInteger(1000)));
  239. // 8. Set microseconds to ℝ(microseconds) + milliseconds × 1000.
  240. auto total_microseconds = Crypto::SignedBigInteger::create_from(microseconds).plus(total_milliseconds.multiplied_by(Crypto::UnsignedBigInteger(1000)));
  241. // 9. Return nanoseconds + microseconds × 1000.
  242. return js_bigint(vm, result_nanoseconds.plus(total_microseconds.multiplied_by(Crypto::UnsignedBigInteger(1000))));
  243. }
  244. // 7.5.11 BalanceDuration ( days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, largestUnit [ , relativeTo ] ), https://tc39.es/proposal-temporal/#sec-temporal-balanceduration
  245. ThrowCompletionOr<BalancedDuration> balance_duration(GlobalObject& global_object, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, BigInt const& nanoseconds, String const& largest_unit, Object* relative_to)
  246. {
  247. auto& vm = global_object.vm();
  248. // 1. If relativeTo is not present, set relativeTo to undefined.
  249. Crypto::SignedBigInteger total_nanoseconds;
  250. // 2. If Type(relativeTo) is Object and relativeTo has an [[InitializedTemporalZonedDateTime]] internal slot, then
  251. if (relative_to && is<ZonedDateTime>(*relative_to)) {
  252. auto& relative_to_zoned_date_time = static_cast<ZonedDateTime&>(*relative_to);
  253. // a. Let endNs be ? AddZonedDateTime(relativeTo.[[Nanoseconds]], relativeTo.[[TimeZone]], relativeTo.[[Calendar]], 0, 0, 0, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds).
  254. auto* end_ns = TRY(add_zoned_date_time(global_object, relative_to_zoned_date_time.nanoseconds(), &relative_to_zoned_date_time.time_zone(), relative_to_zoned_date_time.calendar(), 0, 0, 0, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds.big_integer().to_double()));
  255. // b. Set nanoseconds to endNs − relativeTo.[[Nanoseconds]].
  256. total_nanoseconds = end_ns->big_integer().minus(relative_to_zoned_date_time.nanoseconds().big_integer());
  257. }
  258. // 3. Else,
  259. else {
  260. // a. Set nanoseconds to ℤ(! TotalDurationNanoseconds(days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, 0)).
  261. total_nanoseconds = total_duration_nanoseconds(global_object, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, 0)->big_integer();
  262. }
  263. // 4. If largestUnit is one of "year", "month", "week", or "day", then
  264. if (largest_unit.is_one_of("year"sv, "month"sv, "week"sv, "day"sv)) {
  265. // a. Let result be ? NanosecondsToDays(nanoseconds, relativeTo).
  266. auto result = TRY(nanoseconds_to_days(global_object, *js_bigint(vm, total_nanoseconds), relative_to ?: js_undefined()));
  267. // b. Set days to result.[[Days]].
  268. days = result.days;
  269. // c. Set nanoseconds to result.[[Nanoseconds]].
  270. total_nanoseconds = result.nanoseconds.cell()->big_integer();
  271. }
  272. // 5. Else,
  273. else {
  274. // a. Set days to 0.
  275. days = 0;
  276. }
  277. // 6. Set hours, minutes, seconds, milliseconds, and microseconds to 0.
  278. hours = 0;
  279. minutes = 0;
  280. seconds = 0;
  281. milliseconds = 0;
  282. microseconds = 0;
  283. // 7. Set nanoseconds to ℝ(nanoseconds).
  284. double result_nanoseconds = total_nanoseconds.to_double();
  285. // 8. If nanoseconds < 0, let sign be −1; else, let sign be 1.
  286. i8 sign = total_nanoseconds.is_negative() ? -1 : 1;
  287. // 9. Set nanoseconds to abs(nanoseconds).
  288. total_nanoseconds = Crypto::SignedBigInteger(total_nanoseconds.unsigned_value());
  289. result_nanoseconds = fabs(result_nanoseconds);
  290. // 10. If largestUnit is "year", "month", "week", "day", or "hour", then
  291. if (largest_unit.is_one_of("year"sv, "month"sv, "day"sv, "hour"sv)) {
  292. // a. Set microseconds to floor(nanoseconds / 1000).
  293. auto nanoseconds_division_result = total_nanoseconds.divided_by(Crypto::UnsignedBigInteger(1000));
  294. // b. Set nanoseconds to nanoseconds modulo 1000.
  295. result_nanoseconds = nanoseconds_division_result.remainder.to_double();
  296. // c. Set milliseconds to floor(microseconds / 1000).
  297. auto microseconds_division_result = nanoseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(1000));
  298. // d. Set microseconds to microseconds modulo 1000.
  299. microseconds = microseconds_division_result.remainder.to_double();
  300. // e. Set seconds to floor(milliseconds / 1000).
  301. auto milliseconds_division_result = microseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(1000));
  302. // f. Set milliseconds to milliseconds modulo 1000.
  303. milliseconds = milliseconds_division_result.remainder.to_double();
  304. // g. Set minutes to floor(seconds / 60).
  305. auto seconds_division_result = milliseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(60));
  306. // h. Set seconds to seconds modulo 60.
  307. seconds = seconds_division_result.remainder.to_double();
  308. // i. Set hours to floor(minutes / 60).
  309. auto minutes_division_result = milliseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(60));
  310. hours = minutes_division_result.quotient.to_double();
  311. // j. Set minutes to minutes modulo 60.
  312. minutes = minutes_division_result.remainder.to_double();
  313. }
  314. // 11. Else if largestUnit is "minute", then
  315. else if (largest_unit == "minute"sv) {
  316. // a. Set microseconds to floor(nanoseconds / 1000).
  317. auto nanoseconds_division_result = total_nanoseconds.divided_by(Crypto::UnsignedBigInteger(1000));
  318. // b. Set nanoseconds to nanoseconds modulo 1000.
  319. result_nanoseconds = nanoseconds_division_result.remainder.to_double();
  320. // c. Set milliseconds to floor(microseconds / 1000).
  321. auto microseconds_division_result = nanoseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(1000));
  322. // d. Set microseconds to microseconds modulo 1000.
  323. microseconds = microseconds_division_result.remainder.to_double();
  324. // e. Set seconds to floor(milliseconds / 1000).
  325. auto milliseconds_division_result = microseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(1000));
  326. // f. Set milliseconds to milliseconds modulo 1000.
  327. milliseconds = milliseconds_division_result.remainder.to_double();
  328. // g. Set minutes to floor(seconds / 60).
  329. auto seconds_division_result = milliseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(60));
  330. minutes = seconds_division_result.quotient.to_double();
  331. // h. Set seconds to seconds modulo 60.
  332. seconds = seconds_division_result.remainder.to_double();
  333. }
  334. // 12. Else if largestUnit is "second", then
  335. else if (largest_unit == "second"sv) {
  336. // a. Set microseconds to floor(nanoseconds / 1000).
  337. auto nanoseconds_division_result = total_nanoseconds.divided_by(Crypto::UnsignedBigInteger(1000));
  338. // b. Set nanoseconds to nanoseconds modulo 1000.
  339. result_nanoseconds = nanoseconds_division_result.remainder.to_double();
  340. // c. Set milliseconds to floor(microseconds / 1000).
  341. auto microseconds_division_result = nanoseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(1000));
  342. // d. Set microseconds to microseconds modulo 1000.
  343. microseconds = microseconds_division_result.remainder.to_double();
  344. // e. Set seconds to floor(milliseconds / 1000).
  345. auto milliseconds_division_result = microseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(1000));
  346. seconds = milliseconds_division_result.quotient.to_double();
  347. // f. Set milliseconds to milliseconds modulo 1000.
  348. milliseconds = milliseconds_division_result.remainder.to_double();
  349. }
  350. // 13. Else if largestUnit is "millisecond", then
  351. else if (largest_unit == "millisecond"sv) {
  352. // a. Set microseconds to floor(nanoseconds / 1000).
  353. auto nanoseconds_division_result = total_nanoseconds.divided_by(Crypto::UnsignedBigInteger(1000));
  354. // b. Set nanoseconds to nanoseconds modulo 1000.
  355. result_nanoseconds = nanoseconds_division_result.remainder.to_double();
  356. // c. Set milliseconds to floor(microseconds / 1000).
  357. auto microseconds_division_result = nanoseconds_division_result.quotient.divided_by(Crypto::UnsignedBigInteger(1000));
  358. milliseconds = microseconds_division_result.quotient.to_double();
  359. // d. Set microseconds to microseconds modulo 1000.
  360. microseconds = microseconds_division_result.remainder.to_double();
  361. }
  362. // 14. Else if largestUnit is "microsecond", then
  363. else if (largest_unit == "microsecond"sv) {
  364. // a. Set microseconds to floor(nanoseconds / 1000).
  365. auto nanoseconds_division_result = total_nanoseconds.divided_by(Crypto::UnsignedBigInteger(1000));
  366. microseconds = nanoseconds_division_result.quotient.to_double();
  367. // b. Set nanoseconds to nanoseconds modulo 1000.
  368. result_nanoseconds = nanoseconds_division_result.remainder.to_double();
  369. }
  370. // 15. Else,
  371. else {
  372. // a. Assert: largestUnit is "nanosecond".
  373. VERIFY(largest_unit == "nanosecond"sv);
  374. }
  375. // 16. Return the Record { [[Days]]: 𝔽(days), [[Hours]]: 𝔽(hours × sign), [[Minutes]]: 𝔽(minutes × sign), [[Seconds]]: 𝔽(seconds × sign), [[Milliseconds]]: 𝔽(milliseconds × sign), [[Microseconds]]: 𝔽(microseconds × sign), [[Nanoseconds]]: 𝔽(nanoseconds × sign) }.
  376. return BalancedDuration { .days = days, .hours = hours * sign, .minutes = minutes * sign, .seconds = seconds * sign, .milliseconds = milliseconds * sign, .microseconds = microseconds * sign, .nanoseconds = result_nanoseconds * sign };
  377. }
  378. // 7.5.16 MoveRelativeDate ( calendar, relativeTo, duration ), https://tc39.es/proposal-temporal/#sec-temporal-moverelativedate
  379. ThrowCompletionOr<MoveRelativeDateResult> move_relative_date(GlobalObject& global_object, Object& calendar, PlainDateTime& relative_to, Duration& duration)
  380. {
  381. // 1. Assert: Type(relativeTo) is Object.
  382. // 2. Assert: relativeTo has an [[InitializedTemporalDateTime]] internal slot.
  383. // 3. Let options be ! OrdinaryObjectCreate(null).
  384. auto* options = Object::create(global_object, nullptr);
  385. // 4. Let later be ? CalendarDateAdd(calendar, relativeTo, duration, options).
  386. auto* later = TRY(calendar_date_add(global_object, calendar, &relative_to, duration, options));
  387. // FIXME: This cannot return an abrupt completion (spec issue, see https://github.com/tc39/proposal-temporal/pull/1909)
  388. // 5. Let days be ? DaysUntil(relativeTo, later).
  389. auto days = days_until(global_object, relative_to, *later);
  390. // 6. Let dateTime be ? CreateTemporalDateTime(later.[[ISOYear]], later.[[ISOMonth]], later.[[ISODay]], relativeTo.[[ISOHour]], relativeTo.[[ISOMinute]], relativeTo.[[ISOSecond]], relativeTo.[[ISOMillisecond]], relativeTo.[[ISOMicrosecond]], relativeTo.[[ISONanosecond]], relativeTo.[[Calendar]]).
  391. auto* date_time = TRY(create_temporal_date_time(global_object, later->iso_year(), later->iso_month(), later->iso_day(), relative_to.iso_hour(), relative_to.iso_minute(), relative_to.iso_second(), relative_to.iso_millisecond(), relative_to.iso_microsecond(), relative_to.iso_nanosecond(), relative_to.calendar()));
  392. // 7. Return the Record { [[RelativeTo]]: dateTime, [[Days]]: days }.
  393. return MoveRelativeDateResult { .relative_to = make_handle(date_time), .days = days };
  394. }
  395. // 7.5.17 MoveRelativeZonedDateTime ( zonedDateTime, years, months, weeks, days ), https://tc39.es/proposal-temporal/#sec-temporal-moverelativezoneddatetime
  396. ThrowCompletionOr<ZonedDateTime*> move_relative_zoned_date_time(GlobalObject& global_object, ZonedDateTime& zoned_date_time, double years, double months, double weeks, double days)
  397. {
  398. // 1. Let intermediateNs be ? AddZonedDateTime(zonedDateTime.[[Nanoseconds]], zonedDateTime.[[TimeZone]], zonedDateTime.[[Calendar]], years, months, weeks, days, 0, 0, 0, 0, 0, 0).
  399. auto* intermediate_ns = TRY(add_zoned_date_time(global_object, zoned_date_time.nanoseconds(), &zoned_date_time.time_zone(), zoned_date_time.calendar(), years, months, weeks, days, 0, 0, 0, 0, 0, 0));
  400. // 2. Return ! CreateTemporalZonedDateTime(intermediateNs, zonedDateTime.[[TimeZone]], zonedDateTime.[[Calendar]]).
  401. return MUST(create_temporal_zoned_date_time(global_object, *intermediate_ns, zoned_date_time.time_zone(), zoned_date_time.calendar()));
  402. }
  403. // 7.5.18 RoundDuration ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, increment, unit, roundingMode [ , relativeTo ] ), https://tc39.es/proposal-temporal/#sec-temporal-roundduration
  404. ThrowCompletionOr<RoundedDuration> round_duration(GlobalObject& global_object, double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds, u32 increment, StringView unit, StringView rounding_mode, Object* relative_to_object)
  405. {
  406. auto& vm = global_object.vm();
  407. Object* calendar = nullptr;
  408. double fractional_seconds = 0;
  409. // 1. If relativeTo is not present, set relativeTo to undefined.
  410. // NOTE: `relative_to_object`, `relative_to_date`, and `relative_to` in the various code paths below
  411. // are all the same as far as the spec is concerned, but the latter two are more strictly typed for convenience.
  412. // The `_date` suffix is used as relativeTo is guaranteed to be a PlainDateTime object or undefined after step 5
  413. // (i.e. PlainDateTime*), but a PlainDate object is assigned in a couple of cases.
  414. PlainDateTime* relative_to = nullptr;
  415. // 2. Let years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, and increment each be the mathematical values of themselves.
  416. // 3. If unit is "year", "month", or "week", and relativeTo is undefined, then
  417. if (unit.is_one_of("year"sv, "month"sv, "week"sv) && !relative_to_object) {
  418. // a. Throw a RangeError exception.
  419. return vm.throw_completion<RangeError>(global_object, ErrorType::OptionIsNotValidValue, unit, "smallestUnit"sv);
  420. }
  421. // 4. Let zonedRelativeTo be undefined.
  422. ZonedDateTime* zoned_relative_to = nullptr;
  423. // 5. If relativeTo is not undefined, then
  424. if (relative_to_object) {
  425. // a. If relativeTo has an [[InitializedTemporalZonedDateTime]] internal slot, then
  426. if (is<ZonedDateTime>(relative_to_object)) {
  427. auto* relative_to_zoned_date_time = static_cast<ZonedDateTime*>(relative_to_object);
  428. // i. Let instant be ! CreateTemporalInstant(relativeTo.[[Nanoseconds]]).
  429. auto* instant = MUST(create_temporal_instant(global_object, relative_to_zoned_date_time->nanoseconds()));
  430. // ii. Set zonedRelativeTo to relativeTo.
  431. zoned_relative_to = relative_to_zoned_date_time;
  432. // iii. Set relativeTo to ? BuiltinTimeZoneGetPlainDateTimeFor(relativeTo.[[TimeZone]], instant, relativeTo.[[Calendar]]).
  433. relative_to = TRY(builtin_time_zone_get_plain_date_time_for(global_object, &relative_to_zoned_date_time->time_zone(), *instant, relative_to_zoned_date_time->calendar()));
  434. }
  435. // b. Else,
  436. else {
  437. // i. Assert: relativeTo has an [[InitializedTemporalDateTime]] internal slot.
  438. VERIFY(is<PlainDateTime>(relative_to_object));
  439. relative_to = static_cast<PlainDateTime*>(relative_to_object);
  440. }
  441. // c. Let calendar be relativeTo.[[Calendar]].
  442. calendar = &relative_to->calendar();
  443. }
  444. // 6. If unit is one of "year", "month", "week", or "day", then
  445. if (unit.is_one_of("year"sv, "month"sv, "week"sv, "day"sv)) {
  446. auto* nanoseconds_bigint = js_bigint(vm, Crypto::SignedBigInteger::create_from((i64)nanoseconds));
  447. // a. Let nanoseconds be ! TotalDurationNanoseconds(0, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, 0).
  448. nanoseconds_bigint = total_duration_nanoseconds(global_object, 0, hours, minutes, seconds, milliseconds, microseconds, *nanoseconds_bigint, 0);
  449. // b. Let intermediate be undefined.
  450. ZonedDateTime* intermediate = nullptr;
  451. // c. If zonedRelativeTo is not undefined, then
  452. if (zoned_relative_to) {
  453. // i. Let intermediate be ? MoveRelativeZonedDateTime(zonedRelativeTo, years, months, weeks, days).
  454. intermediate = TRY(move_relative_zoned_date_time(global_object, *zoned_relative_to, years, months, weeks, days));
  455. }
  456. // d. Let result be ? NanosecondsToDays(nanoseconds, intermediate).
  457. auto result = TRY(nanoseconds_to_days(global_object, *nanoseconds_bigint, intermediate));
  458. // e. Set days to days + result.[[Days]] + result.[[Nanoseconds]] / result.[[DayLength]].
  459. days += result.days + result.nanoseconds.cell()->big_integer().divided_by(Crypto::UnsignedBigInteger::create_from((u64)result.day_length)).quotient.to_double();
  460. // f. Set hours, minutes, seconds, milliseconds, microseconds, and nanoseconds to 0.
  461. hours = 0;
  462. minutes = 0;
  463. seconds = 0;
  464. milliseconds = 0;
  465. microseconds = 0;
  466. nanoseconds = 0;
  467. }
  468. // 7. Else,
  469. else {
  470. // a. Let fractionalSeconds be nanoseconds × 10^−9 + microseconds × 10^−6 + milliseconds × 10^−3 + seconds.
  471. fractional_seconds = nanoseconds * 0.000000001 + microseconds * 0.000001 + milliseconds * 0.001 + seconds;
  472. }
  473. // 8. Let remainder be undefined.
  474. double remainder = 0;
  475. // 9. If unit is "year", then
  476. if (unit == "year"sv) {
  477. VERIFY(relative_to);
  478. // a. Let yearsDuration be ? CreateTemporalDuration(years, 0, 0, 0, 0, 0, 0, 0, 0, 0).
  479. auto* years_duration = TRY(create_temporal_duration(global_object, years, 0, 0, 0, 0, 0, 0, 0, 0, 0));
  480. // b. Let dateAdd be ? GetMethod(calendar, "dateAdd").
  481. auto* date_add = TRY(Value(calendar).get_method(global_object, vm.names.dateAdd));
  482. // c. Let firstAddOptions be ! OrdinaryObjectCreate(null).
  483. auto* first_add_options = Object::create(global_object, nullptr);
  484. // d. Let yearsLater be ? CalendarDateAdd(calendar, relativeTo, yearsDuration, firstAddOptions, dateAdd).
  485. auto* years_later = TRY(calendar_date_add(global_object, *calendar, relative_to, *years_duration, first_add_options, date_add));
  486. // e. Let yearsMonthsWeeks be ? CreateTemporalDuration(years, months, weeks, 0, 0, 0, 0, 0, 0, 0).
  487. auto* years_months_weeks = TRY(create_temporal_duration(global_object, years, months, weeks, 0, 0, 0, 0, 0, 0, 0));
  488. // f. Let secondAddOptions be ! OrdinaryObjectCreate(null).
  489. auto* second_add_options = Object::create(global_object, nullptr);
  490. // g. Let yearsMonthsWeeksLater be ? CalendarDateAdd(calendar, relativeTo, yearsMonthsWeeks, secondAddOptions, dateAdd).
  491. auto* years_months_weeks_later = TRY(calendar_date_add(global_object, *calendar, relative_to, *years_months_weeks, second_add_options, date_add));
  492. // FIXME: This cannot return an abrupt completion (spec issue, see https://github.com/tc39/proposal-temporal/pull/1909)
  493. // h. Let monthsWeeksInDays be ? DaysUntil(yearsLater, yearsMonthsWeeksLater).
  494. auto months_weeks_in_days = days_until(global_object, *years_later, *years_months_weeks_later);
  495. // i. Set relativeTo to yearsLater.
  496. auto* relative_to_date = years_later;
  497. // j. Let days be days + monthsWeeksInDays.
  498. days += months_weeks_in_days;
  499. // k. Let daysDuration be ? CreateTemporalDuration(0, 0, 0, days, 0, 0, 0, 0, 0, 0).
  500. auto* days_duration = TRY(create_temporal_duration(global_object, 0, 0, 0, days, 0, 0, 0, 0, 0, 0));
  501. // l. Let thirdAddOptions be ! OrdinaryObjectCreate(null).
  502. auto* third_add_options = Object::create(global_object, nullptr);
  503. // m. Let daysLater be ? CalendarDateAdd(calendar, relativeTo, daysDuration, thirdAddOptions, dateAdd).
  504. auto* days_later = TRY(calendar_date_add(global_object, *calendar, relative_to_date, *days_duration, third_add_options, date_add));
  505. // n. Let untilOptions be ! OrdinaryObjectCreate(null).
  506. auto* until_options = Object::create(global_object, nullptr);
  507. // o. Perform ! CreateDataPropertyOrThrow(untilOptions, "largestUnit", "year").
  508. MUST(until_options->create_data_property_or_throw(vm.names.largestUnit, js_string(vm, "year"sv)));
  509. // p. Let timePassed be ? CalendarDateUntil(calendar, relativeTo, daysLater, untilOptions).
  510. auto* time_passed = TRY(calendar_date_until(global_object, *calendar, *relative_to_date, *days_later, *until_options));
  511. // q. Let yearsPassed be timePassed.[[Years]].
  512. auto years_passed = time_passed->years();
  513. // r. Set years to years + yearsPassed.
  514. years += years_passed;
  515. // s. Let oldRelativeTo be relativeTo.
  516. auto* old_relative_to_date = relative_to_date;
  517. // t. Let yearsDuration be ? CreateTemporalDuration(yearsPassed, 0, 0, 0, 0, 0, 0, 0, 0, 0).
  518. years_duration = TRY(create_temporal_duration(global_object, years_passed, 0, 0, 0, 0, 0, 0, 0, 0, 0));
  519. // u. Let fourthAddOptions be ! OrdinaryObjectCreate(null).
  520. auto* fourth_add_options = Object::create(global_object, nullptr);
  521. // v. Set relativeTo to ? CalendarDateAdd(calendar, relativeTo, yearsDuration, fourthAddOptions, dateAdd).
  522. relative_to_date = TRY(calendar_date_add(global_object, *calendar, relative_to_date, *years_duration, fourth_add_options, date_add));
  523. // FIXME: This cannot return an abrupt completion (spec issue, see https://github.com/tc39/proposal-temporal/pull/1909)
  524. // w. Let daysPassed be ? DaysUntil(oldRelativeTo, relativeTo).
  525. auto days_passed = days_until(global_object, *old_relative_to_date, *relative_to_date);
  526. // x. Set days to days - daysPassed.
  527. days -= days_passed;
  528. // y. Let sign be ! Sign(days).
  529. auto sign = JS::Temporal::sign(days);
  530. // z. If sign is 0, set sign to 1.
  531. if (sign == 0)
  532. sign = 1;
  533. // aa. Let oneYear be ? CreateTemporalDuration(sign, 0, 0, 0, 0, 0, 0, 0, 0, 0).
  534. auto* one_year = TRY(create_temporal_duration(global_object, sign, 0, 0, 0, 0, 0, 0, 0, 0, 0));
  535. // ab. Set relativeTo to ! CreateTemporalDateTime(relativeTo.[[ISOYear]], relativeTo.[[ISOMonth]], relativeTo.[[ISODay]], 0, 0, 0, 0, 0, 0, relativeTo.[[Calendar]]).
  536. relative_to = MUST(create_temporal_date_time(global_object, relative_to_date->iso_year(), relative_to_date->iso_month(), relative_to_date->iso_day(), 0, 0, 0, 0, 0, 0, relative_to->calendar()));
  537. // ac. Let moveResult be ? MoveRelativeDate(calendar, relativeTo, oneYear).
  538. auto move_result = TRY(move_relative_date(global_object, *calendar, *relative_to, *one_year));
  539. // ad. Let oneYearDays be moveResult.[[Days]].
  540. auto one_year_days = move_result.days;
  541. // ae. Let fractionalYears be years + days / abs(oneYearDays).
  542. auto fractional_years = years + days / fabs(one_year_days);
  543. // af. Set years to ! RoundNumberToIncrement(fractionalYears, increment, roundingMode).
  544. years = (double)round_number_to_increment(fractional_years, increment, rounding_mode);
  545. // ag. Set remainder to fractionalYears - years.
  546. remainder = fractional_years - years;
  547. // ah. Set months, weeks, and days to 0.
  548. months = 0;
  549. weeks = 0;
  550. days = 0;
  551. }
  552. // 10. Else if unit is "month", then
  553. else if (unit == "month"sv) {
  554. VERIFY(relative_to);
  555. // a. Let yearsMonths be ? CreateTemporalDuration(years, months, 0, 0, 0, 0, 0, 0, 0, 0).
  556. auto* years_months = TRY(create_temporal_duration(global_object, years, months, 0, 0, 0, 0, 0, 0, 0, 0));
  557. // b. Let dateAdd be ? GetMethod(calendar, "dateAdd").
  558. auto* date_add = TRY(Value(calendar).get_method(global_object, vm.names.dateAdd));
  559. // c. Let firstAddOptions be ! OrdinaryObjectCreate(null).
  560. auto* first_add_options = Object::create(global_object, nullptr);
  561. // d. Let yearsMonthsLater be ? CalendarDateAdd(calendar, relativeTo, yearsMonths, firstAddOptions, dateAdd).
  562. auto* years_months_later = TRY(calendar_date_add(global_object, *calendar, relative_to, *years_months, first_add_options, date_add));
  563. // e. Let yearsMonthsWeeks be ? CreateTemporalDuration(years, months, weeks, 0, 0, 0, 0, 0, 0, 0).
  564. auto* years_months_weeks = TRY(create_temporal_duration(global_object, years, months, weeks, 0, 0, 0, 0, 0, 0, 0));
  565. // f. Let secondAddOptions be ! OrdinaryObjectCreate(null).
  566. auto* seconds_add_options = Object::create(global_object, nullptr);
  567. // g. Let yearsMonthsWeeksLater be ? CalendarDateAdd(calendar, relativeTo, yearsMonthsWeeks, secondAddOptions, dateAdd).
  568. auto* years_months_weeks_later = TRY(calendar_date_add(global_object, *calendar, relative_to, *years_months_weeks, seconds_add_options, date_add));
  569. // FIXME: This cannot return an abrupt completion (spec issue, see https://github.com/tc39/proposal-temporal/pull/1909)
  570. // h. Let weeksInDays be ? DaysUntil(yearsMonthsLater, yearsMonthsWeeksLater).
  571. auto weeks_in_days = days_until(global_object, *years_months_later, *years_months_weeks_later);
  572. // i. Set relativeTo to yearsMonthsLater.
  573. auto* relative_to_date = years_months_later;
  574. // j. Let days be days + weeksInDays.
  575. days += weeks_in_days;
  576. // k. Let sign be ! Sign(days).
  577. auto sign = JS::Temporal::sign(days);
  578. // l. If sign is 0, set sign to 1.
  579. if (sign == 0)
  580. sign = 1;
  581. // m. Let oneMonth be ? CreateTemporalDuration(0, sign, 0, 0, 0, 0, 0, 0, 0, 0).
  582. auto* one_month = TRY(create_temporal_duration(global_object, 0, sign, 0, 0, 0, 0, 0, 0, 0, 0));
  583. // n. Set relativeTo to ! CreateTemporalDateTime(relativeTo.[[ISOYear]], relativeTo.[[ISOMonth]], relativeTo.[[ISODay]], 0, 0, 0, 0, 0, 0, relativeTo.[[Calendar]]).
  584. relative_to = MUST(create_temporal_date_time(global_object, relative_to_date->iso_year(), relative_to_date->iso_month(), relative_to_date->iso_day(), 0, 0, 0, 0, 0, 0, relative_to_date->calendar()));
  585. // o. Let moveResult be ? MoveRelativeDate(calendar, relativeTo, oneMonth).
  586. auto move_result = TRY(move_relative_date(global_object, *calendar, *relative_to, *one_month));
  587. // p. Set relativeTo to moveResult.[[RelativeTo]].
  588. relative_to = move_result.relative_to.cell();
  589. // q. Let oneMonthDays be moveResult.[[Days]].
  590. auto one_month_days = move_result.days;
  591. // r. Repeat, while abs(days) ≥ abs(oneMonthDays),
  592. while (fabs(days) >= fabs(one_month_days)) {
  593. // i. Set months to months + sign.
  594. months += sign;
  595. // ii. Set days to days − oneMonthDays.
  596. days -= one_month_days;
  597. // iii. Set moveResult to ? MoveRelativeDate(calendar, relativeTo, oneMonth).
  598. move_result = TRY(move_relative_date(global_object, *calendar, *relative_to, *one_month));
  599. // iv. Set relativeTo to moveResult.[[RelativeTo]].
  600. relative_to = move_result.relative_to.cell();
  601. // v. Set oneMonthDays to moveResult.[[Days]].
  602. one_month_days = move_result.days;
  603. }
  604. // s. Let fractionalMonths be months + days / abs(oneMonthDays).
  605. auto fractional_months = months + days / fabs(one_month_days);
  606. // t. Set months to ! RoundNumberToIncrement(fractionalMonths, increment, roundingMode).
  607. months = (double)round_number_to_increment(fractional_months, increment, rounding_mode);
  608. // u. Set remainder to fractionalMonths - months.
  609. remainder = fractional_months - months;
  610. // v. Set weeks and days to 0.
  611. weeks = 0;
  612. days = 0;
  613. }
  614. // 11. Else if unit is "week", then
  615. else if (unit == "week"sv) {
  616. VERIFY(relative_to);
  617. // a. Let sign be ! Sign(days).
  618. auto sign = JS::Temporal::sign(days);
  619. // b. If sign is 0, set sign to 1.
  620. if (sign == 0)
  621. sign = 1;
  622. // c. Let oneWeek be ? CreateTemporalDuration(0, 0, sign, 0, 0, 0, 0, 0, 0, 0).
  623. auto* one_week = TRY(create_temporal_duration(global_object, 0, 0, sign, 0, 0, 0, 0, 0, 0, 0));
  624. // d. Let moveResult be ? MoveRelativeDate(calendar, relativeTo, oneWeek).
  625. auto move_result = TRY(move_relative_date(global_object, *calendar, *relative_to, *one_week));
  626. // e. Set relativeTo to moveResult.[[RelativeTo]].
  627. relative_to = move_result.relative_to.cell();
  628. // f. Let oneWeekDays be moveResult.[[Days]].
  629. auto one_week_days = move_result.days;
  630. // g. Repeat, while abs(days) ≥ abs(oneWeekDays),
  631. while (fabs(days) >= fabs(one_week_days)) {
  632. // i. Set weeks to weeks + sign.
  633. weeks += sign;
  634. // ii. Set days to days − oneWeekDays.
  635. days -= one_week_days;
  636. // iii. Set moveResult to ? MoveRelativeDate(calendar, relativeTo, oneWeek).
  637. move_result = TRY(move_relative_date(global_object, *calendar, *relative_to, *one_week));
  638. // iv. Set relativeTo to moveResult.[[RelativeTo]].
  639. relative_to = move_result.relative_to.cell();
  640. // v. Set oneWeekDays to moveResult.[[Days]].
  641. one_week_days = move_result.days;
  642. }
  643. // h. Let fractionalWeeks be weeks + days / abs(oneWeekDays).
  644. auto fractional_weeks = weeks + days / fabs(one_week_days);
  645. // i. Set weeks to ! RoundNumberToIncrement(fractionalWeeks, increment, roundingMode).
  646. weeks = (double)round_number_to_increment(fractional_weeks, increment, rounding_mode);
  647. // j. Set remainder to fractionalWeeks - weeks.
  648. remainder = fractional_weeks - weeks;
  649. // k. Set days to 0.
  650. days = 0;
  651. }
  652. // 12. Else if unit is "day", then
  653. else if (unit == "day"sv) {
  654. // a. Let fractionalDays be days.
  655. auto fractional_days = days;
  656. // b. Set days to ! RoundNumberToIncrement(days, increment, roundingMode).
  657. days = (double)round_number_to_increment(days, increment, rounding_mode);
  658. // c. Set remainder to fractionalDays - days.
  659. remainder = fractional_days - days;
  660. }
  661. // 13. Else if unit is "hour", then
  662. else if (unit == "hour"sv) {
  663. // a. Let fractionalHours be (fractionalSeconds / 60 + minutes) / 60 + hours.
  664. auto fractional_hours = (fractional_seconds / 60 + minutes) / 60 + hours;
  665. // b. Set hours to ! RoundNumberToIncrement(fractionalHours, increment, roundingMode).
  666. hours = (double)round_number_to_increment(fractional_hours, increment, rounding_mode);
  667. // c. Set remainder to fractionalHours - hours.
  668. remainder = fractional_hours - days;
  669. // d. Set minutes, seconds, milliseconds, microseconds, and nanoseconds to 0.
  670. minutes = 0;
  671. seconds = 0;
  672. milliseconds = 0;
  673. microseconds = 0;
  674. nanoseconds = 0;
  675. }
  676. // 14. Else if unit is "minute", then
  677. else if (unit == "minute"sv) {
  678. // a. Let fractionalMinutes be fractionalSeconds / 60 + minutes.
  679. auto fractional_minutes = fractional_seconds / 60 + minutes;
  680. // b. Set minutes to ! RoundNumberToIncrement(fractionalMinutes, increment, roundingMode).
  681. minutes = (double)round_number_to_increment(fractional_minutes, increment, rounding_mode);
  682. // c. Set remainder to fractionalMinutes - minutes.
  683. remainder = fractional_minutes - minutes;
  684. // d. Set seconds, milliseconds, microseconds, and nanoseconds to 0.
  685. seconds = 0;
  686. milliseconds = 0;
  687. microseconds = 0;
  688. nanoseconds = 0;
  689. }
  690. // 15. Else if unit is "second", then
  691. else if (unit == "second"sv) {
  692. // a. Set seconds to ! RoundNumberToIncrement(fractionalSeconds, increment, roundingMode).
  693. seconds = (double)round_number_to_increment(fractional_seconds, increment, rounding_mode);
  694. // b. Set remainder to fractionalSeconds - seconds.
  695. remainder = fractional_seconds - seconds;
  696. // c. Set milliseconds, microseconds, and nanoseconds to 0.
  697. milliseconds = 0;
  698. microseconds = 0;
  699. nanoseconds = 0;
  700. }
  701. // 16. Else if unit is "millisecond", then
  702. else if (unit == "millisecond"sv) {
  703. // a. Let fractionalMilliseconds be nanoseconds × 10^−6 + microseconds × 10^−3 + milliseconds.
  704. auto fractional_milliseconds = nanoseconds * 0.000001 + microseconds * 0.001 + milliseconds;
  705. // b. Set milliseconds to ! RoundNumberToIncrement(fractionalMilliseconds, increment, roundingMode).
  706. milliseconds = (double)round_number_to_increment(fractional_milliseconds, increment, rounding_mode);
  707. // c. Set remainder to fractionalMilliseconds - milliseconds.
  708. remainder = fractional_milliseconds - milliseconds;
  709. // d. Set microseconds and nanoseconds to 0.
  710. microseconds = 0;
  711. nanoseconds = 0;
  712. }
  713. // 17. Else if unit is "microsecond", then
  714. else if (unit == "microsecond"sv) {
  715. // a. Let fractionalMicroseconds be nanoseconds × 10^−3 + microseconds.
  716. auto fractional_microseconds = nanoseconds * 0.001 + microseconds;
  717. // b. Set microseconds to ! RoundNumberToIncrement(fractionalMicroseconds, increment, roundingMode).
  718. microseconds = (double)round_number_to_increment(fractional_microseconds, increment, rounding_mode);
  719. // c. Set remainder to fractionalMicroseconds - microseconds.
  720. remainder = fractional_microseconds - microseconds;
  721. // d. Set nanoseconds to 0.
  722. nanoseconds = 0;
  723. }
  724. // 18. Else,
  725. else {
  726. // a. Assert: unit is "nanosecond".
  727. VERIFY(unit == "nanosecond"sv);
  728. // b. Set remainder to nanoseconds.
  729. remainder = nanoseconds;
  730. // c. Set nanoseconds to ! RoundNumberToIncrement(nanoseconds, increment, roundingMode).
  731. nanoseconds = (double)round_number_to_increment(nanoseconds, increment, rounding_mode);
  732. // d. Set remainder to remainder − nanoseconds.
  733. remainder -= nanoseconds;
  734. }
  735. // Return the Record { [[Years]]: years, [[Months]]: months, [[Weeks]]: weeks, [[Days]]: days, [[Hours]]: hours, [[Minutes]]: minutes, [[Seconds]]: seconds, [[Milliseconds]]: milliseconds, [[Microseconds]]: microseconds, [[Nanoseconds]]: nanoseconds, [[Remainder]]: remainder }.
  736. return RoundedDuration { .years = years, .months = months, .weeks = weeks, .days = days, .hours = hours, .minutes = minutes, .seconds = seconds, .milliseconds = milliseconds, .microseconds = microseconds, .nanoseconds = nanoseconds, .remainder = remainder };
  737. }
  738. // 7.5.20 ToLimitedTemporalDuration ( temporalDurationLike, disallowedFields ),https://tc39.es/proposal-temporal/#sec-temporal-tolimitedtemporalduration
  739. ThrowCompletionOr<TemporalDuration> to_limited_temporal_duration(GlobalObject& global_object, Value temporal_duration_like, Vector<StringView> const& disallowed_fields)
  740. {
  741. auto& vm = global_object.vm();
  742. TemporalDuration duration;
  743. // 1. If Type(temporalDurationLike) is not Object, then
  744. if (!temporal_duration_like.is_object()) {
  745. // a. Let str be ? ToString(temporalDurationLike).
  746. auto str = TRY(temporal_duration_like.to_string(global_object));
  747. // b. Let duration be ? ParseTemporalDurationString(str).
  748. duration = TRY(parse_temporal_duration_string(global_object, str));
  749. }
  750. // 2. Else,
  751. else {
  752. // a. Let duration be ? ToTemporalDurationRecord(temporalDurationLike).
  753. duration = TRY(to_temporal_duration_record(global_object, temporal_duration_like.as_object()));
  754. }
  755. // 3. If ! IsValidDuration(duration.[[Years]], duration.[[Months]], duration.[[Weeks]], duration.[[Days]], duration.[[Hours]], duration.[[Minutes]], duration.[[Seconds]], duration.[[Milliseconds]], duration.[[Microseconds]], duration.[[Nanoseconds]]) is false, throw a RangeError exception.
  756. if (!is_valid_duration(duration.years, duration.months, duration.weeks, duration.days, duration.hours, duration.minutes, duration.seconds, duration.milliseconds, duration.microseconds, duration.nanoseconds))
  757. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidDuration);
  758. // 4. For each row of Table 7, except the header row, in table order, do
  759. for (auto& [internal_slot, property] : temporal_duration_like_properties<TemporalDuration, double>(vm)) {
  760. // a. Let prop be the Property value of the current row.
  761. // b. Let value be duration's internal slot whose name is the Internal Slot value of the current row.
  762. auto value = duration.*internal_slot;
  763. // If value is not 0 and disallowedFields contains prop, then
  764. if (value != 0 && disallowed_fields.contains_slow(property.as_string())) {
  765. // i. Throw a RangeError exception.
  766. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidDurationPropertyValueNonZero, property.as_string(), value);
  767. }
  768. }
  769. // 5. Return duration.
  770. return duration;
  771. }
  772. // 7.5.21 TemporalDurationToString ( years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds, precision ), https://tc39.es/proposal-temporal/#sec-temporal-temporaldurationtostring
  773. String temporal_duration_to_string(double years, double months, double weeks, double days, double hours, double minutes, double seconds, double milliseconds, double microseconds, double nanoseconds, Variant<StringView, u8> const& precision)
  774. {
  775. // 1. Assert: precision is not "minute".
  776. if (precision.has<StringView>())
  777. VERIFY(precision.get<StringView>() != "minute"sv);
  778. // 2. Set seconds to the mathematical value of seconds.
  779. // 3. Set milliseconds to the mathematical value of milliseconds.
  780. // 4. Set microseconds to the mathematical value of microseconds.
  781. // 5. Set nanoseconds to the mathematical value of nanoseconds.
  782. // 6. Let sign be ! DurationSign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds).
  783. auto sign = duration_sign(years, months, weeks, days, hours, minutes, seconds, milliseconds, microseconds, nanoseconds);
  784. // 7. Set microseconds to microseconds + the integral part of nanoseconds / 1000.
  785. microseconds += trunc(nanoseconds / 1000);
  786. // 8. Set nanoseconds to remainder(nanoseconds, 1000).
  787. nanoseconds = fmod(nanoseconds, 1000);
  788. // 9. Set milliseconds to milliseconds + the integral part of microseconds / 1000.
  789. milliseconds += trunc(microseconds / 1000);
  790. // 10. Set microseconds to remainder(microseconds, 1000).
  791. microseconds = fmod(microseconds, 1000);
  792. // 11. Set seconds to seconds + the integral part of milliseconds / 1000.
  793. seconds += trunc(milliseconds / 1000);
  794. // 12. Set milliseconds to remainder(milliseconds, 1000).
  795. milliseconds = fmod(milliseconds, 1000);
  796. // 13. Let datePart be "".
  797. StringBuilder date_part;
  798. // 14. If years is not 0, then
  799. if (years != 0) {
  800. // a. Set datePart to the string concatenation of abs(years) formatted as a decimal number and the code unit 0x0059 (LATIN CAPITAL LETTER Y).
  801. date_part.appendff("{}", fabs(years));
  802. date_part.append('Y');
  803. }
  804. // 15. If months is not 0, then
  805. if (months != 0) {
  806. // a. Set datePart to the string concatenation of datePart, abs(months) formatted as a decimal number, and the code unit 0x004D (LATIN CAPITAL LETTER M).
  807. date_part.appendff("{}", fabs(months));
  808. date_part.append('M');
  809. }
  810. // 16. If weeks is not 0, then
  811. if (weeks != 0) {
  812. // a. Set datePart to the string concatenation of datePart, abs(weeks) formatted as a decimal number, and the code unit 0x0057 (LATIN CAPITAL LETTER W).
  813. date_part.appendff("{}", fabs(weeks));
  814. date_part.append('W');
  815. }
  816. // 17. If days is not 0, then
  817. if (days != 0) {
  818. // a. Set datePart to the string concatenation of datePart, abs(days) formatted as a decimal number, and the code unit 0x0044 (LATIN CAPITAL LETTER D).
  819. date_part.appendff("{}", fabs(days));
  820. date_part.append('D');
  821. }
  822. // 18. Let timePart be "".
  823. StringBuilder time_part;
  824. // 19. If hours is not 0, then
  825. if (hours != 0) {
  826. // a. Set timePart to the string concatenation of abs(hours) formatted as a decimal number and the code unit 0x0048 (LATIN CAPITAL LETTER H).
  827. time_part.appendff("{}", fabs(hours));
  828. time_part.append('H');
  829. }
  830. // 20. If minutes is not 0, then
  831. if (minutes != 0) {
  832. // a. Set timePart to the string concatenation of timePart, abs(minutes) formatted as a decimal number, and the code unit 0x004D (LATIN CAPITAL LETTER M).
  833. time_part.appendff("{}", fabs(minutes));
  834. time_part.append('M');
  835. }
  836. // 21. If any of seconds, milliseconds, microseconds, and nanoseconds are not 0; or years, months, weeks, days, hours, and minutes are all 0, then
  837. if ((seconds != 0 || milliseconds != 0 || microseconds != 0 || nanoseconds != 0) || (years == 0 && months == 0 && weeks == 0 && days == 0 && hours == 0 && minutes == 0)) {
  838. // a. Let fraction be abs(milliseconds) × 10^6 + abs(microseconds) × 10^3 + abs(nanoseconds).
  839. auto fraction = fabs(milliseconds) * 1'000'000 + fabs(microseconds) * 1'000 + fabs(nanoseconds);
  840. // b. Let decimalPart be fraction formatted as a nine-digit decimal number, padded to the left with zeroes if necessary.
  841. // NOTE: padding with zeros leads to weird results when applied to a double. Not sure if that's a bug in AK/Format.h or if I'm doing this wrong.
  842. auto decimal_part = String::formatted("{:09}", (u64)fraction);
  843. // c. If precision is "auto", then
  844. if (precision.has<StringView>() && precision.get<StringView>() == "auto"sv) {
  845. // i. Set decimalPart to the longest possible substring of decimalPart starting at position 0 and not ending with the code unit 0x0030 (DIGIT ZERO).
  846. // NOTE: trim() would keep the left-most 0.
  847. while (decimal_part.ends_with('0'))
  848. decimal_part = decimal_part.substring(0, decimal_part.length() - 1);
  849. }
  850. // d. Else if precision = 0, then
  851. else if (precision.get<u8>() == 0) {
  852. // i. Set decimalPart to "".
  853. decimal_part = String::empty();
  854. }
  855. // e. Else,
  856. else {
  857. // i. Set decimalPart to the substring of decimalPart from 0 to precision.
  858. decimal_part = decimal_part.substring(0, precision.get<u8>());
  859. }
  860. // f. Let secondsPart be abs(seconds) formatted as a decimal number.
  861. StringBuilder seconds_part;
  862. seconds_part.appendff("{}", fabs(seconds));
  863. // g. If decimalPart is not "", then
  864. if (!decimal_part.is_empty()) {
  865. // i. Set secondsPart to the string-concatenation of secondsPart, the code unit 0x002E (FULL STOP), and decimalPart.
  866. seconds_part.append('.');
  867. seconds_part.append(decimal_part);
  868. }
  869. // h. Set timePart to the string concatenation of timePart, secondsPart, and the code unit 0x0053 (LATIN CAPITAL LETTER S).
  870. time_part.append(seconds_part.string_view());
  871. time_part.append('S');
  872. }
  873. // 22. Let signPart be the code unit 0x002D (HYPHEN-MINUS) if sign < 0, and otherwise the empty String.
  874. auto sign_part = sign < 0 ? "-"sv : ""sv;
  875. // 23. Let result be the string concatenation of signPart, the code unit 0x0050 (LATIN CAPITAL LETTER P) and datePart.
  876. StringBuilder result;
  877. result.append(sign_part);
  878. result.append('P');
  879. result.append(date_part.string_view());
  880. // 24. If timePart is not "", then
  881. if (!time_part.is_empty()) {
  882. // a. Set result to the string concatenation of result, the code unit 0x0054 (LATIN CAPITAL LETTER T), and timePart.
  883. result.append('T');
  884. result.append(time_part.string_view());
  885. }
  886. // 25. Return result.
  887. return result.to_string();
  888. }
  889. }