2021-06-13 22:47:08 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2021, Idan Horowitz <idan.horowitz@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2022-06-26 21:33:22 +00:00
|
|
|
#include <AK/Checked.h>
|
2022-11-23 12:41:50 +00:00
|
|
|
#include <AK/TypeCasts.h>
|
2021-06-20 00:09:39 +00:00
|
|
|
#include <LibJS/Runtime/AbstractOperations.h>
|
2021-06-13 22:47:08 +00:00
|
|
|
#include <LibJS/Runtime/DataView.h>
|
|
|
|
#include <LibJS/Runtime/DataViewConstructor.h>
|
|
|
|
#include <LibJS/Runtime/Error.h>
|
|
|
|
#include <LibJS/Runtime/GlobalObject.h>
|
|
|
|
|
|
|
|
namespace JS {
|
|
|
|
|
2022-08-15 23:20:49 +00:00
|
|
|
DataViewConstructor::DataViewConstructor(Realm& realm)
|
2022-09-14 23:10:27 +00:00
|
|
|
: NativeFunction(realm.vm().names.DataView.as_string(), *realm.intrinsics().function_prototype())
|
2021-06-13 22:47:08 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-08-15 23:20:49 +00:00
|
|
|
void DataViewConstructor::initialize(Realm& realm)
|
2021-06-13 22:47:08 +00:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2022-08-15 23:20:49 +00:00
|
|
|
NativeFunction::initialize(realm);
|
2021-06-13 22:47:08 +00:00
|
|
|
|
|
|
|
// 25.3.3.1 DataView.prototype, https://tc39.es/ecma262/#sec-dataview.prototype
|
2022-08-26 23:54:55 +00:00
|
|
|
define_direct_property(vm.names.prototype, realm.intrinsics().data_view_prototype(), 0);
|
2021-06-13 22:47:08 +00:00
|
|
|
|
2021-07-05 23:15:08 +00:00
|
|
|
define_direct_property(vm.names.length, Value(1), Attribute::Configurable);
|
2021-06-13 22:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 25.3.2.1 DataView ( buffer [ , byteOffset [ , byteLength ] ] ), https://tc39.es/ecma262/#sec-dataview-buffer-byteoffset-bytelength
|
2021-10-20 20:16:30 +00:00
|
|
|
ThrowCompletionOr<Value> DataViewConstructor::call()
|
2021-06-13 22:47:08 +00:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::ConstructorWithoutNew, vm.names.DataView);
|
2021-06-13 22:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 25.3.2.1 DataView ( buffer [ , byteOffset [ , byteLength ] ] ), https://tc39.es/ecma262/#sec-dataview-buffer-byteoffset-bytelength
|
2021-10-20 20:16:30 +00:00
|
|
|
ThrowCompletionOr<Object*> DataViewConstructor::construct(FunctionObject& new_target)
|
2021-06-13 22:47:08 +00:00
|
|
|
{
|
|
|
|
auto& vm = this->vm();
|
2021-06-20 00:09:39 +00:00
|
|
|
|
2021-06-13 22:47:08 +00:00
|
|
|
auto buffer = vm.argument(0);
|
2021-10-20 20:16:30 +00:00
|
|
|
if (!buffer.is_object() || !is<ArrayBuffer>(buffer.as_object()))
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::IsNotAn, buffer.to_string_without_side_effects(), vm.names.ArrayBuffer);
|
2021-10-20 20:16:30 +00:00
|
|
|
|
2021-06-13 22:47:08 +00:00
|
|
|
auto& array_buffer = static_cast<ArrayBuffer&>(buffer.as_object());
|
|
|
|
|
2022-08-21 13:00:56 +00:00
|
|
|
auto offset = TRY(vm.argument(1).to_index(vm));
|
2021-06-13 22:47:08 +00:00
|
|
|
|
2021-10-20 20:16:30 +00:00
|
|
|
if (array_buffer.is_detached())
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::DetachedArrayBuffer);
|
2021-06-13 22:47:08 +00:00
|
|
|
|
|
|
|
auto buffer_byte_length = array_buffer.byte_length();
|
2021-10-20 20:16:30 +00:00
|
|
|
if (offset > buffer_byte_length)
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<RangeError>(ErrorType::DataViewOutOfRangeByteOffset, offset, buffer_byte_length);
|
2021-06-13 22:47:08 +00:00
|
|
|
|
|
|
|
size_t view_byte_length;
|
|
|
|
if (vm.argument(2).is_undefined()) {
|
|
|
|
view_byte_length = buffer_byte_length - offset;
|
|
|
|
} else {
|
2022-08-21 13:00:56 +00:00
|
|
|
view_byte_length = TRY(vm.argument(2).to_index(vm));
|
2022-06-26 21:33:22 +00:00
|
|
|
auto const checked_add = AK::make_checked(view_byte_length) + AK::make_checked(offset);
|
|
|
|
if (checked_add.has_overflow() || checked_add.value() > buffer_byte_length)
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<RangeError>(ErrorType::InvalidLength, vm.names.DataView);
|
2021-06-13 22:47:08 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 18:34:32 +00:00
|
|
|
auto data_view = TRY(ordinary_create_from_constructor<DataView>(vm, new_target, &Intrinsics::data_view_prototype, &array_buffer, view_byte_length, offset));
|
2021-06-20 00:09:39 +00:00
|
|
|
|
2021-10-20 20:16:30 +00:00
|
|
|
if (array_buffer.is_detached())
|
2022-08-16 19:33:17 +00:00
|
|
|
return vm.throw_completion<TypeError>(ErrorType::DetachedArrayBuffer);
|
2021-06-13 22:47:08 +00:00
|
|
|
|
2022-12-14 18:34:32 +00:00
|
|
|
return data_view.ptr();
|
2021-06-13 22:47:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|