mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Devtools: Support worker scripts in Debugger > Source
panel (#36562)
This patch adds support for listing `worker scripts` in `debugger > source` panel For example: ``` <!-- test.html --> <!doctype html><meta charset=utf-8> <script> setTimeout(() => { console.log("inline classic"); new Worker("worker.js"); const blob = new Blob([`console.log("blob worker");`], { type: "text/javascript" }); const blobURL = URL.createObjectURL(blob); new Worker(blobURL); }, 2000); </script> ``` ``` // worker.js console.log("external classic worker"); ``` ``` ./mach run --devtools=6080 http://127.0.0.1:3000/test.html ```  Another example: ``` ./mach run --devtools=6080 https://charming.daz.cat/ ```  - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] These changes partially implement #36027 - [x] These changes require tests, but they are blocked on https://github.com/servo/servo/issues/36325 --------- Signed-off-by: atbrakhi <atbrakhi@igalia.com>
This commit is contained in:
parent
107fd25465
commit
b92542b756
6 changed files with 142 additions and 38 deletions
|
@ -17,7 +17,7 @@ use servo_url::ServoUrl;
|
|||
use crate::StreamId;
|
||||
use crate::actor::{Actor, ActorMessageStatus, ActorRegistry};
|
||||
use crate::protocol::JsonPacketStream;
|
||||
use crate::resource::ResourceAvailable;
|
||||
use crate::resource::{ResourceAvailable, ResourceAvailableReply};
|
||||
|
||||
#[derive(Clone, Copy)]
|
||||
#[allow(dead_code)]
|
||||
|
@ -48,8 +48,10 @@ impl WorkerActor {
|
|||
url: self.url.to_string(),
|
||||
traits: WorkerTraits {
|
||||
is_parent_intercept_enabled: false,
|
||||
supports_top_level_target_flag: false,
|
||||
},
|
||||
type_: self.type_ as u32,
|
||||
target_type: "worker".to_string(),
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -131,6 +133,28 @@ impl Actor for WorkerActor {
|
|||
}
|
||||
}
|
||||
|
||||
impl WorkerActor {
|
||||
pub(crate) fn resource_available<T: Serialize>(&self, resource: T, resource_type: String) {
|
||||
self.resources_available(vec![resource], resource_type);
|
||||
}
|
||||
|
||||
pub(crate) fn resources_available<T: Serialize>(
|
||||
&self,
|
||||
resources: Vec<T>,
|
||||
resource_type: String,
|
||||
) {
|
||||
let msg = ResourceAvailableReply::<T> {
|
||||
from: self.name(),
|
||||
type_: "resources-available-array".into(),
|
||||
array: vec![(resource_type, resources)],
|
||||
};
|
||||
|
||||
for stream in self.streams.borrow_mut().values_mut() {
|
||||
let _ = stream.write_json_packet(&msg);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[derive(Serialize)]
|
||||
struct DetachedReply {
|
||||
from: String,
|
||||
|
@ -160,6 +184,7 @@ struct ConnectReply {
|
|||
#[serde(rename_all = "camelCase")]
|
||||
struct WorkerTraits {
|
||||
is_parent_intercept_enabled: bool,
|
||||
supports_top_level_target_flag: bool,
|
||||
}
|
||||
|
||||
#[derive(Serialize)]
|
||||
|
@ -173,4 +198,6 @@ pub(crate) struct WorkerMsg {
|
|||
traits: WorkerTraits,
|
||||
#[serde(rename = "type")]
|
||||
type_: u32,
|
||||
#[serde(rename = "targetType")]
|
||||
target_type: String,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue