Add transparent Traceable and Untraceable types to aid proper rooting practices, and replace ad-hoc Untraceable structs with empty Encodable implementations.

This commit is contained in:
Josh Matthews 2014-04-17 14:54:11 -04:00
parent 7441dae1af
commit 742f73ded5
14 changed files with 217 additions and 195 deletions

View file

@ -1864,7 +1864,7 @@ def CreateBindingJSObject(descriptor, parent=None):
assert not descriptor.createGlobal assert not descriptor.createGlobal
handler = """ handler = """
let js_info = aScope.get().page().js_info(); let js_info = aScope.get().page().js_info();
let handler = js_info.get_ref().dom_static.proxy_handlers.get(&(PrototypeList::id::%s as uint)); let handler = js_info.get_ref().dom_static.proxy_handlers.deref().get(&(PrototypeList::id::%s as uint));
""" % descriptor.name """ % descriptor.name
create += handler + """ let obj = NewProxyObject(aCx, *handler, create += handler + """ let obj = NewProxyObject(aCx, *handler,
&PrivateValue(squirrel_away_unique(aObject) as *libc::c_void), &PrivateValue(squirrel_away_unique(aObject) as *libc::c_void),
@ -2204,7 +2204,7 @@ class CGDefineDOMInterfaceMethod(CGAbstractMethod):
('Some(%s)' % TRACE_HOOK_NAME), ('Some(%s)' % TRACE_HOOK_NAME),
self.descriptor.name) self.descriptor.name)
return (body + """ let cx = js_info.js_context.deref().ptr; return (body + """ let cx = (*js_info.js_context).deref().ptr;
let receiver = js_info.js_compartment.global_obj; let receiver = js_info.js_compartment.global_obj;
let global: *JSObject = JS_GetGlobalForObject(cx, receiver); let global: *JSObject = JS_GetGlobalForObject(cx, receiver);
assert!(%s(cx, global, receiver).is_not_null());""" % (getter)) assert!(%s(cx, global, receiver).is_not_null());""" % (getter))
@ -4517,7 +4517,7 @@ class CGBindingRoot(CGThing):
'dom::bindings::utils::{ThrowingConstructor, unwrap, unwrap_jsmanaged}', 'dom::bindings::utils::{ThrowingConstructor, unwrap, unwrap_jsmanaged}',
'dom::bindings::utils::{VoidVal, with_gc_disabled}', 'dom::bindings::utils::{VoidVal, with_gc_disabled}',
'dom::bindings::utils::{with_gc_enabled}', 'dom::bindings::utils::{with_gc_enabled}',
'dom::bindings::trace::Traceable', 'dom::bindings::trace::JSTraceable',
'dom::bindings::callback::{CallbackContainer,CallbackInterface}', 'dom::bindings::callback::{CallbackContainer,CallbackInterface}',
'dom::bindings::callback::{CallSetup,ExceptionHandling}', 'dom::bindings::callback::{CallSetup,ExceptionHandling}',
'dom::bindings::callback::{WrapCallThisObject}', 'dom::bindings::callback::{WrapCallThisObject}',
@ -5472,7 +5472,7 @@ class GlobalGenRoots():
allprotos = [CGGeneric("#[allow(unused_imports)];\n"), allprotos = [CGGeneric("#[allow(unused_imports)];\n"),
CGGeneric("use dom::types::*;\n"), CGGeneric("use dom::types::*;\n"),
CGGeneric("use dom::bindings::js::JS;\n"), CGGeneric("use dom::bindings::js::JS;\n"),
CGGeneric("use dom::bindings::trace::Traceable;\n"), CGGeneric("use dom::bindings::trace::JSTraceable;\n"),
CGGeneric("use serialize::{Encodable, Encoder};\n"), CGGeneric("use serialize::{Encodable, Encoder};\n"),
CGGeneric("use js::jsapi::JSTracer;\n\n")] CGGeneric("use js::jsapi::JSTracer;\n\n")]
for descriptor in descriptors: for descriptor in descriptors:
@ -5523,7 +5523,7 @@ class GlobalGenRoots():
'toBound': name + 'Derived'})), 'toBound': name + 'Derived'})),
CGGeneric("impl %s for %s {}\n\n" % (name + 'Cast', name))] CGGeneric("impl %s for %s {}\n\n" % (name + 'Cast', name))]
trace = [CGGeneric(string.Template('''impl Traceable for ${name} { trace = [CGGeneric(string.Template('''impl JSTraceable for ${name} {
fn trace(&self, tracer: *mut JSTracer) { fn trace(&self, tracer: *mut JSTracer) {
unsafe { unsafe {
self.encode(&mut *tracer); self.encode(&mut *tracer);

View file

@ -44,8 +44,9 @@ impl<T: Reflectable> JS<T> {
pub unsafe fn from_trusted_node_address(inner: TrustedNodeAddress) -> JS<T> { pub unsafe fn from_trusted_node_address(inner: TrustedNodeAddress) -> JS<T> {
let TrustedNodeAddress(addr) = inner;
JS { JS {
ptr: RefCell::new(inner as *mut T) ptr: RefCell::new(addr as *mut T)
} }
} }
} }

View file

@ -8,6 +8,7 @@ use dom::bindings::utils::{Reflectable, Reflector};
use js::jsapi::{JSTracer, JS_CallTracer, JSTRACE_OBJECT}; use js::jsapi::{JSTracer, JS_CallTracer, JSTRACE_OBJECT};
use std::cast; use std::cast;
use std::cell::RefCell;
use std::libc; use std::libc;
use std::ptr; use std::ptr;
use std::ptr::null; use std::ptr::null;
@ -30,7 +31,7 @@ impl<S: Encoder> Encodable<S> for Reflector {
} }
} }
pub trait Traceable { pub trait JSTraceable {
fn trace(&self, trc: *mut JSTracer); fn trace(&self, trc: *mut JSTracer);
} }
@ -46,3 +47,69 @@ pub fn trace_reflector(tracer: *mut JSTracer, description: &str, reflector: &Ref
}); });
} }
} }
/// 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> {
priv inner: T,
}
impl<T> Untraceable<T> {
pub fn new(val: T) -> Untraceable<T> {
Untraceable {
inner: val
}
}
}
impl<S: Encoder, T> Encodable<S> for Untraceable<T> {
fn encode(&self, _s: &mut S) {
}
}
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> {
priv 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, T: Encodable<S>> Encodable<S> for Traceable<RefCell<T>> {
fn encode(&self, s: &mut S) {
self.borrow().encode(s)
}
}

View file

@ -6,6 +6,7 @@ use dom::bindings::codegen::PrototypeList;
use dom::bindings::codegen::PrototypeList::MAX_PROTO_CHAIN_LENGTH; use dom::bindings::codegen::PrototypeList::MAX_PROTO_CHAIN_LENGTH;
use dom::bindings::conversions::FromJSValConvertible; use dom::bindings::conversions::FromJSValConvertible;
use dom::bindings::js::JS; use dom::bindings::js::JS;
use dom::bindings::trace::Untraceable;
use dom::window; use dom::window;
use servo_util::str::DOMString; use servo_util::str::DOMString;
@ -42,13 +43,14 @@ use js::JSPROP_PERMANENT;
use js::{JSFUN_CONSTRUCTOR, JSPROP_READONLY}; use js::{JSFUN_CONSTRUCTOR, JSPROP_READONLY};
use js; use js;
#[deriving(Encodable)]
pub struct GlobalStaticData { pub struct GlobalStaticData {
proxy_handlers: HashMap<uint, *libc::c_void> proxy_handlers: Untraceable<HashMap<uint, *libc::c_void>>
} }
pub fn GlobalStaticData() -> GlobalStaticData { pub fn GlobalStaticData() -> GlobalStaticData {
GlobalStaticData { GlobalStaticData {
proxy_handlers: HashMap::new() proxy_handlers: Untraceable::new(HashMap::new())
} }
} }
@ -533,7 +535,7 @@ fn cx_for_dom_reflector(obj: *JSObject) -> *JSContext {
let win = global_object_for_js_object(obj); let win = global_object_for_js_object(obj);
let js_info = win.get().page().js_info(); let js_info = win.get().page().js_info();
match *js_info { match *js_info {
Some(ref info) => info.js_context.deref().ptr, Some(ref info) => info.js_context.deref().deref().ptr,
None => fail!("no JS context for DOM global") None => fail!("no JS context for DOM global")
} }
} }

View file

@ -8,6 +8,7 @@ use dom::bindings::codegen::InheritTypes::{HTMLHeadElementCast, TextCast, Elemen
use dom::bindings::codegen::InheritTypes::{DocumentTypeCast, HTMLHtmlElementCast}; use dom::bindings::codegen::InheritTypes::{DocumentTypeCast, HTMLHtmlElementCast};
use dom::bindings::codegen::DocumentBinding; use dom::bindings::codegen::DocumentBinding;
use dom::bindings::js::JS; use dom::bindings::js::JS;
use dom::bindings::trace::Untraceable;
use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object}; use dom::bindings::utils::{Reflectable, Reflector, reflect_dom_object};
use dom::bindings::error::{ErrorResult, Fallible, NotSupported, InvalidCharacter, HierarchyRequest, NamespaceError}; use dom::bindings::error::{ErrorResult, Fallible, NotSupported, InvalidCharacter, HierarchyRequest, NamespaceError};
use dom::bindings::utils::{xml_name_type, InvalidXMLName, Name, QName}; use dom::bindings::utils::{xml_name_type, InvalidXMLName, Name, QName};
@ -46,8 +47,6 @@ use js::jsapi::JSContext;
use std::ascii::StrAsciiExt; use std::ascii::StrAsciiExt;
use url::{Url, from_str}; use url::{Url, from_str};
use serialize::{Encoder, Encodable};
#[deriving(Eq,Encodable)] #[deriving(Eq,Encodable)]
pub enum IsHTMLDocument { pub enum IsHTMLDocument {
HTMLDocument, HTMLDocument,
@ -64,17 +63,8 @@ pub struct Document {
content_type: DOMString, content_type: DOMString,
encoding_name: DOMString, encoding_name: DOMString,
is_html_document: bool, is_html_document: bool,
priv extra: Untraceable, url: Untraceable<Url>,
} quirks_mode: Untraceable<QuirksMode>,
struct Untraceable {
url: Url,
quirks_mode: QuirksMode,
}
impl<S: Encoder> Encodable<S> for Untraceable {
fn encode(&self, _: &mut S) {
}
} }
impl DocumentDerived for EventTarget { impl DocumentDerived for EventTarget {
@ -106,6 +96,8 @@ impl Document {
url: Option<Url>, url: Option<Url>,
is_html_document: IsHTMLDocument, is_html_document: IsHTMLDocument,
content_type: Option<DOMString>) -> Document { content_type: Option<DOMString>) -> Document {
let url = url.unwrap_or_else(|| from_str("about:blank").unwrap());
Document { Document {
node: Node::new_without_doc(DocumentNodeTypeId), node: Node::new_without_doc(DocumentNodeTypeId),
reflector_: Reflector::new(), reflector_: Reflector::new(),
@ -121,14 +113,9 @@ impl Document {
NonHTMLDocument => ~"application/xml" NonHTMLDocument => ~"application/xml"
} }
}, },
extra: Untraceable { url: Untraceable::new(url),
url: match url { // http://dom.spec.whatwg.org/#concept-document-quirks
None => from_str("about:blank").unwrap(), quirks_mode: Untraceable::new(NoQuirks),
Some(_url) => _url
},
// http://dom.spec.whatwg.org/#concept-document-quirks
quirks_mode: NoQuirks,
},
// http://dom.spec.whatwg.org/#concept-document-encoding // http://dom.spec.whatwg.org/#concept-document-encoding
encoding_name: ~"utf-8", encoding_name: ~"utf-8",
is_html_document: is_html_document == HTMLDocument, is_html_document: is_html_document == HTMLDocument,
@ -143,7 +130,7 @@ impl Document {
impl Document { impl Document {
pub fn url<'a>(&'a self) -> &'a Url { pub fn url<'a>(&'a self) -> &'a Url {
&self.extra.url &*self.url
} }
} }
@ -185,18 +172,18 @@ impl Document {
// http://dom.spec.whatwg.org/#dom-document-compatmode // http://dom.spec.whatwg.org/#dom-document-compatmode
pub fn CompatMode(&self) -> DOMString { pub fn CompatMode(&self) -> DOMString {
match self.extra.quirks_mode { match *self.quirks_mode {
NoQuirks => ~"CSS1Compat", NoQuirks => ~"CSS1Compat",
LimitedQuirks | FullQuirks => ~"BackCompat" LimitedQuirks | FullQuirks => ~"BackCompat"
} }
} }
pub fn quirks_mode(&self) -> QuirksMode { pub fn quirks_mode(&self) -> QuirksMode {
self.extra.quirks_mode *self.quirks_mode
} }
pub fn set_quirks_mode(&mut self, mode: QuirksMode) { pub fn set_quirks_mode(&mut self, mode: QuirksMode) {
self.extra.quirks_mode = mode; *self.quirks_mode = mode;
} }
// http://dom.spec.whatwg.org/#dom-document-characterset // http://dom.spec.whatwg.org/#dom-document-characterset

View file

@ -4,8 +4,9 @@
use dom::bindings::codegen::HTMLIFrameElementBinding; use dom::bindings::codegen::HTMLIFrameElementBinding;
use dom::bindings::codegen::InheritTypes::{ElementCast, HTMLIFrameElementDerived, HTMLElementCast}; use dom::bindings::codegen::InheritTypes::{ElementCast, HTMLIFrameElementDerived, HTMLElementCast};
use dom::bindings::js::JS;
use dom::bindings::error::ErrorResult; use dom::bindings::error::ErrorResult;
use dom::bindings::js::JS;
use dom::bindings::trace::Untraceable;
use dom::document::Document; use dom::document::Document;
use dom::element::{HTMLIFrameElementTypeId, Element}; use dom::element::{HTMLIFrameElementTypeId, Element};
use dom::element::AttributeHandlers; use dom::element::AttributeHandlers;
@ -16,7 +17,6 @@ use dom::virtualmethods::VirtualMethods;
use dom::windowproxy::WindowProxy; use dom::windowproxy::WindowProxy;
use servo_util::str::DOMString; use servo_util::str::DOMString;
use serialize::{Encoder, Encodable};
use servo_msg::constellation_msg::{PipelineId, SubpageId}; use servo_msg::constellation_msg::{PipelineId, SubpageId};
use std::ascii::StrAsciiExt; use std::ascii::StrAsciiExt;
use url::Url; use url::Url;
@ -34,20 +34,11 @@ enum SandboxAllowance {
#[deriving(Encodable)] #[deriving(Encodable)]
pub struct HTMLIFrameElement { pub struct HTMLIFrameElement {
htmlelement: HTMLElement, htmlelement: HTMLElement,
priv extra: Untraceable, frame: Untraceable<Option<Url>>,
size: Option<IFrameSize>, size: Option<IFrameSize>,
sandbox: Option<u8> sandbox: Option<u8>
} }
struct Untraceable {
frame: Option<Url>,
}
impl<S: Encoder> Encodable<S> for Untraceable {
fn encode(&self, _s: &mut S) {
}
}
impl HTMLIFrameElementDerived for EventTarget { impl HTMLIFrameElementDerived for EventTarget {
fn is_htmliframeelement(&self) -> bool { fn is_htmliframeelement(&self) -> bool {
match self.type_id { match self.type_id {
@ -69,7 +60,7 @@ impl HTMLIFrameElement {
} }
pub fn set_frame(&mut self, frame: Url) { pub fn set_frame(&mut self, frame: Url) {
self.extra.frame = Some(frame); *self.frame = Some(frame);
} }
} }
@ -77,9 +68,7 @@ impl HTMLIFrameElement {
pub fn new_inherited(localName: DOMString, document: JS<Document>) -> HTMLIFrameElement { pub fn new_inherited(localName: DOMString, document: JS<Document>) -> HTMLIFrameElement {
HTMLIFrameElement { HTMLIFrameElement {
htmlelement: HTMLElement::new_inherited(HTMLIFrameElementTypeId, localName, document), htmlelement: HTMLElement::new_inherited(HTMLIFrameElementTypeId, localName, document),
extra: Untraceable { frame: Untraceable::new(None),
frame: None
},
size: None, size: None,
sandbox: None, sandbox: None,
} }

View file

@ -5,8 +5,9 @@
use dom::bindings::codegen::HTMLImageElementBinding; use dom::bindings::codegen::HTMLImageElementBinding;
use dom::bindings::codegen::InheritTypes::{NodeCast, HTMLImageElementDerived}; use dom::bindings::codegen::InheritTypes::{NodeCast, HTMLImageElementDerived};
use dom::bindings::codegen::InheritTypes::{ElementCast, HTMLElementCast}; use dom::bindings::codegen::InheritTypes::{ElementCast, HTMLElementCast};
use dom::bindings::js::JS;
use dom::bindings::error::ErrorResult; use dom::bindings::error::ErrorResult;
use dom::bindings::js::JS;
use dom::bindings::trace::Untraceable;
use dom::document::Document; use dom::document::Document;
use dom::element::{Element, HTMLImageElementTypeId}; use dom::element::{Element, HTMLImageElementTypeId};
use dom::element::AttributeHandlers; use dom::element::AttributeHandlers;
@ -21,21 +22,10 @@ use servo_util::url::parse_url;
use servo_util::str::DOMString; use servo_util::str::DOMString;
use url::Url; use url::Url;
use serialize::{Encoder, Encodable};
#[deriving(Encodable)] #[deriving(Encodable)]
pub struct HTMLImageElement { pub struct HTMLImageElement {
htmlelement: HTMLElement, htmlelement: HTMLElement,
priv extra: Untraceable, image: Untraceable<Option<Url>>,
}
struct Untraceable {
image: Option<Url>,
}
impl<S: Encoder> Encodable<S> for Untraceable {
fn encode(&self, _s: &mut S) {
}
} }
impl HTMLImageElementDerived for EventTarget { impl HTMLImageElementDerived for EventTarget {
@ -51,9 +41,7 @@ impl HTMLImageElement {
pub fn new_inherited(localName: DOMString, document: JS<Document>) -> HTMLImageElement { pub fn new_inherited(localName: DOMString, document: JS<Document>) -> HTMLImageElement {
HTMLImageElement { HTMLImageElement {
htmlelement: HTMLElement::new_inherited(HTMLImageElementTypeId, localName, document), htmlelement: HTMLElement::new_inherited(HTMLImageElementTypeId, localName, document),
extra: Untraceable { image: Untraceable::new(None),
image: None,
}
} }
} }
@ -65,7 +53,7 @@ impl HTMLImageElement {
impl HTMLImageElement { impl HTMLImageElement {
pub fn image<'a>(&'a self) -> &'a Option<Url> { pub fn image<'a>(&'a self) -> &'a Option<Url> {
&self.extra.image &*self.image
} }
/// Makes the local `image` member match the status of the `src` attribute and starts /// Makes the local `image` member match the status of the `src` attribute and starts
@ -77,11 +65,11 @@ impl HTMLImageElement {
let image_cache = &window.image_cache_task; let image_cache = &window.image_cache_task;
match value { match value {
None => { None => {
self.extra.image = None; *self.image = None;
} }
Some(src) => { Some(src) => {
let img_url = parse_url(src, url); let img_url = parse_url(src, url);
self.extra.image = Some(img_url.clone()); *self.image = Some(img_url.clone());
// inform the image cache to load this, but don't store a // inform the image cache to load this, but don't store a
// handle. // handle.

View file

@ -88,7 +88,7 @@ impl StyleElementHelpers for JS<HTMLStyleElement> {
let data = node.get().GetTextContent(&node).expect("Element.textContent must be a string"); let data = node.get().GetTextContent(&node).expect("Element.textContent must be a string");
let sheet = parse_inline_css(url, data); let sheet = parse_inline_css(url, data);
let LayoutChan(ref layout_chan) = win.get().page().layout_chan; let LayoutChan(ref layout_chan) = *win.get().page().layout_chan;
layout_chan.send(AddStylesheetMsg(sheet)); layout_chan.send(AddStylesheetMsg(sheet));
} }
} }

View file

@ -18,26 +18,14 @@ use serialize::{Encoder, Encodable};
#[deriving(Encodable)] #[deriving(Encodable)]
pub struct Location { pub struct Location {
reflector_: Reflector, //XXXjdm cycle: window->Location->window reflector_: Reflector, //XXXjdm cycle: window->Location->window
priv extra: Untraceable,
}
struct Untraceable {
page: Rc<Page>, page: Rc<Page>,
} }
impl<S: Encoder> Encodable<S> for Untraceable {
fn encode(&self, s: &mut S) {
self.page.encode(s);
}
}
impl Location { impl Location {
pub fn new_inherited(page: Rc<Page>) -> Location { pub fn new_inherited(page: Rc<Page>) -> Location {
Location { Location {
reflector_: Reflector::new(), reflector_: Reflector::new(),
extra: Untraceable { page: page
page: page
}
} }
} }
@ -60,7 +48,7 @@ impl Location {
} }
pub fn Href(&self) -> DOMString { pub fn Href(&self) -> DOMString {
self.extra.page.get_url().to_str() self.page.get_url().to_str()
} }
pub fn SetHref(&self, _href: DOMString) -> Fallible<()> { pub fn SetHref(&self, _href: DOMString) -> Fallible<()> {

View file

@ -37,6 +37,7 @@ use std::cast::transmute;
use std::cast; use std::cast;
use std::cell::{RefCell, Ref, RefMut}; use std::cell::{RefCell, Ref, RefMut};
use std::iter::{Map, Filter}; use std::iter::{Map, Filter};
use std::libc;
use std::libc::uintptr_t; use std::libc::uintptr_t;
use std::mem; use std::mem;
@ -562,7 +563,7 @@ impl NodeHelpers for JS<Node> {
} }
fn to_trusted_node_address(&self) -> TrustedNodeAddress { fn to_trusted_node_address(&self) -> TrustedNodeAddress {
self.get() as *Node as TrustedNodeAddress TrustedNodeAddress(self.get() as *Node as *libc::c_void)
} }
} }

View file

@ -4,6 +4,7 @@
use dom::bindings::codegen::WindowBinding; use dom::bindings::codegen::WindowBinding;
use dom::bindings::js::JS; use dom::bindings::js::JS;
use dom::bindings::trace::Untraceable;
use dom::bindings::utils::{Reflectable, Reflector}; use dom::bindings::utils::{Reflectable, Reflector};
use dom::document::Document; use dom::document::Document;
use dom::element::Element; use dom::element::Element;
@ -84,29 +85,19 @@ pub struct Window {
image_cache_task: ImageCacheTask, image_cache_task: ImageCacheTask,
active_timers: ~HashMap<i32, TimerHandle>, active_timers: ~HashMap<i32, TimerHandle>,
next_timer_handle: i32, next_timer_handle: i32,
priv extra: Untraceable compositor: Untraceable<~ScriptListener>,
} timer_chan: Untraceable<Sender<TimerControlMsg>>,
struct Untraceable {
page: Rc<Page>, page: Rc<Page>,
compositor: ~ScriptListener,
timer_chan: Sender<TimerControlMsg>,
}
impl<S: Encoder> Encodable<S> for Untraceable {
fn encode(&self, s: &mut S) {
self.page.encode(s);
}
} }
impl Window { impl Window {
pub fn get_cx(&self) -> *JSObject { pub fn get_cx(&self) -> *JSObject {
let js_info = self.page().js_info(); let js_info = self.page().js_info();
js_info.get_ref().js_compartment.cx.deref().ptr js_info.get_ref().js_compartment.deref().cx.deref().ptr
} }
pub fn page<'a>(&'a self) -> &'a Page { pub fn page<'a>(&'a self) -> &'a Page {
&*self.extra.page &*self.page
} }
pub fn get_url(&self) -> Url { pub fn get_url(&self) -> Url {
self.page().get_url() self.page().get_url()
@ -116,7 +107,7 @@ impl Window {
#[unsafe_destructor] #[unsafe_destructor]
impl Drop for Window { impl Drop for Window {
fn drop(&mut self) { fn drop(&mut self) {
self.extra.timer_chan.send(TimerMessageClose); self.timer_chan.send(TimerMessageClose);
for timer_handle in self.active_timers.values() { for timer_handle in self.active_timers.values() {
timer_handle.cancel(); timer_handle.cancel();
} }
@ -140,7 +131,7 @@ impl Window {
} }
pub fn Close(&self) { pub fn Close(&self) {
self.extra.timer_chan.send(TimerMessageTriggerExit); self.timer_chan.deref().send(TimerMessageTriggerExit);
} }
pub fn Document(&self) -> JS<Document> { pub fn Document(&self) -> JS<Document> {
@ -181,7 +172,7 @@ impl Window {
pub fn Location(&mut self, abstract_self: &JS<Window>) -> JS<Location> { pub fn Location(&mut self, abstract_self: &JS<Window>) -> JS<Location> {
if self.location.is_none() { if self.location.is_none() {
self.location = Some(Location::new(abstract_self, self.extra.page.clone())); self.location = Some(Location::new(abstract_self, self.page.clone()));
} }
self.location.get_ref().clone() self.location.get_ref().clone()
} }
@ -236,7 +227,7 @@ impl Window {
// to the relevant script handler that will deal with it. // to the relevant script handler that will deal with it.
let tm = Timer::new().unwrap(); let tm = Timer::new().unwrap();
let (cancel_chan, cancel_port) = channel(); let (cancel_chan, cancel_port) = channel();
let chan = self.extra.timer_chan.clone(); let chan = self.timer_chan.clone();
let spawn_name = if is_interval { let spawn_name = if is_interval {
"Window:SetInterval" "Window:SetInterval"
} else { } else {
@ -304,7 +295,7 @@ impl Window {
// currently rely on the display list, which means we can't destroy it by // currently rely on the display list, which means we can't destroy it by
// doing a query reflow. // doing a query reflow.
self.page().damage(damage); self.page().damage(damage);
self.page().reflow(ReflowForDisplay, self.script_chan.clone(), self.extra.compositor); self.page().reflow(ReflowForDisplay, self.script_chan.clone(), *self.compositor);
} }
pub fn wait_until_safe_to_modify_dom(&self) { pub fn wait_until_safe_to_modify_dom(&self) {
@ -319,29 +310,27 @@ impl Window {
compositor: ~ScriptListener, compositor: ~ScriptListener,
image_cache_task: ImageCacheTask) image_cache_task: ImageCacheTask)
-> JS<Window> { -> JS<Window> {
let script_chan_clone = script_chan.clone();
let (timer_chan, timer_port): (Sender<TimerControlMsg>, Receiver<TimerControlMsg>) = channel();
let id = page.id.clone();
spawn_named("timer controller", proc() {
let ScriptChan(script_chan) = script_chan;
loop {
match timer_port.recv() {
TimerMessageClose => break,
TimerMessageFire(td) => script_chan.send(FireTimerMsg(id, td)),
TimerMessageTriggerExit => script_chan.send(ExitWindowMsg(id)),
}
}
});
let win = ~Window { let win = ~Window {
eventtarget: EventTarget::new_inherited(WindowTypeId), eventtarget: EventTarget::new_inherited(WindowTypeId),
script_chan: script_chan.clone(), script_chan: script_chan_clone,
console: None, console: None,
extra: Untraceable { compositor: Untraceable::new(compositor),
compositor: compositor, timer_chan: Untraceable::new(timer_chan),
page: page.clone(), page: page.clone(),
timer_chan: {
let (timer_chan, timer_port): (Sender<TimerControlMsg>, Receiver<TimerControlMsg>) = channel();
let id = page.id.clone();
spawn_named("timer controller", proc() {
let ScriptChan(script_chan) = script_chan;
loop {
match timer_port.recv() {
TimerMessageClose => break,
TimerMessageFire(td) => script_chan.send(FireTimerMsg(id, td)),
TimerMessageTriggerExit => script_chan.send(ExitWindowMsg(id)),
}
}
});
timer_chan
}
},
location: None, location: None,
navigator: None, navigator: None,
image_cache_task: image_cache_task, image_cache_task: image_cache_task,

View file

@ -252,7 +252,7 @@ pub fn parse_html(page: &Page,
resource_task: ResourceTask) resource_task: ResourceTask)
-> HtmlParserResult { -> HtmlParserResult {
debug!("Hubbub: parsing {:?}", url); debug!("Hubbub: parsing {:?}", url);
let next_subpage_id: SubpageId = *page.next_subpage_id.borrow(); let next_subpage_id: SubpageId = *page.next_subpage_id.deref().borrow();
// Spawn a CSS parser to receive links to CSS style sheets. // Spawn a CSS parser to receive links to CSS style sheets.
let resource_task2 = resource_task.clone(); let resource_task2 = resource_task.clone();

View file

@ -6,7 +6,8 @@
/// coupling between these two components, and enables the DOM to be placed in a separate crate /// coupling between these two components, and enables the DOM to be placed in a separate crate
/// from layout. /// from layout.
use dom::node::LayoutDataRef; use dom::bindings::js::JS;
use dom::node::{Node, LayoutDataRef};
use geom::point::Point2D; use geom::point::Point2D;
use geom::rect::Rect; use geom::rect::Rect;
@ -19,6 +20,8 @@ use std::libc::c_void;
use style::Stylesheet; use style::Stylesheet;
use url::Url; use url::Url;
use serialize::{Encodable, Encoder};
/// Asynchronous messages that script can send to layout. /// Asynchronous messages that script can send to layout.
/// ///
/// FIXME(pcwalton): I think this should probably be merged with `LayoutQuery` below. /// FIXME(pcwalton): I think this should probably be merged with `LayoutQuery` below.
@ -62,7 +65,17 @@ pub enum LayoutQuery {
/// The address of a node known to be valid. These must only be sent from content -> layout, /// The address of a node known to be valid. These must only be sent from content -> layout,
/// because we do not trust layout. /// because we do not trust layout.
pub type TrustedNodeAddress = *c_void; pub struct TrustedNodeAddress(*c_void);
impl<S: Encoder> Encodable<S> for TrustedNodeAddress {
fn encode(&self, s: &mut S) {
let TrustedNodeAddress(addr) = *self;
let node = addr as *Node as *mut Node;
unsafe {
JS::from_raw(node).encode(s)
}
}
}
/// The address of a node. Layout sends these back. They must be validated via /// The address of a node. Layout sends these back. They must be validated via
/// `from_untrusted_node_address` before they can be used, because we do not trust layout. /// `from_untrusted_node_address` before they can be used, because we do not trust layout.
@ -74,7 +87,7 @@ pub struct HitTestResponse(UntrustedNodeAddress);
pub struct MouseOverResponse(~[UntrustedNodeAddress]); pub struct MouseOverResponse(~[UntrustedNodeAddress]);
/// Determines which part of the /// Determines which part of the
#[deriving(Eq, Ord, TotalEq, TotalOrd)] #[deriving(Eq, Ord, TotalEq, TotalOrd, Encodable)]
pub enum DocumentDamageLevel { pub enum DocumentDamageLevel {
/// Reflow, but do not perform CSS selector matching. /// Reflow, but do not perform CSS selector matching.
ReflowDocumentDamage, ReflowDocumentDamage,
@ -94,6 +107,7 @@ impl DocumentDamageLevel {
/// What parts of the document have changed, as far as the script task can tell. /// What parts of the document have changed, as far as the script task can tell.
/// ///
/// Note that this is fairly coarse-grained and is separate from layout's notion of the document /// Note that this is fairly coarse-grained and is separate from layout's notion of the document
#[deriving(Encodable)]
pub struct DocumentDamage { pub struct DocumentDamage {
/// The topmost node in the tree that has changed. /// The topmost node in the tree that has changed.
root: TrustedNodeAddress, root: TrustedNodeAddress,

View file

@ -8,6 +8,7 @@
use dom::bindings::codegen::RegisterBindings; use dom::bindings::codegen::RegisterBindings;
use dom::bindings::codegen::InheritTypes::{EventTargetCast, NodeCast, ElementCast, EventCast}; use dom::bindings::codegen::InheritTypes::{EventTargetCast, NodeCast, ElementCast, EventCast};
use dom::bindings::js::JS; use dom::bindings::js::JS;
use dom::bindings::trace::{Traceable, Untraceable};
use dom::bindings::utils::{Reflectable, GlobalStaticData, with_gc_enabled}; use dom::bindings::utils::{Reflectable, GlobalStaticData, with_gc_enabled};
use dom::document::{Document, HTMLDocument}; use dom::document::{Document, HTMLDocument};
use dom::element::{Element, AttributeHandlers}; use dom::element::{Element, AttributeHandlers};
@ -107,50 +108,44 @@ impl ScriptChan {
} }
/// Encapsulates a handle to a frame and its associated layout information. /// Encapsulates a handle to a frame and its associated layout information.
#[deriving(Encodable)]
pub struct Page { pub struct Page {
/// Pipeline id associated with this page. /// Pipeline id associated with this page.
id: PipelineId, id: PipelineId,
/// Unique id for last reflow request; used for confirming completion reply. /// Unique id for last reflow request; used for confirming completion reply.
last_reflow_id: RefCell<uint>, last_reflow_id: Traceable<RefCell<uint>>,
/// The outermost frame containing the document, window, and page URL. /// The outermost frame containing the document, window, and page URL.
frame: RefCell<Option<Frame>>, frame: Traceable<RefCell<Option<Frame>>>,
/// A handle for communicating messages to the layout task. /// A handle for communicating messages to the layout task.
layout_chan: LayoutChan, layout_chan: Untraceable<LayoutChan>,
/// The port that we will use to join layout. If this is `None`, then layout is not running. /// The port that we will use to join layout. If this is `None`, then layout is not running.
layout_join_port: RefCell<Option<Receiver<()>>>, layout_join_port: Untraceable<RefCell<Option<Receiver<()>>>>,
/// What parts of the document are dirty, if any. /// What parts of the document are dirty, if any.
damage: RefCell<Option<DocumentDamage>>, damage: Traceable<RefCell<Option<DocumentDamage>>>,
/// The current size of the window, in pixels. /// The current size of the window, in pixels.
window_size: RefCell<Size2D<uint>>, window_size: Untraceable<RefCell<Size2D<uint>>>,
js_info: RefCell<Option<JSPageInfo>>, js_info: Traceable<RefCell<Option<JSPageInfo>>>,
/// Cached copy of the most recent url loaded by the script /// Cached copy of the most recent url loaded by the script
/// TODO(tkuehn): this currently does not follow any particular caching policy /// TODO(tkuehn): this currently does not follow any particular caching policy
/// and simply caches pages forever (!). The bool indicates if reflow is required /// and simply caches pages forever (!). The bool indicates if reflow is required
/// when reloading. /// when reloading.
url: RefCell<Option<(Url, bool)>>, url: Untraceable<RefCell<Option<(Url, bool)>>>,
next_subpage_id: RefCell<SubpageId>, next_subpage_id: Untraceable<RefCell<SubpageId>>,
/// Pending resize event, if any. /// Pending resize event, if any.
resize_event: RefCell<Option<Size2D<uint>>>, resize_event: Untraceable<RefCell<Option<Size2D<uint>>>>,
/// Pending scroll to fragment event, if any /// Pending scroll to fragment event, if any
fragment_node: RefCell<Option<JS<Element>>> fragment_node: Traceable<RefCell<Option<JS<Element>>>>
}
impl<S: Encoder> Encodable<S> for Page {
fn encode(&self, s: &mut S) {
let fragment_node = self.fragment_node.borrow();
fragment_node.encode(s);
}
} }
pub struct PageTree { pub struct PageTree {
@ -167,17 +162,17 @@ impl PageTree {
PageTree { PageTree {
page: Rc::new(Page { page: Rc::new(Page {
id: id, id: id,
frame: RefCell::new(None), frame: Traceable::new(RefCell::new(None)),
layout_chan: layout_chan, layout_chan: Untraceable::new(layout_chan),
layout_join_port: RefCell::new(None), layout_join_port: Untraceable::new(RefCell::new(None)),
damage: RefCell::new(None), damage: Traceable::new(RefCell::new(None)),
window_size: RefCell::new(window_size), window_size: Untraceable::new(RefCell::new(window_size)),
js_info: RefCell::new(None), js_info: Traceable::new(RefCell::new(None)),
url: RefCell::new(None), url: Untraceable::new(RefCell::new(None)),
next_subpage_id: RefCell::new(SubpageId(0)), next_subpage_id: Untraceable::new(RefCell::new(SubpageId(0))),
resize_event: RefCell::new(None), resize_event: Untraceable::new(RefCell::new(None)),
fragment_node: RefCell::new(None), fragment_node: Traceable::new(RefCell::new(None)),
last_reflow_id: RefCell::new(0) last_reflow_id: Traceable::new(RefCell::new(0))
}), }),
inner: ~[], inner: ~[],
} }
@ -251,27 +246,27 @@ impl<'a> Iterator<Rc<Page>> for PageTreeIterator<'a> {
impl Page { impl Page {
pub fn mut_js_info<'a>(&'a self) -> RefMut<'a, Option<JSPageInfo>> { pub fn mut_js_info<'a>(&'a self) -> RefMut<'a, Option<JSPageInfo>> {
self.js_info.borrow_mut() self.js_info.deref().borrow_mut()
} }
pub fn js_info<'a>(&'a self) -> Ref<'a, Option<JSPageInfo>> { pub fn js_info<'a>(&'a self) -> Ref<'a, Option<JSPageInfo>> {
self.js_info.borrow() self.js_info.deref().borrow()
} }
pub fn url<'a>(&'a self) -> Ref<'a, Option<(Url, bool)>> { pub fn url<'a>(&'a self) -> Ref<'a, Option<(Url, bool)>> {
self.url.borrow() self.url.deref().borrow()
} }
pub fn mut_url<'a>(&'a self) -> RefMut<'a, Option<(Url, bool)>> { pub fn mut_url<'a>(&'a self) -> RefMut<'a, Option<(Url, bool)>> {
self.url.borrow_mut() self.url.deref().borrow_mut()
} }
pub fn frame<'a>(&'a self) -> Ref<'a, Option<Frame>> { pub fn frame<'a>(&'a self) -> Ref<'a, Option<Frame>> {
self.frame.borrow() self.frame.deref().borrow()
} }
pub fn mut_frame<'a>(&'a self) -> RefMut<'a, Option<Frame>> { pub fn mut_frame<'a>(&'a self) -> RefMut<'a, Option<Frame>> {
self.frame.borrow_mut() self.frame.deref().borrow_mut()
} }
/// Adds the given damage. /// Adds the given damage.
@ -284,7 +279,7 @@ impl Page {
None => {}, None => {},
Some(root) => { Some(root) => {
let root: JS<Node> = NodeCast::from(&root); let root: JS<Node> = NodeCast::from(&root);
let mut damage = *self.damage.borrow_mut(); let mut damage = *self.damage.deref().borrow_mut();
match damage { match damage {
None => {} None => {}
Some(ref mut damage) => { Some(ref mut damage) => {
@ -295,7 +290,7 @@ impl Page {
} }
} }
*self.damage.borrow_mut() = Some(DocumentDamage { *self.damage.deref().borrow_mut() = Some(DocumentDamage {
root: root.to_trusted_node_address(), root: root.to_trusted_node_address(),
level: level, level: level,
}) })
@ -310,7 +305,7 @@ impl Page {
/// Sends a ping to layout and waits for the response. The response will arrive when the /// Sends a ping to layout and waits for the response. The response will arrive when the
/// layout task has finished any pending request messages. /// layout task has finished any pending request messages.
pub fn join_layout(&self) { pub fn join_layout(&self) {
let mut layout_join_port = self.layout_join_port.borrow_mut(); let mut layout_join_port = self.layout_join_port.deref().borrow_mut();
if layout_join_port.is_some() { if layout_join_port.is_some() {
let join_port = replace(&mut *layout_join_port, None); let join_port = replace(&mut *layout_join_port, None);
match join_port { match join_port {
@ -339,7 +334,7 @@ impl Page {
response_port: Receiver<T>) response_port: Receiver<T>)
-> T { -> T {
self.join_layout(); self.join_layout();
let LayoutChan(ref chan) = self.layout_chan; let LayoutChan(ref chan) = *self.layout_chan;
chan.send(QueryMsg(query)); chan.send(QueryMsg(query));
response_port.recv() response_port.recv()
} }
@ -375,15 +370,15 @@ impl Page {
// Layout will let us know when it's done. // Layout will let us know when it's done.
let (join_chan, join_port) = channel(); let (join_chan, join_port) = channel();
let mut layout_join_port = self.layout_join_port.borrow_mut(); let mut layout_join_port = self.layout_join_port.deref().borrow_mut();
*layout_join_port = Some(join_port); *layout_join_port = Some(join_port);
let mut last_reflow_id = self.last_reflow_id.borrow_mut(); let mut last_reflow_id = self.last_reflow_id.deref().borrow_mut();
*last_reflow_id += 1; *last_reflow_id += 1;
let root: JS<Node> = NodeCast::from(&root); let root: JS<Node> = NodeCast::from(&root);
let mut damage = self.damage.borrow_mut(); let mut damage = self.damage.deref().borrow_mut();
let window_size = self.window_size.borrow(); let window_size = self.window_size.deref().borrow();
// Send new document and relevant styles to layout. // Send new document and relevant styles to layout.
let reflow = ~Reflow { let reflow = ~Reflow {
@ -397,7 +392,7 @@ impl Page {
id: *last_reflow_id, id: *last_reflow_id,
}; };
let LayoutChan(ref chan) = self.layout_chan; let LayoutChan(ref chan) = *self.layout_chan;
chan.send(ReflowMsg(reflow)); chan.send(ReflowMsg(reflow));
debug!("script: layout forked") debug!("script: layout forked")
@ -443,8 +438,8 @@ impl Page {
let mut js_info = self.mut_js_info(); let mut js_info = self.mut_js_info();
*js_info = Some(JSPageInfo { *js_info = Some(JSPageInfo {
dom_static: GlobalStaticData(), dom_static: GlobalStaticData(),
js_compartment: compartment, js_compartment: Untraceable::new(compartment),
js_context: js_context, js_context: Untraceable::new(js_context),
}); });
} }
} }
@ -459,13 +454,14 @@ pub struct Frame {
} }
/// Encapsulation of the javascript information associated with each frame. /// Encapsulation of the javascript information associated with each frame.
#[deriving(Encodable)]
pub struct JSPageInfo { pub struct JSPageInfo {
/// Global static data related to the DOM. /// Global static data related to the DOM.
dom_static: GlobalStaticData, dom_static: GlobalStaticData,
/// The JavaScript compartment for the origin associated with the script task. /// The JavaScript compartment for the origin associated with the script task.
js_compartment: Rc<Compartment>, js_compartment: Untraceable<Rc<Compartment>>,
/// The JavaScript context. /// The JavaScript context.
js_context: Rc<Cx>, js_context: Untraceable<Rc<Cx>>,
} }
/// Information for an entire page. Pages are top-level browsing contexts and can contain multiple /// Information for an entire page. Pages are top-level browsing contexts and can contain multiple
@ -573,9 +569,9 @@ impl ScriptTask {
let mut page_tree = self.page_tree.borrow_mut(); let mut page_tree = self.page_tree.borrow_mut();
for page in page_tree.iter() { for page in page_tree.iter() {
// Only process a resize if layout is idle. // Only process a resize if layout is idle.
let layout_join_port = page.layout_join_port.borrow(); let layout_join_port = page.layout_join_port.deref().borrow();
if layout_join_port.is_none() { if layout_join_port.is_none() {
let mut resize_event = page.resize_event.borrow_mut(); let mut resize_event = page.resize_event.deref().borrow_mut();
match resize_event.take() { match resize_event.take() {
Some(size) => resizes.push((page.id, size)), Some(size) => resizes.push((page.id, size)),
None => () None => ()
@ -599,7 +595,7 @@ impl ScriptTask {
ResizeMsg(id, size) => { ResizeMsg(id, size) => {
let mut page_tree = self.page_tree.borrow_mut(); let mut page_tree = self.page_tree.borrow_mut();
let page = page_tree.find(id).expect("resize sent to nonexistent pipeline").page(); let page = page_tree.find(id).expect("resize sent to nonexistent pipeline").page();
let mut resize_event = page.resize_event.borrow_mut(); let mut resize_event = page.resize_event.deref().borrow_mut();
*resize_event = Some(size); *resize_event = Some(size);
} }
_ => { _ => {
@ -646,7 +642,7 @@ impl ScriptTask {
whose parent has a PipelineId which does not correspond to a pipeline in the script whose parent has a PipelineId which does not correspond to a pipeline in the script
task's page tree. This is a bug."); task's page tree. This is a bug.");
let new_page_tree = { let new_page_tree = {
let window_size = parent_page_tree.page().window_size.borrow(); let window_size = parent_page_tree.page().window_size.deref().borrow();
PageTree::new(new_id, layout_chan, *window_size) PageTree::new(new_id, layout_chan, *window_size)
}; };
parent_page_tree.inner.push(new_page_tree); parent_page_tree.inner.push(new_page_tree);
@ -680,7 +676,7 @@ impl ScriptTask {
// TODO: Support extra arguments. This requires passing a `*JSVal` array as `argv`. // TODO: Support extra arguments. This requires passing a `*JSVal` array as `argv`.
let rval = NullValue(); let rval = NullValue();
let cx = js_info.get_ref().js_context.deref().ptr; let cx = js_info.get_ref().js_context.deref().deref().ptr;
with_gc_enabled(cx, || { with_gc_enabled(cx, || {
unsafe { unsafe {
JS_CallFunctionValue(cx, this_value, timer_data.funval, 0, ptr::null(), &rval); JS_CallFunctionValue(cx, this_value, timer_data.funval, 0, ptr::null(), &rval);
@ -695,9 +691,9 @@ impl ScriptTask {
let page = page_tree.find(pipeline_id).expect( let page = page_tree.find(pipeline_id).expect(
"ScriptTask: received a load message for a layout channel that is not associated \ "ScriptTask: received a load message for a layout channel that is not associated \
with this script task. This is a bug.").page(); with this script task. This is a bug.").page();
let last_reflow_id = page.last_reflow_id.borrow(); let last_reflow_id = page.last_reflow_id.deref().borrow();
if *last_reflow_id == reflow_id { if *last_reflow_id == reflow_id {
let mut layout_join_port = page.layout_join_port.borrow_mut(); let mut layout_join_port = page.layout_join_port.deref().borrow_mut();
*layout_join_port = None; *layout_join_port = None;
} }
self.compositor.set_ready_state(FinishedLoading); self.compositor.set_ready_state(FinishedLoading);
@ -715,7 +711,7 @@ impl ScriptTask {
let mut page_tree = self.page_tree.borrow_mut(); let mut page_tree = self.page_tree.borrow_mut();
let page = page_tree.find(id).expect("Received resize message for PipelineId not associated let page = page_tree.find(id).expect("Received resize message for PipelineId not associated
with a page in the page tree. This is a bug.").page(); with a page in the page tree. This is a bug.").page();
let mut window_size = page.window_size.borrow_mut(); let mut window_size = page.window_size.deref().borrow_mut();
*window_size = new_size; *window_size = new_size;
let mut page_url = page.mut_url(); let mut page_url = page.mut_url();
let last_loaded_url = replace(&mut *page_url, None); let last_loaded_url = replace(&mut *page_url, None);
@ -845,12 +841,12 @@ impl ScriptTask {
js_scripts = Some(scripts); js_scripts = Some(scripts);
} }
Some(HtmlDiscoveredStyle(sheet)) => { Some(HtmlDiscoveredStyle(sheet)) => {
let LayoutChan(ref chan) = page.layout_chan; let LayoutChan(ref chan) = *page.layout_chan;
chan.send(AddStylesheetMsg(sheet)); chan.send(AddStylesheetMsg(sheet));
} }
Some(HtmlDiscoveredIFrame((iframe_url, subpage_id, sandboxed))) => { Some(HtmlDiscoveredIFrame((iframe_url, subpage_id, sandboxed))) => {
let SubpageId(num) = subpage_id; let SubpageId(num) = subpage_id;
page.next_subpage_id.set(SubpageId(num + 1)); page.next_subpage_id.deref().set(SubpageId(num + 1));
let sandboxed = if sandboxed { let sandboxed = if sandboxed {
IFrameSandboxed IFrameSandboxed
} else { } else {
@ -886,9 +882,9 @@ impl ScriptTask {
let cx = { let cx = {
let js_info = page.js_info(); let js_info = page.js_info();
let js_info = js_info.get_ref(); let js_info = js_info.get_ref();
assert!(js_info.js_compartment.define_functions(DEBUG_FNS).is_ok()); assert!(js_info.js_compartment.deref().define_functions(DEBUG_FNS).is_ok());
js_info.js_context.deref().ptr js_info.js_context.deref().deref().ptr
}; };
// Evaluate every script in the document. // Evaluate every script in the document.
@ -896,7 +892,7 @@ impl ScriptTask {
with_gc_enabled(cx, || { with_gc_enabled(cx, || {
let (cx, global_obj) = { let (cx, global_obj) = {
let js_info = page.js_info(); let js_info = page.js_info();
(js_info.get_ref().js_context.clone(), (js_info.get_ref().js_context.deref().clone(),
js_info.get_ref().js_compartment.global_obj) js_info.get_ref().js_compartment.global_obj)
}; };
//FIXME: this should have some kind of error handling, or explicitly //FIXME: this should have some kind of error handling, or explicitly
@ -918,7 +914,7 @@ impl ScriptTask {
let winclone = wintarget.clone(); let winclone = wintarget.clone();
let _ = wintarget.get_mut().dispatch_event_with_target(&winclone, Some(doctarget), &mut event); let _ = wintarget.get_mut().dispatch_event_with_target(&winclone, Some(doctarget), &mut event);
let mut fragment_node = page.fragment_node.borrow_mut(); let mut fragment_node = page.fragment_node.deref().borrow_mut();
*fragment_node = fragment.map_or(None, |fragid| page.find_fragment_node(fragid)); *fragment_node = fragment.map_or(None, |fragid| page.find_fragment_node(fragid));
let ConstellationChan(ref chan) = self.constellation_chan; let ConstellationChan(ref chan) = self.constellation_chan;
@ -953,7 +949,7 @@ impl ScriptTask {
debug!("script got resize event: {:u}, {:u}", new_width, new_height); debug!("script got resize event: {:u}, {:u}", new_width, new_height);
{ {
let mut window_size = page.window_size.borrow_mut(); let mut window_size = page.window_size.deref().borrow_mut();
*window_size = Size2D(new_width, new_height); *window_size = Size2D(new_width, new_height);
} }
@ -965,7 +961,7 @@ impl ScriptTask {
} }
} }
let mut fragment_node = page.fragment_node.borrow_mut(); let mut fragment_node = page.fragment_node.deref().borrow_mut();
match fragment_node.take() { match fragment_node.take() {
Some(node) => self.scroll_fragment_point(pipeline_id, page, node), Some(node) => self.scroll_fragment_point(pipeline_id, page, node),
None => {} None => {}
@ -1145,7 +1141,7 @@ fn shut_down_layout(page: &Page) {
// Tell the layout task to begin shutting down. // Tell the layout task to begin shutting down.
let (response_chan, response_port) = channel(); let (response_chan, response_port) = channel();
let LayoutChan(ref chan) = page.layout_chan; let LayoutChan(ref chan) = *page.layout_chan;
chan.send(layout_interface::PrepareToExitMsg(response_chan)); chan.send(layout_interface::PrepareToExitMsg(response_chan));
response_port.recv(); response_port.recv();
@ -1154,7 +1150,7 @@ fn shut_down_layout(page: &Page) {
let mut js_info = page.mut_js_info(); let mut js_info = page.mut_js_info();
unsafe { unsafe {
JS_AllowGC(js_info.get_ref().js_context.deref().ptr); JS_AllowGC(js_info.get_ref().js_context.deref().deref().ptr);
} }
let mut frame = page.mut_frame(); let mut frame = page.mut_frame();