PlainYearMonth.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. /*
  2. * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibJS/Runtime/AbstractOperations.h>
  7. #include <LibJS/Runtime/GlobalObject.h>
  8. #include <LibJS/Runtime/Temporal/AbstractOperations.h>
  9. #include <LibJS/Runtime/Temporal/Calendar.h>
  10. #include <LibJS/Runtime/Temporal/PlainDate.h>
  11. #include <LibJS/Runtime/Temporal/PlainYearMonth.h>
  12. #include <LibJS/Runtime/Temporal/PlainYearMonthConstructor.h>
  13. namespace JS::Temporal {
  14. // 9 Temporal.PlainYearMonth Objects, https://tc39.es/proposal-temporal/#sec-temporal-plainyearmonth-objects
  15. PlainYearMonth::PlainYearMonth(i32 iso_year, u8 iso_month, u8 iso_day, Object& calendar, Object& prototype)
  16. : Object(prototype)
  17. , m_iso_year(iso_year)
  18. , m_iso_month(iso_month)
  19. , m_iso_day(iso_day)
  20. , m_calendar(calendar)
  21. {
  22. }
  23. void PlainYearMonth::visit_edges(Visitor& visitor)
  24. {
  25. Base::visit_edges(visitor);
  26. visitor.visit(&m_calendar);
  27. }
  28. // 9.5.1 ToTemporalYearMonth ( item [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal-totemporalyearmonth
  29. ThrowCompletionOr<PlainYearMonth*> to_temporal_year_month(GlobalObject& global_object, Value item, Object* options)
  30. {
  31. auto& vm = global_object.vm();
  32. // 1. If options is not present, set options to ! OrdinaryObjectCreate(null).
  33. if (!options)
  34. options = Object::create(global_object, nullptr);
  35. // 2. Assert: Type(options) is Object.
  36. // 3. If Type(item) is Object, then
  37. if (item.is_object()) {
  38. auto& item_object = item.as_object();
  39. // a. If item has an [[InitializedTemporalYearMonth]] internal slot, then
  40. if (is<PlainYearMonth>(item_object)) {
  41. // i. Return item.
  42. return static_cast<PlainYearMonth*>(&item_object);
  43. }
  44. // b. Let calendar be ? GetTemporalCalendarWithISODefault(item).
  45. auto* calendar = TRY(get_temporal_calendar_with_iso_default(global_object, item_object));
  46. // c. Let fieldNames be ? CalendarFields(calendar, « "month", "monthCode", "year" »).
  47. auto field_names = TRY(calendar_fields(global_object, *calendar, { "month"sv, "monthCode"sv, "year"sv }));
  48. // d. Let fields be ? PrepareTemporalFields(item, fieldNames, «»).
  49. auto* fields = TRY(prepare_temporal_fields(global_object, item_object, field_names, {}));
  50. // e. Return ? YearMonthFromFields(calendar, fields, options).
  51. return year_month_from_fields(global_object, *calendar, *fields, options);
  52. }
  53. // 4. Perform ? ToTemporalOverflow(options).
  54. (void)TRY(to_temporal_overflow(global_object, *options));
  55. // 5. Let string be ? ToString(item).
  56. auto string = TRY(item.to_string(global_object));
  57. // 6. Let result be ? ParseTemporalYearMonthString(string).
  58. auto result = TRY(parse_temporal_year_month_string(global_object, string));
  59. // 7. Let calendar be ? ToTemporalCalendarWithISODefault(result.[[Calendar]]).
  60. auto* calendar = TRY(to_temporal_calendar_with_iso_default(global_object, result.calendar.has_value() ? js_string(vm, *result.calendar) : js_undefined()));
  61. // 8. Set result to ? CreateTemporalYearMonth(result.[[Year]], result.[[Month]], calendar, result.[[Day]]).
  62. auto* creation_result = TRY(create_temporal_year_month(global_object, result.year, result.month, *calendar, result.day));
  63. // 9. Let canonicalYearMonthOptions be ! OrdinaryObjectCreate(null).
  64. auto* canonical_year_month_options = Object::create(global_object, nullptr);
  65. // 10. Return ? YearMonthFromFields(calendar, result, canonicalYearMonthOptions).
  66. return year_month_from_fields(global_object, *calendar, *creation_result, canonical_year_month_options);
  67. }
  68. // 9.5.2 RegulateISOYearMonth ( year, month, overflow ), https://tc39.es/proposal-temporal/#sec-temporal-regulateisoyearmonth
  69. ThrowCompletionOr<ISOYearMonth> regulate_iso_year_month(GlobalObject& global_object, double year, double month, StringView overflow)
  70. {
  71. auto& vm = global_object.vm();
  72. // 1. Assert: year and month are integers.
  73. VERIFY(year == trunc(year) && month == trunc(month));
  74. // 2. Assert: overflow is either "constrain" or "reject".
  75. // NOTE: Asserted by the VERIFY_NOT_REACHED at the end
  76. // 3. If overflow is "constrain", then
  77. if (overflow == "constrain"sv) {
  78. // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat `year` (a double) as normal integer from this point onwards.
  79. // This does not change the exposed behavior as the subsequent call to CreateTemporalYearMonth will check that its value is a valid ISO
  80. // values (for years: -273975 - 273975) which is a subset of this check.
  81. // If RegulateISOYearMonth is ever used outside ISOYearMonthFromFields, this may need to be changed.
  82. if (!AK::is_within_range<i32>(year))
  83. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidPlainYearMonth);
  84. // a. Return ! ConstrainISOYearMonth(year, month).
  85. return constrain_iso_year_month(year, month);
  86. }
  87. // 4. If overflow is "reject", then
  88. if (overflow == "reject"sv) {
  89. // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat these doubles as normal integers from this point onwards.
  90. // This does not change the exposed behavior as the call to IsValidISOMonth and subsequent call to CreateTemporalDateTime will check
  91. // that these values are valid ISO values (for years: -273975 - 273975, for months: 1 - 12) all of which are subsets of this check.
  92. if (!AK::is_within_range<i32>(year) || !AK::is_within_range<u8>(month))
  93. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidPlainYearMonth);
  94. // a. If ! IsValidISOMonth(month) is false, throw a RangeError exception.
  95. if (!is_valid_iso_month(month))
  96. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidPlainYearMonth);
  97. // b. Return the Record { [[Year]]: year, [[Month]]: month }.
  98. return ISOYearMonth { .year = static_cast<i32>(year), .month = static_cast<u8>(month), .reference_iso_day = 0 };
  99. }
  100. VERIFY_NOT_REACHED();
  101. }
  102. // 9.5.3 IsValidISOMonth ( month ), https://tc39.es/proposal-temporal/#sec-temporal-isvalidisomonth
  103. bool is_valid_iso_month(u8 month)
  104. {
  105. // 1. Assert: month is an integer.
  106. // 2. If month < 1 or month > 12, then
  107. if (month < 1 || month > 12) {
  108. // a.Return false.
  109. return false;
  110. }
  111. // 3. Return true.
  112. return true;
  113. }
  114. // 9.5.4 ISOYearMonthWithinLimits ( year, month ), https://tc39.es/proposal-temporal/#sec-temporal-isoyearmonthwithinlimits
  115. bool iso_year_month_within_limits(i32 year, u8 month)
  116. {
  117. // 1. Assert: year and month are integers.
  118. // 2. If year < −271821 or year > 275760, then
  119. if (year < -271821 || year > 275760) {
  120. // a. Return false.
  121. return false;
  122. }
  123. // 3. If year is −271821 and month < 4, then
  124. if (year == -271821 && month < 4) {
  125. // a. Return false.
  126. return false;
  127. }
  128. // 4. If year is 275760 and month > 9, then
  129. if (year == 275760 && month > 9) {
  130. // a. Return false.
  131. return false;
  132. }
  133. // 5. Return true.
  134. return true;
  135. }
  136. // 9.5.5 BalanceISOYearMonth ( year, month ), https://tc39.es/proposal-temporal/#sec-temporal-balanceisoyearmonth
  137. ISOYearMonth balance_iso_year_month(double year, double month)
  138. {
  139. // 1. Assert: year and month are integers.
  140. VERIFY(year == trunc(year) && month == trunc(month));
  141. // 2. Set year to year + floor((month - 1) / 12).
  142. year += floor((month - 1) / 12);
  143. // 3. Set month to (month − 1) modulo 12 + 1.
  144. month = fmod(month - 1, 12) + 1;
  145. // 4. Return the Record { [[Year]]: year, [[Month]]: month }.
  146. return ISOYearMonth { .year = static_cast<i32>(year), .month = static_cast<u8>(month), .reference_iso_day = 0 };
  147. }
  148. // 9.5.6 ConstrainISOYearMonth ( year, month ), https://tc39.es/proposal-temporal/#sec-temporal-constrainisoyearmonth
  149. ISOYearMonth constrain_iso_year_month(double year, double month)
  150. {
  151. // 1. Assert: year and month are integers.
  152. VERIFY(year == trunc(year) && month == trunc(month));
  153. // 2. Set month to ! ConstrainToRange(month, 1, 12).
  154. month = constrain_to_range(month, 1, 12);
  155. // 3. Return the Record { [[Year]]: year, [[Month]]: month }.
  156. // NOTE: `year` is known to be in the i32 range.
  157. return ISOYearMonth { .year = static_cast<i32>(year), .month = static_cast<u8>(month), .reference_iso_day = 0 };
  158. }
  159. // 9.5.7 CreateTemporalYearMonth ( isoYear, isoMonth, calendar, referenceISODay [ , newTarget ] ), https://tc39.es/proposal-temporal/#sec-temporal-createtemporalyearmonth
  160. ThrowCompletionOr<PlainYearMonth*> create_temporal_year_month(GlobalObject& global_object, i32 iso_year, u8 iso_month, Object& calendar, u8 reference_iso_day, FunctionObject const* new_target)
  161. {
  162. auto& vm = global_object.vm();
  163. // 1. Assert: isoYear, isoMonth, and referenceISODay are integers.
  164. // 2. Assert: Type(calendar) is Object.
  165. // 3. If ! IsValidISODate(isoYear, isoMonth, referenceISODay) is false, throw a RangeError exception.
  166. if (!is_valid_iso_date(iso_year, iso_month, reference_iso_day))
  167. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidPlainYearMonth);
  168. // 4. If ! ISOYearMonthWithinLimits(isoYear, isoMonth) is false, throw a RangeError exception.
  169. if (!iso_year_month_within_limits(iso_year, iso_month))
  170. return vm.throw_completion<RangeError>(global_object, ErrorType::TemporalInvalidPlainYearMonth);
  171. // 5. If newTarget is not present, set it to %Temporal.PlainYearMonth%.
  172. if (!new_target)
  173. new_target = global_object.temporal_plain_year_month_constructor();
  174. // 6. Let object be ? OrdinaryCreateFromConstructor(newTarget, "%Temporal.PlainYearMonth.prototype%", « [[InitializedTemporalYearMonth]], [[ISOYear]], [[ISOMonth]], [[ISODay]], [[Calendar]] »).
  175. // 7. Set object.[[ISOYear]] to isoYear.
  176. // 8. Set object.[[ISOMonth]] to isoMonth.
  177. // 9. Set object.[[Calendar]] to calendar.
  178. // 10. Set object.[[ISODay]] to referenceISODay.
  179. auto* object = TRY(ordinary_create_from_constructor<PlainYearMonth>(global_object, *new_target, &GlobalObject::temporal_plain_year_month_prototype, iso_year, iso_month, reference_iso_day, calendar));
  180. // 11. Return object.
  181. return object;
  182. }
  183. // 9.5.8 TemporalYearMonthToString ( yearMonth, showCalendar ), https://tc39.es/proposal-temporal/#sec-temporal-temporalyearmonthtostring
  184. ThrowCompletionOr<String> temporal_year_month_to_string(GlobalObject& global_object, PlainYearMonth& year_month, StringView show_calendar)
  185. {
  186. // 1. Assert: Type(yearMonth) is Object.
  187. // 2. Assert: yearMonth has an [[InitializedTemporalYearMonth]] internal slot.
  188. // 3. Let year be ! PadISOYear(yearMonth.[[ISOYear]]).
  189. // 4. Let month be yearMonth.[[ISOMonth]] formatted as a two-digit decimal number, padded to the left with a zero if necessary.
  190. // 5. Let result be the string-concatenation of year, the code unit 0x002D (HYPHEN-MINUS), and month.
  191. auto result = String::formatted("{}-{:02}", pad_iso_year(year_month.iso_year()), year_month.iso_month());
  192. // 6. Let calendarID be ? ToString(yearMonth.[[Calendar]]).
  193. auto calendar_id = TRY(Value(&year_month.calendar()).to_string(global_object));
  194. // 7. If calendarID is not "iso8601", then
  195. if (calendar_id != "iso8601") {
  196. // a. Let day be yearMonth.[[ISODay]] formatted as a two-digit decimal number, padded to the left with a zero if necessary.
  197. // b. Set result to the string-concatenation of result, the code unit 0x002D (HYPHEN-MINUS), and day.
  198. result = String::formatted("{}-{:02}", result, year_month.iso_day());
  199. }
  200. // 8. Let calendarString be ! FormatCalendarAnnotation(calendarID, showCalendar).
  201. auto calendar_string = format_calendar_annotation(calendar_id, show_calendar);
  202. // 9. Set result to the string-concatenation of result and calendarString.
  203. // 10. Return result.
  204. return String::formatted("{}{}", result, calendar_string);
  205. }
  206. }