/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: NPL 1.1/GPL 2.0/LGPL 2.1 * * 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. * * 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 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. * * ***** END LICENSE BLOCK ***** */ #include "nsThread.h" #include "prmem.h" #include "prlog.h" #include "nsAutoLock.h" PRUintn nsThread::kIThreadSelfIndex = 0; static nsIThread *gMainThread = 0; #if defined(PR_LOGGING) // // Log module for nsIThread logging... // // To enable logging (see prlog.h for full details): // // set NSPR_LOG_MODULES=nsIThread:5 // set NSPR_LOG_FILE=nspr.log // // this enables PR_LOG_DEBUG level information and places all output in // the file nspr.log // // gSocketLog is defined in nsSocketTransport.cpp // PRLogModuleInfo* nsIThreadLog = nsnull; #endif /* PR_LOGGING */ //////////////////////////////////////////////////////////////////////////////// nsThread::nsThread() : mThread(nsnull), mDead(PR_FALSE), mStartLock(nsnull) { #if defined(PR_LOGGING) // // Initialize the global PRLogModule for nsIThread logging // if necessary... // if (nsIThreadLog == nsnull) { nsIThreadLog = PR_NewLogModule("nsIThread"); } #endif /* PR_LOGGING */ // enforce matching of constants to enums in prthread.h NS_ASSERTION(int(nsIThread::PRIORITY_LOW) == int(PR_PRIORITY_LOW) && int(nsIThread::PRIORITY_NORMAL) == int(PRIORITY_NORMAL) && int(nsIThread::PRIORITY_HIGH) == int(PRIORITY_HIGH) && int(nsIThread::PRIORITY_URGENT) == int(PRIORITY_URGENT) && int(nsIThread::SCOPE_LOCAL) == int(PR_LOCAL_THREAD) && int(nsIThread::SCOPE_GLOBAL) == int(PR_GLOBAL_THREAD) && int(nsIThread::STATE_JOINABLE) == int(PR_JOINABLE_THREAD) && int(nsIThread::STATE_UNJOINABLE) == int(PR_UNJOINABLE_THREAD), "Bad constant in nsIThread!"); } nsThread::~nsThread() { if (mStartLock) PR_DestroyLock(mStartLock); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThread %p destroyed\n", this)); // This code used to free the nsIThreadLog loginfo stuff // Don't do that; loginfo structures are owned by nspr // and would be freed if we ever called PR_Cleanup() // see bug 142072 } void nsThread::Main(void* arg) { nsThread* self = (nsThread*)arg; self->WaitUntilReadyToStartMain(); nsresult rv = NS_OK; rv = self->RegisterThreadSelf(); NS_ASSERTION(rv == NS_OK, "failed to set thread self"); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThread %p start run %p\n", self, self->mRunnable.get())); rv = self->mRunnable->Run(); NS_ASSERTION(NS_SUCCEEDED(rv), "runnable failed"); #ifdef DEBUG // Because a thread can die after gMainThread dies and takes nsIThreadLog with it, // we need to check for it being null so that we don't crash on shutdown. if (nsIThreadLog) { PRThreadState state; rv = self->GetState(&state); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThread %p end run %p\n", self, self->mRunnable.get())); } #endif // explicitly drop the runnable now in case there are circular references // between it and the thread object self->mRunnable = nsnull; } void nsThread::Exit(void* arg) { nsThread* self = (nsThread*)arg; if (self->mDead) { NS_ERROR("attempt to Exit() thread twice"); return; } self->mDead = PR_TRUE; #if defined(PR_LOGGING) if (nsIThreadLog) { PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThread %p exited\n", self)); } #endif NS_RELEASE(self); } NS_METHOD nsThread::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult) { nsThread* thread = new nsThread(); if (!thread) return NS_ERROR_OUT_OF_MEMORY; nsresult rv = thread->QueryInterface(aIID, aResult); if (NS_FAILED(rv)) delete thread; return rv; } NS_IMPL_THREADSAFE_ISUPPORTS1(nsThread, nsIThread) NS_IMETHODIMP nsThread::Join() { // don't check for mDead here because nspr calls Exit (cleaning up // thread-local storage) before they let us join with the thread PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThread %p start join\n", this)); PRStatus status = PR_JoinThread(mThread); // XXX can't use NS_RELEASE here because the macro wants to set // this to null (bad c++) PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThread %p end join\n", this)); if (status == PR_SUCCESS) { NS_RELEASE_THIS(); // most likely the final release of this thread return NS_OK; } else return NS_ERROR_FAILURE; } NS_IMETHODIMP nsThread::GetPriority(PRThreadPriority *result) { if (mDead) return NS_ERROR_FAILURE; *result = PR_GetThreadPriority(mThread); return NS_OK; } NS_IMETHODIMP nsThread::SetPriority(PRThreadPriority value) { if (mDead) return NS_ERROR_FAILURE; PR_SetThreadPriority(mThread, value); return NS_OK; } NS_IMETHODIMP nsThread::Interrupt() { if (mDead) return NS_ERROR_FAILURE; PRStatus status = PR_Interrupt(mThread); return status == PR_SUCCESS ? NS_OK : NS_ERROR_FAILURE; } NS_IMETHODIMP nsThread::GetScope(PRThreadScope *result) { if (mDead) return NS_ERROR_FAILURE; *result = PR_GetThreadScope(mThread); return NS_OK; } NS_IMETHODIMP nsThread::GetState(PRThreadState *result) { if (mDead) return NS_ERROR_FAILURE; *result = PR_GetThreadState(mThread); return NS_OK; } NS_IMETHODIMP nsThread::GetPRThread(PRThread* *result) { if (mDead) { *result = nsnull; return NS_ERROR_FAILURE; } *result = mThread; return NS_OK; } NS_IMETHODIMP nsThread::Init(nsIRunnable* runnable, PRUint32 stackSize, PRThreadPriority priority, PRThreadScope scope, PRThreadState state) { mRunnable = runnable; NS_ADDREF_THIS(); // released in nsThread::Exit if (state == PR_JOINABLE_THREAD) NS_ADDREF_THIS(); // released in nsThread::Join mStartLock = PR_NewLock(); if (mStartLock == nsnull) return NS_ERROR_OUT_OF_MEMORY; PR_Lock(mStartLock); mThread = PR_CreateThread(PR_USER_THREAD, Main, this, priority, scope, state, stackSize); PR_Unlock(mStartLock); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThread %p created\n", this)); if (mThread == nsnull) return NS_ERROR_OUT_OF_MEMORY; return NS_OK; } /* readonly attribute nsIThread currentThread; */ NS_IMETHODIMP nsThread::GetCurrentThread(nsIThread * *aCurrentThread) { return GetIThread(PR_GetCurrentThread(), aCurrentThread); } /* void sleep (in PRUint32 msec); */ NS_IMETHODIMP nsThread::Sleep(PRUint32 msec) { if (PR_GetCurrentThread() != mThread) return NS_ERROR_FAILURE; if (PR_Sleep(PR_MillisecondsToInterval(msec)) != PR_SUCCESS) return NS_ERROR_FAILURE; return NS_OK; } NS_COM nsresult NS_NewThread(nsIThread* *result, nsIRunnable* runnable, PRUint32 stackSize, PRThreadState state, PRThreadPriority priority, PRThreadScope scope) { nsresult rv; nsThread* thread = new nsThread(); if (thread == nsnull) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(thread); rv = thread->Init(runnable, stackSize, priority, scope, state); if (NS_FAILED(rv)) { NS_RELEASE(thread); return rv; } *result = thread; return NS_OK; } NS_COM nsresult NS_NewThread(nsIThread* *result, PRUint32 stackSize, PRThreadState state, PRThreadPriority priority, PRThreadScope scope) { nsThread* thread = new nsThread(); if (thread == nsnull) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(thread); *result = thread; return NS_OK; } //////////////////////////////////////////////////////////////////////////////// nsresult nsThread::RegisterThreadSelf() { PRStatus status; if (kIThreadSelfIndex == 0) { status = PR_NewThreadPrivateIndex(&kIThreadSelfIndex, Exit); if (status != PR_SUCCESS) return NS_ERROR_FAILURE; NS_ASSERTION(kIThreadSelfIndex != 0, "couldn't get thread private index"); } status = PR_SetThreadPrivate(kIThreadSelfIndex, this); if (status != PR_SUCCESS) return NS_ERROR_FAILURE; return NS_OK; } void nsThread::WaitUntilReadyToStartMain() { PR_Lock(mStartLock); PR_Unlock(mStartLock); PR_DestroyLock(mStartLock); mStartLock = nsnull; } NS_COM nsresult nsIThread::GetCurrent(nsIThread* *result) { return GetIThread(PR_GetCurrentThread(), result); } NS_COM nsresult nsIThread::GetIThread(PRThread* prthread, nsIThread* *result) { PRStatus status; nsThread* thread; if (nsThread::kIThreadSelfIndex == 0) { status = PR_NewThreadPrivateIndex(&nsThread::kIThreadSelfIndex, nsThread::Exit); if (status != PR_SUCCESS) return NS_ERROR_FAILURE; NS_ASSERTION(nsThread::kIThreadSelfIndex != 0, "couldn't get thread private index"); } thread = (nsThread*)PR_GetThreadPrivate(nsThread::kIThreadSelfIndex); if (thread == nsnull) { // if the current thread doesn't have an nsIThread associated // with it, make one thread = new nsThread(); if (thread == nsnull) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(thread); // released by Exit thread->SetPRThread(prthread); nsresult rv = thread->RegisterThreadSelf(); if (NS_FAILED(rv)) return rv; } NS_ADDREF(thread); *result = thread; return NS_OK; } NS_COM nsresult nsIThread::SetMainThread() { // strictly speaking, it could be set twice. but practically speaking, // it's almost certainly an error if it is if (gMainThread != 0) { NS_ERROR("Setting main thread twice?"); return NS_ERROR_FAILURE; } return GetCurrent(&gMainThread); } NS_COM nsresult nsIThread::GetMainThread(nsIThread **result) { NS_ASSERTION(result, "bad result pointer"); if (gMainThread == 0) return NS_ERROR_FAILURE; *result = gMainThread; NS_ADDREF(gMainThread); return NS_OK; } NS_COM PRBool nsIThread::IsMainThread() { if (gMainThread == 0) return PR_TRUE; PRThread *theMainThread; gMainThread->GetPRThread(&theMainThread); return theMainThread == PR_GetCurrentThread(); } void nsThread::Shutdown() { if (gMainThread) { // XXX nspr doesn't seem to be calling the main thread's destructor // callback, so let's help it out: nsThread::Exit(NS_STATIC_CAST(nsThread*, gMainThread)); nsrefcnt cnt; NS_RELEASE2(gMainThread, cnt); NS_WARN_IF_FALSE(cnt == 0, "Main thread being held past XPCOM shutdown."); kIThreadSelfIndex = 0; } } //////////////////////////////////////////////////////////////////////////////// /* nsThreadPoolBusyBody implements an increment/decrement of nsThreadPool's mBusyThreads member variable */ class nsThreadPoolBusyBody { public: nsThreadPoolBusyBody(nsThreadPool *aPool); ~nsThreadPoolBusyBody(); private: void* operator new(size_t) CPP_THROW_NEW { return 0; } // local variable, only! nsThreadPool *mPool; }; inline nsThreadPoolBusyBody::nsThreadPoolBusyBody(nsThreadPool *aPool) { nsAutoLock lock(aPool->mLock); #ifdef DEBUG PRUint32 threadCount; if (NS_SUCCEEDED(aPool->mThreads->Count(&threadCount))) NS_ASSERTION(aPool->mBusyThreads < threadCount, "thread busy count exceeded thread count"); #endif aPool->mBusyThreads++; mPool = aPool; } inline nsThreadPoolBusyBody::~nsThreadPoolBusyBody() { nsAutoLock lock(mPool->mLock); NS_ASSERTION(mPool->mBusyThreads > 0, "thread busy count < 0"); mPool->mBusyThreads--; } //////////////////////////////////////////////////////////////////////////////// nsThreadPool::nsThreadPool() : mLock(nsnull), mThreadExit(nsnull), mPendingRequestAdded(nsnull), mPendingRequestsAtZero(nsnull), mMinThreads(0), mMaxThreads(0), mBusyThreads(0), mShuttingDown(PR_TRUE) { } nsThreadPool::~nsThreadPool() { if (mThreads) { Shutdown(); } if (mLock) PR_DestroyLock(mLock); if (mThreadExit) PR_DestroyCondVar(mThreadExit); if (mPendingRequestAdded) PR_DestroyCondVar(mPendingRequestAdded); if (mPendingRequestsAtZero) PR_DestroyCondVar(mPendingRequestsAtZero); } NS_IMPL_THREADSAFE_ISUPPORTS1(nsThreadPool, nsIThreadPool) NS_IMETHODIMP nsThreadPool::DispatchRequest(nsIRunnable* runnable) { nsresult rv; nsAutoLock lock(mLock); #if defined(PR_LOGGING) nsCOMPtr th; nsIThread::GetCurrent(getter_AddRefs(th)); #endif NS_ASSERTION(mMinThreads > 0, "forgot to call Init"); if (mShuttingDown) { rv = NS_ERROR_FAILURE; } else { PRUint32 requestCnt, threadCount; requestCnt = mPendingRequests.Count(); rv = mThreads->Count(&threadCount); if (NS_FAILED(rv)) goto exit; if (requestCnt >= threadCount-mBusyThreads && threadCount < mMaxThreads) { PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p: %d threads in pool, max = %d, requests = %d, creating new thread...\n", th.get(), threadCount, mMaxThreads, requestCnt)); rv = AddThread(); if (NS_FAILED(rv)) goto exit; } rv = mPendingRequests.AppendObject(runnable) ? NS_OK : NS_ERROR_FAILURE; if (NS_SUCCEEDED(rv)) { if (PR_FAILURE == PR_NotifyCondVar(mPendingRequestAdded)) goto exit; } } exit: PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p dispatched %p status %x\n", th.get(), runnable, rv)); return rv; } nsresult nsThreadPool::RemoveThread(nsIThread* currentThread) { PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p being removed\n", currentThread)); nsresult rv = mThreads->DeleteLastElement(currentThread); PR_NotifyCondVar(mThreadExit); return rv; } void nsThreadPool::RequestDone(nsIRunnable* request) { nsAutoLock lock(mLock); mRunningRequests.RemoveObject(request); } nsIRunnable* nsThreadPool::GetRequest(nsIThread* currentThread) { nsresult rv = NS_OK; nsCOMPtr request; nsAutoLock lock(mLock); PRInt32 requestCnt; while (PR_TRUE) { requestCnt = mPendingRequests.Count(); if (requestCnt > 0) { PRInt32 pendingThread; PRInt32 runningPos; for (pendingThread = 0; pendingThread < requestCnt; ++pendingThread) { request = mPendingRequests.ObjectAt(pendingThread); if (!request) { NS_ERROR("Bad request in pending request list"); // Make it look like we just found no runnable requests pendingThread = requestCnt; break; } // check to see if the request is not running. runningPos = mRunningRequests.IndexOf(request); if (runningPos == -1) break; } if (pendingThread < requestCnt) { // Found something to run PRBool removed = mPendingRequests.RemoveObjectAt(pendingThread); NS_ASSERTION(removed, "nsCOMArray broken"); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p got request %p\n", currentThread, request.get())); if (removed && requestCnt == 1) PR_NotifyCondVar(mPendingRequestsAtZero); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p got request %p\n", currentThread, request.get())); mRunningRequests.AppendObject(request); return request; } } if (mShuttingDown) break; // no requests, and we're not shutting down yet... // if we have more than the minimum required threads already then // then we may be able to go away. PRUint32 threadCnt; rv = mThreads->Count(&threadCnt); if (NS_FAILED(rv)) break; if (threadCnt > mMinThreads) { // to avoid multiple thread spawns/exits, we need to // wait for some period of time while waiting for any // additional requests. If this this wait yeilds no // request, then we can exit. // // TODO: determine what the optimal timeout value is. // For now, just use 5 seconds. PRIntervalTime interval = PR_SecondsToInterval(5); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p waiting for %d seconds before exiting (%d threads in pool)\n", currentThread, interval, threadCnt)); (void) PR_WaitCondVar( mPendingRequestAdded, interval); requestCnt = mPendingRequests.Count(); if (requestCnt == 0) { PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p: %d threads in pool, min = %d, exiting...\n", currentThread, threadCnt, mMinThreads)); RemoveThread(currentThread); return nsnull; // causes nsThreadPoolRunnable::Run to quit } } else { PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p waiting (%d threads in pool)\n", currentThread, threadCnt)); (void)PR_WaitCondVar(mPendingRequestAdded, PR_INTERVAL_NO_TIMEOUT); } } // no requests, we are going to dump the thread. PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p -- no more requests, exiting...\n", currentThread)); RemoveThread(currentThread); return nsnull; } NS_METHOD nsThreadPool::Create(nsISupports *aOuter, REFNSIID aIID, void **aResult) { nsThreadPool* pool = new nsThreadPool(); if (!pool) return NS_ERROR_OUT_OF_MEMORY; nsresult rv = pool->QueryInterface(aIID, aResult); if (NS_FAILED(rv)) delete pool; return rv; } NS_IMETHODIMP nsThreadPool::ProcessPendingRequests() { while (mPendingRequests.Count() != 0) { (void)PR_WaitCondVar(mPendingRequestsAtZero, PR_INTERVAL_NO_TIMEOUT); } return NS_OK; } PRBool nsThreadPool::InterruptThreads(nsISupports* aElement, void *aData) { nsCOMPtr thread = do_QueryInterface(aElement); NS_ASSERTION(thread, "bad thread in array"); (void) thread->Interrupt(); return PR_TRUE; } NS_IMETHODIMP nsThreadPool::Shutdown() { nsresult rv = NS_OK; PRUint32 count = 0; #if defined(PR_LOGGING) nsCOMPtr th; nsIThread::GetCurrent(getter_AddRefs(th)); #endif PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p shutting down\n", th.get())); nsAutoLock lock(mLock); if (mShuttingDown) { NS_ERROR("Bug 166371 - Was Shutdown() called more than once," " or did someone forget to call Init()?"); return NS_OK; } mShuttingDown = PR_TRUE; rv = ProcessPendingRequests(); NS_ASSERTION(NS_SUCCEEDED(rv), "ProcessPendingRequests failed"); // keep trying... don't bail with an error here // fix Add assert that there are no more requests to be handled. // then interrupt the threads rv = mThreads->EnumerateForwards(nsThreadPool::InterruptThreads, nsnull); NS_ASSERTION(NS_SUCCEEDED(rv), "Interruption failed"); if (NS_FAILED(rv)) return rv; while (PR_TRUE) { rv = mThreads->Count(&count); NS_ASSERTION(NS_SUCCEEDED(rv), "Count failed"); if (NS_FAILED(rv)) return rv; if (count == 0 ) break; PR_WaitCondVar(mThreadExit, PR_INTERVAL_NO_TIMEOUT); } mThreads = nsnull; return rv; } NS_IMETHODIMP nsThreadPool::Init(PRUint32 minThreadCount, PRUint32 maxThreadCount, PRUint32 stackSize, PRThreadPriority priority, PRThreadScope scope) { nsresult rv; mStackSize = stackSize; mPriority = priority; mScope = scope; NS_ASSERTION(minThreadCount > 0 && minThreadCount <= maxThreadCount, "bad min/max values"); mMinThreads = minThreadCount; mMaxThreads = maxThreadCount; mShuttingDown = PR_FALSE; rv = NS_NewISupportsArray(getter_AddRefs(mThreads)); if (NS_FAILED(rv)) return rv; mLock = PR_NewLock(); if (mLock == nsnull) goto cleanup; mPendingRequestAdded = PR_NewCondVar(mLock); if (mPendingRequestAdded == nsnull) goto cleanup; mThreadExit = PR_NewCondVar(mLock); if (mThreadExit == nsnull) goto cleanup; mPendingRequestsAtZero = PR_NewCondVar(mLock); if (mPendingRequestsAtZero == nsnull) goto cleanup; return NS_OK; cleanup: if (mLock) { PR_DestroyLock(mLock); mLock = nsnull; } if (mThreadExit) { PR_DestroyCondVar(mThreadExit); mThreadExit = nsnull; } if (mPendingRequestAdded) { PR_DestroyCondVar(mPendingRequestAdded); mPendingRequestAdded = nsnull; } if (mPendingRequestsAtZero) { PR_DestroyCondVar(mPendingRequestsAtZero); mPendingRequestsAtZero = nsnull; } return NS_ERROR_OUT_OF_MEMORY; } nsresult nsThreadPool::AddThread() { nsresult rv; #if defined(DEBUG) || defined(FORCE_PR_LOG) PRUint32 cnt; rv = mThreads->Count(&cnt); if (NS_FAILED(rv)) return rv; #endif #ifdef DEBUG if (cnt >= mMaxThreads) return NS_ERROR_FAILURE; #endif nsThreadPoolRunnable* runnable = new nsThreadPoolRunnable(this); if (runnable == nsnull) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(runnable); nsCOMPtr thread; rv = NS_NewThread(getter_AddRefs(thread), runnable, mStackSize, PR_UNJOINABLE_THREAD, mPriority, mScope); // Let the thread own the runnable. NS_RELEASE(runnable); if (NS_FAILED(rv)) return rv; PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool adding new thread %p (%d total)\n", thread.get(), cnt + 1)); rv = mThreads->AppendElement(thread) ? NS_OK : NS_ERROR_FAILURE; return rv; } NS_COM nsresult NS_NewThreadPool(nsIThreadPool* *result, PRUint32 minThreads, PRUint32 maxThreads, PRUint32 stackSize, PRThreadPriority priority, PRThreadScope scope) { nsresult rv; nsThreadPool* pool = new nsThreadPool(); if (pool == nsnull) return NS_ERROR_OUT_OF_MEMORY; NS_ADDREF(pool); rv = pool->Init(minThreads, maxThreads, stackSize, priority, scope); if (NS_FAILED(rv)) { NS_RELEASE(pool); return rv; } *result = pool; return NS_OK; } //////////////////////////////////////////////////////////////////////////////// nsThreadPoolRunnable::nsThreadPoolRunnable(nsThreadPool* pool) : mPool(pool) { } nsThreadPoolRunnable::~nsThreadPoolRunnable() { } NS_IMPL_THREADSAFE_ISUPPORTS1(nsThreadPoolRunnable, nsIRunnable) NS_IMETHODIMP nsThreadPoolRunnable::Run() { nsresult rv = NS_OK; nsCOMPtr request; nsCOMPtr currentThread; nsIThread::GetCurrent(getter_AddRefs(currentThread)); while ((request = mPool->GetRequest(currentThread)) != nsnull) { PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p running %p\n", currentThread.get(), request.get())); nsThreadPoolBusyBody bumpBusyCount(mPool); rv = request->Run(); NS_ASSERTION(NS_SUCCEEDED(rv), "runnable failed"); // let the pool know that the request has finished running. mPool->RequestDone(request); PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p completed %p status=%x\n", currentThread.get(), request.get(), rv)); } PR_LOG(nsIThreadLog, PR_LOG_DEBUG, ("nsIThreadPool thread %p quitting %p\n", currentThread.get(), this)); return rv; } ////////////////////////////////////////////////////////////////////////////////