net: clean shutdown of fetch thread (#38421)

The fetch thread is currently not shut down, meaning it is one of the
threads counted in the "threads are still running after shutdown (bad)"
counter shown when Servo has shut-down.

This PR introduces a mechanism to start, and shut-down, one fetch thread
per process that requires one.

Testing: WPT tests and unit tests(for font context). Also manually
tested loading and closing "about:blank": this change indeed brings down
the count of threads still running after shutdown by one.

Fixes: https://github.com/servo/servo/issues/34887

---------

Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com>
This commit is contained in:
Gregory Terzian 2025-08-07 17:01:30 +08:00 committed by GitHub
parent ad805e3110
commit b23cf9c6cd
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 71 additions and 11 deletions

View file

@ -7,7 +7,7 @@
use std::collections::HashMap;
use std::fmt::Display;
use std::sync::{LazyLock, OnceLock};
use std::thread;
use std::thread::{self, JoinHandle};
use base::cross_process_instant::CrossProcessInstant;
use base::id::HistoryStateId;
@ -563,6 +563,8 @@ enum ToFetchThreadMessage {
/* callback */ BoxedFetchCallback,
),
FetchResponse(FetchResponseMsg),
/// Stop the background thread.
Exit,
}
pub type BoxedFetchCallback = Box<dyn FnMut(FetchResponseMsg) + Send + 'static>;
@ -586,7 +588,9 @@ struct FetchThread {
}
impl FetchThread {
fn spawn(core_resource_thread: &CoreResourceThread) -> Sender<ToFetchThreadMessage> {
fn spawn(
core_resource_thread: &CoreResourceThread,
) -> (Sender<ToFetchThreadMessage>, JoinHandle<()>) {
let (sender, receiver) = unbounded();
let (to_fetch_sender, from_fetch_sender) = ipc::channel().unwrap();
@ -600,7 +604,7 @@ impl FetchThread {
);
let core_resource_thread = core_resource_thread.clone();
thread::Builder::new()
let join_handle = thread::Builder::new()
.name("FetchThread".to_owned())
.spawn(move || {
let mut fetch_thread = FetchThread {
@ -612,7 +616,7 @@ impl FetchThread {
fetch_thread.run();
})
.expect("Thread spawning failed");
sender
(sender, join_handle)
}
fn run(&mut self) {
@ -659,6 +663,7 @@ impl FetchThread {
.core_resource_thread
.send(CoreResourceMsg::Cancel(request_ids));
},
ToFetchThreadMessage::Exit => break,
}
}
}
@ -666,15 +671,37 @@ impl FetchThread {
static FETCH_THREAD: OnceLock<Sender<ToFetchThreadMessage>> = OnceLock::new();
/// Starts a fetch thread,
/// and returns the join handle to it.
pub fn start_fetch_thread(core_resource_thread: &CoreResourceThread) -> JoinHandle<()> {
let (sender, join_handle) = FetchThread::spawn(core_resource_thread);
FETCH_THREAD
.set(sender)
.expect("Fetch thread should be set only once on start-up");
join_handle
}
/// Send the exit message to the background thread,
/// after which the caller can,
/// and should,
/// join on the thread.
pub fn exit_fetch_thread() {
let _ = FETCH_THREAD
.get()
.expect("Fetch thread should always be initialized on start-up")
.send(ToFetchThreadMessage::Exit);
}
/// Instruct the resource thread to make a new fetch request.
pub fn fetch_async(
core_resource_thread: &CoreResourceThread,
_core_resource_thread: &CoreResourceThread,
request: RequestBuilder,
response_init: Option<ResponseInit>,
callback: BoxedFetchCallback,
) {
let _ = FETCH_THREAD
.get_or_init(|| FetchThread::spawn(core_resource_thread))
.get()
.expect("Fetch thread should always be initialized on start-up")
.send(ToFetchThreadMessage::StartFetch(
request,
response_init,
@ -687,7 +714,7 @@ pub fn fetch_async(
pub fn cancel_async_fetch(request_ids: Vec<RequestId>) {
let _ = FETCH_THREAD
.get()
.expect("Tried to cancel request in process that hasn't started one.")
.expect("Fetch thread should always be initialized on start-up")
.send(ToFetchThreadMessage::Cancel(request_ids));
}