use std::ptr::NonNull;
use dom_struct::dom_struct;
use js::jsapi::{Heap, JSObject, Value};
use script_bindings::conversions::SafeToJSValConvertible;
use script_bindings::reflector::DomObject;
use script_bindings::str::DOMString;
use crate::dom::bindings::codegen::Bindings::DebuggerAddDebuggeeEventBinding::DebuggerAddDebuggeeEventMethods;
use crate::dom::bindings::codegen::Bindings::EventBinding::Event_Binding::EventMethods;
use crate::dom::bindings::reflector::reflect_dom_object;
use crate::dom::bindings::root::{Dom, DomRoot};
use crate::dom::event::Event;
use crate::dom::types::{GlobalScope, PipelineId};
use crate::script_runtime::CanGc;
#[dom_struct]
pub(crate) struct DebuggerAddDebuggeeEvent {
event: Event,
#[ignore_malloc_size_of = "Measured by the JS engine"]
global: Heap<*mut JSObject>,
pipeline_id: Dom<PipelineId>,
worker_id: Option<DOMString>,
}
impl DebuggerAddDebuggeeEvent {
pub(crate) fn new(
debugger_global: &GlobalScope,
global: &GlobalScope,
pipeline_id: &PipelineId,
worker_id: Option<DOMString>,
can_gc: CanGc,
) -> DomRoot<Self> {
let result = Box::new(Self {
event: Event::new_inherited(),
global: Heap::default(),
pipeline_id: Dom::from_ref(pipeline_id),
worker_id,
});
let result = reflect_dom_object(result, debugger_global, can_gc);
result.event.init_event("addDebuggee".into(), false, false);
let cx = GlobalScope::get_cx();
rooted!(in(*cx) let mut wrapped_global: Value);
global
.reflector()
.safe_to_jsval(cx, wrapped_global.handle_mut(), can_gc);
result.global.set(wrapped_global.to_object());
result
}
}
impl DebuggerAddDebuggeeEventMethods<crate::DomTypeHolder> for DebuggerAddDebuggeeEvent {
fn Global(&self, _cx: script_bindings::script_runtime::JSContext) -> NonNull<JSObject> {
NonNull::new(self.global.get()).unwrap()
}
fn PipelineId(
&self,
) -> DomRoot<<crate::DomTypeHolder as script_bindings::DomTypes>::PipelineId> {
DomRoot::from_ref(&self.pipeline_id)
}
fn GetWorkerId(&self) -> Option<DOMString> {
self.worker_id.clone()
}
fn IsTrusted(&self) -> bool {
self.event.IsTrusted()
}
}