Date.cpp 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735
  1. /*
  2. * Copyright (c) 2020-2023, Linus Groh <linusg@serenityos.org>
  3. * Copyright (c) 2022-2023, Tim Flynn <trflynn89@serenityos.org>
  4. *
  5. * SPDX-License-Identifier: BSD-2-Clause
  6. */
  7. #include <AK/NumericLimits.h>
  8. #include <AK/StringBuilder.h>
  9. #include <AK/Time.h>
  10. #include <LibJS/Runtime/AbstractOperations.h>
  11. #include <LibJS/Runtime/Date.h>
  12. #include <LibJS/Runtime/GlobalObject.h>
  13. #include <LibJS/Runtime/Temporal/ISO8601.h>
  14. #include <LibTimeZone/TimeZone.h>
  15. #include <time.h>
  16. namespace JS {
  17. static Crypto::SignedBigInteger const s_one_billion_bigint { 1'000'000'000 };
  18. static Crypto::SignedBigInteger const s_one_million_bigint { 1'000'000 };
  19. static Crypto::SignedBigInteger const s_one_thousand_bigint { 1'000 };
  20. Crypto::SignedBigInteger const ns_per_day_bigint { static_cast<i64>(ns_per_day) };
  21. NonnullGCPtr<Date> Date::create(Realm& realm, double date_value)
  22. {
  23. return realm.heap().allocate<Date>(realm, date_value, realm.intrinsics().date_prototype());
  24. }
  25. Date::Date(double date_value, Object& prototype)
  26. : Object(ConstructWithPrototypeTag::Tag, prototype)
  27. , m_date_value(date_value)
  28. {
  29. }
  30. ErrorOr<String> Date::iso_date_string() const
  31. {
  32. int year = year_from_time(m_date_value);
  33. StringBuilder builder;
  34. if (year < 0)
  35. builder.appendff("-{:06}", -year);
  36. else if (year > 9999)
  37. builder.appendff("+{:06}", year);
  38. else
  39. builder.appendff("{:04}", year);
  40. builder.append('-');
  41. builder.appendff("{:02}", month_from_time(m_date_value) + 1);
  42. builder.append('-');
  43. builder.appendff("{:02}", date_from_time(m_date_value));
  44. builder.append('T');
  45. builder.appendff("{:02}", hour_from_time(m_date_value));
  46. builder.append(':');
  47. builder.appendff("{:02}", min_from_time(m_date_value));
  48. builder.append(':');
  49. builder.appendff("{:02}", sec_from_time(m_date_value));
  50. builder.append('.');
  51. builder.appendff("{:03}", ms_from_time(m_date_value));
  52. builder.append('Z');
  53. return builder.to_string();
  54. }
  55. // 21.4.1.3 Day ( t ), https://tc39.es/ecma262/#sec-day
  56. double day(double time_value)
  57. {
  58. // 1. Return ๐”ฝ(floor(โ„(t / msPerDay))).
  59. return floor(time_value / ms_per_day);
  60. }
  61. // 21.4.1.4 TimeWithinDay ( t ), https://tc39.es/ecma262/#sec-timewithinday
  62. double time_within_day(double time)
  63. {
  64. // 1. Return ๐”ฝ(โ„(t) modulo โ„(msPerDay)).
  65. return modulo(time, ms_per_day);
  66. }
  67. // 21.4.1.5 DaysInYear ( y ), https://tc39.es/ecma262/#sec-daysinyear
  68. u16 days_in_year(i32 y)
  69. {
  70. // 1. Let ry be โ„(y).
  71. auto ry = static_cast<double>(y);
  72. // 2. If (ry modulo 400) = 0, return 366๐”ฝ.
  73. if (modulo(ry, 400.0) == 0)
  74. return 366;
  75. // 3. If (ry modulo 100) = 0, return 365๐”ฝ.
  76. if (modulo(ry, 100.0) == 0)
  77. return 365;
  78. // 4. If (ry modulo 4) = 0, return 366๐”ฝ.
  79. if (modulo(ry, 4.0) == 0)
  80. return 366;
  81. // 5. Return 365๐”ฝ.
  82. return 365;
  83. }
  84. // 21.4.1.6 DayFromYear ( y ), https://tc39.es/ecma262/#sec-dayfromyear
  85. double day_from_year(i32 y)
  86. {
  87. // 1. Let ry be โ„(y).
  88. auto ry = static_cast<double>(y);
  89. // 2. NOTE: In the following steps, each _numYearsN_ is the number of years divisible by N that occur between the
  90. // epoch and the start of year y. (The number is negative if y is before the epoch.)
  91. // 3. Let numYears1 be (ry - 1970).
  92. auto num_years_1 = ry - 1970;
  93. // 4. Let numYears4 be floor((ry - 1969) / 4).
  94. auto num_years_4 = floor((ry - 1969) / 4.0);
  95. // 5. Let numYears100 be floor((ry - 1901) / 100).
  96. auto num_years_100 = floor((ry - 1901) / 100.0);
  97. // 6. Let numYears400 be floor((ry - 1601) / 400).
  98. auto num_years_400 = floor((ry - 1601) / 400.0);
  99. // 7. Return ๐”ฝ(365 ร— numYears1 + numYears4 - numYears100 + numYears400).
  100. return 365.0 * num_years_1 + num_years_4 - num_years_100 + num_years_400;
  101. }
  102. // 21.4.1.7 TimeFromYear ( y ), https://tc39.es/ecma262/#sec-timefromyear
  103. double time_from_year(i32 y)
  104. {
  105. // 1. Return msPerDay ร— DayFromYear(y).
  106. return ms_per_day * day_from_year(y);
  107. }
  108. // 21.4.1.8 YearFromTime ( t ), https://tc39.es/ecma262/#sec-yearfromtime
  109. i32 year_from_time(double t)
  110. {
  111. // 1. Return the largest integral Number y (closest to +โˆž) such that TimeFromYear(y) โ‰ค t.
  112. if (!Value(t).is_finite_number())
  113. return NumericLimits<i32>::max();
  114. // Approximation using average number of milliseconds per year. We might have to adjust this guess afterwards.
  115. auto year = static_cast<i32>(floor(t / (365.2425 * ms_per_day) + 1970));
  116. auto year_t = time_from_year(year);
  117. if (year_t > t)
  118. year--;
  119. else if (year_t + days_in_year(year) * ms_per_day <= t)
  120. year++;
  121. return year;
  122. }
  123. // 21.4.1.9 DayWithinYear ( t ), https://tc39.es/ecma262/#sec-daywithinyear
  124. u16 day_within_year(double t)
  125. {
  126. if (!Value(t).is_finite_number())
  127. return 0;
  128. // 1. Return Day(t) - DayFromYear(YearFromTime(t)).
  129. return static_cast<u16>(day(t) - day_from_year(year_from_time(t)));
  130. }
  131. // 21.4.1.10 InLeapYear ( t ), https://tc39.es/ecma262/#sec-inleapyear
  132. bool in_leap_year(double t)
  133. {
  134. // 1. If DaysInYear(YearFromTime(t)) is 366๐”ฝ, return 1๐”ฝ; else return +0๐”ฝ.
  135. return days_in_year(year_from_time(t)) == 366;
  136. }
  137. // 21.4.1.11 MonthFromTime ( t ), https://tc39.es/ecma262/#sec-monthfromtime
  138. u8 month_from_time(double t)
  139. {
  140. // 1. Let inLeapYear be InLeapYear(t).
  141. auto in_leap_year = static_cast<unsigned>(JS::in_leap_year(t));
  142. // 2. Let dayWithinYear be DayWithinYear(t).
  143. auto day_within_year = JS::day_within_year(t);
  144. // 3. If dayWithinYear < 31๐”ฝ, return +0๐”ฝ.
  145. if (day_within_year < 31)
  146. return 0;
  147. // 4. If dayWithinYear < 59๐”ฝ + inLeapYear, return 1๐”ฝ.
  148. if (day_within_year < (59 + in_leap_year))
  149. return 1;
  150. // 5. If dayWithinYear < 90๐”ฝ + inLeapYear, return 2๐”ฝ.
  151. if (day_within_year < (90 + in_leap_year))
  152. return 2;
  153. // 6. If dayWithinYear < 120๐”ฝ + inLeapYear, return 3๐”ฝ.
  154. if (day_within_year < (120 + in_leap_year))
  155. return 3;
  156. // 7. If dayWithinYear < 151๐”ฝ + inLeapYear, return 4๐”ฝ.
  157. if (day_within_year < (151 + in_leap_year))
  158. return 4;
  159. // 8. If dayWithinYear < 181๐”ฝ + inLeapYear, return 5๐”ฝ.
  160. if (day_within_year < (181 + in_leap_year))
  161. return 5;
  162. // 9. If dayWithinYear < 212๐”ฝ + inLeapYear, return 6๐”ฝ.
  163. if (day_within_year < (212 + in_leap_year))
  164. return 6;
  165. // 10. If dayWithinYear < 243๐”ฝ + inLeapYear, return 7๐”ฝ.
  166. if (day_within_year < (243 + in_leap_year))
  167. return 7;
  168. // 11. If dayWithinYear < 273๐”ฝ + inLeapYear, return 8๐”ฝ.
  169. if (day_within_year < (273 + in_leap_year))
  170. return 8;
  171. // 12. If dayWithinYear < 304๐”ฝ + inLeapYear, return 9๐”ฝ.
  172. if (day_within_year < (304 + in_leap_year))
  173. return 9;
  174. // 13. If dayWithinYear < 334๐”ฝ + inLeapYear, return 10๐”ฝ.
  175. if (day_within_year < (334 + in_leap_year))
  176. return 10;
  177. // 14. Assert: dayWithinYear < 365๐”ฝ + inLeapYear.
  178. VERIFY(day_within_year < (365 + in_leap_year));
  179. // 15. Return 11๐”ฝ.
  180. return 11;
  181. }
  182. // 21.4.1.12 DateFromTime ( t ), https://tc39.es/ecma262/#sec-datefromtime
  183. u8 date_from_time(double t)
  184. {
  185. // 1. Let inLeapYear be InLeapYear(t).
  186. auto in_leap_year = static_cast<unsigned>(JS::in_leap_year(t));
  187. // 2. Let dayWithinYear be DayWithinYear(t).
  188. auto day_within_year = JS::day_within_year(t);
  189. // 3. Let month be MonthFromTime(t).
  190. auto month = month_from_time(t);
  191. // 4. If month is +0๐”ฝ, return dayWithinYear + 1๐”ฝ.
  192. if (month == 0)
  193. return day_within_year + 1;
  194. // 5. If month is 1๐”ฝ, return dayWithinYear - 30๐”ฝ.
  195. if (month == 1)
  196. return day_within_year - 30;
  197. // 6. If month is 2๐”ฝ, return dayWithinYear - 58๐”ฝ - inLeapYear.
  198. if (month == 2)
  199. return day_within_year - 58 - in_leap_year;
  200. // 7. If month is 3๐”ฝ, return dayWithinYear - 89๐”ฝ - inLeapYear.
  201. if (month == 3)
  202. return day_within_year - 89 - in_leap_year;
  203. // 8. If month is 4๐”ฝ, return dayWithinYear - 119๐”ฝ - inLeapYear.
  204. if (month == 4)
  205. return day_within_year - 119 - in_leap_year;
  206. // 9. If month is 5๐”ฝ, return dayWithinYear - 150๐”ฝ - inLeapYear.
  207. if (month == 5)
  208. return day_within_year - 150 - in_leap_year;
  209. // 10. If month is 6๐”ฝ, return dayWithinYear - 180๐”ฝ - inLeapYear.
  210. if (month == 6)
  211. return day_within_year - 180 - in_leap_year;
  212. // 11. If month is 7๐”ฝ, return dayWithinYear - 211๐”ฝ - inLeapYear.
  213. if (month == 7)
  214. return day_within_year - 211 - in_leap_year;
  215. // 12. If month is 8๐”ฝ, return dayWithinYear - 242๐”ฝ - inLeapYear.
  216. if (month == 8)
  217. return day_within_year - 242 - in_leap_year;
  218. // 13. If month is 9๐”ฝ, return dayWithinYear - 272๐”ฝ - inLeapYear.
  219. if (month == 9)
  220. return day_within_year - 272 - in_leap_year;
  221. // 14. If month is 10๐”ฝ, return dayWithinYear - 303๐”ฝ - inLeapYear.
  222. if (month == 10)
  223. return day_within_year - 303 - in_leap_year;
  224. // 15. Assert: month is 11๐”ฝ.
  225. VERIFY(month == 11);
  226. // 16. Return dayWithinYear - 333๐”ฝ - inLeapYear.
  227. return day_within_year - 333 - in_leap_year;
  228. }
  229. // 21.4.1.13 WeekDay ( t ), https://tc39.es/ecma262/#sec-weekday
  230. u8 week_day(double t)
  231. {
  232. if (!Value(t).is_finite_number())
  233. return 0;
  234. // 1. Return ๐”ฝ(โ„(Day(t) + 4๐”ฝ) modulo 7).
  235. return static_cast<u8>(modulo(day(t) + 4, 7));
  236. }
  237. // 21.4.1.14 HourFromTime ( t ), https://tc39.es/ecma262/#sec-hourfromtime
  238. u8 hour_from_time(double t)
  239. {
  240. if (!Value(t).is_finite_number())
  241. return 0;
  242. // 1. Return ๐”ฝ(floor(โ„(t / msPerHour)) modulo HoursPerDay).
  243. return static_cast<u8>(modulo(floor(t / ms_per_hour), hours_per_day));
  244. }
  245. // 21.4.1.15 MinFromTime ( t ), https://tc39.es/ecma262/#sec-minfromtime
  246. u8 min_from_time(double t)
  247. {
  248. if (!Value(t).is_finite_number())
  249. return 0;
  250. // 1. Return ๐”ฝ(floor(โ„(t / msPerMinute)) modulo MinutesPerHour).
  251. return static_cast<u8>(modulo(floor(t / ms_per_minute), minutes_per_hour));
  252. }
  253. // 21.4.1.16 SecFromTime ( t ), https://tc39.es/ecma262/#sec-secfromtime
  254. u8 sec_from_time(double t)
  255. {
  256. if (!Value(t).is_finite_number())
  257. return 0;
  258. // 1. Return ๐”ฝ(floor(โ„(t / msPerSecond)) modulo SecondsPerMinute).
  259. return static_cast<u8>(modulo(floor(t / ms_per_second), seconds_per_minute));
  260. }
  261. // 21.4.1.17 msFromTime ( t ), https://tc39.es/ecma262/#sec-msfromtime
  262. u16 ms_from_time(double t)
  263. {
  264. if (!Value(t).is_finite_number())
  265. return 0;
  266. // 1. Return ๐”ฝ(โ„(t) modulo โ„(msPerSecond)).
  267. return static_cast<u16>(modulo(t, ms_per_second));
  268. }
  269. // 21.4.1.18 GetUTCEpochNanoseconds ( year, month, day, hour, minute, second, millisecond, microsecond, nanosecond ), https://tc39.es/ecma262/#sec-getutcepochnanoseconds
  270. Crypto::SignedBigInteger get_utc_epoch_nanoseconds(i32 year, u8 month, u8 day, u8 hour, u8 minute, u8 second, u16 millisecond, u16 microsecond, u16 nanosecond)
  271. {
  272. // 1. Let date be MakeDay(๐”ฝ(year), ๐”ฝ(month - 1), ๐”ฝ(day)).
  273. auto date = make_day(year, month - 1, day);
  274. // 2. Let time be MakeTime(๐”ฝ(hour), ๐”ฝ(minute), ๐”ฝ(second), ๐”ฝ(millisecond)).
  275. auto time = make_time(hour, minute, second, millisecond);
  276. // 3. Let ms be MakeDate(date, time).
  277. auto ms = make_date(date, time);
  278. // 4. Assert: ms is an integral Number.
  279. VERIFY(ms == trunc(ms));
  280. // 5. Return โ„ค(โ„(ms) ร— 10^6 + microsecond ร— 10^3 + nanosecond).
  281. auto result = Crypto::SignedBigInteger { ms }.multiplied_by(s_one_million_bigint);
  282. result = result.plus(Crypto::SignedBigInteger { static_cast<i32>(microsecond) }.multiplied_by(s_one_thousand_bigint));
  283. result = result.plus(Crypto::SignedBigInteger { static_cast<i32>(nanosecond) });
  284. return result;
  285. }
  286. static i64 clip_bigint_to_sane_time(Crypto::SignedBigInteger const& value)
  287. {
  288. static Crypto::SignedBigInteger const min_bigint { NumericLimits<i64>::min() };
  289. static Crypto::SignedBigInteger const max_bigint { NumericLimits<i64>::max() };
  290. // The provided epoch (nano)seconds value is potentially out of range for AK::Duration and subsequently
  291. // get_time_zone_offset(). We can safely assume that the TZDB has no useful information that far
  292. // into the past and future anyway, so clamp it to the i64 range.
  293. if (value < min_bigint)
  294. return NumericLimits<i64>::min();
  295. if (value > max_bigint)
  296. return NumericLimits<i64>::max();
  297. // FIXME: Can we do this without string conversion?
  298. return value.to_base_deprecated(10).to_int<i64>().value();
  299. }
  300. // 21.4.1.20 GetNamedTimeZoneEpochNanoseconds ( timeZoneIdentifier, year, month, day, hour, minute, second, millisecond, microsecond, nanosecond ), https://tc39.es/ecma262/#sec-getnamedtimezoneepochnanoseconds
  301. Vector<Crypto::SignedBigInteger> get_named_time_zone_epoch_nanoseconds(StringView time_zone_identifier, i32 year, u8 month, u8 day, u8 hour, u8 minute, u8 second, u16 millisecond, u16 microsecond, u16 nanosecond)
  302. {
  303. auto local_nanoseconds = get_utc_epoch_nanoseconds(year, month, day, hour, minute, second, millisecond, microsecond, nanosecond);
  304. auto local_time = UnixDateTime::from_nanoseconds_since_epoch(clip_bigint_to_sane_time(local_nanoseconds));
  305. // FIXME: LibTimeZone does not behave exactly as the spec expects. It does not consider repeated or skipped time points.
  306. auto offset = TimeZone::get_time_zone_offset(time_zone_identifier, local_time);
  307. // Can only fail if the time zone identifier is invalid, which cannot be the case here.
  308. VERIFY(offset.has_value());
  309. return { local_nanoseconds.minus(Crypto::SignedBigInteger { offset->seconds }.multiplied_by(s_one_billion_bigint)) };
  310. }
  311. // 21.4.1.21 GetNamedTimeZoneOffsetNanoseconds ( timeZoneIdentifier, epochNanoseconds ), https://tc39.es/ecma262/#sec-getnamedtimezoneoffsetnanoseconds
  312. i64 get_named_time_zone_offset_nanoseconds(StringView time_zone_identifier, Crypto::SignedBigInteger const& epoch_nanoseconds)
  313. {
  314. // Only called with validated time zone identifier as argument.
  315. auto time_zone = TimeZone::time_zone_from_string(time_zone_identifier);
  316. VERIFY(time_zone.has_value());
  317. // Since UnixDateTime::from_seconds_since_epoch() and UnixDateTime::from_nanoseconds_since_epoch() both take an i64, converting to
  318. // seconds first gives us a greater range. The TZDB doesn't have sub-second offsets.
  319. auto seconds = epoch_nanoseconds.divided_by(s_one_billion_bigint).quotient;
  320. auto time = UnixDateTime::from_seconds_since_epoch(clip_bigint_to_sane_time(seconds));
  321. auto offset = TimeZone::get_time_zone_offset(*time_zone, time);
  322. VERIFY(offset.has_value());
  323. return offset->seconds * 1'000'000'000;
  324. }
  325. // 21.4.1.23 AvailableNamedTimeZoneIdentifiers ( ), https://tc39.es/ecma262/#sec-time-zone-identifier-record
  326. Vector<TimeZoneIdentifier> available_named_time_zone_identifiers()
  327. {
  328. // 1. If the implementation does not include local political rules for any time zones, then
  329. // a. Return ยซ the Time Zone Identifier Record { [[Identifier]]: "UTC", [[PrimaryIdentifier]]: "UTC" } ยป.
  330. // NOTE: This step is not applicable as LibTimeZone will always return at least UTC, even if the TZDB is disabled.
  331. // 2. Let identifiers be the List of unique available named time zone identifiers.
  332. auto identifiers = TimeZone::all_time_zones();
  333. // 3. Sort identifiers into the same order as if an Array of the same values had been sorted using %Array.prototype.sort% with undefined as comparefn.
  334. // NOTE: LibTimeZone provides the identifiers already sorted.
  335. // 4. Let result be a new empty List.
  336. Vector<TimeZoneIdentifier> result;
  337. result.ensure_capacity(identifiers.size());
  338. bool found_utc = false;
  339. // 5. For each element identifier of identifiers, do
  340. for (auto identifier : identifiers) {
  341. // a. Let primary be identifier.
  342. auto primary = identifier.name;
  343. // b. If identifier is a non-primary time zone identifier in this implementation and identifier is not "UTC", then
  344. if (identifier.is_link == TimeZone::IsLink::Yes && identifier.name != "UTC"sv) {
  345. // i. Set primary to the primary time zone identifier associated with identifier.
  346. // ii. NOTE: An implementation may need to resolve identifier iteratively to obtain the primary time zone identifier.
  347. primary = TimeZone::canonicalize_time_zone(identifier.name).value();
  348. }
  349. // c. Let record be the Time Zone Identifier Record { [[Identifier]]: identifier, [[PrimaryIdentifier]]: primary }.
  350. TimeZoneIdentifier record { .identifier = identifier.name, .primary_identifier = primary };
  351. // d. Append record to result.
  352. result.unchecked_append(record);
  353. if (!found_utc && identifier.name == "UTC"sv && primary == "UTC"sv)
  354. found_utc = true;
  355. }
  356. // 6. Assert: result contains a Time Zone Identifier Record r such that r.[[Identifier]] is "UTC" and r.[[PrimaryIdentifier]] is "UTC".
  357. VERIFY(found_utc);
  358. // 7. Return result.
  359. return result;
  360. }
  361. // 21.4.1.24 SystemTimeZoneIdentifier ( ), https://tc39.es/ecma262/#sec-systemtimezoneidentifier
  362. StringView system_time_zone_identifier()
  363. {
  364. return TimeZone::current_time_zone();
  365. }
  366. // 21.4.1.25 LocalTime ( t ), https://tc39.es/ecma262/#sec-localtime
  367. double local_time(double time)
  368. {
  369. // 1. Let systemTimeZoneIdentifier be SystemTimeZoneIdentifier().
  370. auto system_time_zone_identifier = JS::system_time_zone_identifier();
  371. double offset_nanoseconds { 0 };
  372. // 2. If IsTimeZoneOffsetString(systemTimeZoneIdentifier) is true, then
  373. if (is_time_zone_offset_string(system_time_zone_identifier)) {
  374. // a. Let offsetNs be ParseTimeZoneOffsetString(systemTimeZoneIdentifier).
  375. offset_nanoseconds = parse_time_zone_offset_string(system_time_zone_identifier);
  376. }
  377. // 3. Else,
  378. else {
  379. // a. Let offsetNs be GetNamedTimeZoneOffsetNanoseconds(systemTimeZoneIdentifier, โ„ค(โ„(t) ร— 10^6)).
  380. auto time_bigint = Crypto::SignedBigInteger { time }.multiplied_by(s_one_million_bigint);
  381. offset_nanoseconds = get_named_time_zone_offset_nanoseconds(system_time_zone_identifier, time_bigint);
  382. }
  383. // 4. Let offsetMs be truncate(offsetNs / 10^6).
  384. auto offset_milliseconds = trunc(offset_nanoseconds / 1e6);
  385. // 5. Return t + ๐”ฝ(offsetMs).
  386. return time + offset_milliseconds;
  387. }
  388. // 21.4.1.26 UTC ( t ), https://tc39.es/ecma262/#sec-utc-t
  389. double utc_time(double time)
  390. {
  391. // 1. Let systemTimeZoneIdentifier be SystemTimeZoneIdentifier().
  392. auto system_time_zone_identifier = JS::system_time_zone_identifier();
  393. double offset_nanoseconds { 0 };
  394. // 2. If IsTimeZoneOffsetString(systemTimeZoneIdentifier) is true, then
  395. if (is_time_zone_offset_string(system_time_zone_identifier)) {
  396. // a. Let offsetNs be ParseTimeZoneOffsetString(systemTimeZoneIdentifier).
  397. offset_nanoseconds = parse_time_zone_offset_string(system_time_zone_identifier);
  398. }
  399. // 3. Else,
  400. else {
  401. // a. Let possibleInstants be GetNamedTimeZoneEpochNanoseconds(systemTimeZoneIdentifier, โ„(YearFromTime(t)), โ„(MonthFromTime(t)) + 1, โ„(DateFromTime(t)), โ„(HourFromTime(t)), โ„(MinFromTime(t)), โ„(SecFromTime(t)), โ„(msFromTime(t)), 0, 0).
  402. auto possible_instants = get_named_time_zone_epoch_nanoseconds(system_time_zone_identifier, year_from_time(time), month_from_time(time) + 1, date_from_time(time), hour_from_time(time), min_from_time(time), sec_from_time(time), ms_from_time(time), 0, 0);
  403. // b. NOTE: The following steps ensure that when t represents local time repeating multiple times at a negative time zone transition (e.g. when the daylight saving time ends or the time zone offset is decreased due to a time zone rule change) or skipped local time at a positive time zone transition (e.g. when the daylight saving time starts or the time zone offset is increased due to a time zone rule change), t is interpreted using the time zone offset before the transition.
  404. Crypto::SignedBigInteger disambiguated_instant;
  405. // c. If possibleInstants is not empty, then
  406. if (!possible_instants.is_empty()) {
  407. // i. Let disambiguatedInstant be possibleInstants[0].
  408. disambiguated_instant = move(possible_instants.first());
  409. }
  410. // d. Else,
  411. else {
  412. // i. NOTE: t represents a local time skipped at a positive time zone transition (e.g. due to daylight saving time starting or a time zone rule change increasing the UTC offset).
  413. // ii. Let possibleInstantsBefore be GetNamedTimeZoneEpochNanoseconds(systemTimeZoneIdentifier, โ„(YearFromTime(tBefore)), โ„(MonthFromTime(tBefore)) + 1, โ„(DateFromTime(tBefore)), โ„(HourFromTime(tBefore)), โ„(MinFromTime(tBefore)), โ„(SecFromTime(tBefore)), โ„(msFromTime(tBefore)), 0, 0), where tBefore is the largest integral Number < t for which possibleInstantsBefore is not empty (i.e., tBefore represents the last local time before the transition).
  414. // iii. Let disambiguatedInstant be the last element of possibleInstantsBefore.
  415. // FIXME: This branch currently cannot be reached with our implementation, because LibTimeZone does not handle skipped time points.
  416. // When GetNamedTimeZoneEpochNanoseconds is updated to use a LibTimeZone API which does handle them, implement these steps.
  417. VERIFY_NOT_REACHED();
  418. }
  419. // e. Let offsetNs be GetNamedTimeZoneOffsetNanoseconds(systemTimeZoneIdentifier, disambiguatedInstant).
  420. offset_nanoseconds = get_named_time_zone_offset_nanoseconds(system_time_zone_identifier, disambiguated_instant);
  421. }
  422. // 4. Let offsetMs be truncate(offsetNs / 10^6).
  423. auto offset_milliseconds = trunc(offset_nanoseconds / 1e6);
  424. // 5. Return t - ๐”ฝ(offsetMs).
  425. return time - offset_milliseconds;
  426. }
  427. // 21.4.1.27 MakeTime ( hour, min, sec, ms ), https://tc39.es/ecma262/#sec-maketime
  428. double make_time(double hour, double min, double sec, double ms)
  429. {
  430. // 1. If hour is not finite or min is not finite or sec is not finite or ms is not finite, return NaN.
  431. if (!isfinite(hour) || !isfinite(min) || !isfinite(sec) || !isfinite(ms))
  432. return NAN;
  433. // 2. Let h be ๐”ฝ(! ToIntegerOrInfinity(hour)).
  434. auto h = to_integer_or_infinity(hour);
  435. // 3. Let m be ๐”ฝ(! ToIntegerOrInfinity(min)).
  436. auto m = to_integer_or_infinity(min);
  437. // 4. Let s be ๐”ฝ(! ToIntegerOrInfinity(sec)).
  438. auto s = to_integer_or_infinity(sec);
  439. // 5. Let milli be ๐”ฝ(! ToIntegerOrInfinity(ms)).
  440. auto milli = to_integer_or_infinity(ms);
  441. // 6. Let t be ((h * msPerHour + m * msPerMinute) + s * msPerSecond) + milli, performing the arithmetic according to IEEE 754-2019 rules (that is, as if using the ECMAScript operators * and +).
  442. // NOTE: C++ arithmetic abides by IEEE 754 rules
  443. auto t = ((h * ms_per_hour + m * ms_per_minute) + s * ms_per_second) + milli;
  444. // 7. Return t.
  445. return t;
  446. }
  447. // 21.4.1.28 MakeDay ( year, month, date ), https://tc39.es/ecma262/#sec-makeday
  448. double make_day(double year, double month, double date)
  449. {
  450. // 1. If year is not finite or month is not finite or date is not finite, return NaN.
  451. if (!isfinite(year) || !isfinite(month) || !isfinite(date))
  452. return NAN;
  453. // 2. Let y be ๐”ฝ(! ToIntegerOrInfinity(year)).
  454. auto y = to_integer_or_infinity(year);
  455. // 3. Let m be ๐”ฝ(! ToIntegerOrInfinity(month)).
  456. auto m = to_integer_or_infinity(month);
  457. // 4. Let dt be ๐”ฝ(! ToIntegerOrInfinity(date)).
  458. auto dt = to_integer_or_infinity(date);
  459. // 5. Let ym be y + ๐”ฝ(floor(โ„(m) / 12)).
  460. auto ym = y + floor(m / 12);
  461. // 6. If ym is not finite, return NaN.
  462. if (!isfinite(ym))
  463. return NAN;
  464. // 7. Let mn be ๐”ฝ(โ„(m) modulo 12).
  465. auto mn = modulo(m, 12);
  466. // 8. Find a finite time value t such that YearFromTime(t) is ym and MonthFromTime(t) is mn and DateFromTime(t) is 1๐”ฝ; but if this is not possible (because some argument is out of range), return NaN.
  467. if (!AK::is_within_range<int>(ym) || !AK::is_within_range<int>(mn + 1))
  468. return NAN;
  469. auto t = days_since_epoch(static_cast<int>(ym), static_cast<int>(mn) + 1, 1) * ms_per_day;
  470. // 9. Return Day(t) + dt - 1๐”ฝ.
  471. return day(static_cast<double>(t)) + dt - 1;
  472. }
  473. // 21.4.1.29 MakeDate ( day, time ), https://tc39.es/ecma262/#sec-makedate
  474. double make_date(double day, double time)
  475. {
  476. // 1. If day is not finite or time is not finite, return NaN.
  477. if (!isfinite(day) || !isfinite(time))
  478. return NAN;
  479. // 2. Let tv be day ร— msPerDay + time.
  480. auto tv = day * ms_per_day + time;
  481. // 3. If tv is not finite, return NaN.
  482. if (!isfinite(tv))
  483. return NAN;
  484. // 4. Return tv.
  485. return tv;
  486. }
  487. // 21.4.1.31 TimeClip ( time ), https://tc39.es/ecma262/#sec-timeclip
  488. double time_clip(double time)
  489. {
  490. // 1. If time is not finite, return NaN.
  491. if (!isfinite(time))
  492. return NAN;
  493. // 2. If abs(โ„(time)) > 8.64 ร— 10^15, return NaN.
  494. if (fabs(time) > 8.64E15)
  495. return NAN;
  496. // 3. Return ๐”ฝ(! ToIntegerOrInfinity(time)).
  497. return to_integer_or_infinity(time);
  498. }
  499. // 21.4.1.33.1 IsTimeZoneOffsetString ( offsetString ), https://tc39.es/ecma262/#sec-istimezoneoffsetstring
  500. bool is_time_zone_offset_string(StringView offset_string)
  501. {
  502. // 1. Let parseResult be ParseText(StringToCodePoints(offsetString), UTCOffset).
  503. auto parse_result = Temporal::parse_iso8601(Temporal::Production::TimeZoneNumericUTCOffset, offset_string);
  504. // 2. If parseResult is a List of errors, return false.
  505. // 3. Return true.
  506. return parse_result.has_value();
  507. }
  508. // 21.4.1.33.2 ParseTimeZoneOffsetString ( offsetString ), https://tc39.es/ecma262/#sec-parsetimezoneoffsetstring
  509. double parse_time_zone_offset_string(StringView offset_string)
  510. {
  511. // 1. Let parseResult be ParseText(StringToCodePoints(offsetString), UTCOffset).
  512. auto parse_result = Temporal::parse_iso8601(Temporal::Production::TimeZoneNumericUTCOffset, offset_string);
  513. // 2. Assert: parseResult is not a List of errors.
  514. VERIFY(parse_result.has_value());
  515. // 3. Assert: parseResult contains a TemporalSign Parse Node.
  516. VERIFY(parse_result->time_zone_utc_offset_sign.has_value());
  517. // 4. Let parsedSign be the source text matched by the TemporalSign Parse Node contained within parseResult.
  518. auto parsed_sign = *parse_result->time_zone_utc_offset_sign;
  519. i8 sign { 0 };
  520. // 5. If parsedSign is the single code point U+002D (HYPHEN-MINUS) or U+2212 (MINUS SIGN), then
  521. if (parsed_sign.is_one_of("-"sv, "\xE2\x88\x92"sv)) {
  522. // a. Let sign be -1.
  523. sign = -1;
  524. }
  525. // 6. Else,
  526. else {
  527. // a. Let sign be 1.
  528. sign = 1;
  529. }
  530. // 7. NOTE: Applications of StringToNumber below do not lose precision, since each of the parsed values is guaranteed to be a sufficiently short string of decimal digits.
  531. // 8. Assert: parseResult contains an Hour Parse Node.
  532. VERIFY(parse_result->time_zone_utc_offset_hour.has_value());
  533. // 9. Let parsedHours be the source text matched by the Hour Parse Node contained within parseResult.
  534. auto parsed_hours = *parse_result->time_zone_utc_offset_hour;
  535. // 10. Let hours be โ„(StringToNumber(CodePointsToString(parsedHours))).
  536. auto hours = string_to_number(parsed_hours);
  537. double minutes { 0 };
  538. double seconds { 0 };
  539. double nanoseconds { 0 };
  540. // 11. If parseResult does not contain a MinuteSecond Parse Node, then
  541. if (!parse_result->time_zone_utc_offset_minute.has_value()) {
  542. // a. Let minutes be 0.
  543. minutes = 0;
  544. }
  545. // 12. Else,
  546. else {
  547. // a. Let parsedMinutes be the source text matched by the first MinuteSecond Parse Node contained within parseResult.
  548. auto parsed_minutes = *parse_result->time_zone_utc_offset_minute;
  549. // b. Let minutes be โ„(StringToNumber(CodePointsToString(parsedMinutes))).
  550. minutes = string_to_number(parsed_minutes);
  551. }
  552. // 13. If parseResult does not contain two MinuteSecond Parse Nodes, then
  553. if (!parse_result->time_zone_utc_offset_second.has_value()) {
  554. // a. Let seconds be 0.
  555. seconds = 0;
  556. }
  557. // 14. Else,
  558. else {
  559. // a. Let parsedSeconds be the source text matched by the second secondSecond Parse Node contained within parseResult.
  560. auto parsed_seconds = *parse_result->time_zone_utc_offset_second;
  561. // b. Let seconds be โ„(StringToNumber(CodePointsToString(parsedSeconds))).
  562. seconds = string_to_number(parsed_seconds);
  563. }
  564. // 15. If parseResult does not contain a TemporalDecimalFraction Parse Node, then
  565. if (!parse_result->time_zone_utc_offset_fraction.has_value()) {
  566. // a. Let nanoseconds be 0.
  567. nanoseconds = 0;
  568. }
  569. // 16. Else,
  570. else {
  571. // a. Let parsedFraction be the source text matched by the TemporalDecimalFraction Parse Node contained within parseResult.
  572. auto parsed_fraction = *parse_result->time_zone_utc_offset_fraction;
  573. // b. Let fraction be the string-concatenation of CodePointsToString(parsedFraction) and "000000000".
  574. auto fraction = DeprecatedString::formatted("{}000000000", parsed_fraction);
  575. // c. Let nanosecondsString be the substring of fraction from 1 to 10.
  576. auto nanoseconds_string = fraction.substring_view(1, 9);
  577. // d. Let nanoseconds be โ„(StringToNumber(nanosecondsString)).
  578. nanoseconds = string_to_number(nanoseconds_string);
  579. }
  580. // 17. Return sign ร— (((hours ร— 60 + minutes) ร— 60 + seconds) ร— 10^9 + nanoseconds).
  581. // NOTE: Using scientific notation (1e9) ensures the result of this expression is a double,
  582. // which is important - otherwise it's all integers and the result overflows!
  583. return sign * (((hours * 60 + minutes) * 60 + seconds) * 1e9 + nanoseconds);
  584. }
  585. }