2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=2 sw=2 et tw=80: */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either of the GNU General Public License Version 2 or later (the "GPL"),
|
|
|
|
* or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "nsXBLDocumentInfo.h"
|
|
|
|
#include "nsHashtable.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsXBLPrototypeBinding.h"
|
|
|
|
#include "nsIScriptObjectPrincipal.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsIScriptContext.h"
|
|
|
|
#include "nsIScriptRuntime.h"
|
|
|
|
#include "nsIDOMScriptObjectFactory.h"
|
|
|
|
#include "jsapi.h"
|
|
|
|
#include "nsIURI.h"
|
|
|
|
#include "nsIConsoleService.h"
|
|
|
|
#include "nsIScriptError.h"
|
|
|
|
#include "nsIChromeRegistry.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsIScriptSecurityManager.h"
|
|
|
|
#include "nsContentUtils.h"
|
|
|
|
#include "nsDOMJSUtils.h"
|
2010-05-14 02:24:41 -07:00
|
|
|
#include "mozilla/Services.h"
|
2010-09-02 23:22:18 -07:00
|
|
|
#include "xpcpublic.h"
|
2011-11-03 13:39:08 -07:00
|
|
|
#include "mozilla/scache/StartupCache.h"
|
|
|
|
#include "mozilla/scache/StartupCacheUtils.h"
|
2012-01-13 04:44:14 -08:00
|
|
|
#include "nsCCUncollectableMarker.h"
|
2011-11-03 13:39:08 -07:00
|
|
|
|
|
|
|
using namespace mozilla::scache;
|
|
|
|
|
|
|
|
static const char kXBLCachePrefix[] = "xblcache";
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
static NS_DEFINE_CID(kDOMScriptObjectFactoryCID, NS_DOM_SCRIPT_OBJECT_FACTORY_CID);
|
|
|
|
|
|
|
|
// An XBLDocumentInfo object has a special context associated with it which we can use to pre-compile
|
|
|
|
// properties and methods of XBL bindings against.
|
|
|
|
class nsXBLDocGlobalObject : public nsIScriptGlobalObject,
|
|
|
|
public nsIScriptObjectPrincipal
|
|
|
|
{
|
|
|
|
public:
|
2007-08-09 15:30:30 -07:00
|
|
|
nsXBLDocGlobalObject(nsIScriptGlobalObjectOwner *aGlobalObjectOwner);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsISupports interface
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
|
|
|
// nsIScriptGlobalObject methods
|
|
|
|
virtual nsresult EnsureScriptEnvironment(PRUint32 aLangID);
|
|
|
|
virtual nsresult SetScriptContext(PRUint32 lang_id, nsIScriptContext *aContext);
|
|
|
|
|
|
|
|
virtual nsIScriptContext *GetContext();
|
|
|
|
virtual JSObject *GetGlobalJSObject();
|
2011-04-14 05:04:08 -07:00
|
|
|
virtual void OnFinalize(JSObject* aObject);
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual void SetScriptsEnabled(bool aEnabled, bool aFireTimeouts);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIScriptObjectPrincipal methods
|
|
|
|
virtual nsIPrincipal* GetPrincipal();
|
|
|
|
|
2010-07-14 23:19:36 -07:00
|
|
|
static JSBool doCheckAccess(JSContext *cx, JSObject *obj, jsid id,
|
2007-03-22 10:30:00 -07:00
|
|
|
PRUint32 accessType);
|
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsXBLDocGlobalObject,
|
|
|
|
nsIScriptGlobalObject)
|
|
|
|
|
2007-08-09 15:30:30 -07:00
|
|
|
void ClearGlobalObjectOwner();
|
|
|
|
|
2012-03-18 07:17:05 -07:00
|
|
|
void UnmarkScriptContext();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
|
|
|
virtual ~nsXBLDocGlobalObject();
|
|
|
|
|
|
|
|
void SetContext(nsIScriptContext *aContext);
|
|
|
|
nsIScriptContext *GetScriptContext(PRUint32 language);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIScriptContext> mScriptContext;
|
|
|
|
JSObject *mJSObject; // XXX JS language rabies bigotry badness
|
|
|
|
|
|
|
|
nsIScriptGlobalObjectOwner* mGlobalObjectOwner; // weak reference
|
|
|
|
static JSClass gSharedGlobalClass;
|
|
|
|
};
|
|
|
|
|
|
|
|
JSBool
|
2010-07-14 23:19:36 -07:00
|
|
|
nsXBLDocGlobalObject::doCheckAccess(JSContext *cx, JSObject *obj, jsid id, PRUint32 accessType)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsIScriptSecurityManager *ssm = nsContentUtils::GetSecurityManager();
|
|
|
|
if (!ssm) {
|
|
|
|
::JS_ReportError(cx, "Unable to verify access to a global object property.");
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure to actually operate on our object, and not some object further
|
|
|
|
// down on the proto chain.
|
2012-02-03 16:54:57 -08:00
|
|
|
while (JS_GetClass(obj) != &nsXBLDocGlobalObject::gSharedGlobalClass) {
|
2012-02-05 12:07:23 -08:00
|
|
|
obj = ::JS_GetPrototype(obj);
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!obj) {
|
|
|
|
::JS_ReportError(cx, "Invalid access to a global object property.");
|
|
|
|
return JS_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-03 16:54:57 -08:00
|
|
|
nsresult rv = ssm->CheckPropertyAccess(cx, obj, JS_GetClass(obj)->name,
|
2007-03-22 10:30:00 -07:00
|
|
|
id, accessType);
|
|
|
|
return NS_SUCCEEDED(rv);
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static JSBool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsXBLDocGlobalObject_getProperty(JSContext *cx, JSObject *obj,
|
2010-07-14 23:19:36 -07:00
|
|
|
jsid id, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return nsXBLDocGlobalObject::
|
|
|
|
doCheckAccess(cx, obj, id, nsIXPCSecurityManager::ACCESS_GET_PROPERTY);
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static JSBool
|
2007-03-22 10:30:00 -07:00
|
|
|
nsXBLDocGlobalObject_setProperty(JSContext *cx, JSObject *obj,
|
2011-02-09 11:31:40 -08:00
|
|
|
jsid id, JSBool strict, jsval *vp)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return nsXBLDocGlobalObject::
|
|
|
|
doCheckAccess(cx, obj, id, nsIXPCSecurityManager::ACCESS_SET_PROPERTY);
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static JSBool
|
2010-07-14 23:19:36 -07:00
|
|
|
nsXBLDocGlobalObject_checkAccess(JSContext *cx, JSObject *obj, jsid id,
|
2007-03-22 10:30:00 -07:00
|
|
|
JSAccessMode mode, jsval *vp)
|
|
|
|
{
|
|
|
|
PRUint32 translated;
|
|
|
|
if (mode & JSACC_WRITE) {
|
|
|
|
translated = nsIXPCSecurityManager::ACCESS_SET_PROPERTY;
|
|
|
|
} else {
|
|
|
|
translated = nsIXPCSecurityManager::ACCESS_GET_PROPERTY;
|
|
|
|
}
|
|
|
|
|
|
|
|
return nsXBLDocGlobalObject::
|
|
|
|
doCheckAccess(cx, obj, id, translated);
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsXBLDocGlobalObject_finalize(JSContext *cx, JSObject *obj)
|
|
|
|
{
|
2012-02-05 12:07:23 -08:00
|
|
|
nsISupports *nativeThis = (nsISupports*)JS_GetPrivate(obj);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIScriptGlobalObject> sgo(do_QueryInterface(nativeThis));
|
|
|
|
|
|
|
|
if (sgo)
|
2011-04-14 05:04:08 -07:00
|
|
|
sgo->OnFinalize(obj);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// The addref was part of JSObject construction
|
|
|
|
NS_RELEASE(nativeThis);
|
|
|
|
}
|
|
|
|
|
2008-10-10 08:04:34 -07:00
|
|
|
static JSBool
|
2010-07-14 23:19:36 -07:00
|
|
|
nsXBLDocGlobalObject_resolve(JSContext *cx, JSObject *obj, jsid id)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
JSBool did_resolve = JS_FALSE;
|
|
|
|
return JS_ResolveStandardClass(cx, obj, id, &did_resolve);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
JSClass nsXBLDocGlobalObject::gSharedGlobalClass = {
|
|
|
|
"nsXBLPrototypeScript compilation scope",
|
2011-05-24 03:45:39 -07:00
|
|
|
XPCONNECT_GLOBAL_FLAGS,
|
2007-03-22 10:30:00 -07:00
|
|
|
JS_PropertyStub, JS_PropertyStub,
|
|
|
|
nsXBLDocGlobalObject_getProperty, nsXBLDocGlobalObject_setProperty,
|
|
|
|
JS_EnumerateStub, nsXBLDocGlobalObject_resolve,
|
|
|
|
JS_ConvertStub, nsXBLDocGlobalObject_finalize,
|
2012-02-13 00:02:21 -08:00
|
|
|
nsXBLDocGlobalObject_checkAccess, NULL, NULL, NULL,
|
2011-05-24 03:45:39 -07:00
|
|
|
TraceXPCGlobal
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsXBLDocGlobalObject
|
|
|
|
//
|
|
|
|
|
2007-08-09 15:30:30 -07:00
|
|
|
nsXBLDocGlobalObject::nsXBLDocGlobalObject(nsIScriptGlobalObjectOwner *aGlobalObjectOwner)
|
2007-03-22 10:30:00 -07:00
|
|
|
: mJSObject(nsnull),
|
2007-08-09 15:30:30 -07:00
|
|
|
mGlobalObjectOwner(aGlobalObjectOwner) // weak reference
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
nsXBLDocGlobalObject::~nsXBLDocGlobalObject()
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
2007-05-25 09:05:42 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_1(nsXBLDocGlobalObject, mScriptContext)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-04-25 09:35:27 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsXBLDocGlobalObject)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptGlobalObject)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptObjectPrincipal)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIScriptGlobalObject)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2011-03-06 03:11:31 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsXBLDocGlobalObject)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsXBLDocGlobalObject)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-09-06 15:21:43 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
XBL_ProtoErrorReporter(JSContext *cx,
|
|
|
|
const char *message,
|
|
|
|
JSErrorReport *report)
|
|
|
|
{
|
|
|
|
// Make an nsIScriptError and populate it with information from
|
|
|
|
// this error.
|
|
|
|
nsCOMPtr<nsIScriptError>
|
|
|
|
errorObject(do_CreateInstance("@mozilla.org/scripterror;1"));
|
|
|
|
nsCOMPtr<nsIConsoleService>
|
|
|
|
consoleService(do_GetService("@mozilla.org/consoleservice;1"));
|
|
|
|
|
|
|
|
if (errorObject && consoleService) {
|
|
|
|
PRUint32 column = report->uctokenptr - report->uclinebuf;
|
|
|
|
|
|
|
|
errorObject->Init
|
2007-07-08 00:08:04 -07:00
|
|
|
(reinterpret_cast<const PRUnichar*>(report->ucmessage),
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ConvertUTF8toUTF16(report->filename).get(),
|
2007-07-08 00:08:04 -07:00
|
|
|
reinterpret_cast<const PRUnichar*>(report->uclinebuf),
|
2007-03-22 10:30:00 -07:00
|
|
|
report->lineno, column, report->flags,
|
|
|
|
"xbl javascript"
|
|
|
|
);
|
|
|
|
consoleService->LogMessage(errorObject);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsIScriptGlobalObject methods
|
|
|
|
//
|
|
|
|
|
|
|
|
void
|
|
|
|
nsXBLDocGlobalObject::SetContext(nsIScriptContext *aScriptContext)
|
|
|
|
{
|
|
|
|
if (!aScriptContext) {
|
|
|
|
mScriptContext = nsnull;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
NS_ASSERTION(aScriptContext->GetScriptTypeID() ==
|
|
|
|
nsIProgrammingLanguage::JAVASCRIPT,
|
|
|
|
"xbl is not multi-language");
|
|
|
|
aScriptContext->WillInitializeContext();
|
|
|
|
// NOTE: We init this context with a NULL global, so we automatically
|
|
|
|
// hook up to the existing nsIScriptGlobalObject global setup by
|
|
|
|
// nsGlobalWindow.
|
|
|
|
nsresult rv;
|
2010-07-15 15:16:29 -07:00
|
|
|
rv = aScriptContext->InitContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv), "Script Language's InitContext failed");
|
2011-10-17 07:59:28 -07:00
|
|
|
aScriptContext->SetGCOnDestruction(false);
|
2007-03-22 10:30:00 -07:00
|
|
|
aScriptContext->DidInitializeContext();
|
|
|
|
// and we set up our global manually
|
|
|
|
mScriptContext = aScriptContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXBLDocGlobalObject::SetScriptContext(PRUint32 lang_id, nsIScriptContext *aContext)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(lang_id == nsIProgrammingLanguage::JAVASCRIPT, "Only JS allowed!");
|
|
|
|
SetContext(aContext);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIScriptContext *
|
|
|
|
nsXBLDocGlobalObject::GetScriptContext(PRUint32 language)
|
|
|
|
{
|
|
|
|
// This impl still assumes JS
|
|
|
|
NS_ENSURE_TRUE(language==nsIProgrammingLanguage::JAVASCRIPT, nsnull);
|
|
|
|
return GetContext();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXBLDocGlobalObject::EnsureScriptEnvironment(PRUint32 aLangID)
|
|
|
|
{
|
|
|
|
if (aLangID != nsIProgrammingLanguage::JAVASCRIPT) {
|
|
|
|
NS_WARNING("XBL still JS only");
|
|
|
|
return NS_ERROR_INVALID_ARG;
|
|
|
|
}
|
|
|
|
if (mScriptContext)
|
|
|
|
return NS_OK; // already initialized for this lang
|
|
|
|
nsCOMPtr<nsIDOMScriptObjectFactory> factory = do_GetService(kDOMScriptObjectFactoryCID);
|
2012-01-15 00:13:11 -08:00
|
|
|
NS_ENSURE_TRUE(factory, NS_OK);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIScriptRuntime> scriptRuntime;
|
|
|
|
rv = NS_GetScriptRuntimeByID(aLangID, getter_AddRefs(scriptRuntime));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2011-11-15 23:50:19 -08:00
|
|
|
nsCOMPtr<nsIScriptContext> newCtx = scriptRuntime->CreateContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
rv = SetScriptContext(aLangID, newCtx);
|
|
|
|
|
2011-09-18 02:22:17 -07:00
|
|
|
JSContext *cx = mScriptContext->GetNativeContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
JSAutoRequest ar(cx);
|
|
|
|
|
|
|
|
// nsJSEnvironment set the error reporter to NS_ScriptErrorReporter so
|
|
|
|
// we must apparently override that with our own (although it isn't clear
|
|
|
|
// why - see bug 339647)
|
|
|
|
JS_SetErrorReporter(cx, XBL_ProtoErrorReporter);
|
2010-09-02 23:22:18 -07:00
|
|
|
|
|
|
|
nsIPrincipal *principal = GetPrincipal();
|
|
|
|
JSCompartment *compartment;
|
|
|
|
|
2010-10-26 23:57:31 -07:00
|
|
|
rv = xpc_CreateGlobalObject(cx, &gSharedGlobalClass, principal, nsnull,
|
2010-10-10 15:46:07 -07:00
|
|
|
false, &mJSObject, &compartment);
|
2012-01-15 00:13:11 -08:00
|
|
|
NS_ENSURE_SUCCESS(rv, NS_OK);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
::JS_SetGlobalObject(cx, mJSObject);
|
|
|
|
|
|
|
|
// Add an owning reference from JS back to us. This'll be
|
|
|
|
// released when the JSObject is finalized.
|
2012-02-05 12:07:23 -08:00
|
|
|
::JS_SetPrivate(mJSObject, this);
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_ADDREF(this);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsIScriptContext *
|
|
|
|
nsXBLDocGlobalObject::GetContext()
|
|
|
|
{
|
|
|
|
// This whole fragile mess is predicated on the fact that
|
|
|
|
// GetContext() will be called before GetScriptObject() is.
|
|
|
|
if (! mScriptContext) {
|
|
|
|
nsresult rv = EnsureScriptEnvironment(nsIProgrammingLanguage::JAVASCRIPT);
|
|
|
|
// JS is builtin so we make noise if it fails to initialize.
|
|
|
|
NS_WARN_IF_FALSE(NS_SUCCEEDED(rv), "Failed to setup JS!?");
|
|
|
|
NS_ENSURE_SUCCESS(rv, nsnull);
|
|
|
|
NS_ASSERTION(mScriptContext, "Failed to find a script context!?");
|
|
|
|
}
|
|
|
|
return mScriptContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2007-08-09 15:30:30 -07:00
|
|
|
nsXBLDocGlobalObject::ClearGlobalObjectOwner()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2007-08-09 15:30:30 -07:00
|
|
|
mGlobalObjectOwner = nsnull;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-03-18 07:17:05 -07:00
|
|
|
void
|
|
|
|
nsXBLDocGlobalObject::UnmarkScriptContext()
|
|
|
|
{
|
|
|
|
if (mScriptContext) {
|
|
|
|
xpc_UnmarkGrayObject(mScriptContext->GetNativeGlobal());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
JSObject *
|
|
|
|
nsXBLDocGlobalObject::GetGlobalJSObject()
|
|
|
|
{
|
|
|
|
// The prototype document has its own special secret script object
|
|
|
|
// that can be used to compile scripts and event handlers.
|
|
|
|
|
|
|
|
if (!mScriptContext)
|
|
|
|
return nsnull;
|
|
|
|
|
2011-09-18 02:22:17 -07:00
|
|
|
JSContext* cx = mScriptContext->GetNativeContext();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (!cx)
|
|
|
|
return nsnull;
|
|
|
|
|
|
|
|
JSObject *ret = ::JS_GetGlobalObject(cx);
|
|
|
|
NS_ASSERTION(mJSObject == ret, "How did this magic switch happen?");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-04-14 05:04:08 -07:00
|
|
|
nsXBLDocGlobalObject::OnFinalize(JSObject* aObject)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_ASSERTION(aObject == mJSObject, "Wrong object finalized!");
|
2011-04-14 05:04:08 -07:00
|
|
|
mJSObject = NULL;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2011-09-28 23:19:26 -07:00
|
|
|
nsXBLDocGlobalObject::SetScriptsEnabled(bool aEnabled, bool aFireTimeouts)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// We don't care...
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsIScriptObjectPrincipal methods
|
|
|
|
//
|
|
|
|
|
|
|
|
nsIPrincipal*
|
|
|
|
nsXBLDocGlobalObject::GetPrincipal()
|
|
|
|
{
|
|
|
|
if (!mGlobalObjectOwner) {
|
2007-09-28 06:45:01 -07:00
|
|
|
// XXXbz this should really save the principal when
|
|
|
|
// ClearGlobalObjectOwner() happens.
|
2007-03-22 10:30:00 -07:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2010-07-14 18:53:11 -07:00
|
|
|
nsRefPtr<nsXBLDocumentInfo> docInfo =
|
|
|
|
static_cast<nsXBLDocumentInfo*>(mGlobalObjectOwner);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-14 18:55:54 -07:00
|
|
|
nsCOMPtr<nsIDocument> document = docInfo->GetDocument();
|
|
|
|
if (!document)
|
|
|
|
return NULL;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
return document->NodePrincipal();
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool IsChromeURI(nsIURI* aURI)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2011-09-28 23:19:26 -07:00
|
|
|
bool isChrome = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
if (NS_SUCCEEDED(aURI->SchemeIs("chrome", &isChrome)))
|
|
|
|
return isChrome;
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Implementation file */
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2007-03-22 10:30:00 -07:00
|
|
|
TraverseProtos(nsHashKey *aKey, void *aData, void* aClosure)
|
|
|
|
{
|
|
|
|
nsCycleCollectionTraversalCallback *cb =
|
2007-07-08 00:08:04 -07:00
|
|
|
static_cast<nsCycleCollectionTraversalCallback*>(aClosure);
|
|
|
|
nsXBLPrototypeBinding *proto = static_cast<nsXBLPrototypeBinding*>(aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
proto->Traverse(*cb);
|
|
|
|
return kHashEnumerateNext;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2008-01-29 18:05:43 -08:00
|
|
|
UnlinkProtoJSObjects(nsHashKey *aKey, void *aData, void* aClosure)
|
2007-09-28 06:45:01 -07:00
|
|
|
{
|
|
|
|
nsXBLPrototypeBinding *proto = static_cast<nsXBLPrototypeBinding*>(aData);
|
2008-01-29 18:05:43 -08:00
|
|
|
proto->UnlinkJSObjects();
|
2007-09-28 06:45:01 -07:00
|
|
|
return kHashEnumerateNext;
|
|
|
|
}
|
|
|
|
|
2007-10-29 06:45:07 -07:00
|
|
|
struct ProtoTracer
|
|
|
|
{
|
|
|
|
TraceCallback mCallback;
|
|
|
|
void *mClosure;
|
|
|
|
};
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2007-10-29 06:45:07 -07:00
|
|
|
TraceProtos(nsHashKey *aKey, void *aData, void* aClosure)
|
|
|
|
{
|
|
|
|
ProtoTracer* closure = static_cast<ProtoTracer*>(aClosure);
|
|
|
|
nsXBLPrototypeBinding *proto = static_cast<nsXBLPrototypeBinding*>(aData);
|
|
|
|
proto->Trace(closure->mCallback, closure->mClosure);
|
|
|
|
return kHashEnumerateNext;
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_CLASS(nsXBLDocumentInfo)
|
2010-11-08 07:02:49 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_BEGIN(nsXBLDocumentInfo)
|
2007-09-28 06:45:01 -07:00
|
|
|
if (tmp->mBindingTable) {
|
2008-01-29 18:05:43 -08:00
|
|
|
tmp->mBindingTable->Enumerate(UnlinkProtoJSObjects, nsnull);
|
2007-09-28 06:45:01 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mDocument)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_NSCOMPTR(mGlobalObject)
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_UNLINK_END
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_BEGIN(nsXBLDocumentInfo)
|
2012-01-13 04:44:14 -08:00
|
|
|
if (tmp->mDocument &&
|
|
|
|
nsCCUncollectableMarker::InGeneration(cb, tmp->mDocument->GetMarkedCCGeneration())) {
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
|
|
|
return NS_SUCCESS_INTERRUPTED_TRAVERSE;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_NSCOMPTR(mDocument)
|
|
|
|
if (tmp->mBindingTable) {
|
|
|
|
tmp->mBindingTable->Enumerate(TraverseProtos, &cb);
|
|
|
|
}
|
2012-01-23 15:25:53 -08:00
|
|
|
NS_CYCLE_COLLECTION_NOTE_EDGE_NAME(cb, "mGlobalObject");
|
2007-08-09 15:30:30 -07:00
|
|
|
cb.NoteXPCOMChild(static_cast<nsIScriptGlobalObject*>(tmp->mGlobalObject));
|
2007-10-29 06:45:07 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_SCRIPT_OBJECTS
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRAVERSE_END
|
2007-10-29 06:45:07 -07:00
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_BEGIN(nsXBLDocumentInfo)
|
|
|
|
if (tmp->mBindingTable) {
|
|
|
|
ProtoTracer closure = { aCallback, aClosure };
|
|
|
|
tmp->mBindingTable->Enumerate(TraceProtos, &closure);
|
|
|
|
}
|
|
|
|
NS_IMPL_CYCLE_COLLECTION_TRACE_END
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-02-11 03:04:28 -08:00
|
|
|
static void
|
|
|
|
UnmarkXBLJSObject(PRUint32 aLangID, void* aP, const char* aName, void* aClosure)
|
|
|
|
{
|
|
|
|
if (aLangID == nsIProgrammingLanguage::JAVASCRIPT) {
|
|
|
|
xpc_UnmarkGrayObject(static_cast<JSObject*>(aP));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
UnmarkProtos(nsHashKey* aKey, void* aData, void* aClosure)
|
|
|
|
{
|
|
|
|
nsXBLPrototypeBinding* proto = static_cast<nsXBLPrototypeBinding*>(aData);
|
|
|
|
proto->Trace(UnmarkXBLJSObject, nsnull);
|
|
|
|
return kHashEnumerateNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
nsXBLDocumentInfo::MarkInCCGeneration(PRUint32 aGeneration)
|
|
|
|
{
|
|
|
|
if (mDocument) {
|
|
|
|
mDocument->MarkUncollectableForCCGeneration(aGeneration);
|
|
|
|
}
|
2012-03-18 07:17:05 -07:00
|
|
|
// Unmark any JS we hold
|
2012-02-11 03:04:28 -08:00
|
|
|
if (mBindingTable) {
|
|
|
|
mBindingTable->Enumerate(UnmarkProtos, nsnull);
|
|
|
|
}
|
2012-03-18 07:17:05 -07:00
|
|
|
if (mGlobalObject) {
|
|
|
|
mGlobalObject->UnmarkScriptContext();
|
|
|
|
}
|
2012-02-11 03:04:28 -08:00
|
|
|
}
|
|
|
|
|
2007-04-25 09:35:27 -07:00
|
|
|
NS_INTERFACE_MAP_BEGIN_CYCLE_COLLECTION(nsXBLDocumentInfo)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIScriptGlobalObjectOwner)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsISupportsWeakReference)
|
2010-07-14 18:53:11 -07:00
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIScriptGlobalObjectOwner)
|
2007-03-22 10:30:00 -07:00
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
2011-03-06 03:11:31 -08:00
|
|
|
NS_IMPL_CYCLE_COLLECTING_ADDREF(nsXBLDocumentInfo)
|
|
|
|
NS_IMPL_CYCLE_COLLECTING_RELEASE(nsXBLDocumentInfo)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsXBLDocumentInfo::nsXBLDocumentInfo(nsIDocument* aDocument)
|
|
|
|
: mDocument(aDocument),
|
2011-10-17 07:59:28 -07:00
|
|
|
mScriptAccess(true),
|
|
|
|
mIsChrome(false),
|
2007-03-22 10:30:00 -07:00
|
|
|
mBindingTable(nsnull),
|
|
|
|
mFirstBinding(nsnull)
|
|
|
|
{
|
|
|
|
nsIURI* uri = aDocument->GetDocumentURI();
|
|
|
|
if (IsChromeURI(uri)) {
|
|
|
|
// Cache whether or not this chrome XBL can execute scripts.
|
2010-05-14 02:24:41 -07:00
|
|
|
nsCOMPtr<nsIXULChromeRegistry> reg =
|
|
|
|
mozilla::services::GetXULChromeRegistryService();
|
2007-03-22 10:30:00 -07:00
|
|
|
if (reg) {
|
2011-09-28 23:19:26 -07:00
|
|
|
bool allow = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
reg->AllowScriptsForPackage(uri, &allow);
|
|
|
|
mScriptAccess = allow;
|
|
|
|
}
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsChrome = true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
nsXBLDocumentInfo::~nsXBLDocumentInfo()
|
|
|
|
{
|
|
|
|
/* destructor code */
|
|
|
|
if (mGlobalObject) {
|
|
|
|
// remove circular reference
|
|
|
|
mGlobalObject->SetScriptContext(nsIProgrammingLanguage::JAVASCRIPT, nsnull);
|
2007-08-09 15:30:30 -07:00
|
|
|
mGlobalObject->ClearGlobalObjectOwner(); // just in case
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2007-10-29 06:45:07 -07:00
|
|
|
if (mBindingTable) {
|
|
|
|
NS_DROP_JS_OBJECTS(this, nsXBLDocumentInfo);
|
|
|
|
delete mBindingTable;
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-14 18:55:54 -07:00
|
|
|
nsXBLPrototypeBinding*
|
|
|
|
nsXBLDocumentInfo::GetPrototypeBinding(const nsACString& aRef)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (!mBindingTable)
|
2010-07-14 18:55:54 -07:00
|
|
|
return NULL;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
if (aRef.IsEmpty()) {
|
|
|
|
// Return our first binding
|
2010-07-14 18:55:54 -07:00
|
|
|
return mFirstBinding;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const nsPromiseFlatCString& flat = PromiseFlatCString(aRef);
|
|
|
|
nsCStringKey key(flat.get());
|
2010-07-14 18:55:54 -07:00
|
|
|
return static_cast<nsXBLPrototypeBinding*>(mBindingTable->Get(&key));
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool
|
2007-03-22 10:30:00 -07:00
|
|
|
DeletePrototypeBinding(nsHashKey* aKey, void* aData, void* aClosure)
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
nsXBLPrototypeBinding* binding = static_cast<nsXBLPrototypeBinding*>(aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
delete binding;
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-14 18:55:54 -07:00
|
|
|
nsresult
|
2007-03-22 10:30:00 -07:00
|
|
|
nsXBLDocumentInfo::SetPrototypeBinding(const nsACString& aRef, nsXBLPrototypeBinding* aBinding)
|
|
|
|
{
|
2007-10-29 06:45:07 -07:00
|
|
|
if (!mBindingTable) {
|
2007-03-22 10:30:00 -07:00
|
|
|
mBindingTable = new nsObjectHashtable(nsnull, nsnull, DeletePrototypeBinding, nsnull);
|
2007-10-29 06:45:07 -07:00
|
|
|
|
|
|
|
NS_HOLD_JS_OBJECTS(this, nsXBLDocumentInfo);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
const nsPromiseFlatCString& flat = PromiseFlatCString(aRef);
|
|
|
|
nsCStringKey key(flat.get());
|
2007-11-27 12:02:42 -08:00
|
|
|
NS_ENSURE_STATE(!mBindingTable->Get(&key));
|
2007-03-22 10:30:00 -07:00
|
|
|
mBindingTable->Put(&key, aBinding);
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2011-11-03 13:39:08 -07:00
|
|
|
void
|
|
|
|
nsXBLDocumentInfo::RemovePrototypeBinding(const nsACString& aRef)
|
|
|
|
{
|
|
|
|
if (mBindingTable) {
|
|
|
|
// Use a flat string to avoid making a copy.
|
|
|
|
const nsPromiseFlatCString& flat = PromiseFlatCString(aRef);
|
|
|
|
nsCStringKey key(flat);
|
|
|
|
mBindingTable->Remove(&key);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Callback to enumerate over the bindings from this document and write them
|
|
|
|
// out to the cache.
|
|
|
|
bool
|
|
|
|
WriteBinding(nsHashKey *aKey, void *aData, void* aClosure)
|
|
|
|
{
|
|
|
|
nsXBLPrototypeBinding* binding = static_cast<nsXBLPrototypeBinding *>(aData);
|
|
|
|
binding->Write((nsIObjectOutputStream*)aClosure);
|
|
|
|
|
|
|
|
return kHashEnumerateNext;
|
|
|
|
}
|
|
|
|
|
|
|
|
// static
|
|
|
|
nsresult
|
|
|
|
nsXBLDocumentInfo::ReadPrototypeBindings(nsIURI* aURI, nsXBLDocumentInfo** aDocInfo)
|
|
|
|
{
|
|
|
|
*aDocInfo = nsnull;
|
|
|
|
|
|
|
|
nsCAutoString spec(kXBLCachePrefix);
|
|
|
|
nsresult rv = PathifyURI(aURI, spec);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
StartupCache* startupCache = StartupCache::GetSingleton();
|
|
|
|
NS_ENSURE_TRUE(startupCache, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsAutoArrayPtr<char> buf;
|
|
|
|
PRUint32 len;
|
|
|
|
rv = startupCache->GetBuffer(spec.get(), getter_Transfers(buf), &len);
|
|
|
|
// GetBuffer will fail if the binding is not in the cache.
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIObjectInputStream> stream;
|
|
|
|
rv = NewObjectInputStreamFromBuffer(buf, len, getter_AddRefs(stream));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
buf.forget();
|
|
|
|
|
|
|
|
// The file compatibility.ini stores the build id. This is checked in
|
|
|
|
// nsAppRunner.cpp and will delete the cache if a different build is
|
|
|
|
// present. However, we check that the version matches here to be safe.
|
|
|
|
PRUint32 version;
|
|
|
|
rv = stream->Read32(&version);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (version != XBLBinding_Serialize_Version) {
|
|
|
|
// The version that exists is different than expected, likely created with a
|
|
|
|
// different build, so invalidate the cache.
|
|
|
|
startupCache->InvalidateCache();
|
|
|
|
return NS_ERROR_NOT_AVAILABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> principal;
|
|
|
|
nsContentUtils::GetSecurityManager()->
|
|
|
|
GetSystemPrincipal(getter_AddRefs(principal));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> domdoc;
|
|
|
|
rv = NS_NewXBLDocument(getter_AddRefs(domdoc), aURI, nsnull, principal);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> doc = do_QueryInterface(domdoc);
|
|
|
|
nsRefPtr<nsXBLDocumentInfo> docInfo = NS_NewXBLDocumentInfo(doc);
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
PRUint8 flags;
|
|
|
|
nsresult rv = stream->Read8(&flags);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (flags == XBLBinding_Serialize_NoMoreBindings)
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsXBLPrototypeBinding* binding = new nsXBLPrototypeBinding();
|
|
|
|
rv = binding->Read(stream, docInfo, doc, flags);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
delete binding;
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
docInfo.swap(*aDocInfo);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXBLDocumentInfo::WritePrototypeBindings()
|
|
|
|
{
|
|
|
|
// Only write out bindings with the system principal
|
|
|
|
if (!nsContentUtils::IsSystemPrincipal(mDocument->NodePrincipal()))
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
nsCAutoString spec(kXBLCachePrefix);
|
|
|
|
nsresult rv = PathifyURI(DocumentURI(), spec);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
StartupCache* startupCache = StartupCache::GetSingleton();
|
|
|
|
NS_ENSURE_TRUE(startupCache, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIObjectOutputStream> stream;
|
|
|
|
nsCOMPtr<nsIStorageStream> storageStream;
|
|
|
|
rv = NewObjectOutputWrappedStorageStream(getter_AddRefs(stream),
|
|
|
|
getter_AddRefs(storageStream),
|
|
|
|
true);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
rv = stream->Write32(XBLBinding_Serialize_Version);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (mBindingTable)
|
|
|
|
mBindingTable->Enumerate(WriteBinding, stream);
|
|
|
|
|
|
|
|
// write a end marker at the end
|
|
|
|
rv = stream->Write8(XBLBinding_Serialize_NoMoreBindings);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
stream->Close();
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
PRUint32 len;
|
|
|
|
nsAutoArrayPtr<char> buf;
|
|
|
|
rv = NewBufferFromStorageStream(storageStream, getter_Transfers(buf), &len);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
return startupCache->PutBuffer(spec.get(), buf, len);
|
|
|
|
}
|
|
|
|
|
2010-07-14 18:55:54 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsXBLDocumentInfo::SetFirstPrototypeBinding(nsXBLPrototypeBinding* aBinding)
|
|
|
|
{
|
|
|
|
mFirstBinding = aBinding;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool FlushScopedSkinSheets(nsHashKey* aKey, void* aData, void* aClosure)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
nsXBLPrototypeBinding* proto = (nsXBLPrototypeBinding*)aData;
|
|
|
|
proto->FlushSkinSheets();
|
2011-10-17 07:59:28 -07:00
|
|
|
return true;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2010-07-14 18:55:54 -07:00
|
|
|
void
|
2007-03-22 10:30:00 -07:00
|
|
|
nsXBLDocumentInfo::FlushSkinStylesheets()
|
|
|
|
{
|
|
|
|
if (mBindingTable)
|
|
|
|
mBindingTable->Enumerate(FlushScopedSkinSheets);
|
|
|
|
}
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// nsIScriptGlobalObjectOwner methods
|
|
|
|
//
|
|
|
|
|
|
|
|
nsIScriptGlobalObject*
|
|
|
|
nsXBLDocumentInfo::GetScriptGlobalObject()
|
|
|
|
{
|
|
|
|
if (!mGlobalObject) {
|
2007-08-09 15:30:30 -07:00
|
|
|
nsXBLDocGlobalObject *global = new nsXBLDocGlobalObject(this);
|
|
|
|
if (!global)
|
2007-03-22 10:30:00 -07:00
|
|
|
return nsnull;
|
|
|
|
|
2007-08-09 15:30:30 -07:00
|
|
|
mGlobalObject = global;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return mGlobalObject;
|
|
|
|
}
|
|
|
|
|
2010-07-14 18:53:11 -07:00
|
|
|
nsXBLDocumentInfo* NS_NewXBLDocumentInfo(nsIDocument* aDocument)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
NS_PRECONDITION(aDocument, "Must have a document!");
|
|
|
|
|
2010-07-14 18:53:11 -07:00
|
|
|
nsXBLDocumentInfo* result;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-14 18:53:11 -07:00
|
|
|
result = new nsXBLDocumentInfo(aDocument);
|
|
|
|
NS_ADDREF(result);
|
|
|
|
return result;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|