2006-05-10 21:30:15 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim:set ts=2 sw=2 sts=2 et cindent: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-04-02 13:20:44 +04:00
|
|
|
|
|
|
|
#ifndef nsThread_h__
|
|
|
|
#define nsThread_h__
|
|
|
|
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
#include "mozilla/Mutex.h"
|
2006-05-10 21:30:15 +04:00
|
|
|
#include "nsIThreadInternal.h"
|
|
|
|
#include "nsISupportsPriority.h"
|
|
|
|
#include "nsEventQueue.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
|
|
#include "nsString.h"
|
2010-11-19 01:19:19 +03:00
|
|
|
#include "nsTObserverArray.h"
|
2012-06-06 03:51:58 +04:00
|
|
|
#include "mozilla/Attributes.h"
|
1999-04-02 13:20:44 +04:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
// A native thread
|
2012-06-06 03:51:58 +04:00
|
|
|
class nsThread MOZ_FINAL : public nsIThreadInternal,
|
|
|
|
public nsISupportsPriority
|
1999-04-02 13:20:44 +04:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 06:31:26 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2006-05-10 21:30:15 +04:00
|
|
|
NS_DECL_NSIEVENTTARGET
|
|
|
|
NS_DECL_NSITHREAD
|
|
|
|
NS_DECL_NSITHREADINTERNAL
|
|
|
|
NS_DECL_NSISUPPORTSPRIORITY
|
1999-04-02 13:20:44 +04:00
|
|
|
|
2011-10-12 21:52:26 +04:00
|
|
|
enum MainThreadFlag {
|
|
|
|
MAIN_THREAD,
|
|
|
|
NOT_MAIN_THREAD
|
|
|
|
};
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
nsThread(MainThreadFlag aMainThread, uint32_t aStackSize);
|
1999-04-02 13:20:44 +04:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
// Initialize this as a wrapper for a new PRThread.
|
|
|
|
nsresult Init();
|
1999-04-06 01:02:24 +04:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
// Initialize this as a wrapper for the current PRThread.
|
|
|
|
nsresult InitCurrentThread();
|
1999-04-06 01:02:24 +04:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
// The PRThread corresponding to this thread.
|
|
|
|
PRThread *GetPRThread() { return mThread; }
|
1999-04-02 13:20:44 +04:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
// If this flag is true, then the nsThread was created using
|
|
|
|
// nsIThreadManager::NewThread.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool ShutdownRequired() { return mShutdownRequired; }
|
1999-10-02 03:30:06 +04:00
|
|
|
|
2012-01-14 22:31:13 +04:00
|
|
|
// Clear the observer list.
|
|
|
|
void ClearObservers() { mEventObservers.Clear(); }
|
|
|
|
|
2012-10-24 02:26:36 +04:00
|
|
|
static nsresult
|
|
|
|
SetMainThreadObserver(nsIThreadObserver* aObserver);
|
|
|
|
|
2004-01-15 09:14:18 +03:00
|
|
|
private:
|
2012-10-24 02:26:36 +04:00
|
|
|
static nsIThreadObserver* sMainThreadObserver;
|
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
friend class nsThreadShutdownEvent;
|
|
|
|
|
|
|
|
~nsThread();
|
|
|
|
|
2012-07-30 18:20:58 +04:00
|
|
|
bool ShuttingDown() { return mShutdownContext != nullptr; }
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2008-10-10 19:04:34 +04:00
|
|
|
static void ThreadFunc(void *arg);
|
2006-05-10 21:30:15 +04:00
|
|
|
|
|
|
|
// Helper
|
|
|
|
already_AddRefed<nsIThreadObserver> GetObserver() {
|
|
|
|
nsIThreadObserver *obs;
|
|
|
|
nsThread::GetObserver(&obs);
|
|
|
|
return already_AddRefed<nsIThreadObserver>(obs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrappers for event queue methods:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool GetEvent(bool mayWait, nsIRunnable **event) {
|
2012-03-23 22:45:41 +04:00
|
|
|
return mEvents.GetEvent(mayWait, event);
|
2006-05-10 21:30:15 +04:00
|
|
|
}
|
2007-12-05 05:17:15 +03:00
|
|
|
nsresult PutEvent(nsIRunnable *event);
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2007-12-05 05:17:15 +03:00
|
|
|
// This lock protects access to mObserver, mEvents and mEventsAreDoomed.
|
|
|
|
// All of those fields are only modified on the thread itself (never from
|
|
|
|
// another thread). This means that we can avoid holding the lock while
|
|
|
|
// using mObserver and mEvents on the thread itself. When calling PutEvent
|
|
|
|
// on mEvents, we have to hold the lock to synchronize with PopEventQueue.
|
Rollup of bug 645263 and bug 646259: Switch to mozilla:: sync primitives. r=cjones,dbaron,doublec,ehsan src=bsmedberg
Bug 645263, part 0: Count sync primitive ctor/dtors. r=dbaron
Bug 645263, part 1: Migrate content/media to mozilla:: sync primitives. r=doublec
Bug 645263, part 2: Migrate modules/plugin to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 3: Migrate nsComponentManagerImpl to mozilla:: sync primitives. sr=bsmedberg
Bug 645263, part 4: Migrate everything else to mozilla:: sync primitives. r=dbaron
Bug 645263, part 5: Remove nsAutoLock.*. sr=bsmedberg
Bug 645263, part 6: Make editor test be nicer to deadlock detector. r=ehsan
Bug 645263, part 7: Disable tracemalloc backtraces for xpcshell tests. r=dbaron
Bug 646259: Fix nsCacheService to use a CondVar for notifying. r=cjones
2011-04-01 08:29:02 +04:00
|
|
|
mozilla::Mutex mLock;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
|
|
|
nsCOMPtr<nsIThreadObserver> mObserver;
|
|
|
|
|
2010-11-19 01:19:19 +03:00
|
|
|
// Only accessed on the target thread.
|
|
|
|
nsAutoTObserverArray<nsCOMPtr<nsIThreadObserver>, 2> mEventObservers;
|
|
|
|
|
2012-03-23 22:45:41 +04:00
|
|
|
nsEventQueue mEvents;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mPriority;
|
2006-05-10 21:30:15 +04:00
|
|
|
PRThread *mThread;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mRunningEvent; // counter
|
|
|
|
uint32_t mStackSize;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
|
|
|
struct nsThreadShutdownContext *mShutdownContext;
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mShutdownRequired;
|
2007-12-05 05:17:15 +03:00
|
|
|
// Set to true when events posted to this thread will never run.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool mEventsAreDoomed;
|
2011-10-12 21:52:26 +04:00
|
|
|
MainThreadFlag mIsMainThread;
|
1999-04-02 13:20:44 +04:00
|
|
|
};
|
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class nsThreadSyncDispatch : public nsRunnable {
|
|
|
|
public:
|
|
|
|
nsThreadSyncDispatch(nsIThread *origin, nsIRunnable *task)
|
2010-11-17 23:58:48 +03:00
|
|
|
: mOrigin(origin), mSyncTask(task), mResult(NS_ERROR_NOT_INITIALIZED) {
|
2006-05-10 21:30:15 +04:00
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
bool IsPending() {
|
2012-07-30 18:20:58 +04:00
|
|
|
return mSyncTask != nullptr;
|
2006-05-10 21:30:15 +04:00
|
|
|
}
|
|
|
|
|
2010-11-17 23:58:48 +03:00
|
|
|
nsresult Result() {
|
|
|
|
return mResult;
|
|
|
|
}
|
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
private:
|
|
|
|
NS_DECL_NSIRUNNABLE
|
|
|
|
|
|
|
|
nsCOMPtr<nsIThread> mOrigin;
|
|
|
|
nsCOMPtr<nsIRunnable> mSyncTask;
|
2010-11-17 23:58:48 +03:00
|
|
|
nsresult mResult;
|
2006-05-10 21:30:15 +04:00
|
|
|
};
|
1999-04-02 13:20:44 +04:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
#endif // nsThread_h__
|