PlainDateTime.cpp 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
  3. * Copyright (c) 2021-2023, Linus Groh <linusg@serenityos.org>
  4. * Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
  5. *
  6. * SPDX-License-Identifier: BSD-2-Clause
  7. */
  8. #include <LibJS/Runtime/Temporal/AbstractOperations.h>
  9. #include <LibJS/Runtime/Temporal/Instant.h>
  10. #include <LibJS/Runtime/Temporal/PlainDateTime.h>
  11. namespace JS::Temporal {
  12. // 5.5.3 CombineISODateAndTimeRecord ( isoDate, time ), https://tc39.es/proposal-temporal/#sec-temporal-combineisodateandtimerecord
  13. ISODateTime combine_iso_date_and_time_record(ISODate iso_date, Time time)
  14. {
  15. // 1. NOTE: time.[[Days]] is ignored.
  16. // 2. Return ISO Date-Time Record { [[ISODate]]: isoDate, [[Time]]: time }.
  17. return { .iso_date = iso_date, .time = time };
  18. }
  19. // nsMinInstant - nsPerDay
  20. static auto const DATETIME_NANOSECONDS_MIN = "-8640000086400000000000"_sbigint;
  21. // nsMaxInstant + nsPerDay
  22. static auto const DATETIME_NANOSECONDS_MAX = "8640000086400000000000"_sbigint;
  23. // 5.5.4 ISODateTimeWithinLimits ( isoDateTime ), https://tc39.es/proposal-temporal/#sec-temporal-isodatetimewithinlimits
  24. bool iso_date_time_within_limits(ISODateTime iso_date_time)
  25. {
  26. // 1. If abs(ISODateToEpochDays(isoDateTime.[[ISODate]].[[Year]], isoDateTime.[[ISODate]].[[Month]] - 1, isoDateTime.[[ISODate]].[[Day]])) > 10**8 + 1, return false.
  27. if (fabs(iso_date_to_epoch_days(iso_date_time.iso_date.year, iso_date_time.iso_date.month - 1, iso_date_time.iso_date.day)) > 100000001)
  28. return false;
  29. // 2. Let ns be ℝ(GetUTCEpochNanoseconds(isoDateTime)).
  30. auto nanoseconds = get_utc_epoch_nanoseconds(iso_date_time);
  31. // 3. If ns ≤ nsMinInstant - nsPerDay, then
  32. if (nanoseconds <= DATETIME_NANOSECONDS_MIN) {
  33. // a. Return false.
  34. return false;
  35. }
  36. // 4. If ns ≥ nsMaxInstant + nsPerDay, then
  37. if (nanoseconds >= DATETIME_NANOSECONDS_MAX) {
  38. // a. Return false.
  39. return false;
  40. }
  41. // 5. Return true.
  42. return true;
  43. }
  44. }