2004-02-24 03:22:35 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2006-04-15 00:37:51 +00:00
|
|
|
* vim: set ts=2 sw=2 et tw=78:
|
2004-02-24 03:22:35 +00:00
|
|
|
*
|
2012-05-21 11:12:37 +00:00
|
|
|
* 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/.
|
2004-02-24 03:22:35 +00:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* This Original Code has been modified by IBM Corporation.
|
|
|
|
* Modifications made by IBM described herein are
|
|
|
|
* Copyright (c) International Business Machines
|
|
|
|
* Corporation, 2000
|
|
|
|
*
|
|
|
|
* Modifications to Mozilla code or documentation
|
|
|
|
* identified per MPL Section 3.3
|
|
|
|
*
|
|
|
|
* Date Modified by Description of modification
|
|
|
|
* 03/27/2000 IBM Corp. Added PR_CALLBACK for Optlink
|
|
|
|
* use in OS2
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsDOMScriptObjectFactory.h"
|
|
|
|
#include "nsScriptNameSpaceManager.h"
|
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsJSEnvironment.h"
|
|
|
|
#include "nsGlobalWindow.h"
|
2004-05-29 17:43:59 +00:00
|
|
|
#include "nsCRT.h"
|
2004-02-24 04:19:15 +00:00
|
|
|
#ifdef MOZ_XUL
|
2007-03-12 05:53:33 +00:00
|
|
|
#include "nsXULPrototypeCache.h"
|
2004-02-24 04:19:15 +00:00
|
|
|
#endif
|
2008-11-06 06:41:52 +00:00
|
|
|
#include "nsThreadUtils.h"
|
2004-02-24 03:22:35 +00:00
|
|
|
|
2013-08-19 23:24:29 +00:00
|
|
|
using mozilla::dom::GetNameSpaceManager;
|
|
|
|
|
2012-04-14 13:03:16 +00:00
|
|
|
nsDOMScriptObjectFactory::nsDOMScriptObjectFactory()
|
2004-02-24 03:22:35 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIObserverService> observerService =
|
Bug 560095 - Use mozilla::services::GetObserverService(). r=biesi,dveditz,gavin,josh,jst,mrbkap,roc,sdwilsh,shaver,sicking,smontagu,surkov
2010-04-29 16:59:13 +00:00
|
|
|
mozilla::services::GetObserverService();
|
2004-02-24 03:22:35 +00:00
|
|
|
if (observerService) {
|
2011-10-17 14:59:28 +00:00
|
|
|
observerService->AddObserver(this, NS_XPCOM_SHUTDOWN_OBSERVER_ID, false);
|
2004-02-24 03:22:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_INTERFACE_MAP_BEGIN(nsDOMScriptObjectFactory)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIDOMScriptObjectFactory)
|
|
|
|
NS_INTERFACE_MAP_ENTRY(nsIObserver)
|
|
|
|
NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports, nsIDOMScriptObjectFactory)
|
|
|
|
NS_INTERFACE_MAP_END
|
|
|
|
|
|
|
|
|
|
|
|
NS_IMPL_ADDREF(nsDOMScriptObjectFactory)
|
|
|
|
NS_IMPL_RELEASE(nsDOMScriptObjectFactory)
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsISupports *)
|
|
|
|
nsDOMScriptObjectFactory::GetClassInfoInstance(nsDOMClassInfoID aID)
|
|
|
|
{
|
2007-03-19 09:19:16 +00:00
|
|
|
return NS_GetDOMClassInfoInstance(aID);
|
2004-02-24 03:22:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsISupports *)
|
|
|
|
nsDOMScriptObjectFactory::GetExternalClassInfoInstance(const nsAString& aName)
|
|
|
|
{
|
2013-08-19 23:24:29 +00:00
|
|
|
nsScriptNameSpaceManager *nameSpaceManager = GetNameSpaceManager();
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ENSURE_TRUE(nameSpaceManager, nullptr);
|
2004-02-24 03:22:35 +00:00
|
|
|
|
2012-03-29 18:43:13 +00:00
|
|
|
const nsGlobalNameStruct *globalStruct = nameSpaceManager->LookupName(aName);
|
2004-02-24 03:22:35 +00:00
|
|
|
if (globalStruct) {
|
|
|
|
if (globalStruct->mType == nsGlobalNameStruct::eTypeExternalClassInfoCreator) {
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIDOMCIExtension> creator(do_CreateInstance(globalStruct->mCID, &rv));
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
2004-02-24 03:22:35 +00:00
|
|
|
|
2006-02-03 14:18:39 +00:00
|
|
|
rv = creator->RegisterDOMCI(NS_ConvertUTF16toUTF8(aName).get(), this);
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv, nullptr);
|
2004-02-24 03:22:35 +00:00
|
|
|
|
2012-03-29 18:43:13 +00:00
|
|
|
globalStruct = nameSpaceManager->LookupName(aName);
|
2012-07-30 14:20:58 +00:00
|
|
|
NS_ENSURE_TRUE(globalStruct, nullptr);
|
2004-02-24 03:22:35 +00:00
|
|
|
|
|
|
|
NS_ASSERTION(globalStruct->mType == nsGlobalNameStruct::eTypeExternalClassInfo,
|
|
|
|
"The classinfo data for this class didn't get registered.");
|
|
|
|
}
|
|
|
|
if (globalStruct->mType == nsGlobalNameStruct::eTypeExternalClassInfo) {
|
|
|
|
return nsDOMClassInfo::GetClassInfoInstance(globalStruct->mData);
|
|
|
|
}
|
|
|
|
}
|
2012-07-30 14:20:58 +00:00
|
|
|
return nullptr;
|
2004-02-24 03:22:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMScriptObjectFactory::Observe(nsISupports *aSubject,
|
2005-07-30 20:57:07 +00:00
|
|
|
const char *aTopic,
|
2014-01-04 15:02:17 +00:00
|
|
|
const char16_t *someData)
|
2004-02-24 03:22:35 +00:00
|
|
|
{
|
|
|
|
if (!nsCRT::strcmp(aTopic, NS_XPCOM_SHUTDOWN_OBSERVER_ID)) {
|
|
|
|
#ifdef MOZ_XUL
|
|
|
|
// Flush the XUL cache since it holds JS roots, and we're about to
|
|
|
|
// start the final GC.
|
2007-03-12 05:53:33 +00:00
|
|
|
nsXULPrototypeCache* cache = nsXULPrototypeCache::GetInstance();
|
2004-02-24 03:22:35 +00:00
|
|
|
|
|
|
|
if (cache)
|
|
|
|
cache->Flush();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsDOMScriptObjectFactory::RegisterDOMClassInfo(const char *aName,
|
|
|
|
nsDOMClassInfoExternalConstructorFnc aConstructorFptr,
|
|
|
|
const nsIID *aProtoChainInterface,
|
|
|
|
const nsIID **aInterfaces,
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t aScriptableFlags,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aHasClassInterface,
|
2004-02-24 03:22:35 +00:00
|
|
|
const nsCID *aConstructorCID)
|
|
|
|
{
|
2013-08-19 23:24:29 +00:00
|
|
|
nsScriptNameSpaceManager *nameSpaceManager = GetNameSpaceManager();
|
2007-11-13 10:35:49 +00:00
|
|
|
NS_ENSURE_TRUE(nameSpaceManager, NS_ERROR_NOT_INITIALIZED);
|
|
|
|
|
|
|
|
return nameSpaceManager->RegisterDOMCIData(aName,
|
|
|
|
aConstructorFptr,
|
|
|
|
aProtoChainInterface,
|
|
|
|
aInterfaces,
|
|
|
|
aScriptableFlags,
|
|
|
|
aHasClassInterface,
|
|
|
|
aConstructorCID);
|
2004-02-24 03:22:35 +00:00
|
|
|
}
|