PlainTimeConstructor.cpp 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /*
  2. * Copyright (c) 2021, Linus Groh <linusg@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <AK/TypeCasts.h>
  7. #include <LibJS/Runtime/GlobalObject.h>
  8. #include <LibJS/Runtime/Temporal/AbstractOperations.h>
  9. #include <LibJS/Runtime/Temporal/PlainTime.h>
  10. #include <LibJS/Runtime/Temporal/PlainTimeConstructor.h>
  11. namespace JS::Temporal {
  12. // 4.1 The Temporal.PlainTime Constructor, https://tc39.es/proposal-temporal/#sec-temporal-plaintime-constructor
  13. PlainTimeConstructor::PlainTimeConstructor(GlobalObject& global_object)
  14. : NativeFunction(vm().names.PlainTime.as_string(), *global_object.function_prototype())
  15. {
  16. }
  17. void PlainTimeConstructor::initialize(GlobalObject& global_object)
  18. {
  19. NativeFunction::initialize(global_object);
  20. auto& vm = this->vm();
  21. // 4.2.1 Temporal.PlainTime.prototype, https://tc39.es/proposal-temporal/#sec-temporal-plaintime-prototype
  22. define_direct_property(vm.names.prototype, global_object.temporal_plain_time_prototype(), 0);
  23. u8 attr = Attribute::Writable | Attribute::Configurable;
  24. define_native_function(vm.names.from, from, 1, attr);
  25. define_native_function(vm.names.compare, compare, 2, attr);
  26. define_direct_property(vm.names.length, Value(0), Attribute::Configurable);
  27. }
  28. // 4.1.1 Temporal.PlainTime ( [ hour [ , minute [ , second [ , millisecond [ , microsecond [ , nanosecond ] ] ] ] ] ] ), https://tc39.es/proposal-temporal/#sec-temporal.plaintime
  29. Value PlainTimeConstructor::call()
  30. {
  31. auto& vm = this->vm();
  32. // 1. If NewTarget is undefined, throw a TypeError exception.
  33. vm.throw_exception<TypeError>(global_object(), ErrorType::ConstructorWithoutNew, "Temporal.PlainTime");
  34. return {};
  35. }
  36. // 4.1.1 Temporal.PlainTime ( [ hour [ , minute [ , second [ , millisecond [ , microsecond [ , nanosecond ] ] ] ] ] ] ), https://tc39.es/proposal-temporal/#sec-temporal.plaintime
  37. Value PlainTimeConstructor::construct(FunctionObject& new_target)
  38. {
  39. auto& vm = this->vm();
  40. auto& global_object = this->global_object();
  41. // 2. Let hour be ? ToIntegerThrowOnInfinity(hour).
  42. auto hour = TRY_OR_DISCARD(to_integer_throw_on_infinity(global_object, vm.argument(0), ErrorType::TemporalInvalidPlainTime));
  43. // 3. Let minute be ? ToIntegerThrowOnInfinity(hour).
  44. auto minute = TRY_OR_DISCARD(to_integer_throw_on_infinity(global_object, vm.argument(1), ErrorType::TemporalInvalidPlainTime));
  45. // 4. Let second be ? ToIntegerThrowOnInfinity(hour).
  46. auto second = TRY_OR_DISCARD(to_integer_throw_on_infinity(global_object, vm.argument(2), ErrorType::TemporalInvalidPlainTime));
  47. // 5. Let millisecond be ? ToIntegerThrowOnInfinity(hour).
  48. auto millisecond = TRY_OR_DISCARD(to_integer_throw_on_infinity(global_object, vm.argument(3), ErrorType::TemporalInvalidPlainTime));
  49. // 6. Let microsecond be ? ToIntegerThrowOnInfinity(hour).
  50. auto microsecond = TRY_OR_DISCARD(to_integer_throw_on_infinity(global_object, vm.argument(4), ErrorType::TemporalInvalidPlainTime));
  51. // 7. Let nanosecond be ? ToIntegerThrowOnInfinity(hour).
  52. auto nanosecond = TRY_OR_DISCARD(to_integer_throw_on_infinity(global_object, vm.argument(5), ErrorType::TemporalInvalidPlainTime));
  53. // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat these doubles as normal integers from this point onwards.
  54. // This does not change the exposed behavior as the call to CreateTemporalTime will immediately check that these values are valid
  55. // ISO values (for hours: 0 - 23, for minutes and seconds: 0 - 59, milliseconds, microseconds, and nanoseconds: 0 - 999) all of which
  56. // are subsets of this check.
  57. if (!AK::is_within_range<u8>(hour) || !AK::is_within_range<u8>(minute) || !AK::is_within_range<u8>(second) || !AK::is_within_range<u16>(millisecond) || !AK::is_within_range<u16>(microsecond) || !AK::is_within_range<u16>(nanosecond)) {
  58. vm.throw_exception<RangeError>(global_object, ErrorType::TemporalInvalidPlainTime);
  59. return {};
  60. }
  61. // 8. Return ? CreateTemporalTime(hour, minute, second, millisecond, microsecond, nanosecond, NewTarget).
  62. return TRY_OR_DISCARD(create_temporal_time(global_object, hour, minute, second, millisecond, microsecond, nanosecond, &new_target));
  63. }
  64. // 4.2.2 Temporal.PlainTime.from ( item [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal.plaintime.from
  65. JS_DEFINE_NATIVE_FUNCTION(PlainTimeConstructor::from)
  66. {
  67. // 1. Set options to ? GetOptionsObject(options).
  68. auto* options = TRY_OR_DISCARD(get_options_object(global_object, vm.argument(1)));
  69. // 2. Let overflow be ? ToTemporalOverflow(options).
  70. auto overflow = TRY_OR_DISCARD(to_temporal_overflow(global_object, *options));
  71. auto item = vm.argument(0);
  72. // 3. If Type(item) is Object and item has an [[InitializedTemporalTime]] internal slot, then
  73. if (item.is_object() && is<PlainTime>(item.as_object())) {
  74. auto& plain_time = static_cast<PlainTime&>(item.as_object());
  75. // a. Return ? CreateTemporalTime(item.[[ISOHour]], item.[[ISOMinute]], item.[[ISOSecond]], item.[[ISOMillisecond]], item.[[ISOMicrosecond]], item.[[ISONanosecond]]).
  76. return TRY_OR_DISCARD(create_temporal_time(global_object, plain_time.iso_hour(), plain_time.iso_minute(), plain_time.iso_second(), plain_time.iso_millisecond(), plain_time.iso_microsecond(), plain_time.iso_nanosecond()));
  77. }
  78. // 4. Return ? ToTemporalTime(item, overflow).
  79. return TRY_OR_DISCARD(to_temporal_time(global_object, item, overflow));
  80. }
  81. // 4.2.3 Temporal.PlainTime.compare ( one, two ), https://tc39.es/proposal-temporal/#sec-temporal.plaintime.compare
  82. JS_DEFINE_NATIVE_FUNCTION(PlainTimeConstructor::compare)
  83. {
  84. // 1. Set one to ? ToTemporalTime(one).
  85. auto* one = TRY_OR_DISCARD(to_temporal_time(global_object, vm.argument(0)));
  86. // 2. Set two to ? ToTemporalTime(two).
  87. auto* two = TRY_OR_DISCARD(to_temporal_time(global_object, vm.argument(1)));
  88. // 3. Return 𝔽(! CompareTemporalTime(one.[[ISOHour]], one.[[ISOMinute]], one.[[ISOSecond]], one.[[ISOMillisecond]], one.[[ISOMicrosecond]], one.[[ISONanosecond]], two.[[ISOHour]], two.[[ISOMinute]], two.[[ISOSecond]], two.[[ISOMillisecond]], two.[[ISOMicrosecond]], two.[[ISONanosecond]])).
  89. return Value(compare_temporal_time(one->iso_hour(), one->iso_minute(), one->iso_second(), one->iso_millisecond(), one->iso_microsecond(), one->iso_nanosecond(), two->iso_hour(), two->iso_minute(), two->iso_second(), two->iso_millisecond(), two->iso_microsecond(), two->iso_nanosecond()));
  90. }
  91. }