mirror of
https://github.com/RGBCube/serenity
synced 2025-05-19 00:25:07 +00:00

This is a continuation of the previous two commits. As allocating a JS cell already primarily involves a realm instead of a global object, and we'll need to pass one to the allocate() function itself eventually (it's bridged via the global object right now), the create() functions need to receive a realm as well. The plan is for this to be the highest-level function that actually receives a realm and passes it around, AOs on an even higher level will use the "current realm" concept via VM::current_realm() as that's what the spec assumes; passing around realms (or global objects, for that matter) on higher AO levels is pointless and unlike for allocating individual objects, which may happen outside of regular JS execution, we don't need control over the specific realm that is being used there.
56 lines
2.1 KiB
C++
56 lines
2.1 KiB
C++
/*
|
||
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
|
||
*
|
||
* SPDX-License-Identifier: BSD-2-Clause
|
||
*/
|
||
|
||
#include <LibJS/Runtime/Array.h>
|
||
#include <LibJS/Runtime/IteratorOperations.h>
|
||
#include <LibWeb/Bindings/HeadersIteratorWrapper.h>
|
||
#include <LibWeb/Bindings/Wrapper.h>
|
||
#include <LibWeb/Fetch/HeadersIterator.h>
|
||
|
||
namespace Web::Fetch {
|
||
|
||
// https://webidl.spec.whatwg.org/#es-iterable, Step 2
|
||
JS::ThrowCompletionOr<JS::Object*> HeadersIterator::next()
|
||
{
|
||
auto& global_object = wrapper()->global_object();
|
||
auto& vm = global_object.vm();
|
||
auto& realm = *global_object.associated_realm();
|
||
|
||
// The value pairs to iterate over are the return value of running sort and combine with this’s header list.
|
||
auto value_pairs_to_iterate_over = [&]() -> JS::ThrowCompletionOr<Vector<Fetch::Infrastructure::Header>> {
|
||
auto headers_or_error = m_headers.m_header_list.sort_and_combine();
|
||
if (headers_or_error.is_error())
|
||
return vm.throw_completion<JS::InternalError>(global_object, JS::ErrorType::NotEnoughMemoryToAllocate);
|
||
return headers_or_error.release_value();
|
||
};
|
||
|
||
auto pairs = TRY(value_pairs_to_iterate_over());
|
||
|
||
if (m_index >= pairs.size())
|
||
return create_iterator_result_object(global_object, JS::js_undefined(), true);
|
||
|
||
auto const& pair = pairs[m_index++];
|
||
|
||
switch (m_iteration_kind) {
|
||
case JS::Object::PropertyKind::Key:
|
||
return create_iterator_result_object(global_object, JS::js_string(vm, StringView { pair.name }), false);
|
||
case JS::Object::PropertyKind::Value:
|
||
return create_iterator_result_object(global_object, JS::js_string(vm, StringView { pair.value }), false);
|
||
case JS::Object::PropertyKind::KeyAndValue: {
|
||
auto* array = JS::Array::create_from(realm, { JS::js_string(vm, StringView { pair.name }), JS::js_string(vm, StringView { pair.value }) });
|
||
return create_iterator_result_object(global_object, array, false);
|
||
}
|
||
default:
|
||
VERIFY_NOT_REACHED();
|
||
}
|
||
}
|
||
|
||
void HeadersIterator::visit_edges(JS::Cell::Visitor& visitor)
|
||
{
|
||
visitor.visit(m_headers.wrapper());
|
||
}
|
||
|
||
}
|