mirror of
https://github.com/servo/servo.git
synced 2025-06-25 01:24:37 +01:00
163 lines
4.6 KiB
Rust
163 lines
4.6 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 dom::bindings::js::JS;
|
|
use dom::bindings::utils::{Reflectable, Reflector};
|
|
|
|
use js::jsapi::{JSObject, JSTracer, JS_CallTracer, JSTRACE_OBJECT};
|
|
use js::jsval::JSVal;
|
|
|
|
use libc;
|
|
use std::cast;
|
|
use std::cell::{Cell, RefCell};
|
|
use std::ptr;
|
|
use std::ptr::null;
|
|
use serialize::{Encodable, Encoder};
|
|
|
|
// IMPORTANT: We rely on the fact that we never attempt to encode DOM objects using
|
|
// any encoder but JSTracer. Since we derive trace hooks automatically,
|
|
// we are unfortunately required to use generic types everywhere and
|
|
// unsafely cast to the concrete JSTracer we actually require.
|
|
|
|
fn get_jstracer<'a, S: Encoder<E>, E>(s: &'a mut S) -> &'a mut JSTracer {
|
|
unsafe {
|
|
cast::transmute(s)
|
|
}
|
|
}
|
|
|
|
impl<T: Reflectable+Encodable<S, E>, S: Encoder<E>, E> Encodable<S, E> for JS<T> {
|
|
fn encode(&self, s: &mut S) -> Result<(), E> {
|
|
trace_reflector(get_jstracer(s), "", self.reflector());
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<S: Encoder<E>, E> Encodable<S, E> for Reflector {
|
|
fn encode(&self, _s: &mut S) -> Result<(), E> {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
pub trait JSTraceable {
|
|
fn trace(&self, trc: *mut JSTracer);
|
|
}
|
|
|
|
pub fn trace_jsval(tracer: *mut JSTracer, description: &str, val: JSVal) {
|
|
if !val.is_gcthing() {
|
|
return;
|
|
}
|
|
|
|
unsafe {
|
|
description.to_c_str().with_ref(|name| {
|
|
(*tracer).debugPrinter = ptr::null();
|
|
(*tracer).debugPrintIndex = -1;
|
|
(*tracer).debugPrintArg = name as *libc::c_void;
|
|
debug!("tracing value {:s}", description);
|
|
JS_CallTracer(tracer as *JSTracer, val.to_gcthing(), val.trace_kind());
|
|
});
|
|
}
|
|
}
|
|
|
|
pub fn trace_reflector(tracer: *mut JSTracer, description: &str, reflector: &Reflector) {
|
|
trace_object(tracer, description, reflector.get_jsobject())
|
|
}
|
|
|
|
pub fn trace_object(tracer: *mut JSTracer, description: &str, obj: *JSObject) {
|
|
unsafe {
|
|
description.to_c_str().with_ref(|name| {
|
|
(*tracer).debugPrinter = ptr::null();
|
|
(*tracer).debugPrintIndex = -1;
|
|
(*tracer).debugPrintArg = name as *libc::c_void;
|
|
debug!("tracing {:s}", description);
|
|
JS_CallTracer(tracer as *JSTracer, obj, JSTRACE_OBJECT as u32);
|
|
});
|
|
}
|
|
}
|
|
|
|
/// Encapsulates a type that cannot easily have Encodable derived automagically,
|
|
/// but also does not need to be made known to the SpiderMonkey garbage collector.
|
|
/// Use only with types that are not associated with a JS reflector and do not contain
|
|
/// fields of types associated with JS reflectors.
|
|
pub struct Untraceable<T> {
|
|
inner: T,
|
|
}
|
|
|
|
impl<T> Untraceable<T> {
|
|
pub fn new(val: T) -> Untraceable<T> {
|
|
Untraceable {
|
|
inner: val
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<S: Encoder<E>, E, T> Encodable<S, E> for Untraceable<T> {
|
|
fn encode(&self, _s: &mut S) -> Result<(), E> {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<T> Deref<T> for Untraceable<T> {
|
|
fn deref<'a>(&'a self) -> &'a T {
|
|
&self.inner
|
|
}
|
|
}
|
|
|
|
impl<T> DerefMut<T> for Untraceable<T> {
|
|
fn deref_mut<'a>(&'a mut self) -> &'a mut T {
|
|
&mut self.inner
|
|
}
|
|
}
|
|
|
|
/// Encapsulates a type that can be traced but is boxed in a type we don't control
|
|
/// (such as RefCell). Wrap a field in Traceable and implement the Encodable trait
|
|
/// for that new concrete type to achieve magic compiler-derived trace hooks.
|
|
pub struct Traceable<T> {
|
|
inner: T
|
|
}
|
|
|
|
impl<T> Traceable<T> {
|
|
pub fn new(val: T) -> Traceable<T> {
|
|
Traceable {
|
|
inner: val
|
|
}
|
|
}
|
|
}
|
|
|
|
impl<T> Deref<T> for Traceable<T> {
|
|
fn deref<'a>(&'a self) -> &'a T {
|
|
&self.inner
|
|
}
|
|
}
|
|
|
|
impl<T> DerefMut<T> for Traceable<T> {
|
|
fn deref_mut<'a>(&'a mut self) -> &'a mut T {
|
|
&mut self.inner
|
|
}
|
|
}
|
|
|
|
impl<S: Encoder<E>, E, T: Encodable<S, E>> Encodable<S, E> for Traceable<RefCell<T>> {
|
|
fn encode(&self, s: &mut S) -> Result<(), E> {
|
|
self.borrow().encode(s)
|
|
}
|
|
}
|
|
|
|
impl<S: Encoder<E>, E, T: Encodable<S, E>+Copy> Encodable<S, E> for Traceable<Cell<T>> {
|
|
fn encode(&self, s: &mut S) -> Result<(), E> {
|
|
self.deref().get().encode(s)
|
|
}
|
|
}
|
|
|
|
impl<S: Encoder<E>, E> Encodable<S, E> for Traceable<*JSObject> {
|
|
fn encode(&self, s: &mut S) -> Result<(), E> {
|
|
trace_object(get_jstracer(s), "object", **self);
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
impl<S: Encoder<E>, E> Encodable<S, E> for Traceable<JSVal> {
|
|
fn encode(&self, s: &mut S) -> Result<(), E> {
|
|
trace_jsval(get_jstracer(s), "val", **self);
|
|
Ok(())
|
|
}
|
|
}
|