1999-03-10 12:53:25 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2001-09-29 00:14:13 +04:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-03-09 12:44:27 +03: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/
|
|
|
|
*
|
|
|
|
* 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-03-09 12:44:27 +03: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.
|
|
|
|
*
|
|
|
|
* 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.
|
1999-11-06 06:43:54 +03:00
|
|
|
*
|
2001-09-29 00:14:13 +04:00
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-03-09 12:44:27 +03:00
|
|
|
|
|
|
|
#ifndef nsComponentManager_h__
|
|
|
|
#define nsComponentManager_h__
|
|
|
|
|
2001-10-16 07:35:52 +04:00
|
|
|
#include "nsXPCOM.h"
|
|
|
|
|
1999-09-01 01:40:21 +04:00
|
|
|
#include "nsIComponentLoader.h"
|
|
|
|
#include "nsNativeComponentLoader.h"
|
1999-03-09 12:44:27 +03:00
|
|
|
#include "nsIComponentManager.h"
|
2001-09-07 01:13:11 +04:00
|
|
|
#include "nsIServiceManager.h"
|
1999-09-01 01:40:21 +04:00
|
|
|
#include "nsIFactory.h"
|
2000-09-08 05:51:45 +04:00
|
|
|
#include "nsRegistry.h"
|
2000-01-12 01:54:46 +03:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
2001-09-06 01:28:38 +04:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
1999-03-09 12:44:27 +03:00
|
|
|
#include "nsHashtable.h"
|
|
|
|
#include "prtime.h"
|
1999-03-09 13:15:54 +03:00
|
|
|
#include "prmon.h"
|
1999-09-01 01:40:21 +04:00
|
|
|
#include "nsCOMPtr.h"
|
1999-10-16 01:14:43 +04:00
|
|
|
#include "nsWeakReference.h"
|
1999-11-10 03:28:34 +03:00
|
|
|
#include "nsXPIDLString.h"
|
2000-01-25 00:28:28 +03:00
|
|
|
#include "nsIFile.h"
|
1999-03-09 12:44:27 +03:00
|
|
|
|
|
|
|
class nsFactoryEntry;
|
|
|
|
class nsDll;
|
1999-07-31 09:55:26 +04:00
|
|
|
class nsIServiceManager;
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-06-14 06:07:03 +04:00
|
|
|
// Registry Factory creation function defined in nsRegistry.cpp
|
|
|
|
// We hook into this function locally to create and register the registry
|
|
|
|
// Since noone outside xpcom needs to know about this and nsRegistry.cpp
|
|
|
|
// does not have a local include file, we are putting this definition
|
|
|
|
// here rather than in nsIRegistry.h
|
|
|
|
extern "C" NS_EXPORT nsresult NS_RegistryGetFactory(nsIFactory** aFactory);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
2001-08-30 18:10:41 +04:00
|
|
|
// Predefined loader types. Do not change the numbers.
|
|
|
|
// NATIVE should be 0 as it is being used as the first array index.
|
|
|
|
#define NS_COMPONENT_TYPE_NATIVE 0
|
2001-09-07 01:13:11 +04:00
|
|
|
#define NS_COMPONENT_TYPE_FACTORY_ONLY -1
|
|
|
|
// this define means that the factory entry only has a ContractID
|
|
|
|
// to service mapping and has no cid mapping.
|
|
|
|
#define NS_COMPONENT_TYPE_SERVICE_ONLY -2
|
2001-08-30 18:10:41 +04:00
|
|
|
|
1999-09-07 09:06:37 +04:00
|
|
|
extern const char XPCOM_LIB_PREFIX[];
|
1999-09-01 01:40:21 +04:00
|
|
|
|
1999-03-09 12:44:27 +03:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2000-01-12 01:54:46 +03:00
|
|
|
class nsComponentManagerImpl
|
2001-09-07 01:13:11 +04:00
|
|
|
: public nsIComponentManager,
|
|
|
|
public nsIServiceManager,
|
|
|
|
public nsSupportsWeakReference,
|
2001-10-17 03:39:20 +04:00
|
|
|
public nsIInterfaceRequestor,
|
|
|
|
public nsIServiceManagerObsolete
|
|
|
|
{
|
1999-03-09 12:44:27 +03:00
|
|
|
public:
|
1999-03-10 12:53:25 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
2000-01-12 01:54:46 +03:00
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
2001-10-16 07:35:52 +04:00
|
|
|
NS_DECL_NSICOMPONENTMANAGER
|
|
|
|
NS_DECL_NSISERVICEMANAGER
|
1999-03-10 12:53:25 +03:00
|
|
|
|
2001-10-17 03:39:20 +04:00
|
|
|
// nsIServiceManagerObsolete
|
|
|
|
NS_IMETHOD
|
|
|
|
RegisterService(const nsCID& aClass, nsISupports* aService);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
UnregisterService(const nsCID& aClass);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
GetService(const nsCID& aClass, const nsIID& aIID,
|
|
|
|
nsISupports* *result,
|
|
|
|
nsIShutdownListener* shutdownListener);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
ReleaseService(const nsCID& aClass, nsISupports* service,
|
|
|
|
nsIShutdownListener* shutdownListener);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
RegisterService(const char* aContractID, nsISupports* aService);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
UnregisterService(const char* aContractID);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
GetService(const char* aContractID, const nsIID& aIID,
|
|
|
|
nsISupports* *result,
|
|
|
|
nsIShutdownListener* shutdownListener);
|
|
|
|
|
|
|
|
NS_IMETHOD
|
|
|
|
ReleaseService(const char* aContractID, nsISupports* service,
|
|
|
|
nsIShutdownListener* shutdownListener);
|
2001-09-07 01:13:11 +04:00
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
// nsComponentManagerImpl methods:
|
|
|
|
nsComponentManagerImpl();
|
|
|
|
virtual ~nsComponentManagerImpl();
|
|
|
|
|
|
|
|
static nsComponentManagerImpl* gComponentManager;
|
|
|
|
nsresult Init(void);
|
1999-07-02 07:35:09 +04:00
|
|
|
nsresult PlatformPrePopulateRegistry();
|
1999-10-22 01:34:39 +04:00
|
|
|
nsresult Shutdown(void);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
2001-10-16 07:35:52 +04:00
|
|
|
nsresult FreeServices();
|
|
|
|
|
1999-09-08 03:18:47 +04:00
|
|
|
friend class nsFactoryEntry;
|
2001-09-07 01:13:11 +04:00
|
|
|
friend class nsServiceManager;
|
2001-10-16 07:35:52 +04:00
|
|
|
|
2001-09-25 04:38:44 +04:00
|
|
|
friend nsresult
|
|
|
|
NS_GetService(const char *aContractID, const nsIID& aIID, PRBool aDontCreate, nsISupports** result);
|
2001-10-16 07:35:52 +04:00
|
|
|
|
1999-03-09 12:44:27 +03:00
|
|
|
protected:
|
1999-09-07 09:06:37 +04:00
|
|
|
nsresult RegistryNameForLib(const char *aLibName, char **aRegistryName);
|
1999-09-01 01:40:21 +04:00
|
|
|
nsresult RegisterComponentCommon(const nsCID &aClass,
|
|
|
|
const char *aClassName,
|
2000-09-14 03:57:52 +04:00
|
|
|
const char *aContractID,
|
1999-11-19 05:14:23 +03:00
|
|
|
const char *aRegistryName,
|
1999-09-01 01:40:21 +04:00
|
|
|
PRBool aReplace, PRBool aPersist,
|
|
|
|
const char *aType);
|
|
|
|
nsresult AddComponentToRegistry(const nsCID &aCID, const char *aClassName,
|
2000-09-14 03:57:52 +04:00
|
|
|
const char *aContractID,
|
1999-09-01 01:40:21 +04:00
|
|
|
const char *aRegistryName,
|
|
|
|
const char *aType);
|
2001-08-30 18:10:41 +04:00
|
|
|
nsresult GetLoaderForType(int aType,
|
1999-09-01 01:40:21 +04:00
|
|
|
nsIComponentLoader **aLoader);
|
2001-08-22 02:42:35 +04:00
|
|
|
nsresult FindFactory(const char *contractID, nsIFactory **aFactory) ;
|
1999-03-10 12:53:25 +03:00
|
|
|
nsresult LoadFactory(nsFactoryEntry *aEntry, nsIFactory **aFactory);
|
2001-08-22 02:42:35 +04:00
|
|
|
|
|
|
|
nsFactoryEntry *GetFactoryEntry(const char *aContractID, int checkRegistry = -1);
|
|
|
|
nsFactoryEntry *GetFactoryEntry(const nsCID &aClass, int checkRegistry = -1);
|
|
|
|
nsFactoryEntry *GetFactoryEntry(const nsCID &aClass, nsIDKey &cidKey, int checkRegistry = -1);
|
1999-04-03 00:28:22 +04:00
|
|
|
|
2000-01-25 00:28:28 +03:00
|
|
|
nsresult SyncComponentsInDir(PRInt32 when, nsIFile *dirSpec);
|
1999-03-10 12:53:25 +03:00
|
|
|
nsresult SelfRegisterDll(nsDll *dll);
|
|
|
|
nsresult SelfUnregisterDll(nsDll *dll);
|
2001-08-22 02:42:35 +04:00
|
|
|
nsresult HashContractID(const char *acontractID, nsFactoryEntry *fe_ptr);
|
|
|
|
nsresult HashContractID(const char *acontractID, const nsCID &aClass, nsFactoryEntry **fe_ptr = NULL);
|
|
|
|
nsresult HashContractID(const char *acontractID, const nsCID &aClass, nsIDKey &cidKey, nsFactoryEntry **fe_ptr = NULL);
|
1999-09-26 22:04:27 +04:00
|
|
|
nsresult UnloadLibraries(nsIServiceManager *servmgr, PRInt32 when);
|
2001-09-07 01:13:11 +04:00
|
|
|
|
1999-06-14 06:07:03 +04:00
|
|
|
// The following functions are the only ones that operate on the persistent
|
|
|
|
// registry
|
|
|
|
nsresult PlatformInit(void);
|
2000-02-16 10:45:20 +03:00
|
|
|
nsresult PlatformVersionCheck(nsRegistryKey *aXPCOMRootKey);
|
2000-09-14 03:57:52 +04:00
|
|
|
nsresult PlatformRegister(const char *cidString, const char *className, const char *contractID, nsDll *dll);
|
1999-06-14 06:07:03 +04:00
|
|
|
nsresult PlatformUnregister(const char *cidString, const char *aLibrary);
|
1999-09-01 01:40:21 +04:00
|
|
|
nsresult PlatformFind(const nsCID &aCID, nsFactoryEntry* *result);
|
2000-09-14 03:57:52 +04:00
|
|
|
nsresult PlatformContractIDToCLSID(const char *aContractID, nsCID *aClass);
|
|
|
|
nsresult PlatformCLSIDToContractID(const nsCID *aClass, char* *aClassName, char* *aContractID);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
2001-08-30 18:10:41 +04:00
|
|
|
// Convert a loader type string into an index into the loader data
|
|
|
|
// array. Empty loader types are converted to NATIVE. Returns -1 if
|
|
|
|
// loader type cannot be determined.
|
|
|
|
int GetLoaderType(const char *typeStr);
|
|
|
|
|
|
|
|
// Add a loader type if not already known. Return the typeIndex
|
|
|
|
// if the loader type is either added or already there; -1 if
|
|
|
|
// there was an error
|
|
|
|
int AddLoaderType(const char *typeStr);
|
|
|
|
|
2000-09-08 05:51:45 +04:00
|
|
|
private:
|
|
|
|
nsresult AutoRegisterImpl(PRInt32 when, nsIFile *inDirSpec);
|
|
|
|
|
1999-03-09 12:44:27 +03:00
|
|
|
protected:
|
1999-07-28 12:01:03 +04:00
|
|
|
nsObjectHashtable* mFactories;
|
2000-09-14 03:57:52 +04:00
|
|
|
nsObjectHashtable* mContractIDs;
|
1999-07-28 12:01:03 +04:00
|
|
|
PRMonitor* mMon;
|
2000-09-08 05:51:45 +04:00
|
|
|
nsRegistry* mRegistry;
|
1999-09-29 06:35:42 +04:00
|
|
|
nsRegistryKey mXPCOMKey;
|
|
|
|
nsRegistryKey mClassesKey;
|
|
|
|
nsRegistryKey mCLSIDKey;
|
1999-08-09 09:02:25 +04:00
|
|
|
PRBool mPrePopulationDone;
|
1999-09-29 06:35:42 +04:00
|
|
|
nsRegistryKey mLoadersKey;
|
1999-09-01 01:40:21 +04:00
|
|
|
nsNativeComponentLoader *mNativeComponentLoader;
|
2001-06-21 00:21:49 +04:00
|
|
|
nsIComponentLoader *mStaticComponentLoader;
|
2000-01-29 02:37:27 +03:00
|
|
|
nsCOMPtr<nsIFile> mComponentsDir;
|
2000-02-01 10:54:46 +03:00
|
|
|
PRInt32 mComponentsOffset;
|
|
|
|
|
1999-10-22 01:34:39 +04:00
|
|
|
// Shutdown
|
|
|
|
#define NS_SHUTDOWN_NEVERHAPPENED 0
|
|
|
|
#define NS_SHUTDOWN_INPROGRESS 1
|
|
|
|
#define NS_SHUTDOWN_COMPLETE 2
|
|
|
|
PRUint32 mShuttingDown;
|
2001-08-30 18:10:41 +04:00
|
|
|
|
|
|
|
// Array of Loaders and their type strings
|
|
|
|
struct nsLoaderdata {
|
|
|
|
nsIComponentLoader *loader;
|
|
|
|
const char *type;
|
|
|
|
};
|
|
|
|
|
|
|
|
nsLoaderdata *mLoaderData;
|
|
|
|
int mNLoaderData;
|
|
|
|
int mMaxNLoaderData;
|
1999-03-09 12:44:27 +03:00
|
|
|
};
|
|
|
|
|
2001-09-07 01:13:11 +04:00
|
|
|
|
1999-03-09 12:44:27 +03:00
|
|
|
#define NS_MAX_FILENAME_LEN 1024
|
|
|
|
|
|
|
|
#define NS_ERROR_IS_DIR NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_XPCOM, 24)
|
|
|
|
|
1999-03-11 10:44:23 +03:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
/* The default registry on the unix system is $HOME/.mozilla/registry per
|
|
|
|
* vr_findGlobalRegName(). vr_findRegFile() will create the registry file
|
|
|
|
* if it doesn't exist. But it wont create directories.
|
|
|
|
*
|
|
|
|
* Hence we need to create the directory if it doesn't exist already.
|
|
|
|
*
|
|
|
|
* Why create it here as opposed to the app ?
|
|
|
|
* ------------------------------------------
|
|
|
|
* The app cannot create the directory in main() as most of the registry
|
|
|
|
* and initialization happens due to use of static variables.
|
|
|
|
* And we dont want to be dependent on the order in which
|
|
|
|
* these static stuff happen.
|
|
|
|
*
|
|
|
|
* Permission for the $HOME/.mozilla will be Read,Write,Execute
|
|
|
|
* for user only. Nothing to group and others.
|
|
|
|
*/
|
|
|
|
#define NS_MOZILLA_DIR_NAME ".mozilla"
|
|
|
|
#define NS_MOZILLA_DIR_PERMISSION 00700
|
|
|
|
#endif /* XP_UNIX */
|
|
|
|
|
1999-06-29 14:27:58 +04:00
|
|
|
#ifdef XP_BEOS
|
|
|
|
#define NS_MOZILLA_DIR_NAME "mozilla"
|
|
|
|
#define NS_MOZILLA_DIR_PERMISSION 00700
|
|
|
|
#endif /* XP_BEOS */
|
|
|
|
|
1999-03-09 12:44:27 +03:00
|
|
|
/**
|
|
|
|
* When using the registry we put a version number in it.
|
|
|
|
* If the version number that is in the registry doesn't match
|
|
|
|
* the following, we ignore the registry. This lets news versions
|
|
|
|
* of the software deal with old formats of registry and not
|
|
|
|
*
|
|
|
|
* alpha0.20 : First time we did versioning
|
|
|
|
* alpha0.30 : Changing autoreg to begin registration from ./components on unix
|
1999-03-10 01:18:32 +03:00
|
|
|
* alpha0.40 : repository -> component manager
|
1999-03-31 11:04:12 +04:00
|
|
|
* alpha0.50 : using nsIRegistry
|
1999-05-26 05:38:36 +04:00
|
|
|
* alpha0.60 : xpcom 2.0 landing
|
1999-06-22 18:02:58 +04:00
|
|
|
* alpha0.70 : using nsIFileSpec. PRTime -> PRUint32
|
1999-09-01 01:40:21 +04:00
|
|
|
* alpha0.90 : using nsIComponentLoader, abs:/rel:/lib:, shaver-cleanup
|
2000-02-20 06:12:59 +03:00
|
|
|
* alpha0.92 : restructured registry keys
|
2000-05-12 05:24:36 +04:00
|
|
|
* alpha0.93 : changed component names to native strings instead of UTF8
|
1999-03-09 12:44:27 +03:00
|
|
|
*/
|
2000-05-12 05:24:36 +04:00
|
|
|
#define NS_XPCOM_COMPONENT_MANAGER_VERSION_STRING "alpha0.93"
|
1999-03-09 12:44:27 +03:00
|
|
|
|
2001-09-07 01:13:11 +04:00
|
|
|
class nsServiceEntry {
|
|
|
|
public:
|
|
|
|
nsServiceEntry(nsISupports* service, nsFactoryEntry* factEntry);
|
|
|
|
~nsServiceEntry();
|
|
|
|
|
|
|
|
nsresult AddListener(nsIShutdownListener* listener);
|
|
|
|
nsresult RemoveListener(nsIShutdownListener* listener);
|
|
|
|
nsresult NotifyListeners(void);
|
|
|
|
|
|
|
|
nsISupports* mObject;
|
|
|
|
nsVoidArray* mListeners;
|
|
|
|
PRBool mShuttingDown;
|
|
|
|
nsFactoryEntry* mFactoryEntry; // non-owning back pointer
|
|
|
|
};
|
|
|
|
|
1999-03-09 12:44:27 +03:00
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
|
|
* Class: nsFactoryEntry()
|
|
|
|
*
|
|
|
|
* There are two types of FactoryEntries.
|
|
|
|
*
|
|
|
|
* 1. {CID, dll} mapping.
|
|
|
|
* Factory is a consequence of the dll. These can be either session
|
|
|
|
* specific or persistent based on whether we write this
|
|
|
|
* to the registry or not.
|
|
|
|
*
|
|
|
|
* 2. {CID, factory} mapping
|
|
|
|
* These are strictly session specific and in memory only.
|
|
|
|
*/
|
|
|
|
|
|
|
|
class nsFactoryEntry {
|
|
|
|
public:
|
2001-08-30 18:10:41 +04:00
|
|
|
nsFactoryEntry(const nsCID &aClass, const char *location, int aType);
|
1999-03-10 12:53:25 +03:00
|
|
|
nsFactoryEntry(const nsCID &aClass, nsIFactory *aFactory);
|
|
|
|
~nsFactoryEntry();
|
1999-03-09 12:44:27 +03:00
|
|
|
|
2001-08-30 18:10:41 +04:00
|
|
|
nsresult ReInit(const nsCID &aClass, const char *location, int aType);
|
2001-08-22 02:42:35 +04:00
|
|
|
nsresult ReInit(const nsCID &aClass, nsIFactory *aFactory);
|
|
|
|
|
1999-09-08 03:18:47 +04:00
|
|
|
nsresult GetFactory(nsIFactory **aFactory,
|
|
|
|
nsComponentManagerImpl * mgr) {
|
1999-09-01 01:40:21 +04:00
|
|
|
if (factory) {
|
|
|
|
*aFactory = factory.get();
|
|
|
|
NS_ADDREF(*aFactory);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-09-08 03:18:47 +04:00
|
|
|
|
2001-08-30 18:10:41 +04:00
|
|
|
if (typeIndex < 0)
|
2001-08-22 02:42:35 +04:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
1999-09-08 03:18:47 +04:00
|
|
|
nsresult rv;
|
2001-08-30 18:10:41 +04:00
|
|
|
nsCOMPtr<nsIComponentLoader> loader;
|
|
|
|
rv = mgr->GetLoaderForType(typeIndex, getter_AddRefs(loader));
|
|
|
|
if(NS_FAILED(rv))
|
|
|
|
return rv;
|
1999-09-09 04:48:30 +04:00
|
|
|
|
2001-08-30 18:10:41 +04:00
|
|
|
rv = loader->GetFactory(cid, location, mgr->mLoaderData[typeIndex].type, aFactory);
|
1999-09-01 01:40:21 +04:00
|
|
|
if (NS_SUCCEEDED(rv))
|
1999-09-02 11:00:29 +04:00
|
|
|
factory = do_QueryInterface(*aFactory);
|
1999-09-01 01:40:21 +04:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
nsCID cid;
|
2001-06-17 09:23:38 +04:00
|
|
|
nsCString location;
|
1999-09-01 01:40:21 +04:00
|
|
|
nsCOMPtr<nsIFactory> factory;
|
2001-09-07 01:13:11 +04:00
|
|
|
nsServiceEntry *mServiceEntry;
|
2001-08-30 18:10:41 +04:00
|
|
|
// This is an index into the mLoaderData array that holds the type string and the loader
|
|
|
|
int typeIndex;
|
1999-03-09 12:44:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#endif // nsComponentManager_h__
|