mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-06 08:09:45 +00:00
Some checks are pending
CI / Linux, x86_64, Fuzzers, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, GNU (push) Waiting to run
CI / macOS, arm64, Sanitizer, Clang (push) Waiting to run
CI / Linux, x86_64, Sanitizer, Clang (push) Waiting to run
Package the js repl as a binary artifact / Linux, arm64 (push) Waiting to run
Package the js repl as a binary artifact / macOS, arm64 (push) Waiting to run
Package the js repl as a binary artifact / Linux, x86_64 (push) Waiting to run
Run test262 and test-wasm / run_and_update_results (push) Waiting to run
Lint Code / lint (push) Waiting to run
Label PRs with merge conflicts / auto-labeler (push) Waiting to run
Push notes / build (push) Waiting to run
Otherwise we end up holding on to every fetch record indefinitely. Found by analyzing GC heap graphs on Discord.
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2024, Mohamed amine Bounya <mobounya@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/Fetch/Infrastructure/FetchRecord.h>
|
|
#include <LibWeb/Fetch/Infrastructure/HTTP/Requests.h>
|
|
|
|
namespace Web::Fetch::Infrastructure {
|
|
|
|
GC_DEFINE_ALLOCATOR(FetchRecord);
|
|
|
|
GC::Ref<FetchRecord> FetchRecord::create(JS::VM& vm, GC::Ref<Infrastructure::Request> request)
|
|
{
|
|
return vm.heap().allocate<FetchRecord>(request);
|
|
}
|
|
|
|
GC::Ref<FetchRecord> FetchRecord::create(JS::VM& vm, GC::Ref<Infrastructure::Request> request, GC::Ptr<Fetch::Infrastructure::FetchController> fetch_controller)
|
|
{
|
|
return vm.heap().allocate<FetchRecord>(request, fetch_controller);
|
|
}
|
|
|
|
FetchRecord::FetchRecord(GC::Ref<Infrastructure::Request> request)
|
|
: m_request(request)
|
|
{
|
|
}
|
|
|
|
FetchRecord::FetchRecord(GC::Ref<Infrastructure::Request> request, GC::Ptr<Fetch::Infrastructure::FetchController> fetch_controller)
|
|
: m_request(request)
|
|
, m_fetch_controller(fetch_controller)
|
|
{
|
|
}
|
|
|
|
void FetchRecord::visit_edges(Visitor& visitor)
|
|
{
|
|
Base::visit_edges(visitor);
|
|
visitor.visit(m_request);
|
|
visitor.visit(m_fetch_controller);
|
|
}
|
|
|
|
void FetchRecord::finalize()
|
|
{
|
|
Base::finalize();
|
|
m_list_node.remove();
|
|
}
|
|
|
|
}
|