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"
|
2016-08-24 17:18:06 +03:00
|
|
|
#include "nsIIdlePeriod.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"
|
2016-05-27 02:49:23 +03:00
|
|
|
#include "mozilla/NotNull.h"
|
2013-11-14 22:06:17 +04:00
|
|
|
#include "nsAutoPtr.h"
|
2015-07-10 06:21:46 +03:00
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
2016-11-08 15:05:45 +03:00
|
|
|
#include "mozilla/UniquePtr.h"
|
1999-04-02 13:20:44 +04:00
|
|
|
|
Bug 1179909: Refactor stable state handling. r=smaug
This is motivated by three separate but related problems:
1. Our concept of recursion depth is broken for things that run from AfterProcessNextEvent observers (e.g. Promises). We decrement the recursionDepth counter before firing observers, so a Promise callback running at the lowest event loop depth has a recursion depth of 0 (whereas a regular nsIRunnable would be 1). This is a problem because it's impossible to distinguish a Promise running after a sync XHR's onreadystatechange handler from a top-level event (since the former runs with depth 2 - 1 = 1, and the latter runs with just 1).
2. The nsIThreadObserver mechanism that is used by a lot of code to run "after" the current event is a poor fit for anything that runs script. First, the order the observers fire in is the order they were added, not anything fixed by spec. Additionally, running script can cause the event loop to spin, which is a big source of pain here (bholley has some nasty bug caused by this).
3. We run Promises from different points in the code for workers and main thread. The latter runs from XPConnect's nsIThreadObserver callbacks, while the former runs from a hardcoded call to run Promises in the worker event loop. What workers do is particularly problematic because it means we can't get the right recursion depth no matter what we do to nsThread.
The solve this, this patch does the following:
1. Consolidate some handling of microtasks and all handling of stable state from appshell and WorkerPrivate into CycleCollectedJSRuntime.
2. Make the recursionDepth counter only available to CycleCollectedJSRuntime (and its consumers) and remove it from the nsIThreadInternal and nsIThreadObserver APIs.
3. Adjust the recursionDepth counter so that microtasks run with the recursionDepth of the task they are associated with.
4. Introduce the concept of metastable state to replace appshell's RunBeforeNextEvent. Metastable state is reached after every microtask or task is completed. This provides the semantics that bent and I want for IndexedDB, where transactions autocommit at the end of a microtask and do not "spill" from one microtask into a subsequent microtask. This differs from appshell's RunBeforeNextEvent in two ways:
a) It fires between microtasks, which was the motivation for starting this.
b) It no longer ensures that we're at the same event loop depth in the native event queue. bent decided we don't care about this.
5. Reorder stable state to happen after microtasks such as Promises, per HTML. Right now we call the regular thread observers, including appshell, before the main thread observer (XPConnect), so stable state tasks happen before microtasks.
2015-08-11 16:10:46 +03:00
|
|
|
namespace mozilla {
|
2016-09-14 16:47:32 +03:00
|
|
|
class CycleCollectedJSContext;
|
Bug 1179909: Refactor stable state handling. r=smaug
This is motivated by three separate but related problems:
1. Our concept of recursion depth is broken for things that run from AfterProcessNextEvent observers (e.g. Promises). We decrement the recursionDepth counter before firing observers, so a Promise callback running at the lowest event loop depth has a recursion depth of 0 (whereas a regular nsIRunnable would be 1). This is a problem because it's impossible to distinguish a Promise running after a sync XHR's onreadystatechange handler from a top-level event (since the former runs with depth 2 - 1 = 1, and the latter runs with just 1).
2. The nsIThreadObserver mechanism that is used by a lot of code to run "after" the current event is a poor fit for anything that runs script. First, the order the observers fire in is the order they were added, not anything fixed by spec. Additionally, running script can cause the event loop to spin, which is a big source of pain here (bholley has some nasty bug caused by this).
3. We run Promises from different points in the code for workers and main thread. The latter runs from XPConnect's nsIThreadObserver callbacks, while the former runs from a hardcoded call to run Promises in the worker event loop. What workers do is particularly problematic because it means we can't get the right recursion depth no matter what we do to nsThread.
The solve this, this patch does the following:
1. Consolidate some handling of microtasks and all handling of stable state from appshell and WorkerPrivate into CycleCollectedJSRuntime.
2. Make the recursionDepth counter only available to CycleCollectedJSRuntime (and its consumers) and remove it from the nsIThreadInternal and nsIThreadObserver APIs.
3. Adjust the recursionDepth counter so that microtasks run with the recursionDepth of the task they are associated with.
4. Introduce the concept of metastable state to replace appshell's RunBeforeNextEvent. Metastable state is reached after every microtask or task is completed. This provides the semantics that bent and I want for IndexedDB, where transactions autocommit at the end of a microtask and do not "spill" from one microtask into a subsequent microtask. This differs from appshell's RunBeforeNextEvent in two ways:
a) It fires between microtasks, which was the motivation for starting this.
b) It no longer ensures that we're at the same event loop depth in the native event queue. bent decided we don't care about this.
5. Reorder stable state to happen after microtasks such as Promises, per HTML. Right now we call the regular thread observers, including appshell, before the main thread observer (XPConnect), so stable state tasks happen before microtasks.
2015-08-11 16:10:46 +03:00
|
|
|
}
|
|
|
|
|
2016-05-27 02:49:23 +03:00
|
|
|
using mozilla::NotNull;
|
|
|
|
|
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
|
2016-01-12 07:18:47 +03:00
|
|
|
using nsIEventTarget::Dispatch;
|
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
|
|
|
|
Bug 1179909: Refactor stable state handling. r=smaug
This is motivated by three separate but related problems:
1. Our concept of recursion depth is broken for things that run from AfterProcessNextEvent observers (e.g. Promises). We decrement the recursionDepth counter before firing observers, so a Promise callback running at the lowest event loop depth has a recursion depth of 0 (whereas a regular nsIRunnable would be 1). This is a problem because it's impossible to distinguish a Promise running after a sync XHR's onreadystatechange handler from a top-level event (since the former runs with depth 2 - 1 = 1, and the latter runs with just 1).
2. The nsIThreadObserver mechanism that is used by a lot of code to run "after" the current event is a poor fit for anything that runs script. First, the order the observers fire in is the order they were added, not anything fixed by spec. Additionally, running script can cause the event loop to spin, which is a big source of pain here (bholley has some nasty bug caused by this).
3. We run Promises from different points in the code for workers and main thread. The latter runs from XPConnect's nsIThreadObserver callbacks, while the former runs from a hardcoded call to run Promises in the worker event loop. What workers do is particularly problematic because it means we can't get the right recursion depth no matter what we do to nsThread.
The solve this, this patch does the following:
1. Consolidate some handling of microtasks and all handling of stable state from appshell and WorkerPrivate into CycleCollectedJSRuntime.
2. Make the recursionDepth counter only available to CycleCollectedJSRuntime (and its consumers) and remove it from the nsIThreadInternal and nsIThreadObserver APIs.
3. Adjust the recursionDepth counter so that microtasks run with the recursionDepth of the task they are associated with.
4. Introduce the concept of metastable state to replace appshell's RunBeforeNextEvent. Metastable state is reached after every microtask or task is completed. This provides the semantics that bent and I want for IndexedDB, where transactions autocommit at the end of a microtask and do not "spill" from one microtask into a subsequent microtask. This differs from appshell's RunBeforeNextEvent in two ways:
a) It fires between microtasks, which was the motivation for starting this.
b) It no longer ensures that we're at the same event loop depth in the native event queue. bent decided we don't care about this.
5. Reorder stable state to happen after microtasks such as Promises, per HTML. Right now we call the regular thread observers, including appshell, before the main thread observer (XPConnect), so stable state tasks happen before microtasks.
2015-08-11 16:10:46 +03:00
|
|
|
void
|
2016-09-14 16:47:32 +03:00
|
|
|
SetScriptObserver(mozilla::CycleCollectedJSContext* aScriptObserver);
|
2012-10-24 02:26:36 +04:00
|
|
|
|
Bug 1179909: Refactor stable state handling. r=smaug
This is motivated by three separate but related problems:
1. Our concept of recursion depth is broken for things that run from AfterProcessNextEvent observers (e.g. Promises). We decrement the recursionDepth counter before firing observers, so a Promise callback running at the lowest event loop depth has a recursion depth of 0 (whereas a regular nsIRunnable would be 1). This is a problem because it's impossible to distinguish a Promise running after a sync XHR's onreadystatechange handler from a top-level event (since the former runs with depth 2 - 1 = 1, and the latter runs with just 1).
2. The nsIThreadObserver mechanism that is used by a lot of code to run "after" the current event is a poor fit for anything that runs script. First, the order the observers fire in is the order they were added, not anything fixed by spec. Additionally, running script can cause the event loop to spin, which is a big source of pain here (bholley has some nasty bug caused by this).
3. We run Promises from different points in the code for workers and main thread. The latter runs from XPConnect's nsIThreadObserver callbacks, while the former runs from a hardcoded call to run Promises in the worker event loop. What workers do is particularly problematic because it means we can't get the right recursion depth no matter what we do to nsThread.
The solve this, this patch does the following:
1. Consolidate some handling of microtasks and all handling of stable state from appshell and WorkerPrivate into CycleCollectedJSRuntime.
2. Make the recursionDepth counter only available to CycleCollectedJSRuntime (and its consumers) and remove it from the nsIThreadInternal and nsIThreadObserver APIs.
3. Adjust the recursionDepth counter so that microtasks run with the recursionDepth of the task they are associated with.
4. Introduce the concept of metastable state to replace appshell's RunBeforeNextEvent. Metastable state is reached after every microtask or task is completed. This provides the semantics that bent and I want for IndexedDB, where transactions autocommit at the end of a microtask and do not "spill" from one microtask into a subsequent microtask. This differs from appshell's RunBeforeNextEvent in two ways:
a) It fires between microtasks, which was the motivation for starting this.
b) It no longer ensures that we're at the same event loop depth in the native event queue. bent decided we don't care about this.
5. Reorder stable state to happen after microtasks such as Promises, per HTML. Right now we call the regular thread observers, including appshell, before the main thread observer (XPConnect), so stable state tasks happen before microtasks.
2015-08-11 16:10:46 +03:00
|
|
|
uint32_t
|
|
|
|
RecursionDepth() const;
|
2012-10-24 02:26:36 +04:00
|
|
|
|
2016-05-27 02:49:23 +03:00
|
|
|
void ShutdownComplete(NotNull<struct nsThreadShutdownContext*> aContext);
|
2015-09-15 04:24:43 +03:00
|
|
|
|
2016-01-18 20:34:38 +03:00
|
|
|
void WaitForAllAsynchronousShutdowns();
|
|
|
|
|
2016-06-21 21:45:25 +03:00
|
|
|
#ifdef MOZ_CRASHREPORTER
|
|
|
|
enum class ShouldSaveMemoryReport
|
|
|
|
{
|
|
|
|
kMaybeReport,
|
|
|
|
kForceReport
|
|
|
|
};
|
|
|
|
|
|
|
|
static bool SaveMemoryReportNearOOM(ShouldSaveMemoryReport aShouldSave);
|
|
|
|
#endif
|
|
|
|
|
2016-05-22 15:30:03 +03:00
|
|
|
private:
|
|
|
|
void DoMainThreadSpecificProcessing(bool aReallyWait);
|
|
|
|
|
2016-08-24 17:18:06 +03:00
|
|
|
void GetIdleEvent(nsIRunnable** aEvent, mozilla::MutexAutoLock& aProofOfLock);
|
|
|
|
void GetEvent(bool aWait, nsIRunnable** aEvent,
|
|
|
|
mozilla::MutexAutoLock& aProofOfLock);
|
|
|
|
|
Bug 1179909: Refactor stable state handling. r=smaug
This is motivated by three separate but related problems:
1. Our concept of recursion depth is broken for things that run from AfterProcessNextEvent observers (e.g. Promises). We decrement the recursionDepth counter before firing observers, so a Promise callback running at the lowest event loop depth has a recursion depth of 0 (whereas a regular nsIRunnable would be 1). This is a problem because it's impossible to distinguish a Promise running after a sync XHR's onreadystatechange handler from a top-level event (since the former runs with depth 2 - 1 = 1, and the latter runs with just 1).
2. The nsIThreadObserver mechanism that is used by a lot of code to run "after" the current event is a poor fit for anything that runs script. First, the order the observers fire in is the order they were added, not anything fixed by spec. Additionally, running script can cause the event loop to spin, which is a big source of pain here (bholley has some nasty bug caused by this).
3. We run Promises from different points in the code for workers and main thread. The latter runs from XPConnect's nsIThreadObserver callbacks, while the former runs from a hardcoded call to run Promises in the worker event loop. What workers do is particularly problematic because it means we can't get the right recursion depth no matter what we do to nsThread.
The solve this, this patch does the following:
1. Consolidate some handling of microtasks and all handling of stable state from appshell and WorkerPrivate into CycleCollectedJSRuntime.
2. Make the recursionDepth counter only available to CycleCollectedJSRuntime (and its consumers) and remove it from the nsIThreadInternal and nsIThreadObserver APIs.
3. Adjust the recursionDepth counter so that microtasks run with the recursionDepth of the task they are associated with.
4. Introduce the concept of metastable state to replace appshell's RunBeforeNextEvent. Metastable state is reached after every microtask or task is completed. This provides the semantics that bent and I want for IndexedDB, where transactions autocommit at the end of a microtask and do not "spill" from one microtask into a subsequent microtask. This differs from appshell's RunBeforeNextEvent in two ways:
a) It fires between microtasks, which was the motivation for starting this.
b) It no longer ensures that we're at the same event loop depth in the native event queue. bent decided we don't care about this.
5. Reorder stable state to happen after microtasks such as Promises, per HTML. Right now we call the regular thread observers, including appshell, before the main thread observer (XPConnect), so stable state tasks happen before microtasks.
2015-08-11 16:10:46 +03:00
|
|
|
protected:
|
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
|
|
|
nsresult PutEvent(nsIRunnable* aEvent, nsNestedEventTarget* aTarget);
|
2016-06-01 03:04:54 +03:00
|
|
|
nsresult PutEvent(already_AddRefed<nsIRunnable> aEvent,
|
2016-05-27 02:49:23 +03:00
|
|
|
nsNestedEventTarget* aTarget);
|
2013-11-14 22:06:17 +04:00
|
|
|
|
2016-06-01 03:04:54 +03:00
|
|
|
nsresult DispatchInternal(already_AddRefed<nsIRunnable> aEvent,
|
2016-05-27 02:49:23 +03:00
|
|
|
uint32_t aFlags, nsNestedEventTarget* aTarget);
|
2013-11-14 22:06:17 +04:00
|
|
|
|
2015-09-15 04:24:43 +03:00
|
|
|
struct nsThreadShutdownContext* ShutdownInternal(bool aSync);
|
|
|
|
|
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:
|
2015-09-23 02:25:37 +03:00
|
|
|
explicit nsChainedEventQueue(mozilla::Mutex& aLock)
|
2014-05-27 11:15:35 +04:00
|
|
|
: mNext(nullptr)
|
2016-11-08 15:05:45 +03:00
|
|
|
, mEventsAvailable(aLock, "[nsChainedEventQueue.mEventsAvailable]")
|
|
|
|
, mProcessSecondaryQueueRunnable(false)
|
2014-05-27 11:15:35 +04:00
|
|
|
{
|
2016-11-08 15:05:45 +03:00
|
|
|
mNormalQueue =
|
|
|
|
mozilla::MakeUnique<nsEventQueue>(mEventsAvailable,
|
|
|
|
nsEventQueue::eSharedCondVarQueue);
|
|
|
|
// Both queues need to use the same CondVar!
|
|
|
|
mSecondaryQueue =
|
|
|
|
mozilla::MakeUnique<nsEventQueue>(mEventsAvailable,
|
|
|
|
nsEventQueue::eSharedCondVarQueue);
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
2015-09-20 11:59:56 +03:00
|
|
|
bool GetEvent(bool aMayWait, nsIRunnable** aEvent,
|
2016-11-08 15:05:45 +03:00
|
|
|
mozilla::MutexAutoLock& aProofOfLock);
|
2013-11-14 22:06:17 +04:00
|
|
|
|
2015-09-20 11:59:56 +03:00
|
|
|
void PutEvent(nsIRunnable* aEvent, mozilla::MutexAutoLock& aProofOfLock)
|
2014-05-27 11:15:35 +04:00
|
|
|
{
|
2016-11-08 15:05:45 +03:00
|
|
|
RefPtr<nsIRunnable> event(aEvent);
|
|
|
|
PutEvent(event.forget(), aProofOfLock);
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
2016-06-01 03:04:54 +03:00
|
|
|
void PutEvent(already_AddRefed<nsIRunnable> aEvent,
|
2015-09-20 11:59:56 +03:00
|
|
|
mozilla::MutexAutoLock& aProofOfLock)
|
2015-07-10 06:21:46 +03:00
|
|
|
{
|
2016-11-08 15:05:45 +03:00
|
|
|
RefPtr<nsIRunnable> event(aEvent);
|
|
|
|
nsCOMPtr<nsIRunnablePriority> runnablePrio =
|
|
|
|
do_QueryInterface(event);
|
|
|
|
uint32_t prio = nsIRunnablePriority::PRIORITY_NORMAL;
|
|
|
|
if (runnablePrio) {
|
|
|
|
runnablePrio->GetPriority(&prio);
|
|
|
|
}
|
|
|
|
MOZ_ASSERT(prio == nsIRunnablePriority::PRIORITY_NORMAL ||
|
|
|
|
prio == nsIRunnablePriority::PRIORITY_HIGH);
|
|
|
|
if (prio == nsIRunnablePriority::PRIORITY_NORMAL) {
|
|
|
|
mNormalQueue->PutEvent(event.forget(), aProofOfLock);
|
|
|
|
} else {
|
|
|
|
mSecondaryQueue->PutEvent(event.forget(), aProofOfLock);
|
|
|
|
}
|
2015-07-10 06:21:46 +03:00
|
|
|
}
|
|
|
|
|
2015-09-20 11:59:56 +03:00
|
|
|
bool HasPendingEvent(mozilla::MutexAutoLock& aProofOfLock)
|
2014-05-27 11:15:35 +04:00
|
|
|
{
|
2016-11-08 15:05:45 +03:00
|
|
|
return mNormalQueue->HasPendingEvent(aProofOfLock) ||
|
|
|
|
mSecondaryQueue->HasPendingEvent(aProofOfLock);
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
nsChainedEventQueue* mNext;
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsNestedEventTarget> mEventTarget;
|
2013-11-14 22:06:17 +04:00
|
|
|
|
|
|
|
private:
|
2016-11-08 15:05:45 +03:00
|
|
|
mozilla::CondVar mEventsAvailable;
|
|
|
|
mozilla::UniquePtr<nsEventQueue> mNormalQueue;
|
|
|
|
mozilla::UniquePtr<nsEventQueue> mSecondaryQueue;
|
|
|
|
|
|
|
|
// Try to process one high priority runnable after each normal
|
|
|
|
// priority runnable. This gives the processing model HTML spec has for
|
|
|
|
// 'Update the rendering' in the case only vsync messages are in the
|
|
|
|
// secondary queue and prevents starving the normal queue.
|
|
|
|
bool mProcessSecondaryQueueRunnable;
|
2013-11-14 22:06:17 +04:00
|
|
|
};
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class nsNestedEventTarget final : public nsIEventTarget
|
2014-05-27 11:15:35 +04:00
|
|
|
{
|
2013-11-14 22:06:17 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
NS_DECL_NSIEVENTTARGET
|
|
|
|
|
2016-05-27 02:49:23 +03:00
|
|
|
nsNestedEventTarget(NotNull<nsThread*> aThread,
|
|
|
|
NotNull<nsChainedEventQueue*> aQueue)
|
2014-05-27 11:15:35 +04:00
|
|
|
: mThread(aThread)
|
|
|
|
, mQueue(aQueue)
|
2016-08-24 17:18:06 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
2014-05-27 11:15:35 +04:00
|
|
|
{
|
2013-11-14 22:06:17 +04:00
|
|
|
}
|
|
|
|
|
2016-05-27 02:49:23 +03:00
|
|
|
NotNull<RefPtr<nsThread>> mThread;
|
2013-11-14 22:06:17 +04:00
|
|
|
|
|
|
|
// 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
|
|
|
|
2016-08-24 17:18:06 +03:00
|
|
|
// This lock protects access to mObserver, mEvents, mIdleEvents,
|
2016-08-22 15:52:45 +03:00
|
|
|
// mIdlePeriod 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;
|
2016-09-14 16:47:32 +03:00
|
|
|
mozilla::CycleCollectedJSContext* mScriptObserver;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2010-11-19 01:19:19 +03:00
|
|
|
// Only accessed on the target thread.
|
2016-05-27 02:49:23 +03:00
|
|
|
nsAutoTObserverArray<NotNull<nsCOMPtr<nsIThreadObserver>>, 2> mEventObservers;
|
2010-11-19 01:19:19 +03:00
|
|
|
|
2016-05-27 02:49:23 +03:00
|
|
|
NotNull<nsChainedEventQueue*> mEvents; // never null
|
|
|
|
nsChainedEventQueue mEventsRoot;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2016-08-24 17:18:06 +03:00
|
|
|
// mIdlePeriod keeps track of the current idle period. If at any
|
|
|
|
// time the main event queue is empty, calling
|
|
|
|
// mIdlePeriod->GetIdlePeriodHint() will give an estimate of when
|
|
|
|
// the current idle period will end.
|
|
|
|
nsCOMPtr<nsIIdlePeriod> mIdlePeriod;
|
2016-11-08 15:05:45 +03:00
|
|
|
mozilla::CondVar mIdleEventsAvailable;
|
2016-08-24 17:18:06 +03:00
|
|
|
nsEventQueue mIdleEvents;
|
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
int32_t mPriority;
|
2014-05-27 11:15:35 +04:00
|
|
|
PRThread* mThread;
|
2015-04-24 23:04:50 +03:00
|
|
|
uint32_t mNestedEventLoopDepth;
|
2012-08-22 19:56:38 +04:00
|
|
|
uint32_t mStackSize;
|
2006-05-10 21:30:15 +04:00
|
|
|
|
2015-09-15 04:24:43 +03:00
|
|
|
// The shutdown context for ourselves.
|
2014-05-27 11:15:35 +04:00
|
|
|
struct nsThreadShutdownContext* mShutdownContext;
|
2015-09-15 04:24:43 +03:00
|
|
|
// The shutdown contexts for any other threads we've asked to shut down.
|
|
|
|
nsTArray<nsAutoPtr<struct nsThreadShutdownContext>> mRequestedShutdownContexts;
|
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;
|
2016-09-16 07:35:14 +03:00
|
|
|
|
|
|
|
// Set to true if this thread creates a JSRuntime.
|
|
|
|
bool mCanInvokeJS;
|
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__
|