Files
servo/components/devtools/network_handler.rs
SeiRan 375c4f722b devtools: Restrict visibility of actors in devtools (#41935)
This change is to make visibility uniformly crate wide across all of the
structs and their props within devtools.

Testing: Tested using `.\mach build -d` `.\mach fmt` `.\mach test-tidy`
all passed
Part of: #41893

---------

Signed-off-by: Seiran <bo646ru@gmail.com>
2026-01-15 21:39:17 +00:00

98 lines
3.1 KiB
Rust

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
use std::net::TcpStream;
use std::sync::Arc;
use devtools_traits::NetworkEvent;
use serde::Serialize;
use crate::actor::{ActorEncode, ActorRegistry};
use crate::actors::network_event::NetworkEventActor;
use crate::actors::watcher::WatcherActor;
use crate::resource::{ResourceArrayType, ResourceAvailable};
#[derive(Clone, Serialize)]
#[serde(rename_all = "camelCase")]
pub(crate) struct Cause {
#[serde(rename = "type")]
pub type_: String,
pub loading_document_uri: Option<String>,
}
pub(crate) fn handle_network_event(
actors: Arc<ActorRegistry>,
netevent_actor_name: String,
mut connections: Vec<TcpStream>,
network_event: NetworkEvent,
) {
let actor = actors.find::<NetworkEventActor>(&netevent_actor_name);
let watcher = actors.find::<WatcherActor>(&actor.watcher);
match network_event {
NetworkEvent::HttpRequest(httprequest) => {
actor.add_request(httprequest);
let msg = actor.encode(&actors);
let resource = actor.resource_updates(&actors);
for stream in &mut connections {
watcher.resource_array(
msg.clone(),
"network-event".to_string(),
ResourceArrayType::Available,
stream,
);
// Also push initial resource update (request headers, cookies)
watcher.resource_array(
resource.clone(),
"network-event".to_string(),
ResourceArrayType::Updated,
stream,
);
}
},
NetworkEvent::HttpRequestUpdate(httprequest) => {
actor.add_request(httprequest);
let resource = actor.resource_updates(&actors);
for stream in &mut connections {
watcher.resource_array(
resource.clone(),
"network-event".to_string(),
ResourceArrayType::Updated,
stream,
);
}
},
NetworkEvent::HttpResponse(httpresponse) => {
actor.add_response(httpresponse);
let resource = actor.resource_updates(&actors);
for stream in &mut connections {
watcher.resource_array(
resource.clone(),
"network-event".to_string(),
ResourceArrayType::Updated,
stream,
);
}
},
NetworkEvent::SecurityInfo(update) => {
actor.add_security_info(update.security_info);
let resource = actor.resource_updates(&actors);
for stream in &mut connections {
watcher.resource_array(
resource.clone(),
"network-event".to_string(),
ResourceArrayType::Updated,
stream,
);
}
},
}
}