PlainDate.h 1.9 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, Shannon Booth <shannon@serenityos.org>
  5. * Copyright (c) 2024, Tim Flynn <trflynn89@ladybird.org>
  6. *
  7. * SPDX-License-Identifier: BSD-2-Clause
  8. */
  9. #pragma once
  10. #include <AK/Types.h>
  11. #include <LibJS/Runtime/Completion.h>
  12. #include <LibJS/Runtime/Object.h>
  13. #include <LibJS/Runtime/Temporal/AbstractOperations.h>
  14. namespace JS::Temporal {
  15. // 3.5.1 ISO Date Records, https://tc39.es/proposal-temporal/#sec-temporal-iso-date-records
  16. struct ISODate {
  17. i32 year { 0 };
  18. u8 month { 0 };
  19. u8 day { 0 };
  20. };
  21. class PlainDate final : public Object {
  22. JS_OBJECT(PlainDate, Object);
  23. GC_DECLARE_ALLOCATOR(PlainDate);
  24. public:
  25. virtual ~PlainDate() override = default;
  26. [[nodiscard]] ISODate iso_date() const { return m_iso_date; }
  27. [[nodiscard]] String const& calendar() const { return m_calendar; }
  28. private:
  29. PlainDate(ISODate, String calendar, Object& prototype);
  30. ISODate m_iso_date; // [[ISODate]]
  31. String m_calendar; // [[Calendar]]
  32. };
  33. ISODate create_iso_date_record(double year, double month, double day);
  34. ThrowCompletionOr<GC::Ref<PlainDate>> to_temporal_date(VM& vm, Value item, Value options = js_undefined());
  35. ThrowCompletionOr<GC::Ref<PlainDate>> create_temporal_date(VM&, ISODate, String calendar, GC::Ptr<FunctionObject> new_target = {});
  36. bool iso_date_surpasses(i8 sign, double year1, double month1, double day1, ISODate iso_date2);
  37. ThrowCompletionOr<ISODate> regulate_iso_date(VM& vm, double year, double month, double day, Overflow overflow);
  38. bool is_valid_iso_date(double year, double month, double day);
  39. ISODate balance_iso_date(double year, double month, double day);
  40. String pad_iso_year(i32 year);
  41. String temporal_date_to_string(PlainDate const&, ShowCalendar);
  42. bool iso_date_within_limits(ISODate);
  43. i8 compare_iso_date(ISODate, ISODate);
  44. }