2000-07-08 02:16:34 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2000-06-06 18:28:01 +00:00
|
|
|
*
|
|
|
|
* 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 the Mozilla browser.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
|
|
|
* Communications, Inc. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1999, Mozilla. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Adam Lock <adamlock@netscape.com>
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIEventQueueService.h"
|
2000-07-04 21:53:27 +00:00
|
|
|
#include "nsIChromeRegistry.h"
|
2000-06-06 18:28:01 +00:00
|
|
|
|
2000-06-12 15:39:43 +00:00
|
|
|
#include "nsIStringBundle.h"
|
|
|
|
|
2000-08-11 20:10:06 +00:00
|
|
|
#include "nsIDirectoryService.h"
|
|
|
|
#include "nsAppFileLocationProvider.h"
|
|
|
|
|
2000-06-21 13:05:49 +00:00
|
|
|
#include "nsEmbedAPI.h"
|
2000-06-12 15:39:43 +00:00
|
|
|
|
2000-06-06 18:28:01 +00:00
|
|
|
static nsIServiceManager *sServiceManager = nsnull;
|
2000-06-12 15:39:43 +00:00
|
|
|
static PRBool sRegistryInitializedFlag = PR_FALSE;
|
|
|
|
static PRUint32 sInitCounter = 0;
|
|
|
|
|
2000-06-27 20:54:15 +00:00
|
|
|
#define HACK_AROUND_THREADING_ISSUES
|
2000-06-21 12:48:11 +00:00
|
|
|
//#define HACK_AROUND_NONREENTRANT_INITXPCOM
|
2000-06-12 15:39:43 +00:00
|
|
|
|
2000-06-06 18:28:01 +00:00
|
|
|
#ifdef HACK_AROUND_NONREENTRANT_INITXPCOM
|
2000-06-12 15:39:43 +00:00
|
|
|
// XXX hack class to clean up XPCOM when this module is unloaded
|
|
|
|
class XPCOMCleanupHack
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PRBool mCleanOnExit;
|
|
|
|
|
|
|
|
XPCOMCleanupHack() : mCleanOnExit(PR_FALSE) {}
|
|
|
|
~XPCOMCleanupHack()
|
|
|
|
{
|
|
|
|
if (mCleanOnExit)
|
|
|
|
{
|
|
|
|
if (sInitCounter > 0)
|
|
|
|
{
|
|
|
|
sInitCounter = 1;
|
|
|
|
NS_TermEmbedding();
|
|
|
|
}
|
|
|
|
// XXX Global destructors and NS_ShutdownXPCOM don't seem to mix
|
2000-07-08 02:16:34 +00:00
|
|
|
// NS_ShutdownXPCOM(sServiceManager);
|
2000-06-12 15:39:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
2000-06-06 18:28:01 +00:00
|
|
|
static PRBool sXPCOMInitializedFlag = PR_FALSE;
|
2000-06-12 15:39:43 +00:00
|
|
|
static XPCOMCleanupHack sXPCOMCleanupHack;
|
2000-06-06 18:28:01 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
extern "C" void NS_SetupRegistry();
|
|
|
|
|
2000-06-21 13:19:12 +00:00
|
|
|
|
2000-08-11 20:10:06 +00:00
|
|
|
nsresult NS_InitEmbedding(nsILocalFile *mozBinDirectory,
|
|
|
|
nsIDirectoryServiceProvider *appFileLocProvider)
|
2000-06-21 13:19:12 +00:00
|
|
|
{
|
2000-08-11 20:10:06 +00:00
|
|
|
nsresult rv;
|
2000-08-10 06:46:00 +00:00
|
|
|
|
2000-06-12 15:39:43 +00:00
|
|
|
// Reentrant calls to this method do nothing except increment a counter
|
2000-07-08 02:16:34 +00:00
|
|
|
sInitCounter++;
|
|
|
|
if (sInitCounter > 1)
|
2000-06-12 15:39:43 +00:00
|
|
|
return NS_OK;
|
|
|
|
|
2000-07-08 02:16:34 +00:00
|
|
|
// Initialise XPCOM
|
2000-06-06 18:28:01 +00:00
|
|
|
#ifdef HACK_AROUND_NONREENTRANT_INITXPCOM
|
2000-07-08 02:16:34 +00:00
|
|
|
// Can't call NS_InitXPCom more than once or things go boom!
|
|
|
|
if (!sXPCOMInitializedFlag)
|
2000-06-06 18:28:01 +00:00
|
|
|
#endif
|
2000-07-08 02:16:34 +00:00
|
|
|
{
|
|
|
|
// Initialise XPCOM
|
2000-08-11 20:10:06 +00:00
|
|
|
NS_InitXPCOM(&sServiceManager, mozBinDirectory);
|
2000-08-01 01:37:44 +00:00
|
|
|
if (!sServiceManager)
|
|
|
|
return NS_ERROR_NULL_POINTER;
|
2000-08-11 20:10:06 +00:00
|
|
|
|
|
|
|
// Hook up the file location provider - make one if nsnull was passed
|
|
|
|
if (!appFileLocProvider)
|
|
|
|
{
|
|
|
|
appFileLocProvider = new nsAppFileLocationProvider;
|
|
|
|
if (!appFileLocProvider)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(appFileLocProvider);
|
|
|
|
}
|
2000-09-13 23:57:52 +00:00
|
|
|
NS_WITH_SERVICE(nsIDirectoryService, directoryService, NS_DIRECTORY_SERVICE_CONTRACTID, &rv);
|
2000-08-11 20:10:06 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
rv = directoryService->RegisterProvider(appFileLocProvider);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
NS_RELEASE(appFileLocProvider); // RegisterProvider did AddRef - It owns it now
|
|
|
|
|
2000-06-06 18:28:01 +00:00
|
|
|
#ifdef HACK_AROUND_NONREENTRANT_INITXPCOM
|
2000-07-08 02:16:34 +00:00
|
|
|
sXPCOMInitializedFlag = PR_TRUE;
|
2000-06-12 15:39:43 +00:00
|
|
|
sXPCOMCleanupHack.mCleanOnExit = PR_TRUE;
|
2000-06-06 18:28:01 +00:00
|
|
|
#endif
|
2000-07-08 02:16:34 +00:00
|
|
|
}
|
2000-06-06 18:28:01 +00:00
|
|
|
|
2000-07-08 02:16:34 +00:00
|
|
|
// Register components
|
|
|
|
if (!sRegistryInitializedFlag)
|
|
|
|
{
|
2000-06-12 15:39:43 +00:00
|
|
|
// XXX hack method
|
2000-07-08 02:16:34 +00:00
|
|
|
NS_SetupRegistry();
|
|
|
|
|
|
|
|
rv = nsComponentManager::AutoRegister(nsIComponentManager::NS_Startup,
|
|
|
|
NULL /* default */);
|
|
|
|
if (NS_FAILED(rv))
|
2000-06-06 18:28:01 +00:00
|
|
|
{
|
2000-07-08 02:16:34 +00:00
|
|
|
NS_ASSERTION(PR_FALSE, "Could not AutoRegister");
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
sRegistryInitializedFlag = PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create the Event Queue for the UI thread...
|
|
|
|
//
|
|
|
|
// If an event queue already exists for the thread, then
|
|
|
|
// CreateThreadEventQueue(...) will fail...
|
2000-08-01 01:37:44 +00:00
|
|
|
// CreateThread0ueue(...) will fail...
|
|
|
|
nsCOMPtr<nsIEventQueueService> eventQService;
|
2000-09-13 23:57:52 +00:00
|
|
|
rv = sServiceManager->GetService(NS_EVENTQUEUESERVICE_CONTRACTID,
|
2000-08-01 01:37:44 +00:00
|
|
|
nsIEventQueueService::GetIID(),
|
|
|
|
getter_AddRefs(eventQService));
|
2000-07-08 02:16:34 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
eventQService->CreateThreadEventQueue();
|
2000-06-06 18:28:01 +00:00
|
|
|
|
2000-06-12 15:39:43 +00:00
|
|
|
#ifdef HACK_AROUND_THREADING_ISSUES
|
|
|
|
// XXX force certain objects to be created on the main thread
|
2000-08-01 01:37:44 +00:00
|
|
|
nsCOMPtr<nsIStringBundleService> sBundleService;
|
2000-09-13 23:57:52 +00:00
|
|
|
rv = sServiceManager->GetService(NS_STRINGBUNDLE_CONTRACTID,
|
2000-08-01 01:37:44 +00:00
|
|
|
nsIStringBundleService::GetIID(),
|
|
|
|
getter_AddRefs(sBundleService));
|
2000-07-08 02:16:34 +00:00
|
|
|
if (NS_SUCCEEDED(rv))
|
2000-06-12 15:39:43 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIStringBundle> stringBundle;
|
|
|
|
char* propertyURL = "chrome://necko/locale/necko.properties";
|
|
|
|
nsILocale *locale = nsnull;
|
2000-07-08 02:16:34 +00:00
|
|
|
rv = sBundleService->CreateBundle(propertyURL, locale,
|
|
|
|
getter_AddRefs(stringBundle));
|
2000-06-12 15:39:43 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-07-04 21:53:27 +00:00
|
|
|
// Init the chrome registry.
|
2000-08-01 01:37:44 +00:00
|
|
|
nsCOMPtr<nsIChromeRegistry> chromeReg;
|
2000-09-13 23:57:52 +00:00
|
|
|
rv = sServiceManager->GetService("@mozilla.org/chrome/chrome-registry;1",
|
2000-08-01 01:37:44 +00:00
|
|
|
nsIChromeRegistry::GetIID(),
|
|
|
|
getter_AddRefs(chromeReg));
|
2000-10-01 05:26:26 +00:00
|
|
|
if (chromeReg)
|
|
|
|
{
|
|
|
|
// Ignore the return value here. If chrome is already initialized
|
|
|
|
// this call will return an error even though nothing is wrong.
|
|
|
|
(void) chromeReg->CheckForNewChrome();
|
|
|
|
}
|
2000-07-08 02:16:34 +00:00
|
|
|
return NS_OK;
|
2000-07-04 21:53:27 +00:00
|
|
|
|
2000-06-06 18:28:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsresult NS_TermEmbedding()
|
|
|
|
{
|
2000-06-12 15:39:43 +00:00
|
|
|
// Reentrant calls to this method do nothing except decrement a counter
|
|
|
|
if (sInitCounter > 1)
|
|
|
|
{
|
|
|
|
sInitCounter--;
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
sInitCounter = 0;
|
|
|
|
|
2000-09-14 22:56:56 +00:00
|
|
|
{
|
|
|
|
nsCOMPtr<nsIEventQueueService> eventQService;
|
|
|
|
sServiceManager->GetService(NS_EVENTQUEUESERVICE_CONTRACTID,
|
|
|
|
nsIEventQueueService::GetIID(),
|
|
|
|
getter_AddRefs(eventQService));
|
|
|
|
if (eventQService)
|
|
|
|
eventQService->DestroyThreadEventQueue();
|
|
|
|
}
|
2000-06-06 18:28:01 +00:00
|
|
|
|
2000-07-08 02:16:34 +00:00
|
|
|
NS_RELEASE(sServiceManager);
|
2000-06-21 12:48:11 +00:00
|
|
|
|
2000-07-08 02:16:34 +00:00
|
|
|
// Terminate XPCOM & cleanup
|
2000-06-06 18:28:01 +00:00
|
|
|
#ifndef HACK_AROUND_NONREENTRANT_INITXPCOM
|
2000-07-08 02:16:34 +00:00
|
|
|
NS_ShutdownXPCOM(sServiceManager);
|
2000-06-06 18:28:01 +00:00
|
|
|
#endif
|
|
|
|
|
2000-07-08 02:16:34 +00:00
|
|
|
return NS_OK;
|
2000-06-06 18:28:01 +00:00
|
|
|
}
|