/* 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::codegen::PrototypeList; use dom::bindings::codegen::PrototypeList::MAX_PROTO_CHAIN_LENGTH; use dom::bindings::conversions::{FromJSValConvertible, IDLInterface}; use dom::bindings::js::{JS, JSRef, Temporary, Root}; use dom::bindings::trace::Untraceable; use dom::browsercontext; use dom::window; use servo_util::str::DOMString; use libc; use libc::c_uint; use std::cell::Cell; use std::mem; use std::cmp::PartialEq; use std::ptr; use std::ptr::null; use std::slice; use std::str; use js::glue::{js_IsObjectProxyClass, js_IsFunctionProxyClass, IsProxyHandlerFamily}; use js::glue::{GetGlobalForObjectCrossCompartment, UnwrapObject, GetProxyHandlerExtra}; use js::glue::{IsWrapper, RUST_JSID_TO_STRING, RUST_JSID_IS_INT}; use js::glue::{RUST_JSID_IS_STRING, RUST_JSID_TO_INT}; use js::jsapi::{JS_AlreadyHasOwnProperty, JS_NewFunction}; use js::jsapi::{JS_DefineProperties, JS_ForwardGetPropertyTo}; use js::jsapi::{JS_GetClass, JS_LinkConstructorAndPrototype, JS_GetStringCharsAndLength}; use js::jsapi::{JS_ObjectIsRegExp, JS_ObjectIsDate, JSHandleObject}; use js::jsapi::JS_GetFunctionObject; use js::jsapi::{JS_HasPropertyById, JS_GetPrototype}; use js::jsapi::{JS_GetProperty, JS_HasProperty}; use js::jsapi::{JS_DefineFunctions, JS_DefineProperty}; use js::jsapi::{JS_ValueToString, JS_GetReservedSlot, JS_SetReservedSlot}; use js::jsapi::{JSContext, JSObject, JSBool, jsid, JSClass}; use js::jsapi::{JSFunctionSpec, JSPropertySpec}; use js::jsapi::{JS_NewGlobalObject, JS_InitStandardClasses}; use js::jsapi::{JSString}; use js::jsfriendapi::JS_ObjectToOuterObject; use js::jsfriendapi::bindgen::JS_NewObjectWithUniqueType; use js::jsval::JSVal; use js::jsval::{PrivateValue, ObjectValue, NullValue, ObjectOrNullValue}; use js::jsval::{Int32Value, UInt32Value, DoubleValue, BooleanValue, UndefinedValue}; use js::rust::with_compartment; use js::{JSPROP_ENUMERATE, JSCLASS_IS_GLOBAL, JSCLASS_IS_DOMJSCLASS}; use js::JSPROP_PERMANENT; use js::{JSFUN_CONSTRUCTOR, JSPROP_READONLY}; use js; #[allow(raw_pointer_deriving)] #[deriving(Encodable)] pub struct GlobalStaticData { pub windowproxy_handler: Untraceable<*libc::c_void>, } pub fn GlobalStaticData() -> GlobalStaticData { GlobalStaticData { windowproxy_handler: Untraceable::new(browsercontext::new_window_proxy_handler()), } } fn is_dom_class(clasp: *JSClass) -> bool { unsafe { ((*clasp).flags & js::JSCLASS_IS_DOMJSCLASS) != 0 } } pub fn is_dom_proxy(obj: *mut JSObject) -> bool { unsafe { (js_IsObjectProxyClass(obj) || js_IsFunctionProxyClass(obj)) && IsProxyHandlerFamily(obj) } } pub unsafe fn dom_object_slot(obj: *mut JSObject) -> u32 { let clasp = JS_GetClass(obj); if is_dom_class(clasp) { DOM_OBJECT_SLOT as u32 } else { assert!(is_dom_proxy(obj)); DOM_PROXY_OBJECT_SLOT as u32 } } pub unsafe fn unwrap(obj: *mut JSObject) -> *T { let slot = dom_object_slot(obj); let val = JS_GetReservedSlot(obj, slot); val.to_private() as *T } pub unsafe fn get_dom_class(obj: *mut JSObject) -> Result { let clasp = JS_GetClass(obj); if is_dom_class(clasp) { debug!("plain old dom object"); let domjsclass: *DOMJSClass = clasp as *DOMJSClass; return Ok((*domjsclass).dom_class); } if is_dom_proxy(obj) { debug!("proxy dom object"); let dom_class: *DOMClass = GetProxyHandlerExtra(obj) as *DOMClass; return Ok(*dom_class); } debug!("not a dom object"); return Err(()); } pub fn unwrap_jsmanaged(mut obj: *mut JSObject, proto_id: PrototypeList::id::ID, proto_depth: uint) -> Result, ()> { unsafe { let dom_class = get_dom_class(obj).or_else(|_| { if IsWrapper(obj) == 1 { debug!("found wrapper"); obj = UnwrapObject(obj, /* stopAtOuter = */ 0, ptr::null()); if obj.is_null() { debug!("unwrapping security wrapper failed"); Err(()) } else { assert!(IsWrapper(obj) == 0); debug!("unwrapped successfully"); get_dom_class(obj) } } else { debug!("not a dom wrapper"); Err(()) } }); dom_class.and_then(|dom_class| { if dom_class.interface_chain[proto_depth] == proto_id { debug!("good prototype"); Ok(JS::from_raw(unwrap(obj))) } else { debug!("bad prototype"); Err(()) } }) } } pub unsafe fn squirrel_away_unique(x: Box) -> *T { mem::transmute(x) } pub fn jsstring_to_str(cx: *mut JSContext, s: *mut JSString) -> DOMString { unsafe { let mut length = 0; let chars = JS_GetStringCharsAndLength(cx, s, &mut length); slice::raw::buf_as_slice(chars, length as uint, |char_vec| { str::from_utf16(char_vec).unwrap() }) } } pub fn jsid_to_str(cx: *mut JSContext, id: jsid) -> DOMString { unsafe { assert!(RUST_JSID_IS_STRING(id) != 0); jsstring_to_str(cx, RUST_JSID_TO_STRING(id)) } } // We use slot 0 for holding the raw object. This is safe for both // globals and non-globals. pub static DOM_OBJECT_SLOT: uint = 0; static DOM_PROXY_OBJECT_SLOT: uint = js::JSSLOT_PROXY_PRIVATE as uint; // NOTE: This is baked into the Ion JIT as 0 in codegen for LGetDOMProperty and // LSetDOMProperty. Those constants need to be changed accordingly if this value // changes. static DOM_PROTO_INSTANCE_CLASS_SLOT: u32 = 0; // All DOM globals must have a slot at DOM_PROTOTYPE_SLOT. pub static DOM_PROTOTYPE_SLOT: u32 = js::JSCLASS_GLOBAL_SLOT_COUNT; // NOTE: This is baked into the Ion JIT as 0 in codegen for LGetDOMProperty and // LSetDOMProperty. Those constants need to be changed accordingly if this value // changes. pub static JSCLASS_DOM_GLOBAL: u32 = js::JSCLASS_USERBIT1; #[deriving(Clone)] pub enum ConstantVal { IntVal(i32), UintVal(u32), DoubleVal(f64), BoolVal(bool), NullVal, VoidVal } #[deriving(Clone)] pub struct ConstantSpec { pub name: &'static [u8], pub value: ConstantVal } pub struct DOMClass { // A list of interfaces that this object implements, in order of decreasing // derivedness. pub interface_chain: [PrototypeList::id::ID, ..MAX_PROTO_CHAIN_LENGTH] } pub struct DOMJSClass { pub base: js::Class, pub dom_class: DOMClass } pub fn GetProtoOrIfaceArray(global: *mut JSObject) -> *mut *mut JSObject { unsafe { assert!(((*JS_GetClass(global)).flags & JSCLASS_DOM_GLOBAL) != 0); JS_GetReservedSlot(global, DOM_PROTOTYPE_SLOT).to_private() as *mut *mut JSObject } } pub struct NativeProperties { pub methods: Option<&'static [JSFunctionSpec]>, pub attrs: Option<&'static [JSPropertySpec]>, pub consts: Option<&'static [ConstantSpec]>, pub staticMethods: Option<&'static [JSFunctionSpec]>, pub staticAttrs: Option<&'static [JSPropertySpec]>, } pub type NonNullJSNative = unsafe extern "C" fn (arg1: *mut JSContext, arg2: c_uint, arg3: *mut JSVal) -> JSBool; pub fn CreateInterfaceObjects2(cx: *mut JSContext, global: *mut JSObject, receiver: *mut JSObject, protoProto: *mut JSObject, protoClass: &'static JSClass, constructor: Option<(NonNullJSNative, &'static str, u32)>, domClass: *DOMClass, members: &'static NativeProperties) -> *mut JSObject { let proto = CreateInterfacePrototypeObject(cx, global, protoProto, protoClass, members); unsafe { JS_SetReservedSlot(proto, DOM_PROTO_INSTANCE_CLASS_SLOT, PrivateValue(domClass as *libc::c_void)); } match constructor { Some((native, name, nargs)) => { name.to_c_str().with_ref(|s| { CreateInterfaceObject(cx, global, receiver, native, nargs, proto, members, s) }) }, None => (), } proto } fn CreateInterfaceObject(cx: *mut JSContext, global: *mut JSObject, receiver: *mut JSObject, constructorNative: NonNullJSNative, ctorNargs: u32, proto: *mut JSObject, members: &'static NativeProperties, name: *libc::c_char) { unsafe { let fun = JS_NewFunction(cx, Some(constructorNative), ctorNargs, JSFUN_CONSTRUCTOR, global, name); assert!(fun.is_not_null()); let constructor = JS_GetFunctionObject(fun); assert!(constructor.is_not_null()); match members.staticMethods { Some(staticMethods) => DefineMethods(cx, constructor, staticMethods), _ => (), } match members.staticAttrs { Some(staticProperties) => DefineProperties(cx, constructor, staticProperties), _ => (), } match members.consts { Some(constants) => DefineConstants(cx, constructor, constants), _ => (), } if proto.is_not_null() { assert!(JS_LinkConstructorAndPrototype(cx, constructor, proto) != 0); } let mut alreadyDefined = 0; assert!(JS_AlreadyHasOwnProperty(cx, receiver, name, &mut alreadyDefined) != 0); if alreadyDefined == 0 { assert!(JS_DefineProperty(cx, receiver, name, ObjectValue(&*constructor), None, None, 0) != 0); } } } fn DefineConstants(cx: *mut JSContext, obj: *mut JSObject, constants: &'static [ConstantSpec]) { for spec in constants.iter() { let jsval = match spec.value { NullVal => NullValue(), IntVal(i) => Int32Value(i), UintVal(u) => UInt32Value(u), DoubleVal(d) => DoubleValue(d), BoolVal(b) => BooleanValue(b), VoidVal => UndefinedValue(), }; unsafe { assert!(JS_DefineProperty(cx, obj, spec.name.as_ptr() as *libc::c_char, jsval, None, None, JSPROP_ENUMERATE | JSPROP_READONLY | JSPROP_PERMANENT) != 0); } } } fn DefineMethods(cx: *mut JSContext, obj: *mut JSObject, methods: &'static [JSFunctionSpec]) { unsafe { assert!(JS_DefineFunctions(cx, obj, methods.as_ptr()) != 0); } } fn DefineProperties(cx: *mut JSContext, obj: *mut JSObject, properties: &'static [JSPropertySpec]) { unsafe { assert!(JS_DefineProperties(cx, obj, properties.as_ptr()) != 0); } } fn CreateInterfacePrototypeObject(cx: *mut JSContext, global: *mut JSObject, parentProto: *mut JSObject, protoClass: &'static JSClass, members: &'static NativeProperties) -> *mut JSObject { unsafe { let ourProto = JS_NewObjectWithUniqueType(cx, protoClass, parentProto, global); assert!(ourProto.is_not_null()); match members.methods { Some(methods) => DefineMethods(cx, ourProto, methods), _ => (), } match members.attrs { Some(properties) => DefineProperties(cx, ourProto, properties), _ => (), } match members.consts { Some(constants) => DefineConstants(cx, ourProto, constants), _ => (), } return ourProto; } } pub extern fn ThrowingConstructor(_cx: *mut JSContext, _argc: c_uint, _vp: *mut JSVal) -> JSBool { //XXX should trigger exception here return 0; } pub fn initialize_global(global: *mut JSObject) { let protoArray = box () ([0 as *mut JSObject, ..PrototypeList::id::IDCount as uint]); unsafe { let box_ = squirrel_away_unique(protoArray); JS_SetReservedSlot(global, DOM_PROTOTYPE_SLOT, PrivateValue(box_ as *libc::c_void)); } } pub trait Reflectable { fn reflector<'a>(&'a self) -> &'a Reflector; } pub fn reflect_dom_object (obj: Box, global: &JSRef, wrap_fn: extern "Rust" fn(*mut JSContext, &JSRef, Box) -> Temporary) -> Temporary { wrap_fn(global.get_cx(), global, obj) } #[allow(raw_pointer_deriving)] #[deriving(PartialEq)] pub struct Reflector { object: Cell<*mut JSObject>, } impl Reflector { #[inline] pub fn get_jsobject(&self) -> *mut JSObject { self.object.get() } pub fn set_jsobject(&self, object: *mut JSObject) { assert!(self.object.get().is_null()); assert!(object.is_not_null()); self.object.set(object); } /// Return a pointer to the memory location at which the JS reflector object is stored. /// Used by Temporary values to root the reflector, as required by the JSAPI rooting /// APIs. pub fn rootable(&self) -> *mut *mut JSObject { &self.object as *Cell<*mut JSObject> as *mut Cell<*mut JSObject> as *mut *mut JSObject } pub fn new() -> Reflector { Reflector { object: Cell::new(ptr::mut_null()), } } } pub fn GetPropertyOnPrototype(cx: *mut JSContext, proxy: *mut JSObject, id: jsid, found: *mut bool, vp: *mut JSVal) -> bool { unsafe { //let proto = GetObjectProto(proxy); let proto = JS_GetPrototype(proxy); if proto.is_null() { *found = false; return true; } let mut hasProp = 0; if JS_HasPropertyById(cx, proto, id, &mut hasProp) == 0 { return false; } *found = hasProp != 0; let no_output = vp.is_null(); if hasProp == 0 || no_output { return true; } JS_ForwardGetPropertyTo(cx, proto, id, proxy, vp) != 0 } } pub fn GetArrayIndexFromId(_cx: *mut JSContext, id: jsid) -> Option { unsafe { if RUST_JSID_IS_INT(id) != 0 { return Some(RUST_JSID_TO_INT(id) as u32); } return None; } // if id is length atom, -1, otherwise /*return if JSID_IS_ATOM(id) { let atom = JSID_TO_ATOM(id); //let s = *GetAtomChars(id); if s > 'a' && s < 'z' { return -1; } let i = 0; let str = AtomToLinearString(JSID_TO_ATOM(id)); return if StringIsArray(str, &mut i) != 0 { i } else { -1 } } else { IdToInt32(cx, id); }*/ } pub fn FindEnumStringIndex(cx: *mut JSContext, v: JSVal, values: &[&'static str]) -> Result, ()> { unsafe { let jsstr = JS_ValueToString(cx, v); if jsstr.is_null() { return Err(()); } let mut length = 0; let chars = JS_GetStringCharsAndLength(cx, jsstr, &mut length); if chars.is_null() { return Err(()); } Ok(values.iter().position(|value| { value.len() == length as uint && range(0, length as uint).all(|j| { value[j] as u16 == *chars.offset(j as int) }) })) } } pub fn get_dictionary_property(cx: *mut JSContext, object: *mut JSObject, property: &str) -> Result, ()> { use std::c_str::CString; fn has_property(cx: *mut JSContext, object: *mut JSObject, property: &CString, found: &mut JSBool) -> bool { unsafe { property.with_ref(|s| { JS_HasProperty(cx, object, s, found) != 0 }) } } fn get_property(cx: *mut JSContext, object: *mut JSObject, property: &CString, value: &mut JSVal) -> bool { unsafe { property.with_ref(|s| { JS_GetProperty(cx, object, s, value) != 0 }) } } let property = property.to_c_str(); if object.is_null() { return Ok(None); } let mut found: JSBool = 0; if !has_property(cx, object, &property, &mut found) { return Err(()); } if found == 0 { return Ok(None); } let mut value = NullValue(); if !get_property(cx, object, &property, &mut value) { return Err(()); } Ok(Some(value)) } pub fn HasPropertyOnPrototype(cx: *mut JSContext, proxy: *mut JSObject, id: jsid) -> bool { // MOZ_ASSERT(js::IsProxy(proxy) && js::GetProxyHandler(proxy) == handler); let mut found = false; return !GetPropertyOnPrototype(cx, proxy, id, &mut found, ptr::mut_null()) || found; } pub fn IsConvertibleToCallbackInterface(cx: *mut JSContext, obj: *mut JSObject) -> bool { unsafe { JS_ObjectIsDate(cx, obj) == 0 && JS_ObjectIsRegExp(cx, obj) == 0 } } pub fn CreateDOMGlobal(cx: *mut JSContext, class: *JSClass) -> *mut JSObject { unsafe { let obj = JS_NewGlobalObject(cx, class, ptr::mut_null()); if obj.is_null() { return ptr::mut_null(); } with_compartment(cx, obj, || { JS_InitStandardClasses(cx, obj); }); initialize_global(obj); obj } } pub extern fn wrap_for_same_compartment(cx: *mut JSContext, obj: *mut JSObject) -> *mut JSObject { unsafe { JS_ObjectToOuterObject(cx, obj) } } pub extern fn pre_wrap(cx: *mut JSContext, _scope: *mut JSObject, obj: *mut JSObject, _flags: c_uint) -> *mut JSObject { unsafe { JS_ObjectToOuterObject(cx, obj) } } pub extern fn outerize_global(_cx: *mut JSContext, obj: JSHandleObject) -> *mut JSObject { unsafe { debug!("outerizing"); let obj = *obj.unnamed_field1; let win: Root = unwrap_jsmanaged(obj, IDLInterface::get_prototype_id(None::), IDLInterface::get_prototype_depth(None::)) .unwrap() .root(); win.deref().browser_context.deref().borrow().get_ref().window_proxy() } } /// Returns the global object of the realm that the given JS object was created in. pub fn global_object_for_js_object(obj: *mut JSObject) -> JS { unsafe { let global = GetGlobalForObjectCrossCompartment(obj); let clasp = JS_GetClass(global); assert!(((*clasp).flags & (JSCLASS_IS_DOMJSCLASS | JSCLASS_IS_GLOBAL)) != 0); FromJSValConvertible::from_jsval(ptr::mut_null(), ObjectOrNullValue(global), ()) .ok().expect("found DOM global that doesn't unwrap to Window") } } fn cx_for_dom_reflector(obj: *mut JSObject) -> *mut JSContext { let global = global_object_for_js_object(obj).root(); global.get_cx() } pub fn cx_for_dom_object(obj: &T) -> *mut JSContext { cx_for_dom_reflector(obj.reflector().get_jsobject()) } /// Check if an element name is valid. See http://www.w3.org/TR/xml/#NT-Name /// for details. #[deriving(PartialEq)] pub enum XMLName { QName, Name, InvalidXMLName } pub fn xml_name_type(name: &str) -> XMLName { fn is_valid_start(c: char) -> bool { match c { ':' | 'A' .. 'Z' | '_' | 'a' .. 'z' | '\xC0' .. '\xD6' | '\xD8' .. '\xF6' | '\xF8' .. '\u02FF' | '\u0370' .. '\u037D' | '\u037F' .. '\u1FFF' | '\u200C' .. '\u200D' | '\u2070' .. '\u218F' | '\u2C00' .. '\u2FEF' | '\u3001' .. '\uD7FF' | '\uF900' .. '\uFDCF' | '\uFDF0' .. '\uFFFD' | '\U00010000' .. '\U000EFFFF' => true, _ => false, } } fn is_valid_continuation(c: char) -> bool { is_valid_start(c) || match c { '-' | '.' | '0' .. '9' | '\xB7' | '\u0300' .. '\u036F' | '\u203F' .. '\u2040' => true, _ => false, } } let mut iter = name.chars(); let mut non_qname_colons = false; let mut seen_colon = false; match iter.next() { None => return InvalidXMLName, Some(c) => { if !is_valid_start(c) { return InvalidXMLName; } if c == ':' { non_qname_colons = true; } } } for c in name.chars() { if !is_valid_continuation(c) { return InvalidXMLName; } if c == ':' { match seen_colon { true => non_qname_colons = true, false => seen_colon = true } } } match non_qname_colons { false => QName, true => Name } }