2022-10-25 19:36:50 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Linus Groh <linusg@serenityos.org>
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
2025-07-16 12:29:26 +02:00
|
|
|
#include <LibWeb/Bindings/MainThreadVM.h>
|
2024-03-22 15:28:41 -04:00
|
|
|
#include <LibWeb/Fetch/Infrastructure/FetchController.h>
|
2022-10-25 19:36:50 +01:00
|
|
|
#include <LibWeb/Fetch/Infrastructure/Task.h>
|
|
|
|
#include <LibWeb/HTML/EventLoop/EventLoop.h>
|
|
|
|
|
|
|
|
namespace Web::Fetch::Infrastructure {
|
|
|
|
|
|
|
|
// https://fetch.spec.whatwg.org/#queue-a-fetch-task
|
2025-07-16 12:29:26 +02:00
|
|
|
HTML::TaskID queue_fetch_task(TaskDestination task_destination, GC::Ref<GC::Function<void()>> algorithm)
|
2022-10-25 19:36:50 +01:00
|
|
|
{
|
2025-07-16 12:29:26 +02:00
|
|
|
VERIFY(!task_destination.has<Empty>());
|
|
|
|
|
|
|
|
// 1. If taskDestination is a parallel queue, then enqueue algorithm to taskDestination.
|
|
|
|
if (auto* parallel_queue = task_destination.get_pointer<NonnullRefPtr<HTML::ParallelQueue>>())
|
|
|
|
return (*parallel_queue)->enqueue(algorithm);
|
2022-10-25 19:36:50 +01:00
|
|
|
|
|
|
|
// 2. Otherwise, queue a global task on the networking task source with taskDestination and algorithm.
|
2025-07-16 12:29:26 +02:00
|
|
|
return HTML::queue_global_task(HTML::Task::Source::Networking, task_destination.get<GC::Ref<JS::Object>>(), algorithm);
|
2024-03-22 15:28:41 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// AD-HOC: This overload allows tracking the queued task within the fetch controller so that we may cancel queued tasks
|
|
|
|
// when the spec indicates that we must stop an ongoing fetch.
|
2025-07-16 12:29:26 +02:00
|
|
|
HTML::TaskID queue_fetch_task(GC::Ref<FetchController> fetch_controller, TaskDestination task_destination, GC::Ref<GC::Function<void()>> algorithm)
|
2024-03-22 15:28:41 -04:00
|
|
|
{
|
|
|
|
auto fetch_task_id = fetch_controller->next_fetch_task_id();
|
|
|
|
|
2025-07-16 12:29:26 +02:00
|
|
|
auto& heap = fetch_controller->heap();
|
2024-11-15 04:01:23 +13:00
|
|
|
auto html_task_id = queue_fetch_task(task_destination, GC::create_function(heap, [fetch_controller, fetch_task_id, algorithm]() {
|
2024-03-22 15:28:41 -04:00
|
|
|
fetch_controller->fetch_task_complete(fetch_task_id);
|
2024-04-19 10:23:40 +02:00
|
|
|
algorithm->function()();
|
|
|
|
}));
|
2024-03-22 15:28:41 -04:00
|
|
|
|
2024-08-04 17:10:49 +02:00
|
|
|
fetch_controller->fetch_task_queued(fetch_task_id, html_task_id);
|
|
|
|
return html_task_id;
|
2022-10-25 19:36:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|