gecko-dev/xpcom/threads/nsThread.h

148 строки
4.1 KiB
C
Исходник Обычный вид История

1999-04-02 13:20:44 +04:00
/* -*- 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.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/
1999-04-02 13:20:44 +04:00
*
* 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.
1999-04-02 13:20:44 +04:00
*
* The Original Code is mozilla.org code.
*
* The Initial Developer of the Original Code is Netscape
1999-04-02 13:20:44 +04:00
* Communications Corporation. Portions created by Netscape are
* Copyright (C) 1998 Netscape Communications Corporation. All
* Rights Reserved.
*
* Contributor(s):
* This Original Code has been modified by IBM Corporation.
* Modifications made by IBM described herein are
* Copyright (c) International Business Machines
* Corporation, 2000
*
* Modifications to Mozilla code or documentation
* identified per MPL Section 3.3
*
* Date Modified by Description of modification
* 04/20/2000 IBM Corp. Added PR_CALLBACK for Optlink use in OS2
1999-04-02 13:20:44 +04:00
*/
#ifndef nsThread_h__
#define nsThread_h__
#include "nsIRunnable.h"
1999-04-02 13:20:44 +04:00
#include "nsIThread.h"
#include "nsIThreadPool.h"
1999-04-02 13:20:44 +04:00
#include "nsISupportsArray.h"
#include "nsCOMArray.h"
#include "prcvar.h"
#include "nsCOMPtr.h"
1999-04-02 13:20:44 +04:00
class nsThreadPoolBusyBody;
1999-04-02 13:20:44 +04:00
class nsThread : public nsIThread
{
public:
NS_DECL_ISUPPORTS
// nsIThread methods:
NS_DECL_NSITHREAD
1999-04-02 13:20:44 +04:00
// nsThread methods:
nsThread();
virtual ~nsThread();
nsresult RegisterThreadSelf();
void SetPRThread(PRThread* thread) { mThread = thread; }
void WaitUntilReadyToStartMain();
static void PR_CALLBACK Main(void* arg);
static void PR_CALLBACK Exit(void* arg);
static void PR_CALLBACK Shutdown();
1999-04-13 22:15:27 +04:00
static PRUintn kIThreadSelfIndex;
1999-04-02 13:20:44 +04:00
static NS_METHOD
Create(nsISupports* outer, const nsIID& aIID, void* *aInstancePtr);
1999-04-02 13:20:44 +04:00
protected:
PRThread* mThread;
nsCOMPtr<nsIRunnable> mRunnable;
PRBool mDead;
PRLock* mStartLock;
1999-04-02 13:20:44 +04:00
};
////////////////////////////////////////////////////////////////////////////////
class nsThreadPool : public nsIThreadPool
{
friend class nsThreadPoolBusyBody;
1999-04-02 13:20:44 +04:00
public:
NS_DECL_ISUPPORTS
// nsIThreadPool methods:
NS_DECL_NSITHREADPOOL
1999-04-02 13:20:44 +04:00
// nsThreadPool methods:
nsThreadPool();
1999-04-02 13:20:44 +04:00
virtual ~nsThreadPool();
nsIRunnable* GetRequest(nsIThread* currentThread);
void RequestDone(nsIRunnable *request);
static PRBool InterruptThreads(nsISupports* aElement,
void *aData);
static NS_METHOD
Create(nsISupports* outer, const nsIID& aIID, void* *aInstancePtr);
1999-04-02 13:20:44 +04:00
protected:
nsresult AddThread();
nsresult RemoveThread(nsIThread* currentThread);
nsCOMPtr<nsISupportsArray> mThreads;
nsCOMArray<nsIRunnable> mPendingRequests;
nsCOMArray<nsIRunnable> mRunningRequests;
PRLock* mLock;
PRCondVar* mThreadExit;
PRCondVar* mPendingRequestAdded;
PRCondVar* mPendingRequestsAtZero;
PRUint32 mStackSize;
PRThreadPriority mPriority;
PRThreadScope mScope;
PRUint32 mMinThreads;
PRUint32 mMaxThreads;
PRUint32 mBusyThreads;
PRBool mShuttingDown;
1999-04-02 13:20:44 +04:00
};
////////////////////////////////////////////////////////////////////////////////
class nsThreadPoolRunnable : public nsIRunnable
{
public:
NS_DECL_ISUPPORTS
// nsIRunnable methods:
NS_DECL_NSIRUNNABLE
1999-04-02 13:20:44 +04:00
// nsThreadPoolRunnable methods:
nsThreadPoolRunnable(nsThreadPool* pool);
virtual ~nsThreadPoolRunnable();
protected:
nsCOMPtr<nsThreadPool> mPool;
1999-04-02 13:20:44 +04:00
};
////////////////////////////////////////////////////////////////////////////////
#endif // nsThread_h__