mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
* Add `no_trace` option to JSTraceable derive * NoTrace wrapper * Port some types to no_trace schematics * Fixing my unsafe mistakes (not tracing traceables) * Add docs & safety guards for no_trace Safety guards (trait shenanigans) guarantees safety usage of `no_trace` * Port canvas_traits to no_trace * Port servo_media to no_trace * Port net_traits to no_trace * Port style to no_trace * Port webgpu to no_trace * Port script_traits to no_trace * Port canvas_traits, devtools_traits, embedder_traits, profile_traits to no_trace * unrooted_must_root lint in seperate file * Add trace_in_no_trace_lint as script_plugin * Composable types in must_not_have_traceable * Introduced HashMapTracedValues wrapper * `HashMap<NoTrace<K>,V>`->`HashMapTracedValues<K,V>` * Port rest of servo's types to no_trace * Port html5ever, euclid, mime and http to no_trace * Port remaining externals to no_trace * Port webxr and Arc<Mutex<_>> * Fix spelling in notrace doc
113 lines
3.5 KiB
Rust
113 lines
3.5 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 http://mozilla.org/MPL/2.0/. */
|
|
|
|
use crate::dom::bindings::codegen::Bindings::BroadcastChannelBinding::BroadcastChannelMethods;
|
|
use crate::dom::bindings::error::{Error, ErrorResult};
|
|
use crate::dom::bindings::reflector::{reflect_dom_object_with_proto, DomObject};
|
|
use crate::dom::bindings::root::DomRoot;
|
|
use crate::dom::bindings::str::DOMString;
|
|
use crate::dom::bindings::structuredclone;
|
|
use crate::dom::eventtarget::EventTarget;
|
|
use crate::dom::globalscope::GlobalScope;
|
|
use crate::script_runtime::JSContext as SafeJSContext;
|
|
use dom_struct::dom_struct;
|
|
use js::rust::{HandleObject, HandleValue};
|
|
use script_traits::BroadcastMsg;
|
|
use std::cell::Cell;
|
|
use uuid::Uuid;
|
|
|
|
#[dom_struct]
|
|
pub struct BroadcastChannel {
|
|
eventtarget: EventTarget,
|
|
name: DOMString,
|
|
closed: Cell<bool>,
|
|
#[no_trace]
|
|
id: Uuid,
|
|
}
|
|
|
|
impl BroadcastChannel {
|
|
/// <https://html.spec.whatwg.org/multipage/#broadcastchannel>
|
|
#[allow(non_snake_case)]
|
|
pub fn Constructor(
|
|
global: &GlobalScope,
|
|
proto: Option<HandleObject>,
|
|
name: DOMString,
|
|
) -> DomRoot<BroadcastChannel> {
|
|
BroadcastChannel::new(global, proto, name)
|
|
}
|
|
|
|
fn new(
|
|
global: &GlobalScope,
|
|
proto: Option<HandleObject>,
|
|
name: DOMString,
|
|
) -> DomRoot<BroadcastChannel> {
|
|
let channel = reflect_dom_object_with_proto(
|
|
Box::new(BroadcastChannel::new_inherited(name)),
|
|
global,
|
|
proto,
|
|
);
|
|
global.track_broadcast_channel(&*channel);
|
|
channel
|
|
}
|
|
|
|
pub fn new_inherited(name: DOMString) -> BroadcastChannel {
|
|
BroadcastChannel {
|
|
eventtarget: EventTarget::new_inherited(),
|
|
name,
|
|
closed: Default::default(),
|
|
id: Uuid::new_v4(),
|
|
}
|
|
}
|
|
|
|
/// The unique Id of this channel.
|
|
/// Used for filtering out the sender from the local broadcast.
|
|
pub fn id(&self) -> &Uuid {
|
|
&self.id
|
|
}
|
|
|
|
/// Is this channel closed?
|
|
pub fn closed(&self) -> bool {
|
|
self.closed.get()
|
|
}
|
|
}
|
|
|
|
impl BroadcastChannelMethods for BroadcastChannel {
|
|
/// <https://html.spec.whatwg.org/multipage/#dom-messageport-postmessage>
|
|
fn PostMessage(&self, cx: SafeJSContext, message: HandleValue) -> ErrorResult {
|
|
// Step 3, if closed.
|
|
if self.closed.get() {
|
|
return Err(Error::InvalidState);
|
|
}
|
|
|
|
// Step 6, StructuredSerialize(message).
|
|
let data = structuredclone::write(cx, message, None)?;
|
|
|
|
let global = self.global();
|
|
|
|
let msg = BroadcastMsg {
|
|
origin: global.origin().immutable().clone(),
|
|
channel_name: self.Name().to_string(),
|
|
data,
|
|
};
|
|
|
|
global.schedule_broadcast(msg, &self.id);
|
|
Ok(())
|
|
}
|
|
|
|
/// <https://html.spec.whatwg.org/multipage/#dom-broadcastchannel-name>
|
|
fn Name(&self) -> DOMString {
|
|
self.name.clone()
|
|
}
|
|
|
|
/// <https://html.spec.whatwg.org/multipage/#dom-broadcastchannel-close>
|
|
fn Close(&self) {
|
|
self.closed.set(true);
|
|
}
|
|
|
|
// <https://html.spec.whatwg.org/multipage/#handler-broadcastchannel-onmessageerror>
|
|
event_handler!(messageerror, GetOnmessageerror, SetOnmessageerror);
|
|
|
|
// <https://html.spec.whatwg.org/multipage/#handler-broadcastchannel-onmessage>
|
|
event_handler!(message, GetOnmessage, SetOnmessage);
|
|
}
|