2014-06-30 19:39:45 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
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"
|
2013-11-14 22:06:17 +04:00
|
|
|
#include "nsAutoPtr.h"
|
1999-04-02 13:20:44 +04:00
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
// A native thread
|
2014-05-27 11:15:35 +04:00
|
|
|
class nsThread
|
|
|
|
: 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
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
enum MainThreadFlag
|
|
|
|
{
|
2011-10-12 21:52:26 +04:00
|
|
|
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.
|
2014-05-27 11:15:35 +04:00
|
|
|
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.
|
2014-05-27 11:15:35 +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.
|
2014-05-27 11:15:35 +04:00
|
|
|
void ClearObservers()
|
|
|
|
{
|
|
|
|
mEventObservers.Clear();
|
|
|
|
}
|
2012-01-14 22:31:13 +04:00
|
|
|
|
2012-10-24 02:26:36 +04:00
|
|
|
static nsresult
|
|
|
|
SetMainThreadObserver(nsIThreadObserver* aObserver);
|
|
|
|
|
2013-11-14 22:06:21 +04:00
|
|
|
protected:
|
2012-10-24 02:26:36 +04:00
|
|
|
static nsIThreadObserver* sMainThreadObserver;
|
|
|
|
|
2013-11-14 22:06:17 +04:00
|
|
|
class nsChainedEventQueue;
|
|
|
|
|
|
|
|
class nsNestedEventTarget;
|
|
|
|
friend class nsNestedEventTarget;
|
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
friend class nsThreadShutdownEvent;
|
|
|
|
|
2013-11-14 22:06:21 +04:00
|
|
|
virtual ~nsThread();
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
bool ShuttingDown()
|
|
|
|
{
|
|
|
|
return mShutdownContext != nullptr;
|
|
|
|
}
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
static void ThreadFunc(void* aArg);
|
2006-05-10 21:30:15 +04:00
|
|
|
|
|
|
|
// Helper
|
2014-05-27 11:15:35 +04:00
|
|
|
already_AddRefed<nsIThreadObserver> GetObserver()
|
|
|
|
{
|
|
|
|
nsIThreadObserver* obs;
|
2006-05-10 21:30:15 +04:00
|
|
|
nsThread::GetObserver(&obs);
|
|
|
|
return already_AddRefed<nsIThreadObserver>(obs);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wrappers for event queue methods:
|
2014-05-27 11:15:35 +04:00
|
|
|
bool GetEvent(bool aMayWait, nsIRunnable** aEvent)
|
|
|
|
{
|
|
|
|
return mEvents->GetEvent(aMayWait, aEvent);
|
2006-05-10 21:30:15 +04:00
|
|
|
}
|
2014-05-27 11:15:35 +04:00
|
|
|
nsresult PutEvent(nsIRunnable* aEvent, nsNestedEventTarget* aTarget);
|
2013-11-14 22:06:17 +04:00
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
nsresult DispatchInternal(nsIRunnable* aEvent, uint32_t aFlags,
|
|
|
|
nsNestedEventTarget* aTarget);
|
2013-11-14 22:06:17 +04:00
|
|
|
|
|
|
|
// Wrapper for nsEventQueue that supports chaining.
|
2014-05-27 11:15:35 +04:00
|
|
|
class nsChainedEventQueue
|
|
|
|
{
|
2013-11-14 22:06:17 +04:00
|
|
|
public:
|
|
|
|
nsChainedEventQueue()
|
2014-05-27 11:15:35 +04:00
|
|
|
: mNext(nullptr)
|
|
|
|
{
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
bool GetEvent(bool aMayWait, nsIRunnable** aEvent)
|
|
|
|
{
|
|
|
|
return mQueue.GetEvent(aMayWait, aEvent);
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
void PutEvent(nsIRunnable* aEvent)
|
|
|
|
{
|
|
|
|
mQueue.PutEvent(aEvent);
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
bool HasPendingEvent()
|
|
|
|
{
|
2013-11-14 22:06:17 +04:00
|
|
|
return mQueue.HasPendingEvent();
|
|
|
|
}
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
nsChainedEventQueue* mNext;
|
2013-11-14 22:06:17 +04:00
|
|
|
nsRefPtr<nsNestedEventTarget> mEventTarget;
|
|
|
|
|
|
|
|
private:
|
|
|
|
nsEventQueue mQueue;
|
|
|
|
};
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
class nsNestedEventTarget MOZ_FINAL : public nsIEventTarget
|
|
|
|
{
|
2013-11-14 22:06:17 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
NS_DECL_NSIEVENTTARGET
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
nsNestedEventTarget(nsThread* aThread, nsChainedEventQueue* aQueue)
|
|
|
|
: mThread(aThread)
|
|
|
|
, mQueue(aQueue)
|
|
|
|
{
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
nsRefPtr<nsThread> mThread;
|
|
|
|
|
|
|
|
// This is protected by mThread->mLock.
|
|
|
|
nsChainedEventQueue* mQueue;
|
|
|
|
|
|
|
|
private:
|
2014-05-27 11:15:35 +04:00
|
|
|
~nsNestedEventTarget()
|
|
|
|
{
|
|
|
|
}
|
2013-11-14 22:06:17 +04:00
|
|
|
};
|
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;
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
nsChainedEventQueue* mEvents; // never null
|
2013-11-14 22:06:17 +04:00
|
|
|
nsChainedEventQueue mEventsRoot;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mPriority;
|
2014-05-27 11:15:35 +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
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
struct nsThreadShutdownContext* mShutdownContext;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
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
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
class nsThreadSyncDispatch : public nsRunnable
|
|
|
|
{
|
2006-05-10 21:30:15 +04:00
|
|
|
public:
|
2014-05-27 11:15:35 +04:00
|
|
|
nsThreadSyncDispatch(nsIThread* aOrigin, nsIRunnable* aTask)
|
|
|
|
: mOrigin(aOrigin)
|
|
|
|
, mSyncTask(aTask)
|
|
|
|
, mResult(NS_ERROR_NOT_INITIALIZED)
|
|
|
|
{
|
2006-05-10 21:30:15 +04:00
|
|
|
}
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
bool IsPending()
|
|
|
|
{
|
2012-07-30 18:20:58 +04:00
|
|
|
return mSyncTask != nullptr;
|
2006-05-10 21:30:15 +04:00
|
|
|
}
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
nsresult Result()
|
|
|
|
{
|
2010-11-17 23:58:48 +03:00
|
|
|
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
|
|
|
|
2013-10-30 00:58:09 +04:00
|
|
|
#if defined(XP_UNIX) && !defined(ANDROID) && !defined(DEBUG) && HAVE_UALARM \
|
|
|
|
&& defined(_GNU_SOURCE)
|
|
|
|
# define MOZ_CANARY
|
|
|
|
|
|
|
|
extern int sCanaryOutputFD;
|
|
|
|
#endif
|
|
|
|
|
2006-05-10 21:30:15 +04:00
|
|
|
#endif // nsThread_h__
|