1999-03-10 12:53:25 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
1999-03-09 12:44:27 +03:00
|
|
|
/*
|
|
|
|
* 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"
|
1999-03-09 13:15:54 +03:00
|
|
|
#include "prmon.h"
|
1999-03-09 12:44:27 +03:00
|
|
|
|
|
|
|
class nsFactoryEntry;
|
|
|
|
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:
|
1999-03-10 12:53:25 +03:00
|
|
|
NS_DECL_ISUPPORTS
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
// nsIComponentManager methods:
|
|
|
|
NS_IMETHOD FindFactory(const nsCID &aClass,
|
|
|
|
nsIFactory **aFactory);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
// Finds a class ID for a specific Program ID
|
|
|
|
NS_IMETHOD ProgIDToCLSID(const char *aProgID,
|
|
|
|
nsCID *aClass);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
// Finds a Program ID for a specific class ID
|
|
|
|
// caller frees the result with delete[]
|
|
|
|
NS_IMETHOD CLSIDToProgID(nsCID *aClass,
|
|
|
|
char* *aClassName,
|
|
|
|
char* *aProgID);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
// 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,
|
1999-03-09 12:44:27 +03:00
|
|
|
const char *aClassName,
|
|
|
|
const char *aProgID,
|
1999-03-10 12:53:25 +03:00
|
|
|
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,
|
1999-03-09 12:44:27 +03:00
|
|
|
const char *aLibrary);
|
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
// 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);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
|
|
|
protected:
|
1999-03-10 12:53:25 +03:00
|
|
|
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);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
|
|
|
protected:
|
1999-03-10 12:53:25 +03:00
|
|
|
nsHashtable* mFactories;
|
|
|
|
nsHashtable* mProgIDs;
|
|
|
|
PRMonitor* mMon;
|
1999-03-12 14:25:17 +03:00
|
|
|
nsHashtable* mDllStore;
|
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-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-09 12:44:27 +03:00
|
|
|
*/
|
1999-03-30 05:09:24 +04:00
|
|
|
#define NS_XPCOM_COMPONENT_MANAGER_VERSION_STRING "alpha0.46"
|
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:
|
1999-03-10 12:53:25 +03:00
|
|
|
nsFactoryEntry();
|
|
|
|
nsFactoryEntry(const nsCID &aClass, nsIFactory *aFactory);
|
|
|
|
~nsFactoryEntry();
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-03-12 14:25:17 +03:00
|
|
|
nsresult Init(nsHashtable* dllHashtable, const nsCID &aClass, const char *aLibrary,
|
1999-03-10 12:53:25 +03:00
|
|
|
PRTime lastModTime, PRUint32 fileSize);
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
nsCID cid;
|
|
|
|
nsIFactory *factory;
|
1999-03-09 12:44:27 +03:00
|
|
|
|
1999-03-10 12:53:25 +03:00
|
|
|
// DO NOT DELETE THIS. Many nsFactoryEntry(s) could be sharing the same Dll.
|
|
|
|
// This gets deleted from the dllStore going away.
|
|
|
|
nsDll *dll;
|
1999-03-09 12:44:27 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#endif // nsComponentManager_h__
|