PlainTimeConstructor.cpp 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. /*
  2. * Copyright (c) 2021-2022, 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(Realm& realm)
  14. : NativeFunction(realm.vm().names.PlainTime.as_string(), *realm.intrinsics().function_prototype())
  15. {
  16. }
  17. void PlainTimeConstructor::initialize(Realm& realm)
  18. {
  19. NativeFunction::initialize(realm);
  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, realm.intrinsics().temporal_plain_time_prototype(), 0);
  23. u8 attr = Attribute::Writable | Attribute::Configurable;
  24. define_native_function(realm, vm.names.from, from, 1, attr);
  25. define_native_function(realm, 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. ThrowCompletionOr<Value> PlainTimeConstructor::call()
  30. {
  31. auto& vm = this->vm();
  32. // 1. If NewTarget is undefined, throw a TypeError exception.
  33. return vm.throw_completion<TypeError>(ErrorType::ConstructorWithoutNew, "Temporal.PlainTime");
  34. }
  35. // 4.1.1 Temporal.PlainTime ( [ hour [ , minute [ , second [ , millisecond [ , microsecond [ , nanosecond ] ] ] ] ] ] ), https://tc39.es/proposal-temporal/#sec-temporal.plaintime
  36. ThrowCompletionOr<Object*> PlainTimeConstructor::construct(FunctionObject& new_target)
  37. {
  38. auto& vm = this->vm();
  39. // 2. Let hour be ? ToIntegerThrowOnInfinity(hour).
  40. auto hour = TRY(to_integer_throw_on_infinity(vm, vm.argument(0), ErrorType::TemporalInvalidPlainTime));
  41. // 3. Let minute be ? ToIntegerThrowOnInfinity(hour).
  42. auto minute = TRY(to_integer_throw_on_infinity(vm, vm.argument(1), ErrorType::TemporalInvalidPlainTime));
  43. // 4. Let second be ? ToIntegerThrowOnInfinity(hour).
  44. auto second = TRY(to_integer_throw_on_infinity(vm, vm.argument(2), ErrorType::TemporalInvalidPlainTime));
  45. // 5. Let millisecond be ? ToIntegerThrowOnInfinity(hour).
  46. auto millisecond = TRY(to_integer_throw_on_infinity(vm, vm.argument(3), ErrorType::TemporalInvalidPlainTime));
  47. // 6. Let microsecond be ? ToIntegerThrowOnInfinity(hour).
  48. auto microsecond = TRY(to_integer_throw_on_infinity(vm, vm.argument(4), ErrorType::TemporalInvalidPlainTime));
  49. // 7. Let nanosecond be ? ToIntegerThrowOnInfinity(hour).
  50. auto nanosecond = TRY(to_integer_throw_on_infinity(vm, vm.argument(5), ErrorType::TemporalInvalidPlainTime));
  51. // IMPLEMENTATION DEFINED: This is an optimization that allows us to treat these doubles as normal integers from this point onwards.
  52. // This does not change the exposed behavior as the call to CreateTemporalTime will immediately check that these values are valid
  53. // ISO values (for hours: 0 - 23, for minutes and seconds: 0 - 59, milliseconds, microseconds, and nanoseconds: 0 - 999) all of which
  54. // are subsets of this check.
  55. 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))
  56. return vm.throw_completion<RangeError>(ErrorType::TemporalInvalidPlainTime);
  57. // 8. Return ? CreateTemporalTime(hour, minute, second, millisecond, microsecond, nanosecond, NewTarget).
  58. return TRY(create_temporal_time(vm, hour, minute, second, millisecond, microsecond, nanosecond, &new_target));
  59. }
  60. // 4.2.2 Temporal.PlainTime.from ( item [ , options ] ), https://tc39.es/proposal-temporal/#sec-temporal.plaintime.from
  61. JS_DEFINE_NATIVE_FUNCTION(PlainTimeConstructor::from)
  62. {
  63. // 1. Set options to ? GetOptionsObject(options).
  64. auto* options = TRY(get_options_object(vm, vm.argument(1)));
  65. // 2. Let overflow be ? ToTemporalOverflow(options).
  66. auto overflow = TRY(to_temporal_overflow(vm, options));
  67. auto item = vm.argument(0);
  68. // 3. If Type(item) is Object and item has an [[InitializedTemporalTime]] internal slot, then
  69. if (item.is_object() && is<PlainTime>(item.as_object())) {
  70. auto& plain_time = static_cast<PlainTime&>(item.as_object());
  71. // a. Return ! CreateTemporalTime(item.[[ISOHour]], item.[[ISOMinute]], item.[[ISOSecond]], item.[[ISOMillisecond]], item.[[ISOMicrosecond]], item.[[ISONanosecond]]).
  72. return MUST(create_temporal_time(vm, plain_time.iso_hour(), plain_time.iso_minute(), plain_time.iso_second(), plain_time.iso_millisecond(), plain_time.iso_microsecond(), plain_time.iso_nanosecond()));
  73. }
  74. // 4. Return ? ToTemporalTime(item, overflow).
  75. return TRY(to_temporal_time(vm, item, overflow));
  76. }
  77. // 4.2.3 Temporal.PlainTime.compare ( one, two ), https://tc39.es/proposal-temporal/#sec-temporal.plaintime.compare
  78. JS_DEFINE_NATIVE_FUNCTION(PlainTimeConstructor::compare)
  79. {
  80. // 1. Set one to ? ToTemporalTime(one).
  81. auto* one = TRY(to_temporal_time(vm, vm.argument(0)));
  82. // 2. Set two to ? ToTemporalTime(two).
  83. auto* two = TRY(to_temporal_time(vm, vm.argument(1)));
  84. // 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]])).
  85. 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()));
  86. }
  87. }