/* 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/. */ //! Smart pointers for the JS-managed DOM objects. //! //! The DOM is made up of DOM objects whose lifetime is entirely controlled by //! the whims of the SpiderMonkey garbage collector. The types in this module //! are designed to ensure that any interactions with said Rust types only //! occur on values that will remain alive the entire time. //! //! Here is a brief overview of the important types: //! //! - `Root`: a stack-based rooted value. //! - `DomRoot`: a stack-based reference to a rooted DOM object. //! - `Dom`: a reference to a DOM object that can automatically be traced by //! the GC when encountered as a field of a Rust structure. //! //! `Dom` does not allow access to their inner value without explicitly //! creating a stack-based root via the `root` method. This returns a `DomRoot`, //! which causes the JS-owned value to be uncollectable for the duration of the //! `Root` object's lifetime. A reference to the object can then be obtained //! from the `Root` object. These references are not allowed to outlive their //! originating `DomRoot`. //! use dom::bindings::conversions::DerivedFrom; use dom::bindings::inheritance::Castable; use dom::bindings::reflector::{DomObject, Reflector}; use dom::bindings::trace::JSTraceable; use dom::bindings::trace::trace_reflector; use dom::node::Node; use heapsize::HeapSizeOf; use js::jsapi::{JSObject, JSTracer, Heap}; use js::rust::GCMethods; use mitochondria::OnceCell; use nonzero::NonZero; use script_layout_interface::TrustedNodeAddress; use std::cell::{Cell, UnsafeCell}; use std::default::Default; use std::hash::{Hash, Hasher}; use std::marker::PhantomData; use std::mem; use std::ops::Deref; use std::ptr; use std::rc::Rc; use style::thread_state; /// A rooted value. #[allow(unrooted_must_root)] #[allow_unrooted_interior] pub struct Root { /// The value to root. value: T, /// List that ensures correct dynamic root ordering root_list: *const RootCollection, } impl Root where T: StableTraceObject + 'static, { /// Create a new stack-bounded root for the provided value. /// It cannot outlive its associated `RootCollection`, and it gives /// out references which cannot outlive this new `Root`. #[allow(unrooted_must_root)] unsafe fn new(value: T) -> Self { debug_assert!(thread_state::get().is_script()); STACK_ROOTS.with(|ref root_list| { let root_list = &*root_list.get().unwrap(); root_list.root(value.stable_trace_object()); Root { value, root_list } }) } } /// Represents values that can be rooted through a stable address that will /// not change for their whole lifetime. pub unsafe trait StableTraceObject { /// Returns a stable trace object which address won't change for the whole /// lifetime of the value. fn stable_trace_object(&self) -> *const JSTraceable; } unsafe impl StableTraceObject for Dom where T: DomObject, { fn stable_trace_object<'a>(&'a self) -> *const JSTraceable { // The JSTraceable impl for Reflector doesn't actually do anything, // so we need this shenanigan to actually trace the reflector of the // T pointer in Dom. #[allow(unrooted_must_root)] struct ReflectorStackRoot(Reflector); unsafe impl JSTraceable for ReflectorStackRoot { unsafe fn trace(&self, tracer: *mut JSTracer) { trace_reflector(tracer, "on stack", &self.0); } } unsafe { &*(self.reflector() as *const Reflector as *const ReflectorStackRoot) } } } impl Deref for Root where T: Deref + StableTraceObject, { type Target = ::Target; fn deref(&self) -> &Self::Target { debug_assert!(thread_state::get().is_script()); &self.value } } impl Drop for Root where T: StableTraceObject, { fn drop(&mut self) { unsafe { (*self.root_list).unroot(self.value.stable_trace_object()); } } } /// A rooted reference to a DOM object. pub type DomRoot = Root>; impl DomRoot { /// Cast a DOM object root upwards to one of the interfaces it derives from. pub fn upcast(root: DomRoot) -> DomRoot where U: Castable, T: DerivedFrom { unsafe { mem::transmute(root) } } /// Cast a DOM object root downwards to one of the interfaces it might implement. pub fn downcast(root: DomRoot) -> Option> where U: DerivedFrom { if root.is::() { Some(unsafe { mem::transmute(root) }) } else { None } } } impl DomRoot { /// Generate a new root from a reference pub fn from_ref(unrooted: &T) -> DomRoot { unsafe { DomRoot::new(Dom::from_ref(unrooted)) } } } impl HeapSizeOf for DomRoot where T: DomObject + HeapSizeOf, { fn heap_size_of_children(&self) -> usize { (**self).heap_size_of_children() } } impl PartialEq for DomRoot where T: DomObject, { fn eq(&self, other: &Self) -> bool { self.value == other.value } } impl Clone for DomRoot where T: DomObject, { fn clone(&self) -> DomRoot { DomRoot::from_ref(&*self) } } unsafe impl JSTraceable for DomRoot where T: DomObject, { unsafe fn trace(&self, _: *mut JSTracer) { // Already traced. } } /// A rooting mechanism for reflectors on the stack. /// LIFO is not required. /// /// See also [*Exact Stack Rooting - Storing a GCPointer on the CStack*] /// (https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey/Internals/GC/Exact_Stack_Rooting). pub struct RootCollection { roots: UnsafeCell>, } thread_local!(static STACK_ROOTS: Cell> = Cell::new(None)); pub struct ThreadLocalStackRoots<'a>(PhantomData<&'a u32>); impl<'a> ThreadLocalStackRoots<'a> { pub fn new(roots: &'a RootCollection) -> Self { STACK_ROOTS.with(|ref r| { r.set(Some(roots)) }); ThreadLocalStackRoots(PhantomData) } } impl<'a> Drop for ThreadLocalStackRoots<'a> { fn drop(&mut self) { STACK_ROOTS.with(|ref r| r.set(None)); } } impl RootCollection { /// Create an empty collection of roots pub fn new() -> RootCollection { debug_assert!(thread_state::get().is_script()); RootCollection { roots: UnsafeCell::new(vec![]), } } /// Starts tracking a trace object. unsafe fn root(&self, object: *const JSTraceable) { debug_assert!(thread_state::get().is_script()); (*self.roots.get()).push(object); } /// Stops tracking a trace object, asserting if it isn't found. unsafe fn unroot(&self, object: *const JSTraceable) { debug_assert!(thread_state::get().is_script()); let roots = &mut *self.roots.get(); match roots.iter().rposition(|r| *r == object) { Some(idx) => { roots.remove(idx); }, None => panic!("Can't remove a root that was never rooted!"), } } } /// SM Callback that traces the rooted reflectors pub unsafe fn trace_roots(tracer: *mut JSTracer) { debug!("tracing stack roots"); STACK_ROOTS.with(|ref collection| { let collection = &*(*collection.get().unwrap()).roots.get(); for root in collection { (**root).trace(tracer); } }); } /// Get a reference out of a rooted value. pub trait RootedReference<'root> { /// The type of the reference. type Ref: 'root; /// Obtain a reference out of the rooted value. fn r(&'root self) -> Self::Ref; } impl<'root, T: DomObject + 'root> RootedReference<'root> for DomRoot { type Ref = &'root T; fn r(&'root self) -> &'root T { self } } impl<'root, T: DomObject + 'root> RootedReference<'root> for Dom { type Ref = &'root T; fn r(&'root self) -> &'root T { &self } } impl<'root, T: JSTraceable + DomObject + 'root> RootedReference<'root> for [Dom] { type Ref = &'root [&'root T]; fn r(&'root self) -> &'root [&'root T] { unsafe { mem::transmute(self) } } } impl<'root, T: DomObject + 'root> RootedReference<'root> for Rc { type Ref = &'root T; fn r(&'root self) -> &'root T { self } } impl<'root, T: RootedReference<'root> + 'root> RootedReference<'root> for Option { type Ref = Option; fn r(&'root self) -> Option { self.as_ref().map(RootedReference::r) } } /// A traced reference to a DOM object /// /// This type is critical to making garbage collection work with the DOM, /// but it is very dangerous; if garbage collection happens with a `Dom` /// on the stack, the `Dom` can point to freed memory. /// /// This should only be used as a field in other DOM objects. #[must_root] pub struct Dom { ptr: NonZero<*const T>, } // Dom is similar to Rc, in that it's not always clear how to avoid double-counting. // For now, we choose not to follow any such pointers. impl HeapSizeOf for Dom { fn heap_size_of_children(&self) -> usize { 0 } } impl Dom { /// Returns `LayoutDom` containing the same pointer. pub unsafe fn to_layout(&self) -> LayoutDom { debug_assert!(thread_state::get().is_layout()); LayoutDom { ptr: self.ptr.clone(), } } } impl Dom { /// Create a Dom from a &T #[allow(unrooted_must_root)] pub fn from_ref(obj: &T) -> Dom { debug_assert!(thread_state::get().is_script()); Dom { ptr: unsafe { NonZero::new_unchecked(&*obj) }, } } } impl Deref for Dom { type Target = T; fn deref(&self) -> &T { debug_assert!(thread_state::get().is_script()); // We can only have &Dom from a rooted thing, so it's safe to deref // it to &T. unsafe { &*self.ptr.get() } } } unsafe impl JSTraceable for Dom { unsafe fn trace(&self, trc: *mut JSTracer) { #[cfg(all(feature = "unstable", debug_assertions))] let trace_str = format!("for {} on heap", ::std::intrinsics::type_name::()); #[cfg(all(feature = "unstable", debug_assertions))] let trace_info = &trace_str[..]; #[cfg(not(all(feature = "unstable", debug_assertions)))] let trace_info = "for DOM object on heap"; trace_reflector(trc, trace_info, (*self.ptr.get()).reflector()); } } /// An unrooted reference to a DOM object for use in layout. `Layout*Helpers` /// traits must be implemented on this. #[allow_unrooted_interior] pub struct LayoutDom { ptr: NonZero<*const T>, } impl LayoutDom { /// Cast a DOM object root upwards to one of the interfaces it derives from. pub fn upcast(&self) -> LayoutDom where U: Castable, T: DerivedFrom { debug_assert!(thread_state::get().is_layout()); let ptr: *const T = self.ptr.get(); LayoutDom { ptr: unsafe { NonZero::new_unchecked(ptr as *const U) }, } } /// Cast a DOM object downwards to one of the interfaces it might implement. pub fn downcast(&self) -> Option> where U: DerivedFrom { debug_assert!(thread_state::get().is_layout()); unsafe { if (*self.unsafe_get()).is::() { let ptr: *const T = self.ptr.get(); Some(LayoutDom { ptr: NonZero::new_unchecked(ptr as *const U), }) } else { None } } } } impl LayoutDom { /// Get the reflector. pub unsafe fn get_jsobject(&self) -> *mut JSObject { debug_assert!(thread_state::get().is_layout()); (*self.ptr.get()).reflector().get_jsobject().get() } } impl Copy for LayoutDom {} impl PartialEq for Dom { fn eq(&self, other: &Dom) -> bool { self.ptr == other.ptr } } impl Eq for Dom {} impl PartialEq for LayoutDom { fn eq(&self, other: &LayoutDom) -> bool { self.ptr == other.ptr } } impl Eq for LayoutDom {} impl Hash for Dom { fn hash(&self, state: &mut H) { self.ptr.hash(state) } } impl Hash for LayoutDom { fn hash(&self, state: &mut H) { self.ptr.hash(state) } } impl Clone for Dom { #[inline] #[allow(unrooted_must_root)] fn clone(&self) -> Dom { debug_assert!(thread_state::get().is_script()); Dom { ptr: self.ptr.clone(), } } } impl Clone for LayoutDom { #[inline] fn clone(&self) -> LayoutDom { debug_assert!(thread_state::get().is_layout()); LayoutDom { ptr: self.ptr.clone(), } } } impl LayoutDom { /// Create a new JS-owned value wrapped from an address known to be a /// `Node` pointer. pub unsafe fn from_trusted_node_address(inner: TrustedNodeAddress) -> LayoutDom { debug_assert!(thread_state::get().is_layout()); let TrustedNodeAddress(addr) = inner; LayoutDom { ptr: NonZero::new_unchecked(addr as *const Node), } } } /// A holder that provides interior mutability for GC-managed values such as /// `Dom`. Essentially a `Cell>`, but safer. /// /// This should only be used as a field in other DOM objects; see warning /// on `Dom`. #[must_root] #[derive(JSTraceable)] pub struct MutDom { val: UnsafeCell>, } impl MutDom { /// Create a new `MutDom`. pub fn new(initial: &T) -> MutDom { debug_assert!(thread_state::get().is_script()); MutDom { val: UnsafeCell::new(Dom::from_ref(initial)), } } /// Set this `MutDom` to the given value. pub fn set(&self, val: &T) { debug_assert!(thread_state::get().is_script()); unsafe { *self.val.get() = Dom::from_ref(val); } } /// Get the value in this `MutDom`. pub fn get(&self) -> DomRoot { debug_assert!(thread_state::get().is_script()); unsafe { DomRoot::from_ref(&*ptr::read(self.val.get())) } } } impl HeapSizeOf for MutDom { fn heap_size_of_children(&self) -> usize { // See comment on HeapSizeOf for Dom. 0 } } impl PartialEq for MutDom { fn eq(&self, other: &Self) -> bool { unsafe { *self.val.get() == *other.val.get() } } } impl PartialEq for MutDom { fn eq(&self, other: &T) -> bool { unsafe { **self.val.get() == *other } } } /// A holder that provides interior mutability for GC-managed values such as /// `Dom`, with nullability represented by an enclosing Option wrapper. /// Essentially a `Cell>>`, but safer. /// /// This should only be used as a field in other DOM objects; see warning /// on `Dom`. #[must_root] #[derive(JSTraceable)] pub struct MutNullableDom { ptr: UnsafeCell>>, } impl MutNullableDom { /// Create a new `MutNullableDom`. pub fn new(initial: Option<&T>) -> MutNullableDom { debug_assert!(thread_state::get().is_script()); MutNullableDom { ptr: UnsafeCell::new(initial.map(Dom::from_ref)), } } /// Retrieve a copy of the current inner value. If it is `None`, it is /// initialized with the result of `cb` first. pub fn or_init(&self, cb: F) -> DomRoot where F: FnOnce() -> DomRoot { debug_assert!(thread_state::get().is_script()); match self.get() { Some(inner) => inner, None => { let inner = cb(); self.set(Some(&inner)); inner }, } } /// Retrieve a copy of the inner optional `Dom` as `LayoutDom`. /// For use by layout, which can't use safe types like Temporary. #[allow(unrooted_must_root)] pub unsafe fn get_inner_as_layout(&self) -> Option> { debug_assert!(thread_state::get().is_layout()); ptr::read(self.ptr.get()).map(|js| js.to_layout()) } /// Get a rooted value out of this object #[allow(unrooted_must_root)] pub fn get(&self) -> Option> { debug_assert!(thread_state::get().is_script()); unsafe { ptr::read(self.ptr.get()).map(|o| DomRoot::from_ref(&*o)) } } /// Set this `MutNullableDom` to the given value. pub fn set(&self, val: Option<&T>) { debug_assert!(thread_state::get().is_script()); unsafe { *self.ptr.get() = val.map(|p| Dom::from_ref(p)); } } /// Gets the current value out of this object and sets it to `None`. pub fn take(&self) -> Option> { let value = self.get(); self.set(None); value } } impl PartialEq for MutNullableDom { fn eq(&self, other: &Self) -> bool { unsafe { *self.ptr.get() == *other.ptr.get() } } } impl<'a, T: DomObject> PartialEq> for MutNullableDom { fn eq(&self, other: &Option<&T>) -> bool { unsafe { *self.ptr.get() == other.map(Dom::from_ref) } } } impl Default for MutNullableDom { #[allow(unrooted_must_root)] fn default() -> MutNullableDom { debug_assert!(thread_state::get().is_script()); MutNullableDom { ptr: UnsafeCell::new(None), } } } impl HeapSizeOf for MutNullableDom { fn heap_size_of_children(&self) -> usize { // See comment on HeapSizeOf for Dom. 0 } } /// A holder that allows to lazily initialize the value only once /// `Dom`, using OnceCell /// Essentially a `OnceCell>`. /// /// This should only be used as a field in other DOM objects; see warning /// on `Dom`. #[must_root] pub struct DomOnceCell { ptr: OnceCell>, } impl DomOnceCell where T: DomObject { /// Retrieve a copy of the current inner value. If it is `None`, it is /// initialized with the result of `cb` first. #[allow(unrooted_must_root)] pub fn init_once(&self, cb: F) -> &T where F: FnOnce() -> DomRoot { debug_assert!(thread_state::get().is_script()); &self.ptr.init_once(|| Dom::from_ref(&cb())) } } impl Default for DomOnceCell { #[allow(unrooted_must_root)] fn default() -> DomOnceCell { debug_assert!(thread_state::get().is_script()); DomOnceCell { ptr: OnceCell::new(), } } } impl HeapSizeOf for DomOnceCell { fn heap_size_of_children(&self) -> usize { // See comment on HeapSizeOf for Dom. 0 } } #[allow(unrooted_must_root)] unsafe impl JSTraceable for DomOnceCell { unsafe fn trace(&self, trc: *mut JSTracer) { if let Some(ptr) = self.ptr.as_ref() { ptr.trace(trc); } } } impl LayoutDom { /// Returns an unsafe pointer to the interior of this JS object. This is /// the only method that be safely accessed from layout. (The fact that /// this is unsafe is what necessitates the layout wrappers.) pub unsafe fn unsafe_get(&self) -> *const T { debug_assert!(thread_state::get().is_layout()); self.ptr.get() } /// Returns a reference to the interior of this JS object. This method is /// safe to call because it originates from the layout thread, and it cannot /// mutate DOM nodes. pub fn get_for_script(&self) -> &T { debug_assert!(thread_state::get().is_script()); unsafe { &*self.ptr.get() } } } /// Helper trait for safer manipulations of `Option>` values. pub trait OptionalHeapSetter { type Value; /// Update this optional heap value with a new value. fn set(&mut self, v: Option); } impl OptionalHeapSetter for Option> where Heap: Default { type Value = T; fn set(&mut self, v: Option) { let v = match v { None => { *self = None; return; } Some(v) => v, }; if self.is_none() { *self = Some(Heap::default()); } self.as_ref().unwrap().set(v); } }