2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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.
|
1999-05-19 01:43:13 +04:00
|
|
|
*
|
1999-11-06 06:43:54 +03:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* 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.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either 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 NPL, 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-05-19 01:43:13 +04:00
|
|
|
|
2001-10-16 08:08:42 +04:00
|
|
|
#include "nsXPCOM.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsIRegistry.h"
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsObserverService.h"
|
2001-03-03 04:24:36 +03:00
|
|
|
#include "nsObserverList.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsObserver.h"
|
|
|
|
#include "nsProperties.h"
|
2000-01-25 00:28:28 +03:00
|
|
|
#include "nsIProperties.h"
|
2000-01-05 12:29:25 +03:00
|
|
|
#include "nsPersistentProperties.h"
|
1999-12-04 23:31:38 +03:00
|
|
|
#include "nsScriptableInputStream.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
|
2000-06-03 13:46:12 +04:00
|
|
|
#include "nsMemoryImpl.h"
|
2000-07-22 09:48:04 +04:00
|
|
|
#include "nsErrorService.h"
|
2000-10-27 10:18:39 +04:00
|
|
|
#include "nsLogging.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsArena.h"
|
|
|
|
#include "nsByteBuffer.h"
|
1999-09-26 11:26:21 +04:00
|
|
|
#ifdef PAGE_MANAGER
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsPageMgr.h"
|
1999-09-26 11:26:21 +04:00
|
|
|
#endif
|
1999-05-19 01:43:13 +04:00
|
|
|
#include "nsSupportsArray.h"
|
1999-08-04 11:08:58 +04:00
|
|
|
#include "nsSupportsPrimitives.h"
|
2000-04-18 06:34:54 +04:00
|
|
|
#include "nsConsoleService.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
#include "nsExceptionService.h"
|
1999-05-19 01:43:13 +04:00
|
|
|
|
|
|
|
#include "nsComponentManager.h"
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsGenericFactory.h"
|
|
|
|
|
|
|
|
#include "nsEventQueueService.h"
|
|
|
|
#include "nsEventQueue.h"
|
|
|
|
|
2000-06-24 04:03:10 +04:00
|
|
|
#include "nsIProxyObjectManager.h"
|
1999-05-29 02:17:24 +04:00
|
|
|
#include "nsProxyEventPrivate.h" // access to the impl of nsProxyObjectManager for the generic factory registration.
|
|
|
|
|
1999-10-05 04:07:39 +04:00
|
|
|
#include "xptinfo.h"
|
2000-02-15 09:45:30 +03:00
|
|
|
#include "nsIInterfaceInfoManager.h"
|
1999-05-28 05:14:59 +04:00
|
|
|
|
1999-10-02 03:30:06 +04:00
|
|
|
#include "nsThread.h"
|
2001-01-23 00:52:01 +03:00
|
|
|
#include "nsProcess.h"
|
1999-10-02 03:30:06 +04:00
|
|
|
|
2000-01-25 00:28:28 +03:00
|
|
|
#include "nsFileSpecImpl.h"
|
2000-02-22 00:52:18 +03:00
|
|
|
#include "nsSpecialSystemDirectory.h"
|
2000-01-25 00:28:28 +03:00
|
|
|
|
|
|
|
#include "nsILocalFile.h"
|
|
|
|
#include "nsLocalFile.h"
|
|
|
|
#include "nsDirectoryService.h"
|
2000-08-12 00:31:57 +04:00
|
|
|
#include "nsDirectoryServiceDefs.h"
|
2001-01-19 01:51:57 +03:00
|
|
|
#include "nsAppFileLocationProvider.h"
|
2000-02-06 05:02:24 +03:00
|
|
|
#include "nsICategoryManager.h"
|
1999-10-26 02:48:44 +04:00
|
|
|
|
2001-07-31 23:05:34 +04:00
|
|
|
#include "nsFastLoadService.h"
|
|
|
|
|
2000-03-31 13:50:00 +04:00
|
|
|
#include "nsAtomService.h"
|
2000-08-04 10:59:18 +04:00
|
|
|
#include "nsTraceRefcnt.h"
|
2001-08-17 06:03:34 +04:00
|
|
|
#include "nsTimelineService.h"
|
2000-03-31 13:50:00 +04:00
|
|
|
|
1999-10-16 04:06:37 +04:00
|
|
|
#ifdef GC_LEAK_DETECTOR
|
|
|
|
#include "nsLeakDetector.h"
|
|
|
|
#endif
|
|
|
|
|
2000-05-14 03:35:55 +04:00
|
|
|
#ifndef XPCOM_STANDALONE
|
1999-10-30 10:45:45 +04:00
|
|
|
// Include files that dont reside under xpcom
|
|
|
|
// Our goal was to make this zero. But... :-(
|
|
|
|
#include "nsICaseConversion.h"
|
2000-05-14 03:35:55 +04:00
|
|
|
#endif /* XPCOM_STANDALONE */
|
1999-10-30 10:45:45 +04:00
|
|
|
|
2001-03-12 23:43:02 +03:00
|
|
|
static NS_DEFINE_CID(kComponentManagerCID, NS_COMPONENTMANAGER_CID);
|
2000-06-03 13:46:12 +04:00
|
|
|
static NS_DEFINE_CID(kMemoryCID, NS_MEMORY_CID);
|
2000-10-27 10:18:39 +04:00
|
|
|
static NS_DEFINE_CID(kLoggingServiceCID, NS_LOGGINGSERVICE_CID);
|
1999-05-19 01:43:13 +04:00
|
|
|
static NS_DEFINE_CID(kEventQueueServiceCID, NS_EVENTQUEUESERVICE_CID);
|
2001-01-23 00:52:01 +03:00
|
|
|
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsProcess);
|
|
|
|
|
1999-08-04 11:08:58 +04:00
|
|
|
// ds/nsISupportsPrimitives
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsIDImpl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsStringImpl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsWStringImpl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRBoolImpl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRUint8Impl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRUint16Impl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRUint32Impl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRUint64Impl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRTimeImpl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsCharImpl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRInt16Impl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRInt32Impl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsPRInt64Impl)
|
1999-08-06 13:42:12 +04:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsFloatImpl)
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsDoubleImpl)
|
1999-08-20 07:14:46 +04:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsVoidImpl)
|
2001-04-11 04:10:39 +04:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSupportsInterfacePointerImpl)
|
1999-08-04 11:08:58 +04:00
|
|
|
|
2000-04-18 06:34:54 +04:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsConsoleService);
|
2000-03-31 13:50:00 +04:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsAtomService);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsExceptionService);
|
2000-03-31 13:50:00 +04:00
|
|
|
|
2001-08-17 06:03:34 +04:00
|
|
|
#ifdef MOZ_TIMELINE
|
|
|
|
NS_GENERIC_FACTORY_CONSTRUCTOR(nsTimelineService);
|
|
|
|
#endif
|
|
|
|
|
1999-05-19 01:43:13 +04:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// XPCOM initialization
|
|
|
|
//
|
|
|
|
// To Control the order of initialization of these key components I am putting
|
|
|
|
// this function.
|
|
|
|
//
|
2000-02-06 05:02:24 +03:00
|
|
|
// - nsServiceManager
|
|
|
|
// - nsComponentManager
|
|
|
|
// - nsRegistry
|
1999-05-19 01:43:13 +04:00
|
|
|
//
|
|
|
|
// Here are key points to remember:
|
2000-02-06 05:02:24 +03:00
|
|
|
// - A global of all these need to exist. nsServiceManager is an independent object.
|
|
|
|
// nsComponentManager uses both the globalServiceManager and its own registry.
|
1999-05-19 01:43:13 +04:00
|
|
|
//
|
2000-02-06 05:02:24 +03:00
|
|
|
// - A static object of both the nsComponentManager and nsServiceManager
|
|
|
|
// are in use. Hence InitXPCOM() gets triggered from both
|
|
|
|
// NS_GetGlobale{Service/Component}Manager() calls.
|
1999-05-19 01:43:13 +04:00
|
|
|
//
|
2000-02-06 05:02:24 +03:00
|
|
|
// - There exists no global Registry. Registry can be created from the component manager.
|
1999-05-19 01:43:13 +04:00
|
|
|
//
|
|
|
|
|
1999-06-15 02:06:22 +04:00
|
|
|
static nsresult
|
2001-03-12 23:43:02 +03:00
|
|
|
RegisterGenericFactory(nsIComponentManager* compMgr,
|
|
|
|
nsModuleComponentInfo *info)
|
1999-05-19 01:43:13 +04:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsIGenericFactory* fact;
|
2001-03-12 23:43:02 +03:00
|
|
|
rv = NS_NewGenericFactory(&fact, info);
|
1999-05-19 01:43:13 +04:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2001-03-12 23:43:02 +03:00
|
|
|
rv = compMgr->RegisterFactory(info->mCID, info->mDescription,
|
|
|
|
info->mContractID, fact, PR_TRUE);
|
1999-05-19 01:43:13 +04:00
|
|
|
NS_RELEASE(fact);
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-10-30 10:45:45 +04:00
|
|
|
// Globals in xpcom
|
2000-05-14 03:35:55 +04:00
|
|
|
#ifndef XPCOM_STANDALONE
|
1999-10-30 10:45:45 +04:00
|
|
|
nsICaseConversion *gCaseConv = NULL;
|
2000-05-14 03:35:55 +04:00
|
|
|
#endif /* XPCOM_STANDALONE */
|
2001-10-16 07:35:52 +04:00
|
|
|
|
|
|
|
nsComponentManagerImpl* nsComponentManagerImpl::gComponentManager = NULL;
|
2000-02-22 22:46:05 +03:00
|
|
|
nsIProperties *gDirectoryService = NULL;
|
2001-10-16 07:35:52 +04:00
|
|
|
PRBool gXPCOMShuttingDown = PR_FALSE;
|
1999-05-19 01:43:13 +04:00
|
|
|
|
2001-03-12 23:43:02 +03:00
|
|
|
// For each class that wishes to support nsIClassInfo, add a line like this
|
|
|
|
// NS_DECL_CLASSINFO(nsMyClass)
|
|
|
|
|
|
|
|
#define COMPONENT(NAME, Ctor) \
|
|
|
|
{ NS_##NAME##_CLASSNAME, NS_##NAME##_CID, NS_##NAME##_CONTRACTID, Ctor }
|
|
|
|
|
|
|
|
#define COMPONENT_CI(NAME, Ctor, Class) \
|
|
|
|
{ NS_##NAME##_CLASSNAME, NS_##NAME##_CID, NS_##NAME##_CONTRACTID, Ctor, \
|
|
|
|
NULL, NULL, NULL, NS_CI_INTERFACE_GETTER_NAME(Class), NULL, \
|
|
|
|
&NS_CLASSINFO_NAME(Class) }
|
|
|
|
|
|
|
|
static nsModuleComponentInfo components[] = {
|
|
|
|
COMPONENT(MEMORY, nsMemoryImpl::Create),
|
|
|
|
#define NS_ERRORSERVICE_CLASSNAME NS_ERRORSERVICE_NAME
|
|
|
|
COMPONENT(ERRORSERVICE, nsErrorService::Create),
|
|
|
|
|
|
|
|
#ifdef NS_ENABLE_LOGGING
|
|
|
|
COMPONENT(LOGGINGSERVICE, nsLoggingService::Create),
|
|
|
|
#endif
|
|
|
|
|
|
|
|
COMPONENT(ARENA, ArenaImpl::Create),
|
|
|
|
COMPONENT(BYTEBUFFER, ByteBufferImpl::Create),
|
|
|
|
COMPONENT(SCRIPTABLEINPUTSTREAM, nsScriptableInputStream::Create),
|
|
|
|
|
|
|
|
#ifdef PAGE_MANAGER
|
|
|
|
COMPONENT(PAGEMANAGER, nsPageMgr::Create),
|
|
|
|
#endif
|
|
|
|
|
|
|
|
COMPONENT(PROPERTIES, nsProperties::Create),
|
|
|
|
|
|
|
|
#define NS_PERSISTENTPROPERTIES_CID NS_IPERSISTENTPROPERTIES_CID /* sigh */
|
|
|
|
COMPONENT(PERSISTENTPROPERTIES, nsPersistentProperties::Create),
|
|
|
|
|
|
|
|
COMPONENT(SUPPORTSARRAY, nsSupportsArray::Create),
|
|
|
|
COMPONENT(CONSOLESERVICE, nsConsoleServiceConstructor),
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 21:42:36 +04:00
|
|
|
COMPONENT(EXCEPTIONSERVICE, nsExceptionServiceConstructor),
|
2001-03-12 23:43:02 +03:00
|
|
|
COMPONENT(ATOMSERVICE, nsAtomServiceConstructor),
|
2001-08-17 06:03:34 +04:00
|
|
|
#ifdef MOZ_TIMELINE
|
|
|
|
COMPONENT(TIMELINESERVICE, nsTimelineServiceConstructor),
|
|
|
|
#endif
|
2001-03-12 23:43:02 +03:00
|
|
|
COMPONENT(OBSERVER, nsObserver::Create),
|
|
|
|
COMPONENT(OBSERVERSERVICE, nsObserverService::Create),
|
|
|
|
COMPONENT(GENERICFACTORY, nsGenericFactory::Create),
|
|
|
|
COMPONENT(EVENTQUEUESERVICE, nsEventQueueServiceImpl::Create),
|
|
|
|
COMPONENT(EVENTQUEUE, nsEventQueueImpl::Create),
|
|
|
|
COMPONENT(THREAD, nsThread::Create),
|
|
|
|
COMPONENT(THREADPOOL, nsThreadPool::Create),
|
|
|
|
|
|
|
|
#define NS_XPCOMPROXY_CID NS_PROXYEVENT_MANAGER_CID
|
|
|
|
COMPONENT(XPCOMPROXY, nsProxyObjectManager::Create),
|
|
|
|
|
|
|
|
#define COMPONENT_SUPPORTS(TYPE, Type) \
|
|
|
|
COMPONENT(SUPPORTS_##TYPE, nsSupports##Type##ImplConstructor)
|
|
|
|
|
|
|
|
COMPONENT_SUPPORTS(ID, ID),
|
|
|
|
COMPONENT_SUPPORTS(STRING, String),
|
|
|
|
COMPONENT_SUPPORTS(WSTRING, WString),
|
|
|
|
COMPONENT_SUPPORTS(PRBOOL, PRBool),
|
|
|
|
COMPONENT_SUPPORTS(PRUINT8, PRUint8),
|
|
|
|
COMPONENT_SUPPORTS(PRUINT16, PRUint16),
|
|
|
|
COMPONENT_SUPPORTS(PRUINT32, PRUint32),
|
|
|
|
COMPONENT_SUPPORTS(PRUINT64, PRUint64),
|
|
|
|
COMPONENT_SUPPORTS(PRTIME, PRTime),
|
|
|
|
COMPONENT_SUPPORTS(CHAR, Char),
|
|
|
|
COMPONENT_SUPPORTS(PRINT16, PRInt16),
|
|
|
|
COMPONENT_SUPPORTS(PRINT32, PRInt32),
|
|
|
|
COMPONENT_SUPPORTS(PRINT64, PRInt64),
|
|
|
|
COMPONENT_SUPPORTS(FLOAT, Float),
|
|
|
|
COMPONENT_SUPPORTS(DOUBLE, Double),
|
|
|
|
COMPONENT_SUPPORTS(VOID, Void),
|
2001-04-11 04:10:39 +04:00
|
|
|
COMPONENT_SUPPORTS(INTERFACE_POINTER, InterfacePointer),
|
2001-03-12 23:43:02 +03:00
|
|
|
|
|
|
|
#undef COMPONENT_SUPPORTS
|
|
|
|
|
|
|
|
COMPONENT(LOCAL_FILE, nsLocalFile::nsLocalFileConstructor),
|
|
|
|
COMPONENT(DIRECTORY_SERVICE, nsDirectoryService::Create),
|
|
|
|
COMPONENT(PROCESS, nsProcessConstructor),
|
|
|
|
COMPONENT(FILESPEC, nsFileSpecImpl::Create),
|
2001-07-31 23:05:34 +04:00
|
|
|
COMPONENT(DIRECTORYITERATOR, nsDirectoryIteratorImpl::Create),
|
|
|
|
|
Bit checkin for bug 68045, r/sr=waterson&shaver, second attempt. It all works
for me on optimized and debug gcc2.96, rh7.1.
- Better failure codes from nsXULPrototypeScript::Deserialize.
- Call nsXULDocument::AbortFastLoads after nsXULPrototypeScript::Serialize
failure, instead of just nulling the FastLoad service's output stream.
- Expose nsXULDocument::AbortFastLoads via nsIXULPrototypeCache, for use from
nsChromeProtocolHandler.cpp. AbortFastLoads flushes the XUL cache now, for
good measure.
- The needless "Current" adjective in nsIFastLoadService attribute and method
names is no more.
- Add a do_GetFastLoadService() helper, to use CID instead of contractid, and
to let the compiler consolidate the static inline CID.
- Add "nglayout.debug.checksum_xul_fastload_file" pref so people can do without
the checksum verification step when reading a FastLoad file.
- Verify the FastLoad file checksum, by default. Also, cache it in the FastLoad
service so we don't recompute it when re-opening the FastLoad file as mailnews
and other top-levels start up. Fill the checksum cache in EndFastLoad, when
the last pseudo-concurrent top-level finishes loading.
My hope to compute the checksum while writing the FastLoad file ran afoul of
misordered writes. The old code to checksum the in-memory nsFastLoadHeader
also was broken on little endian platforms. Now all checksumming is done via
a separate read pass over the complete file, save for the header's checksum
field, which is summed as if it contained zero.
- Track and check FastLoad file dependencies. This required groveling with a
bunch of Necko interfaces in nsChromeProtocolHandler::NewChannel -- read it
and weep. Dependency checking, as well as checksum access and computation,
use better-factored nsIFastLoad{File,Read,Write}Control interfaces.
- nsBufferedStream::Seek wasn't flushing the buffer when seeking backward
within the buffer, but it must, because mCursor bounds the amount to write
if the buffer contains the end of file.
- Add an unbufferedStream readonly attribute to nsIStreamBufferAccess, so we
don't have to screw around with the bufferying layer when checksumming. Also
implement nsIStreamBufferAccess in nsBufferedOutputStream.
- nsISeekableOutputStream was bogus, based on a bad state I had put the
nsBufferedOutputStream code in on its way from being completely broken when
you seek backwards outside of the buffer. Removing this interface required
using nsIFastLoadFileIO in nsFastLoadFileWriter, and it also required careful
ordering of Close calls (the Reader must close after the Writer or Updater,
so that the Reader's underlying, unbuffered input stream can be read by
nsFastLoadFileWriter::Close to compute the checksum.
- Miscellaneous tab/indentation, comment typo, bracing, if( => if ( style,
nsnull vs. 0, useless variable elimination, tortured control flow,
AutoString instead of String, and gratuitous ; after nsISupportsUtils.h
macro call cleanups.
2001-08-22 00:51:34 +04:00
|
|
|
COMPONENT(FASTLOADSERVICE, nsFastLoadService::Create)
|
2001-03-12 23:43:02 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#undef COMPONENT
|
|
|
|
|
|
|
|
const int components_length = sizeof(components) / sizeof(components[0]);
|
2000-08-17 02:40:27 +04:00
|
|
|
|
2000-01-25 00:28:28 +03:00
|
|
|
nsresult NS_COM NS_InitXPCOM(nsIServiceManager* *result,
|
2000-08-17 02:40:27 +04:00
|
|
|
nsIFile* binDirectory)
|
|
|
|
{
|
2001-01-19 01:51:57 +03:00
|
|
|
return NS_InitXPCOM2(result, binDirectory, nsnull);
|
2000-08-17 02:40:27 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-01-19 01:51:57 +03:00
|
|
|
nsresult NS_COM NS_InitXPCOM2(nsIServiceManager* *result,
|
|
|
|
nsIFile* binDirectory,
|
|
|
|
nsIDirectoryServiceProvider* appFileLocationProvider)
|
1999-05-19 01:43:13 +04:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2000-12-23 19:43:32 +03:00
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
|
|
|
nsTraceRefcnt::Startup();
|
|
|
|
#endif
|
|
|
|
|
2000-03-06 00:26:01 +03:00
|
|
|
// Establish the main thread here.
|
1999-10-30 05:52:55 +04:00
|
|
|
rv = nsIThread::SetMainThread();
|
2000-03-06 00:26:01 +03:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
1999-10-30 05:52:55 +04:00
|
|
|
|
2000-09-29 03:17:49 +04:00
|
|
|
// Startup the memory manager
|
|
|
|
rv = nsMemoryImpl::Startup();
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2000-12-09 07:11:05 +03:00
|
|
|
NS_StartupLocalFile();
|
|
|
|
|
2001-02-19 06:09:57 +03:00
|
|
|
StartupSpecialSystemDirectory();
|
|
|
|
|
2001-09-07 01:13:11 +04:00
|
|
|
// Start the directory service so that the component manager init can use it.
|
|
|
|
rv = nsDirectoryService::Create(nsnull,
|
|
|
|
NS_GET_IID(nsIProperties),
|
|
|
|
(void**)&gDirectoryService);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDirectoryService> dirService = do_QueryInterface(gDirectoryService, &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
rv = dirService->Init();
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2000-02-22 00:52:18 +03:00
|
|
|
|
2001-09-07 01:13:11 +04:00
|
|
|
// Create the Component/Service Manager
|
|
|
|
nsComponentManagerImpl *compMgr = NULL;
|
|
|
|
|
1999-05-19 01:43:13 +04:00
|
|
|
if (nsComponentManagerImpl::gComponentManager == NULL)
|
|
|
|
{
|
|
|
|
compMgr = new nsComponentManagerImpl();
|
|
|
|
if (compMgr == NULL)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
NS_ADDREF(compMgr);
|
2000-02-22 00:52:18 +03:00
|
|
|
|
2000-01-25 00:28:28 +03:00
|
|
|
PRBool value;
|
|
|
|
if (binDirectory)
|
1999-09-16 23:28:57 +04:00
|
|
|
{
|
2000-01-25 00:28:28 +03:00
|
|
|
rv = binDirectory->IsDirectory(&value);
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv) && value)
|
2000-08-12 00:31:57 +04:00
|
|
|
gDirectoryService->Define(NS_XPCOM_INIT_CURRENT_PROCESS_DIR, binDirectory);
|
2000-02-22 00:52:18 +03:00
|
|
|
|
|
|
|
//Since people are still using the nsSpecialSystemDirectory, we should init it.
|
|
|
|
char* path;
|
|
|
|
binDirectory->GetPath(&path);
|
|
|
|
nsFileSpec spec(path);
|
2000-06-03 13:46:12 +04:00
|
|
|
nsMemory::Free(path);
|
2000-02-22 00:52:18 +03:00
|
|
|
|
|
|
|
nsSpecialSystemDirectory::Set(nsSpecialSystemDirectory::Moz_BinDirectory, &spec);
|
|
|
|
|
1999-09-16 23:28:57 +04:00
|
|
|
}
|
2001-01-19 01:51:57 +03:00
|
|
|
if (!appFileLocationProvider) {
|
|
|
|
appFileLocationProvider = new nsAppFileLocationProvider;
|
|
|
|
if (!appFileLocationProvider)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
}
|
|
|
|
rv = dirService->RegisterProvider(appFileLocationProvider);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2000-02-22 00:52:18 +03:00
|
|
|
|
1999-05-28 05:14:59 +04:00
|
|
|
rv = compMgr->Init();
|
1999-05-19 01:43:13 +04:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
{
|
|
|
|
NS_RELEASE(compMgr);
|
|
|
|
return rv;
|
|
|
|
}
|
2000-01-25 00:28:28 +03:00
|
|
|
|
2001-10-16 07:35:52 +04:00
|
|
|
nsIServiceManager *serviceManager = NS_STATIC_CAST(nsIServiceManager*, compMgr);
|
1999-05-19 01:43:13 +04:00
|
|
|
nsComponentManagerImpl::gComponentManager = compMgr;
|
2001-09-10 08:28:37 +04:00
|
|
|
|
|
|
|
if (result) {
|
2001-10-16 07:35:52 +04:00
|
|
|
NS_ADDREF(*result = serviceManager);
|
2001-09-10 08:28:37 +04:00
|
|
|
}
|
1999-05-19 01:43:13 +04:00
|
|
|
}
|
2000-06-03 13:46:12 +04:00
|
|
|
|
2001-10-16 07:35:52 +04:00
|
|
|
nsIServiceManager *serviceManager = NS_STATIC_CAST(nsIServiceManager*, compMgr);
|
2000-06-03 13:46:12 +04:00
|
|
|
nsCOMPtr<nsIMemory> memory = getter_AddRefs(nsMemory::GetGlobalMemoryService());
|
2001-10-16 07:35:52 +04:00
|
|
|
|
|
|
|
// dougt - these calls will be moved into a new interface when nsIComponentManager is frozen.
|
|
|
|
rv = compMgr->RegisterService(kMemoryCID, memory);
|
2000-06-03 13:46:12 +04:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
1999-05-19 01:43:13 +04:00
|
|
|
|
2001-10-16 07:35:52 +04:00
|
|
|
rv = compMgr->RegisterService(kComponentManagerCID, NS_STATIC_CAST(nsIComponentManager*, compMgr));
|
1999-05-19 01:43:13 +04:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-01-25 00:28:28 +03:00
|
|
|
|
2000-08-11 04:13:39 +04:00
|
|
|
#ifdef GC_LEAK_DETECTOR
|
|
|
|
rv = NS_InitLeakDetector();
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
#endif
|
|
|
|
|
2001-09-07 01:13:11 +04:00
|
|
|
// 2. Register the global services with the component manager so that
|
1999-05-19 01:43:13 +04:00
|
|
|
// clients can create new objects.
|
|
|
|
|
|
|
|
// Registry
|
|
|
|
nsIFactory *registryFactory = NULL;
|
1999-06-14 06:08:49 +04:00
|
|
|
rv = NS_RegistryGetFactory(®istryFactory);
|
1999-05-19 01:43:13 +04:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
NS_DEFINE_CID(kRegistryCID, NS_REGISTRY_CID);
|
|
|
|
|
1999-05-28 05:14:59 +04:00
|
|
|
rv = compMgr->RegisterFactory(kRegistryCID,
|
|
|
|
NS_REGISTRY_CLASSNAME,
|
2000-09-14 03:57:52 +04:00
|
|
|
NS_REGISTRY_CONTRACTID,
|
1999-05-28 05:14:59 +04:00
|
|
|
registryFactory, PR_TRUE);
|
1999-05-19 01:43:13 +04:00
|
|
|
NS_RELEASE(registryFactory);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2000-02-06 05:02:24 +03:00
|
|
|
// Category Manager
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFactory> categoryManagerFactory;
|
|
|
|
if ( NS_FAILED(rv = NS_CategoryManagerGetFactory(getter_AddRefs(categoryManagerFactory))) )
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
NS_DEFINE_CID(kCategoryManagerCID, NS_CATEGORYMANAGER_CID);
|
|
|
|
|
|
|
|
rv = compMgr->RegisterFactory(kCategoryManagerCID,
|
|
|
|
NS_CATEGORYMANAGER_CLASSNAME,
|
2000-09-14 03:57:52 +04:00
|
|
|
NS_CATEGORYMANAGER_CONTRACTID,
|
2000-02-06 05:02:24 +03:00
|
|
|
categoryManagerFactory,
|
|
|
|
PR_TRUE);
|
|
|
|
if ( NS_FAILED(rv) )
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2001-03-12 23:43:02 +03:00
|
|
|
for (int i = 0; i < components_length; i++)
|
|
|
|
RegisterGenericFactory(compMgr, &components[i]);
|
1999-10-26 02:48:44 +04:00
|
|
|
|
1999-07-02 07:37:44 +04:00
|
|
|
// Prepopulate registry for performance
|
1999-07-07 11:48:12 +04:00
|
|
|
// Ignore return value. It is ok if this fails.
|
1999-07-02 07:37:44 +04:00
|
|
|
nsComponentManagerImpl::gComponentManager->PlatformPrePopulateRegistry();
|
|
|
|
|
2000-04-25 08:52:30 +04:00
|
|
|
// Pay the cost at startup time of starting this singleton.
|
2000-02-15 09:45:30 +03:00
|
|
|
nsIInterfaceInfoManager* iim = XPTI_GetInterfaceInfoManager();
|
|
|
|
NS_IF_RELEASE(iim);
|
|
|
|
|
2000-10-27 10:18:39 +04:00
|
|
|
// get the logging service so that it gets registered with the service
|
|
|
|
// manager, and later unregistered
|
|
|
|
#ifdef NS_ENABLE_LOGGING
|
|
|
|
nsCOMPtr<nsILoggingService> logServ = do_GetService(kLoggingServiceCID, &rv);
|
|
|
|
#endif
|
1999-05-19 01:43:13 +04:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-07-31 04:07:31 +04:00
|
|
|
//
|
|
|
|
// NS_ShutdownXPCOM()
|
|
|
|
//
|
|
|
|
// The shutdown sequence for xpcom would be
|
|
|
|
//
|
|
|
|
// - Release the Global Service Manager
|
|
|
|
// - Release all service instances held by the global service manager
|
|
|
|
// - Release the Global Service Manager itself
|
|
|
|
// - Release the Component Manager
|
|
|
|
// - Release all factories cached by the Component Manager
|
|
|
|
// - Unload Libraries
|
2000-09-14 03:57:52 +04:00
|
|
|
// - Release Contractid Cache held by Component Manager
|
1999-07-31 04:07:31 +04:00
|
|
|
// - Release dll abstraction held by Component Manager
|
|
|
|
// - Release the Registry held by Component Manager
|
|
|
|
// - Finally, release the component manager itself
|
|
|
|
//
|
1999-07-28 11:57:39 +04:00
|
|
|
nsresult NS_COM NS_ShutdownXPCOM(nsIServiceManager* servMgr)
|
|
|
|
{
|
1999-09-23 04:00:08 +04:00
|
|
|
nsrefcnt cnt;
|
1999-09-24 10:26:17 +04:00
|
|
|
|
1999-11-10 02:41:24 +03:00
|
|
|
// Notify observers of xpcom shutting down
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
{
|
|
|
|
// Block it so that the COMPtr will get deleted before we hit
|
|
|
|
// servicemanager shutdown
|
2001-07-25 11:54:28 +04:00
|
|
|
nsCOMPtr<nsIObserverService> observerService =
|
|
|
|
do_GetService(NS_OBSERVERSERVICE_CONTRACTID, &rv);
|
1999-11-10 02:41:24 +03:00
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
2001-10-16 07:35:52 +04:00
|
|
|
nsCOMPtr<nsIServiceManager> mgr;
|
|
|
|
rv = NS_GetServiceManager(getter_AddRefs(mgr));
|
1999-11-10 02:41:24 +03:00
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
2001-10-20 00:52:59 +04:00
|
|
|
(void) observerService->NotifyObservers(mgr,
|
|
|
|
NS_XPCOM_SHUTDOWN_OBSERVER_ID,
|
|
|
|
nsnull);
|
1999-11-10 02:41:24 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-01-09 08:44:47 +03:00
|
|
|
// grab the event queue so that we can process events one last time before exiting
|
|
|
|
nsCOMPtr <nsIEventQueue> currentQ;
|
|
|
|
{
|
2001-07-25 11:54:28 +04:00
|
|
|
nsCOMPtr<nsIEventQueueService> eventQService =
|
|
|
|
do_GetService(kEventQueueServiceCID, &rv);
|
2001-01-09 08:44:47 +03:00
|
|
|
|
|
|
|
if (eventQService) {
|
|
|
|
eventQService->GetThreadEventQueue(NS_CURRENT_THREAD, getter_AddRefs(currentQ));
|
|
|
|
}
|
|
|
|
}
|
2000-01-11 00:26:56 +03:00
|
|
|
|
1999-09-26 00:11:33 +04:00
|
|
|
// We may have AddRef'd for the caller of NS_InitXPCOM, so release it
|
|
|
|
// here again:
|
1999-09-24 10:26:17 +04:00
|
|
|
NS_IF_RELEASE(servMgr);
|
1999-12-08 05:03:25 +03:00
|
|
|
|
|
|
|
// Shutdown global servicemanager
|
2001-10-16 07:35:52 +04:00
|
|
|
nsComponentManagerImpl::gComponentManager->FreeServices();
|
|
|
|
nsServiceManager::ShutdownGlobalServiceManager(nsnull);
|
|
|
|
|
2001-01-09 08:44:47 +03:00
|
|
|
if (currentQ) {
|
|
|
|
currentQ->ProcessPendingEvents();
|
|
|
|
currentQ = 0;
|
|
|
|
}
|
1999-09-23 04:00:08 +04:00
|
|
|
|
2001-10-17 01:00:39 +04:00
|
|
|
// XPCOM is officially in shutdown mode NOW
|
|
|
|
// Set this only after the observers have been notified as this
|
|
|
|
// will cause servicemanager to become inaccessible.
|
|
|
|
gXPCOMShuttingDown = PR_TRUE;
|
|
|
|
|
2000-05-14 03:35:55 +04:00
|
|
|
#ifndef XPCOM_STANDALONE
|
1999-10-30 10:45:45 +04:00
|
|
|
// Release the global case converter
|
|
|
|
NS_IF_RELEASE(gCaseConv);
|
2000-05-14 03:35:55 +04:00
|
|
|
#endif /* XPCOM_STANDALONE */
|
2000-02-22 00:52:18 +03:00
|
|
|
|
|
|
|
// Release the directory service
|
|
|
|
NS_IF_RELEASE(gDirectoryService);
|
1999-10-30 10:45:45 +04:00
|
|
|
|
2000-12-09 07:11:05 +03:00
|
|
|
// Shutdown nsLocalFile string conversion
|
|
|
|
NS_ShutdownLocalFile();
|
|
|
|
|
1999-10-22 01:34:39 +04:00
|
|
|
// Shutdown xpcom. This will release all loaders and cause others holding
|
|
|
|
// a refcount to the component manager to release it.
|
1999-11-10 02:41:24 +03:00
|
|
|
rv = (nsComponentManagerImpl::gComponentManager)->Shutdown();
|
1999-10-22 01:34:39 +04:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Component Manager shutdown failed.");
|
|
|
|
|
1999-11-10 03:28:34 +03:00
|
|
|
// Release our own singletons
|
|
|
|
// Do this _after_ shutting down the component manager, because the
|
|
|
|
// JS component loader will use XPConnect to call nsIModule::canUnload,
|
|
|
|
// and that will spin up the InterfaceInfoManager again -- bad mojo
|
|
|
|
XPTI_FreeInterfaceInfoManager();
|
|
|
|
|
1999-09-21 00:53:49 +04:00
|
|
|
// Finally, release the component manager last because it unloads the
|
|
|
|
// libraries:
|
1999-09-23 04:00:08 +04:00
|
|
|
NS_RELEASE2(nsComponentManagerImpl::gComponentManager, cnt);
|
1999-11-13 10:34:29 +03:00
|
|
|
NS_WARN_IF_FALSE(cnt == 0, "Component Manager being held past XPCOM shutdown.");
|
2001-10-17 03:39:20 +04:00
|
|
|
nsComponentManagerImpl::gComponentManager = nsnull;
|
1999-10-08 01:50:20 +04:00
|
|
|
|
1999-09-18 03:21:29 +04:00
|
|
|
#ifdef DEBUG
|
|
|
|
extern void _FreeAutoLockStatics();
|
|
|
|
_FreeAutoLockStatics();
|
|
|
|
#endif
|
1999-09-30 11:41:37 +04:00
|
|
|
|
2001-02-19 06:09:57 +03:00
|
|
|
ShutdownSpecialSystemDirectory();
|
|
|
|
|
2000-07-11 11:31:50 +04:00
|
|
|
nsMemoryImpl::Shutdown();
|
2000-09-29 03:17:49 +04:00
|
|
|
nsThread::Shutdown();
|
2000-07-11 11:31:50 +04:00
|
|
|
NS_PurgeAtomTable();
|
1999-10-05 04:07:39 +04:00
|
|
|
|
2000-12-23 19:43:32 +03:00
|
|
|
#ifdef NS_BUILD_REFCNT_LOGGING
|
1999-10-12 13:30:12 +04:00
|
|
|
nsTraceRefcnt::DumpStatistics();
|
1999-10-09 00:41:19 +04:00
|
|
|
nsTraceRefcnt::ResetStatistics();
|
2000-12-23 19:43:32 +03:00
|
|
|
nsTraceRefcnt::Shutdown();
|
1999-11-30 07:50:42 +03:00
|
|
|
#endif
|
1999-10-05 04:07:39 +04:00
|
|
|
|
1999-09-30 11:41:37 +04:00
|
|
|
#ifdef GC_LEAK_DETECTOR
|
2000-03-06 00:26:01 +03:00
|
|
|
// Shutdown the Leak detector.
|
|
|
|
NS_ShutdownLeakDetector();
|
1999-09-30 11:41:37 +04:00
|
|
|
#endif
|
|
|
|
|
1999-07-28 11:57:39 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|