mirror of
https://github.com/servo/servo.git
synced 2025-06-08 08:33:26 +00:00
319 lines
12 KiB
Rust
319 lines
12 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/. */
|
|
|
|
//! Abstractions for global scopes.
|
|
//!
|
|
//! This module contains smart pointers to global scopes, to simplify writing
|
|
//! code that works in workers as well as window scopes.
|
|
|
|
use devtools_traits::{ScriptToDevtoolsControlMsg, WorkerId};
|
|
use dom::bindings::codegen::Bindings::WindowBinding::WindowMethods;
|
|
use dom::bindings::conversions::root_from_object;
|
|
use dom::bindings::js::{JS, Root};
|
|
use dom::bindings::reflector::{Reflectable, Reflector};
|
|
use dom::window::{self, ScriptHelpers};
|
|
use dom::workerglobalscope::WorkerGlobalScope;
|
|
use ipc_channel::ipc::IpcSender;
|
|
use js::jsapi::GetGlobalForObjectCrossCompartment;
|
|
use js::jsapi::{JSContext, JSObject, JS_GetClass, MutableHandleValue};
|
|
use js::{JSCLASS_IS_DOMJSCLASS, JSCLASS_IS_GLOBAL};
|
|
use msg::constellation_msg::{ConstellationChan, PipelineId};
|
|
use net_traits::ResourceThread;
|
|
use profile_traits::mem;
|
|
use script_thread::{CommonScriptMsg, ScriptChan, ScriptPort, ScriptThread};
|
|
use script_traits::{MsDuration, ScriptMsg as ConstellationMsg, TimerEventRequest};
|
|
use timers::{ScheduledCallback, TimerHandle};
|
|
use url::Url;
|
|
use util::mem::HeapSizeOf;
|
|
|
|
/// A freely-copyable reference to a rooted global object.
|
|
#[derive(Copy, Clone)]
|
|
pub enum GlobalRef<'a> {
|
|
/// A reference to a `Window` object.
|
|
Window(&'a window::Window),
|
|
/// A reference to a `WorkerGlobalScope` object.
|
|
Worker(&'a WorkerGlobalScope),
|
|
}
|
|
|
|
/// A stack-based rooted reference to a global object.
|
|
pub enum GlobalRoot {
|
|
/// A root for a `Window` object.
|
|
Window(Root<window::Window>),
|
|
/// A root for a `WorkerGlobalScope` object.
|
|
Worker(Root<WorkerGlobalScope>),
|
|
}
|
|
|
|
/// A traced reference to a global object, for use in fields of traced Rust
|
|
/// structures.
|
|
#[derive(JSTraceable, HeapSizeOf)]
|
|
#[must_root]
|
|
pub enum GlobalField {
|
|
/// A field for a `Window` object.
|
|
Window(JS<window::Window>),
|
|
/// A field for a `WorkerGlobalScope` object.
|
|
Worker(JS<WorkerGlobalScope>),
|
|
}
|
|
|
|
impl<'a> GlobalRef<'a> {
|
|
/// Get the `JSContext` for the `JSRuntime` associated with the thread
|
|
/// this global object is on.
|
|
pub fn get_cx(&self) -> *mut JSContext {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.get_cx(),
|
|
GlobalRef::Worker(ref worker) => worker.get_cx(),
|
|
}
|
|
}
|
|
|
|
/// Extract a `Window`, causing thread failure if the global object is not
|
|
/// a `Window`.
|
|
pub fn as_window(&self) -> &window::Window {
|
|
match *self {
|
|
GlobalRef::Window(window) => window,
|
|
GlobalRef::Worker(_) => panic!("expected a Window scope"),
|
|
}
|
|
}
|
|
|
|
/// Get the `PipelineId` for this global scope.
|
|
pub fn pipeline(&self) -> PipelineId {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.pipeline(),
|
|
GlobalRef::Worker(worker) => worker.pipeline(),
|
|
}
|
|
}
|
|
|
|
/// Get a `mem::ProfilerChan` to send messages to the memory profiler thread.
|
|
pub fn mem_profiler_chan(&self) -> mem::ProfilerChan {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.mem_profiler_chan(),
|
|
GlobalRef::Worker(worker) => worker.mem_profiler_chan(),
|
|
}
|
|
}
|
|
|
|
/// Get a `ConstellationChan` to send messages to the constellation channel when available.
|
|
pub fn constellation_chan(&self) -> ConstellationChan<ConstellationMsg> {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.constellation_chan(),
|
|
GlobalRef::Worker(worker) => worker.constellation_chan(),
|
|
}
|
|
}
|
|
|
|
/// Get the scheduler channel to request timer events.
|
|
pub fn scheduler_chan(&self) -> IpcSender<TimerEventRequest> {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.scheduler_chan(),
|
|
GlobalRef::Worker(worker) => worker.scheduler_chan(),
|
|
}
|
|
}
|
|
|
|
/// Get an `IpcSender<ScriptToDevtoolsControlMsg>` to send messages to Devtools
|
|
/// thread when available.
|
|
pub fn devtools_chan(&self) -> Option<IpcSender<ScriptToDevtoolsControlMsg>> {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.devtools_chan(),
|
|
GlobalRef::Worker(worker) => worker.devtools_chan(),
|
|
}
|
|
}
|
|
|
|
/// Get the `ResourceThread` for this global scope.
|
|
pub fn resource_thread(&self) -> ResourceThread {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => {
|
|
let doc = window.Document();
|
|
let doc = doc.r();
|
|
let loader = doc.loader();
|
|
(*loader.resource_thread).clone()
|
|
}
|
|
GlobalRef::Worker(ref worker) => worker.resource_thread().clone(),
|
|
}
|
|
}
|
|
|
|
/// Get the worker's id.
|
|
pub fn get_worker_id(&self) -> Option<WorkerId> {
|
|
match *self {
|
|
GlobalRef::Window(_) => None,
|
|
GlobalRef::Worker(ref worker) => Some(worker.get_worker_id()),
|
|
}
|
|
}
|
|
|
|
/// Get next worker id.
|
|
pub fn get_next_worker_id(&self) -> WorkerId {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.get_next_worker_id(),
|
|
GlobalRef::Worker(ref worker) => worker.get_next_worker_id(),
|
|
}
|
|
}
|
|
|
|
/// Get the URL for this global scope.
|
|
pub fn get_url(&self) -> Url {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.get_url(),
|
|
GlobalRef::Worker(ref worker) => worker.get_url().clone(),
|
|
}
|
|
}
|
|
|
|
/// `ScriptChan` used to send messages to the event loop of this global's
|
|
/// thread.
|
|
pub fn dom_manipulation_thread_source(&self) -> Box<ScriptChan + Send> {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.dom_manipulation_thread_source(),
|
|
GlobalRef::Worker(ref worker) => worker.script_chan(),
|
|
}
|
|
}
|
|
|
|
/// `ScriptChan` used to send messages to the event loop of this global's
|
|
/// thread.
|
|
pub fn user_interaction_thread_source(&self) -> Box<ScriptChan + Send> {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.user_interaction_thread_source(),
|
|
GlobalRef::Worker(ref worker) => worker.script_chan(),
|
|
}
|
|
}
|
|
|
|
/// `ScriptChan` used to send messages to the event loop of this global's
|
|
/// thread.
|
|
pub fn networking_thread_source(&self) -> Box<ScriptChan + Send> {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.networking_thread_source(),
|
|
GlobalRef::Worker(ref worker) => worker.script_chan(),
|
|
}
|
|
}
|
|
|
|
/// `ScriptChan` used to send messages to the event loop of this global's
|
|
/// thread.
|
|
pub fn history_traversal_thread_source(&self) -> Box<ScriptChan + Send> {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.history_traversal_thread_source(),
|
|
GlobalRef::Worker(ref worker) => worker.script_chan(),
|
|
}
|
|
}
|
|
|
|
/// `ScriptChan` used to send messages to the event loop of this global's
|
|
/// thread.
|
|
pub fn file_reading_thread_source(&self) -> Box<ScriptChan + Send> {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.file_reading_thread_source(),
|
|
GlobalRef::Worker(ref worker) => worker.script_chan(),
|
|
}
|
|
}
|
|
|
|
/// Create a new sender/receiver pair that can be used to implement an on-demand
|
|
/// event loop. Used for implementing web APIs that require blocking semantics
|
|
/// without resorting to nested event loops.
|
|
pub fn new_script_pair(&self) -> (Box<ScriptChan + Send>, Box<ScriptPort + Send>) {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.new_script_pair(),
|
|
GlobalRef::Worker(ref worker) => worker.new_script_pair(),
|
|
}
|
|
}
|
|
|
|
/// Process a single event as if it were the next event in the thread queue for
|
|
/// this global.
|
|
pub fn process_event(&self, msg: CommonScriptMsg) {
|
|
match *self {
|
|
GlobalRef::Window(_) => ScriptThread::process_event(msg),
|
|
GlobalRef::Worker(ref worker) => worker.process_event(msg),
|
|
}
|
|
}
|
|
|
|
/// Evaluate the JS messages on the `RootedValue` of this global
|
|
pub fn evaluate_js_on_global_with_result(&self, code: &str, rval: MutableHandleValue) {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.evaluate_js_on_global_with_result(code, rval),
|
|
GlobalRef::Worker(worker) => worker.evaluate_js_on_global_with_result(code, rval),
|
|
}
|
|
}
|
|
|
|
/// Set the `bool` value to indicate whether developer tools has requested
|
|
/// updates from the global
|
|
pub fn set_devtools_wants_updates(&self, send_updates: bool) {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.set_devtools_wants_updates(send_updates),
|
|
GlobalRef::Worker(worker) => worker.set_devtools_wants_updates(send_updates),
|
|
}
|
|
}
|
|
|
|
/// Schedule the given `callback` to be invoked after at least `duration` milliseconds have
|
|
/// passed.
|
|
pub fn schedule_callback(&self,
|
|
callback: Box<ScheduledCallback>,
|
|
duration: MsDuration)
|
|
-> TimerHandle {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.schedule_callback(callback, duration),
|
|
GlobalRef::Worker(worker) => worker.schedule_callback(callback, duration),
|
|
}
|
|
}
|
|
|
|
/// Unschedule a previously-scheduled callback.
|
|
pub fn unschedule_callback(&self, handle: TimerHandle) {
|
|
match *self {
|
|
GlobalRef::Window(window) => window.unschedule_callback(handle),
|
|
GlobalRef::Worker(worker) => worker.unschedule_callback(handle),
|
|
}
|
|
}
|
|
|
|
/// Returns the receiver's reflector.
|
|
pub fn reflector(&self) -> &Reflector {
|
|
match *self {
|
|
GlobalRef::Window(ref window) => window.reflector(),
|
|
GlobalRef::Worker(ref worker) => worker.reflector(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl GlobalRoot {
|
|
/// Obtain a safe reference to the global object that cannot outlive the
|
|
/// lifetime of this root.
|
|
pub fn r(&self) -> GlobalRef {
|
|
match *self {
|
|
GlobalRoot::Window(ref window) => GlobalRef::Window(window.r()),
|
|
GlobalRoot::Worker(ref worker) => GlobalRef::Worker(worker.r()),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl GlobalField {
|
|
/// Create a new `GlobalField` from a rooted reference.
|
|
#[allow(unrooted_must_root)]
|
|
pub fn from_rooted(global: &GlobalRef) -> GlobalField {
|
|
match *global {
|
|
GlobalRef::Window(window) => GlobalField::Window(JS::from_ref(window)),
|
|
GlobalRef::Worker(worker) => GlobalField::Worker(JS::from_ref(worker)),
|
|
}
|
|
}
|
|
|
|
/// Create a stack-bounded root for this reference.
|
|
pub fn root(&self) -> GlobalRoot {
|
|
match *self {
|
|
GlobalField::Window(ref window) => GlobalRoot::Window(Root::from_ref(window)),
|
|
GlobalField::Worker(ref worker) => GlobalRoot::Worker(Root::from_ref(worker)),
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Returns the global object of the realm that the given DOM object's reflector was created in.
|
|
pub fn global_root_from_reflector<T: Reflectable>(reflector: &T) -> GlobalRoot {
|
|
global_root_from_object(*reflector.reflector().get_jsobject())
|
|
}
|
|
|
|
/// Returns the global object of the realm that the given JS object was created in.
|
|
#[allow(unrooted_must_root)]
|
|
pub fn global_root_from_object(obj: *mut JSObject) -> GlobalRoot {
|
|
unsafe {
|
|
let global = GetGlobalForObjectCrossCompartment(obj);
|
|
let clasp = JS_GetClass(global);
|
|
assert!(((*clasp).flags & (JSCLASS_IS_DOMJSCLASS | JSCLASS_IS_GLOBAL)) != 0);
|
|
match root_from_object(global) {
|
|
Ok(window) => return GlobalRoot::Window(window),
|
|
Err(_) => (),
|
|
}
|
|
|
|
match root_from_object(global) {
|
|
Ok(worker) => return GlobalRoot::Worker(worker),
|
|
Err(_) => (),
|
|
}
|
|
|
|
panic!("found DOM global that doesn't unwrap to Window or WorkerGlobalScope")
|
|
}
|
|
}
|