/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * 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 mozilla.org code. * * 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 of 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 MPL, 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 MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #ifndef nsComponentManager_h__ #define nsComponentManager_h__ #include "nsXPCOM.h" #include "xpcom-private.h" #include "nsIComponentManager.h" #include "nsIComponentRegistrar.h" #include "nsIServiceManager.h" #include "nsILocalFile.h" #include "mozilla/Module.h" #include "mozilla/ModuleLoader.h" #include "mozilla/Monitor.h" #include "nsXULAppAPI.h" #include "nsNativeComponentLoader.h" #include "nsIFactory.h" #include "nsIInterfaceRequestor.h" #include "nsIInterfaceRequestorUtils.h" #include "pldhash.h" #include "prtime.h" #include "nsCOMPtr.h" #include "nsAutoPtr.h" #include "nsWeakReference.h" #include "nsIFile.h" #include "plarena.h" #include "nsCOMArray.h" #include "nsDataHashtable.h" #include "nsInterfaceHashtable.h" #include "nsClassHashtable.h" #include "nsTArray.h" #include "mozilla/Omnijar.h" #include "nsIZipReader.h" struct nsFactoryEntry; class nsIServiceManager; struct PRThread; #define NS_COMPONENTMANAGER_CID \ { /* 91775d60-d5dc-11d2-92fb-00e09805570f */ \ 0x91775d60, \ 0xd5dc, \ 0x11d2, \ {0x92, 0xfb, 0x00, 0xe0, 0x98, 0x05, 0x57, 0x0f} \ } /* keys for registry use */ extern const char xpcomKeyName[]; extern const char xpcomComponentsKeyName[]; extern const char lastModValueName[]; extern const char fileSizeValueName[]; extern const char nativeComponentType[]; extern const char staticComponentType[]; #ifdef DEBUG #define XPCOM_CHECK_PENDING_CIDS #endif //////////////////////////////////////////////////////////////////////////////// extern const mozilla::Module kXPCOMModule; // Array of Loaders and their type strings struct nsLoaderdata { nsCOMPtr loader; nsCString type; }; class nsComponentManagerImpl : public nsIComponentManager , public nsIServiceManager , public nsSupportsWeakReference , public nsIComponentRegistrar , public nsIInterfaceRequestor { public: NS_DECL_ISUPPORTS NS_DECL_NSIINTERFACEREQUESTOR NS_DECL_NSICOMPONENTMANAGER NS_DECL_NSICOMPONENTREGISTRAR static nsresult Create(nsISupports* aOuter, REFNSIID aIID, void** aResult); nsresult RegistryLocationForFile(nsIFile* aFile, nsCString& aResult); nsresult FileForRegistryLocation(const nsCString &aLocation, nsILocalFile **aSpec); NS_DECL_NSISERVICEMANAGER // nsComponentManagerImpl methods: nsComponentManagerImpl(); static nsComponentManagerImpl* gComponentManager; nsresult Init(); nsresult Shutdown(void); nsresult FreeServices(); already_AddRefed LoaderForExtension(const nsACString& aExt); nsInterfaceHashtable mLoaderMap; already_AddRefed FindFactory(const nsCID& aClass); already_AddRefed FindFactory(const char *contractID, PRUint32 aContractIDLen); already_AddRefed LoadFactory(nsFactoryEntry *aEntry); nsFactoryEntry *GetFactoryEntry(const char *aContractID, PRUint32 aContractIDLen); nsFactoryEntry *GetFactoryEntry(const nsCID &aClass); nsDataHashtable mFactories; nsDataHashtable mContractIDs; mozilla::Monitor mMon; static void InitializeStaticModules(); static void InitializeModuleLocations(); struct ComponentLocation { NSLocationType type; nsCOMPtr location; bool jar; }; static nsTArray* sStaticModules; static nsTArray* sModuleLocations; static nsTArray* sJarModuleLocations; nsNativeModuleLoader mNativeModuleLoader; class KnownModule { public: /** * Static or binary module. */ KnownModule(const mozilla::Module* aModule, nsILocalFile* aFile) : mModule(aModule) , mFile(aFile) , mLoaded(false) , mFailed(false) { } KnownModule(nsILocalFile* aFile) : mModule(NULL) , mFile(aFile) , mLoader(NULL) , mLoaded(false) , mFailed(false) { } KnownModule(nsILocalFile* aFile, const nsACString& aPath) : mModule(NULL) , mFile(aFile) , mPath(aPath) , mLoader(NULL) , mLoaded(false) , mFailed(false) { } ~KnownModule() { if (mLoaded && mModule->unloadProc) mModule->unloadProc(); } bool EnsureLoader(); bool Load(); const mozilla::Module* Module() const { return mModule; } /** * For error logging, get a description of this module, either the * file path, or . */ nsCString Description() const; private: const mozilla::Module* mModule; nsCOMPtr mFile; nsCString mPath; nsCOMPtr mLoader; bool mLoaded; bool mFailed; }; // The KnownModule is kept alive by these members, it is // referenced by pointer from the factory entries. nsTArray< nsAutoPtr > mKnownStaticModules; nsClassHashtable mKnownFileModules; // The key is a string in this format "|" nsClassHashtable mKnownJARModules; void RegisterModule(const mozilla::Module* aModule, nsILocalFile* aFile); void RegisterCIDEntry(const mozilla::Module::CIDEntry* aEntry, KnownModule* aModule); void RegisterContractID(const mozilla::Module::ContractIDEntry* aEntry); void RegisterJarManifest(nsIZipReader* aReader, const char* aPath, bool aChromeOnly); void RegisterManifestFile(NSLocationType aType, nsILocalFile* aFile, bool aChromeOnly); struct ManifestProcessingContext { ManifestProcessingContext(NSLocationType aType, nsILocalFile* aFile, bool aChromeOnly) : mType(aType) , mFile(aFile) , mPath(NULL) , mChromeOnly(aChromeOnly) { } ManifestProcessingContext(NSLocationType aType, nsIZipReader* aReader, const char* aPath, bool aChromeOnly) : mType(aType) , mReader(aReader) , mPath(aPath) , mChromeOnly(aChromeOnly) { nsCOMPtr file; aReader->GetFile(getter_AddRefs(file)); nsCOMPtr localfile = do_QueryInterface(file); mFile = localfile; } ~ManifestProcessingContext() { } NSLocationType mType; nsILocalFile* mFile; nsIZipReader* mReader; const char* mPath; bool mChromeOnly; }; void ManifestManifest(ManifestProcessingContext& cx, int lineno, char *const * argv); void ManifestBinaryComponent(ManifestProcessingContext& cx, int lineno, char *const * argv); void ManifestXPT(ManifestProcessingContext& cx, int lineno, char *const * argv); void ManifestComponent(ManifestProcessingContext& cx, int lineno, char *const * argv); void ManifestContract(ManifestProcessingContext& cx, int lineno, char* const * argv); void ManifestCategory(ManifestProcessingContext& cx, int lineno, char* const * argv); void RereadChromeManifests(); // Shutdown enum { NOT_INITIALIZED, NORMAL, SHUTDOWN_IN_PROGRESS, SHUTDOWN_COMPLETE } mStatus; nsTArray mLoaderData; PLArenaPool mArena; struct PendingServiceInfo { const nsCID* cid; PRThread* thread; }; inline PendingServiceInfo* AddPendingService(const nsCID& aServiceCID, PRThread* aThread); inline void RemovePendingService(const nsCID& aServiceCID); inline PRThread* GetPendingServiceThread(const nsCID& aServiceCID) const; nsTArray mPendingServices; private: ~nsComponentManagerImpl(); }; #define NS_MAX_FILENAME_LEN 1024 #define NS_ERROR_IS_DIR NS_ERROR_GENERATE_FAILURE(NS_ERROR_MODULE_XPCOM, 24) struct nsFactoryEntry { nsFactoryEntry(const mozilla::Module::CIDEntry* entry, nsComponentManagerImpl::KnownModule* module); // nsIComponentRegistrar.registerFactory support nsFactoryEntry(const nsCID& aClass, nsIFactory* factory); ~nsFactoryEntry(); already_AddRefed GetFactory(); const mozilla::Module::CIDEntry* mCIDEntry; nsComponentManagerImpl::KnownModule* mModule; nsCOMPtr mFactory; nsCOMPtr mServiceObject; }; #endif // nsComponentManager_h__