2022-10-13 19:24:23 +02:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
|
|
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibJS/Heap/Heap.h>
|
|
|
|
|
#include <LibJS/Runtime/VM.h>
|
|
|
|
|
#include <LibWeb/Fetch/Infrastructure/FetchParams.h>
|
|
|
|
|
#include <LibWeb/Fetch/Infrastructure/HTTP/Responses.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::Fetch::Infrastructure {
|
|
|
|
|
|
2023-11-19 19:47:52 +01:00
|
|
|
|
JS_DEFINE_ALLOCATOR(FetchParams);
|
|
|
|
|
|
2022-10-13 19:24:23 +02:00
|
|
|
|
FetchParams::FetchParams(JS::NonnullGCPtr<Request> request, JS::NonnullGCPtr<FetchAlgorithms> algorithms, JS::NonnullGCPtr<FetchController> controller, JS::NonnullGCPtr<FetchTimingInfo> timing_info)
|
|
|
|
|
: m_request(request)
|
|
|
|
|
, m_algorithms(algorithms)
|
|
|
|
|
, m_controller(controller)
|
|
|
|
|
, m_timing_info(timing_info)
|
|
|
|
|
{
|
2023-04-19 09:15:16 -04:00
|
|
|
|
m_controller->set_fetch_params({}, *this);
|
2022-10-13 19:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
JS::NonnullGCPtr<FetchParams> FetchParams::create(JS::VM& vm, JS::NonnullGCPtr<Request> request, JS::NonnullGCPtr<FetchTimingInfo> timing_info)
|
|
|
|
|
{
|
|
|
|
|
auto algorithms = Infrastructure::FetchAlgorithms::create(vm, {});
|
|
|
|
|
auto controller = Infrastructure::FetchController::create(vm);
|
2024-11-14 06:13:46 +13:00
|
|
|
|
return vm.heap().allocate<FetchParams>(request, algorithms, controller, timing_info);
|
2022-10-13 19:24:23 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void FetchParams::visit_edges(JS::Cell::Visitor& visitor)
|
|
|
|
|
{
|
|
|
|
|
Base::visit_edges(visitor);
|
|
|
|
|
visitor.visit(m_request);
|
|
|
|
|
visitor.visit(m_algorithms);
|
|
|
|
|
visitor.visit(m_controller);
|
|
|
|
|
visitor.visit(m_timing_info);
|
|
|
|
|
if (m_task_destination.has<JS::NonnullGCPtr<JS::Object>>())
|
|
|
|
|
visitor.visit(m_task_destination.get<JS::NonnullGCPtr<JS::Object>>());
|
|
|
|
|
if (m_preloaded_response_candidate.has<JS::NonnullGCPtr<Response>>())
|
|
|
|
|
visitor.visit(m_preloaded_response_candidate.get<JS::NonnullGCPtr<Response>>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#fetch-params-aborted
|
|
|
|
|
bool FetchParams::is_aborted() const
|
|
|
|
|
{
|
|
|
|
|
// A fetch params fetchParams is aborted if its controller’s state is "aborted".
|
|
|
|
|
return m_controller->state() == FetchController::State::Aborted;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#fetch-params-canceled
|
|
|
|
|
bool FetchParams::is_canceled() const
|
|
|
|
|
{
|
|
|
|
|
// A fetch params fetchParams is canceled if its controller’s state is "aborted" or "terminated".
|
|
|
|
|
return m_controller->state() == FetchController::State::Aborted || m_controller->state() == FetchController::State::Terminated;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|