зеркало из https://github.com/mozilla/gecko-dev.git
225 строки
7.8 KiB
C
225 строки
7.8 KiB
C
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||
|
/*
|
||
|
* The contents of this file are subject to the Netscape Public License
|
||
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
||
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
||
|
* http://www.mozilla.org/NPL/
|
||
|
*
|
||
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
||
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
||
|
* for the specific language governing rights and limitations under the
|
||
|
* NPL.
|
||
|
*
|
||
|
* The Initial Developer of this code under the NPL is Netscape
|
||
|
* Communications Corporation. Portions created by Netscape are
|
||
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
||
|
* Reserved.
|
||
|
*/
|
||
|
|
||
|
#ifndef nsComponentManager_h__
|
||
|
#define nsComponentManager_h__
|
||
|
|
||
|
#include "nsIComponentManager.h"
|
||
|
#include "NSReg.h"
|
||
|
#include "nsHashtable.h"
|
||
|
#include "prtime.h"
|
||
|
|
||
|
class nsFactoryEntry;
|
||
|
class nsDllStore;
|
||
|
class nsDll;
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
/*
|
||
|
*** Quick Registration NOT FOR PUBLIC CONSUMPTION ***
|
||
|
*
|
||
|
* Quick Registration
|
||
|
*
|
||
|
* For quick registration, dlls can define
|
||
|
* NSQuickRegisterClassData g_NSQuickRegisterData[];
|
||
|
* and export the symbol "g_NSQuickRegisterData"
|
||
|
*
|
||
|
* Quick registration is tried only if the symbol "NSRegisterSelf"
|
||
|
* is not found. If it is found but fails registration, quick registration
|
||
|
* will not kick in.
|
||
|
*
|
||
|
* The array is terminated by having a NULL last element. Specifically, the
|
||
|
* array will be assumed to end when
|
||
|
* (g_NSQuickRegisterData[i].classIdStr == NULL)
|
||
|
*
|
||
|
*/
|
||
|
#define NS_QUICKREGISTER_DATA_SYMBOL "g_NSQuickRegisterData"
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
class nsComponentManagerImpl : public nsIComponentManager {
|
||
|
public:
|
||
|
NS_DECL_ISUPPORTS
|
||
|
|
||
|
// nsIComponentManager methods:
|
||
|
NS_IMETHOD FindFactory(const nsCID &aClass,
|
||
|
nsIFactory **aFactory);
|
||
|
|
||
|
// Finds a class ID for a specific Program ID
|
||
|
NS_IMETHOD ProgIDToCLSID(const char *aProgID,
|
||
|
nsCID *aClass);
|
||
|
|
||
|
// Finds a Program ID for a specific class ID
|
||
|
// caller frees the result with delete[]
|
||
|
NS_IMETHOD CLSIDToProgID(nsCID *aClass,
|
||
|
char* *aClassName,
|
||
|
char* *aProgID);
|
||
|
|
||
|
// Creates a class instance for a specific class ID
|
||
|
NS_IMETHOD CreateInstance(const nsCID &aClass,
|
||
|
nsISupports *aDelegate,
|
||
|
const nsIID &aIID,
|
||
|
void **aResult);
|
||
|
|
||
|
// Convenience routine, creates a class instance for a specific ProgID
|
||
|
NS_IMETHOD CreateInstance(const char *aProgID,
|
||
|
nsISupports *aDelegate,
|
||
|
const nsIID &aIID,
|
||
|
void **aResult);
|
||
|
|
||
|
// Creates a class instance for a specific class ID
|
||
|
/*
|
||
|
NS_IMETHOD CreateInstance2(const nsCID &aClass,
|
||
|
nsISupports *aDelegate,
|
||
|
const nsIID &aIID,
|
||
|
void *aSignature,
|
||
|
void **aResult);
|
||
|
*/
|
||
|
|
||
|
// Manually registry a factory for a class
|
||
|
NS_IMETHOD RegisterFactory(const nsCID &aClass,
|
||
|
const char *aClassName,
|
||
|
const char *aProgID,
|
||
|
nsIFactory *aFactory,
|
||
|
PRBool aReplace);
|
||
|
|
||
|
// Manually register a dynamically loaded component.
|
||
|
NS_IMETHOD RegisterComponent(const nsCID &aClass,
|
||
|
const char *aClassName,
|
||
|
const char *aProgID,
|
||
|
const char *aLibrary,
|
||
|
PRBool aReplace,
|
||
|
PRBool aPersist);
|
||
|
|
||
|
// Manually unregister a factory for a class
|
||
|
NS_IMETHOD UnregisterFactory(const nsCID &aClass,
|
||
|
nsIFactory *aFactory);
|
||
|
|
||
|
// Manually unregister a dynamically loaded factory for a class
|
||
|
NS_IMETHOD UnregisterFactory(const nsCID &aClass,
|
||
|
const char *aLibrary);
|
||
|
|
||
|
// Manually unregister a dynamically loaded component
|
||
|
NS_IMETHOD UnregisterComponent(const nsCID &aClass,
|
||
|
const char *aLibrary);
|
||
|
|
||
|
// Unload dynamically loaded factories that are not in use
|
||
|
NS_IMETHOD FreeLibraries(void);
|
||
|
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// DLL registration support
|
||
|
/* Autoregistration will try only files with these extensions.
|
||
|
* All extensions are case insensitive.
|
||
|
* ".dll", // Windows
|
||
|
* ".dso", // Unix
|
||
|
* ".so", // Unix
|
||
|
* ".sl", // Unix: HP
|
||
|
* "_dll", // Mac
|
||
|
* ".dlm", // new for all platforms
|
||
|
*/
|
||
|
NS_IMETHOD AutoRegister(RegistrationTime when, const char* pathlist);
|
||
|
// Pathlist is a semicolon separated list of pathnames
|
||
|
NS_IMETHOD AddToDefaultPathList(const char *pathlist);
|
||
|
NS_IMETHOD SyncComponentsInPathList(const char *pathlist);
|
||
|
NS_IMETHOD SyncComponentsInDir(const char *path);
|
||
|
NS_IMETHOD SyncComponentsInFile(const char *fullname);
|
||
|
|
||
|
// nsComponentManagerImpl methods:
|
||
|
nsComponentManagerImpl();
|
||
|
virtual ~nsComponentManagerImpl();
|
||
|
|
||
|
static nsComponentManagerImpl* gComponentManager;
|
||
|
nsresult Init(void);
|
||
|
|
||
|
protected:
|
||
|
nsresult LoadFactory(nsFactoryEntry *aEntry, nsIFactory **aFactory);
|
||
|
nsresult SelfRegisterDll(nsDll *dll);
|
||
|
nsresult SelfUnregisterDll(nsDll *dll);
|
||
|
|
||
|
nsresult PlatformDeleteKey(HREG hreg, RKEY rootkey, const char *hierarchy);
|
||
|
nsresult PlatformVersionCheck();
|
||
|
nsresult PlatformCreateDll(const char *fullname, nsDll* *result);
|
||
|
nsresult PlatformMarkNoComponents(nsDll *dll);
|
||
|
struct QuickRegisterData {
|
||
|
const char *CIDString; // {98765-8776-8958758759-958785}
|
||
|
const char *className; // "Layout Engine"
|
||
|
const char *progID; // "Gecko.LayoutEngine.1"
|
||
|
};
|
||
|
nsresult PlatformRegister(QuickRegisterData* regd, nsDll *dll);
|
||
|
nsresult PlatformUnregister(QuickRegisterData* regd, const char *aLibrary);
|
||
|
nsresult PlatformFind(const nsCID &aCID, nsFactoryEntry* *result);
|
||
|
nsresult PlatformProgIDToCLSID(const char *aProgID, nsCID *aClass);
|
||
|
nsresult PlatformCLSIDToProgID(nsCID *aClass, char* *aClassName, char* *aProgID);
|
||
|
|
||
|
protected:
|
||
|
nsHashtable* mFactories;
|
||
|
nsHashtable* mProgIDs;
|
||
|
PRMonitor* mMonitor;
|
||
|
nsDllStore* mDllStore;
|
||
|
};
|
||
|
|
||
|
#define NS_MAX_FILENAME_LEN 1024
|
||
|
|
||
|
#define NS_ERROR_IS_DIR NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_XPCOM, 24)
|
||
|
|
||
|
/**
|
||
|
* 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
|
||
|
*/
|
||
|
#define NS_XPCOM_COMPONENT_MANAGER_VERSION_STRING "alpha0.31"
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
/**
|
||
|
* 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:
|
||
|
nsFactoryEntry();
|
||
|
nsFactoryEntry(const nsCID &aClass, nsIFactory *aFactory);
|
||
|
~nsFactoryEntry();
|
||
|
|
||
|
nsresult Init(nsDllStore* store, const nsCID &aClass, const char *aLibrary,
|
||
|
PRTime lastModTime, PRUint32 fileSize);
|
||
|
|
||
|
nsCID cid;
|
||
|
nsIFactory *factory;
|
||
|
|
||
|
// DO NOT DELETE THIS. Many nsFactoryEntry(s) could be sharing the same Dll.
|
||
|
// This gets deleted from the dllStore going away.
|
||
|
nsDll *dll;
|
||
|
};
|
||
|
|
||
|
////////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#endif // nsComponentManager_h__
|