gecko-dev/xpcom/threads/nsThread.h

114 строки
3.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.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 nsThread_h__
#define nsThread_h__
#include "nsIThread.h"
#include "nsISupportsArray.h"
class nsThread : public nsIThread
{
public:
NS_DECL_ISUPPORTS
// nsIThread methods:
NS_IMETHOD Join();
NS_IMETHOD GetPriority(PRThreadPriority *result);
NS_IMETHOD SetPriority(PRThreadPriority value);
NS_IMETHOD Interrupt();
NS_IMETHOD GetScope(PRThreadScope *result);
NS_IMETHOD GetState(PRThreadState *result);
NS_IMETHOD GetPRThread(PRThread* *result);
1999-04-02 13:20:44 +04:00
// nsThread methods:
nsThread();
virtual ~nsThread();
nsresult Init(nsIRunnable* runnable,
PRUint32 stackSize,
PRThreadPriority priority,
PRThreadScope scope,
PRThreadState state);
nsresult RegisterThreadSelf();
void SetPRThread(PRThread* thread) { mThread = thread; }
1999-04-02 13:20:44 +04:00
static void Main(void* arg);
static void Exit(void* arg);
1999-04-13 22:15:27 +04:00
static PRUintn kIThreadSelfIndex;
1999-04-02 13:20:44 +04:00
protected:
PRThread* mThread;
nsIRunnable* mRunnable;
1999-04-13 22:15:27 +04:00
PRBool mDead;
1999-04-02 13:20:44 +04:00
};
////////////////////////////////////////////////////////////////////////////////
class nsThreadPool : public nsIThreadPool
{
public:
NS_DECL_ISUPPORTS
// nsIThreadPool methods:
NS_IMETHOD DispatchRequest(nsIRunnable* runnable);
1999-04-13 22:15:27 +04:00
NS_IMETHOD ProcessPendingRequests();
1999-04-06 05:42:01 +04:00
NS_IMETHOD Shutdown();
1999-04-02 13:20:44 +04:00
// nsThreadPool methods:
nsThreadPool(PRUint32 minThreads, PRUint32 maxThreads);
virtual ~nsThreadPool();
nsresult Init(PRUint32 stackSize,
PRThreadPriority priority,
1999-04-13 22:15:27 +04:00
PRThreadScope scope);
nsIRunnable* GetRequest();
1999-04-02 13:20:44 +04:00
protected:
nsISupportsArray* mThreads;
nsISupportsArray* mRequests;
PRMonitor* mRequestMonitor;
1999-04-02 13:20:44 +04:00
PRUint32 mMinThreads;
PRUint32 mMaxThreads;
1999-04-06 05:42:01 +04:00
PRBool mShuttingDown;
1999-04-02 13:20:44 +04:00
};
////////////////////////////////////////////////////////////////////////////////
class nsThreadPoolRunnable : public nsIRunnable
{
public:
NS_DECL_ISUPPORTS
// nsIRunnable methods:
NS_IMETHOD Run();
// nsThreadPoolRunnable methods:
nsThreadPoolRunnable(nsThreadPool* pool);
virtual ~nsThreadPoolRunnable();
protected:
nsThreadPool* mPool;
};
////////////////////////////////////////////////////////////////////////////////
#endif // nsThread_h__