/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- * * 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. */ #include "nsIServiceManager.h" #include "nsVector.h" #include "nsHashtable.h" #include "prcmon.h" #include "prthread.h" /* XXX: only used for the NSPR initialization hack (rick) */ static NS_DEFINE_CID(kComponentManagerCID, NS_COMPONENTMANAGER_CID); class nsServiceEntry { public: nsServiceEntry(const nsCID& cid, nsISupports* service); ~nsServiceEntry(); nsresult AddListener(nsIShutdownListener* listener); nsresult RemoveListener(nsIShutdownListener* listener); nsresult NotifyListeners(void); const nsCID& mClassID; nsISupports* mService; nsVector* mListeners; // nsVector PRBool mShuttingDown; }; nsServiceEntry::nsServiceEntry(const nsCID& cid, nsISupports* service) : mClassID(cid), mService(service), mListeners(NULL), mShuttingDown(PR_FALSE) { } nsServiceEntry::~nsServiceEntry() { if (mListeners) { NS_ASSERTION(mListeners->GetSize() == 0, "listeners not removed or notified"); #if 0 PRUint32 size = mListeners->GetSize(); for (PRUint32 i = 0; i < size; i++) { nsIShutdownListener* listener = (nsIShutdownListener*)(*mListeners)[i]; NS_RELEASE(listener); } #endif delete mListeners; } } nsresult nsServiceEntry::AddListener(nsIShutdownListener* listener) { if (listener == NULL) return NS_OK; if (mListeners == NULL) { mListeners = new nsVector(); if (mListeners == NULL) return NS_ERROR_OUT_OF_MEMORY; } PRInt32 rv = mListeners->Add(listener); NS_ADDREF(listener); return rv == -1 ? NS_ERROR_FAILURE : NS_OK; } nsresult nsServiceEntry::RemoveListener(nsIShutdownListener* listener) { if (listener == NULL) return NS_OK; NS_ASSERTION(mListeners, "no listeners added yet"); PRUint32 size = mListeners->GetSize(); for (PRUint32 i = 0; i < size; i++) { if ((*mListeners)[i] == listener) { mListeners->Remove(i); NS_RELEASE(listener); return NS_OK; } } NS_ASSERTION(0, "unregistered shutdown listener"); return NS_ERROR_FAILURE; } nsresult nsServiceEntry::NotifyListeners(void) { if (mListeners) { PRUint32 size = mListeners->GetSize(); for (PRUint32 i = 0; i < size; i++) { nsIShutdownListener* listener = (nsIShutdownListener*)(*mListeners)[0]; nsresult rv = listener->OnShutdown(mClassID, mService); if (NS_FAILED(rv)) return rv; NS_RELEASE(listener); mListeners->Remove(0); } NS_ASSERTION(mListeners->GetSize() == 0, "failed to notify all listeners"); delete mListeners; mListeners = NULL; } return NS_OK; } //////////////////////////////////////////////////////////////////////////////// class nsServiceManagerImpl : public nsIServiceManager { public: 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 = NULL); NS_IMETHOD ReleaseService(const nsCID& aClass, nsISupports* service, nsIShutdownListener* shutdownListener = NULL); NS_IMETHOD RegisterService(const char* aProgID, nsISupports* aService); NS_IMETHOD UnregisterService(const char* aProgID); NS_IMETHOD GetService(const char* aProgID, const nsIID& aIID, nsISupports* *result, nsIShutdownListener* shutdownListener = NULL); NS_IMETHOD ReleaseService(const char* aProgID, nsISupports* service, nsIShutdownListener* shutdownListener = NULL); nsServiceManagerImpl(void); NS_DECL_ISUPPORTS protected: virtual ~nsServiceManagerImpl(void); nsObjectHashtable/**/* mServices; PRBool mShuttingDown; PRMonitor* mMonitor; }; static PRBool DeleteEntry(nsHashKey *aKey, void *aData, void* closure) { nsServiceEntry* entry = (nsServiceEntry*)aData; entry->NotifyListeners(); NS_RELEASE(entry->mService); delete entry; return PR_TRUE; } nsServiceManagerImpl::nsServiceManagerImpl(void) : mShuttingDown(PR_FALSE), mMonitor(0) { NS_INIT_REFCNT(); mServices = new nsObjectHashtable(nsnull, nsnull, // should never be cloned DeleteEntry, nsnull, 256, PR_TRUE); // Get a threadSafe hashtable NS_ASSERTION(mServices, "out of memory already?"); /* XXX: This is a hack to force NSPR initialization.. This should be * removed once PR_CEnterMonitor(...) initializes NSPR... (rick) */ (void)PR_GetCurrentThread(); mMonitor = PR_NewMonitor(); NS_ASSERTION(mMonitor, "unable to get service manager monitor. Uh oh."); } nsServiceManagerImpl::~nsServiceManagerImpl(void) { mShuttingDown = PR_TRUE; if (mServices) { delete mServices; } if (mMonitor) { PR_DestroyMonitor(mMonitor); mMonitor = 0; } } NS_IMPL_ISUPPORTS1(nsServiceManagerImpl, nsIServiceManager) NS_IMETHODIMP nsServiceManagerImpl::GetService(const nsCID& aClass, const nsIID& aIID, nsISupports* *result, nsIShutdownListener* shutdownListener) { nsresult rv = NS_OK; PR_EnterMonitor(mMonitor); nsIDKey key(aClass); nsServiceEntry* entry = (nsServiceEntry*)mServices->Get(&key); if (entry) { nsISupports* service; rv = entry->mService->QueryInterface(aIID, (void**)&service); if (NS_SUCCEEDED(rv)) { rv = entry->AddListener(shutdownListener); if (NS_SUCCEEDED(rv)) { *result = service; // If someone else requested the service to be shut down, // and we just asked to get it again before it could be // released, then cancel their shutdown request: if (entry->mShuttingDown) { entry->mShuttingDown = PR_FALSE; NS_ADDREF(service); // Released in UnregisterService } } } } else { nsISupports* service; // We need to not be holding the service manager's monitor while calling // CreateInstance, because it invokes user code which could try to re-enter // the service manager: PR_ExitMonitor(mMonitor); rv = nsComponentManager::CreateInstance(aClass, NULL, aIID, (void**)&service); PR_EnterMonitor(mMonitor); if (NS_SUCCEEDED(rv)) { entry = new nsServiceEntry(aClass, service); if (entry == NULL) { NS_RELEASE(service); rv = NS_ERROR_OUT_OF_MEMORY; } else { rv = entry->AddListener(shutdownListener); if (NS_SUCCEEDED(rv)) { mServices->Put(&key, entry); *result = service; NS_ADDREF(service); // Released in service manager destructor } else { NS_RELEASE(service); delete entry; } } } } PR_ExitMonitor(mMonitor); return rv; } NS_IMETHODIMP nsServiceManagerImpl::ReleaseService(const nsCID& aClass, nsISupports* service, nsIShutdownListener* shutdownListener) { PRBool serviceFound = PR_FALSE; nsresult rv = NS_OK; PR_EnterMonitor(mMonitor); #ifndef NS_DEBUG // Do entry lookup only if there is a shutdownlistener to be removed. // // For Debug builds, Consistency check for entry always. Releasing service // when the service is not with the servicemanager is mostly wrong. if (shutdownListener) #endif { nsIDKey key(aClass); nsServiceEntry* entry = (nsServiceEntry*)mServices->Get(&key); if (entry) { rv = entry->RemoveListener(shutdownListener); serviceFound = PR_TRUE; } } nsrefcnt cnt; NS_RELEASE2(service, cnt); // Consistency check: Service ref count cannot go to zero because of the // extra addref the service manager does, unless the service has been // unregistered (ie) not found in the service managers hash table. // NS_ASSERTION(cnt > 0 || !serviceFound, "*** Service in hash table but is being deleted. Dangling pointer\n" "*** in service manager hash table."); PR_ExitMonitor(mMonitor); return rv; } NS_IMETHODIMP nsServiceManagerImpl::RegisterService(const nsCID& aClass, nsISupports* aService) { nsresult rv = NS_OK; PR_EnterMonitor(mMonitor); nsIDKey key(aClass); nsServiceEntry* entry = (nsServiceEntry*)mServices->Get(&key); if (entry) { rv = NS_ERROR_FAILURE; } else { entry = new nsServiceEntry(aClass, aService); if (entry == NULL) rv = NS_ERROR_OUT_OF_MEMORY; else { mServices->Put(&key, entry); NS_ADDREF(aService); // Released in DeleteEntry from UnregisterService } } PR_ExitMonitor(mMonitor); return rv; } NS_IMETHODIMP nsServiceManagerImpl::UnregisterService(const nsCID& aClass) { nsresult rv = NS_OK; PR_EnterMonitor(mMonitor); nsIDKey key(aClass); nsServiceEntry* entry = (nsServiceEntry*)mServices->Get(&key); if (entry == NULL) { rv = NS_ERROR_SERVICE_NOT_FOUND; } else { rv = entry->NotifyListeners(); // break the cycles entry->mShuttingDown = PR_TRUE; mServices->RemoveAndDelete(&key); // This will call the delete entry func } PR_ExitMonitor(mMonitor); return rv; } //////////////////////////////////////////////////////////////////////////////// // let's do it again, this time with ProgIDs... NS_IMETHODIMP nsServiceManagerImpl::RegisterService(const char* aProgID, nsISupports* aService) { nsCID aClass; nsresult rv; rv = nsComponentManager::ProgIDToCLSID(aProgID, &aClass); if (NS_FAILED(rv)) return rv; return RegisterService(aClass, aService); } NS_IMETHODIMP nsServiceManagerImpl::UnregisterService(const char* aProgID) { nsCID aClass; nsresult rv; rv = nsComponentManager::ProgIDToCLSID(aProgID, &aClass); if (NS_FAILED(rv)) return rv; return UnregisterService(aClass); } NS_IMETHODIMP nsServiceManagerImpl::GetService(const char* aProgID, const nsIID& aIID, nsISupports* *result, nsIShutdownListener* shutdownListener) { nsCID aClass; nsresult rv; rv = nsComponentManager::ProgIDToCLSID(aProgID, &aClass); if (NS_FAILED(rv)) return rv; return GetService(aClass, aIID, result, shutdownListener); } NS_IMETHODIMP nsServiceManagerImpl::ReleaseService(const char* aProgID, nsISupports* service, nsIShutdownListener* shutdownListener) { nsCID aClass; nsresult rv; rv = nsComponentManager::ProgIDToCLSID(aProgID, &aClass); if (NS_FAILED(rv)) return rv; return ReleaseService(aClass, service, shutdownListener); } //////////////////////////////////////////////////////////////////////////////// nsresult NS_NewServiceManager(nsIServiceManager* *result) { nsServiceManagerImpl* servMgr = new nsServiceManagerImpl(); if (servMgr == NULL) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(servMgr); *result = servMgr; return NS_OK; } //////////////////////////////////////////////////////////////////////////////// // Global service manager interface (see nsIServiceManager.h) nsresult nsServiceManager::GetGlobalServiceManager(nsIServiceManager* *result) { nsresult rv = NS_OK; if (mGlobalServiceManager == NULL) { // XPCOM not initialized yet. Let us do initialization of our module. rv = NS_InitXPCOM(NULL, NULL, NULL); } // No ADDREF as we are advicing no release of this. if (NS_SUCCEEDED(rv)) *result = mGlobalServiceManager; return rv; } nsresult nsServiceManager::ShutdownGlobalServiceManager(nsIServiceManager* *result) { if (mGlobalServiceManager != NULL) { NS_RELEASE(mGlobalServiceManager); mGlobalServiceManager = NULL; } return NS_OK; } nsresult nsServiceManager::GetService(const nsCID& aClass, const nsIID& aIID, nsISupports* *result, nsIShutdownListener* shutdownListener) { nsIServiceManager* mgr; nsresult rv = GetGlobalServiceManager(&mgr); if (NS_FAILED(rv)) return rv; return mgr->GetService(aClass, aIID, result, shutdownListener); } nsresult nsServiceManager::ReleaseService(const nsCID& aClass, nsISupports* service, nsIShutdownListener* shutdownListener) { // Don't create the global service manager here because we might be shutting // down, and releasing all the services in its destructor if (mGlobalServiceManager) return mGlobalServiceManager->ReleaseService(aClass, service, shutdownListener); // If there wasn't a global service manager, just release the object: NS_RELEASE(service); return NS_OK; } nsresult nsServiceManager::RegisterService(const nsCID& aClass, nsISupports* aService) { nsIServiceManager* mgr; nsresult rv = GetGlobalServiceManager(&mgr); if (NS_FAILED(rv)) return rv; return mgr->RegisterService(aClass, aService); } nsresult nsServiceManager::UnregisterService(const nsCID& aClass) { nsIServiceManager* mgr; nsresult rv = GetGlobalServiceManager(&mgr); if (NS_FAILED(rv)) return rv; return mgr->UnregisterService(aClass); } //////////////////////////////////////////////////////////////////////////////// // let's do it again, this time with ProgIDs... nsresult nsServiceManager::GetService(const char* aProgID, const nsIID& aIID, nsISupports* *result, nsIShutdownListener* shutdownListener) { nsIServiceManager* mgr; nsresult rv = GetGlobalServiceManager(&mgr); if (NS_FAILED(rv)) return rv; return mgr->GetService(aProgID, aIID, result, shutdownListener); } nsresult nsServiceManager::ReleaseService(const char* aProgID, nsISupports* service, nsIShutdownListener* shutdownListener) { // Don't create the global service manager here because we might // be shutting down, and releasing all the services in its // destructor nsIServiceManager* mgr = mGlobalServiceManager; if (mgr) { return mgr->ReleaseService(aProgID, service, shutdownListener); } return NS_OK; } nsresult nsServiceManager::RegisterService(const char* aProgID, nsISupports* aService) { nsIServiceManager* mgr; nsresult rv = GetGlobalServiceManager(&mgr); if (NS_FAILED(rv)) return rv; return mgr->RegisterService(aProgID, aService); } nsresult nsServiceManager::UnregisterService(const char* aProgID) { // Don't create the global service manager here because we might // be shutting down, and releasing all the services in its // destructor if (mGlobalServiceManager) return mGlobalServiceManager->UnregisterService(aProgID); return NS_OK; } ////////////////////////////////////////////////////////////////////////////////