2006-05-10 17:30:15 +00:00
|
|
|
/* -*- Mode: c++; tab-width: 2; indent-tabs-mode: nil; -*- */
|
2012-05-21 11:12:37 +00: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/. */
|
2006-05-10 17:30:15 +00:00
|
|
|
|
|
|
|
#ifndef nsBaseAppShell_h__
|
|
|
|
#define nsBaseAppShell_h__
|
|
|
|
|
2013-08-12 09:51:49 +00:00
|
|
|
#include "mozilla/Atomics.h"
|
2006-05-10 17:30:15 +00:00
|
|
|
#include "nsIAppShell.h"
|
|
|
|
#include "nsIThreadInternal.h"
|
2006-05-17 00:25:35 +00:00
|
|
|
#include "nsIObserver.h"
|
2006-05-10 17:30:15 +00:00
|
|
|
#include "nsIRunnable.h"
|
|
|
|
#include "nsCOMPtr.h"
|
2012-04-06 20:40:10 +00:00
|
|
|
#include "nsTArray.h"
|
2006-05-10 17:30:15 +00:00
|
|
|
#include "prinrval.h"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A singleton that manages the UI thread's event queue. Subclass this class
|
|
|
|
* to enable platform-specific event queue support.
|
|
|
|
*/
|
2006-05-17 00:25:35 +00:00
|
|
|
class nsBaseAppShell : public nsIAppShell, public nsIThreadObserver,
|
|
|
|
public nsIObserver
|
2006-05-10 17:30:15 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-07-19 02:24:15 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
2006-05-10 17:30:15 +00:00
|
|
|
NS_DECL_NSIAPPSHELL
|
|
|
|
NS_DECL_NSITHREADOBSERVER
|
2006-05-17 00:25:35 +00:00
|
|
|
NS_DECL_NSIOBSERVER
|
2006-05-10 17:30:15 +00:00
|
|
|
|
|
|
|
nsBaseAppShell();
|
|
|
|
|
|
|
|
protected:
|
2010-09-03 00:03:03 +00:00
|
|
|
virtual ~nsBaseAppShell();
|
2006-05-10 17:30:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This method is called by subclasses when the app shell singleton is
|
|
|
|
* instantiated.
|
|
|
|
*/
|
|
|
|
nsresult Init();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by subclasses from a native event. See ScheduleNativeEventCallback.
|
|
|
|
*/
|
2011-01-27 23:27:39 +00:00
|
|
|
void NativeEventCallback();
|
2006-05-10 17:30:15 +00:00
|
|
|
|
2010-11-29 16:25:16 +00:00
|
|
|
/**
|
|
|
|
* Make a decision as to whether or not NativeEventCallback will
|
|
|
|
* trigger gecko event processing when there are pending gecko
|
|
|
|
* events.
|
|
|
|
*/
|
|
|
|
virtual void DoProcessMoreGeckoEvents();
|
|
|
|
|
2006-05-10 17:30:15 +00:00
|
|
|
/**
|
|
|
|
* Implemented by subclasses. Invoke NativeEventCallback from a native
|
|
|
|
* event. This method may be called on any thread.
|
|
|
|
*/
|
|
|
|
virtual void ScheduleNativeEventCallback() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implemented by subclasses. Process the next native event. Only wait for
|
|
|
|
* the next native event if mayWait is true. This method is only called on
|
|
|
|
* the main application thread.
|
|
|
|
*
|
|
|
|
* @param mayWait
|
|
|
|
* If "true", then this method may wait if necessary for the next available
|
|
|
|
* native event. DispatchNativeEvent may be called to unblock a call to
|
|
|
|
* ProcessNextNativeEvent that is waiting.
|
|
|
|
* @return
|
|
|
|
* This method returns "true" if a native event was processed.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool ProcessNextNativeEvent(bool mayWait) = 0;
|
2006-05-10 17:30:15 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
int32_t mSuspendNativeCount;
|
|
|
|
uint32_t mEventloopNestingLevel;
|
2007-03-22 23:04:51 +00:00
|
|
|
|
2006-05-10 17:30:15 +00:00
|
|
|
private:
|
2012-08-22 15:56:38 +00:00
|
|
|
bool DoProcessNextNativeEvent(bool mayWait, uint32_t recursionDepth);
|
2012-04-06 20:40:10 +00:00
|
|
|
|
|
|
|
bool DispatchDummyEvent(nsIThread* target);
|
2006-05-10 17:30:15 +00:00
|
|
|
|
2014-02-13 17:54:10 +00:00
|
|
|
void IncrementEventloopNestingLevel();
|
|
|
|
void DecrementEventloopNestingLevel();
|
|
|
|
|
2010-09-03 00:03:03 +00:00
|
|
|
/**
|
|
|
|
* Runs all synchronous sections which are queued up in mSyncSections.
|
|
|
|
*/
|
2012-08-22 15:56:38 +00:00
|
|
|
void RunSyncSectionsInternal(bool stable, uint32_t threadRecursionLevel);
|
2012-04-06 20:40:10 +00:00
|
|
|
|
2012-08-22 15:56:38 +00:00
|
|
|
void RunSyncSections(bool stable, uint32_t threadRecursionLevel)
|
2012-04-06 20:40:10 +00:00
|
|
|
{
|
|
|
|
if (!mSyncSections.IsEmpty()) {
|
|
|
|
RunSyncSectionsInternal(stable, threadRecursionLevel);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void ScheduleSyncSection(nsIRunnable* runnable, bool stable);
|
|
|
|
|
|
|
|
struct SyncSection {
|
|
|
|
SyncSection()
|
|
|
|
: mStable(false), mEventloopNestingLevel(0), mThreadRecursionLevel(0)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
void Forget(SyncSection* other) {
|
|
|
|
other->mStable = mStable;
|
|
|
|
other->mEventloopNestingLevel = mEventloopNestingLevel;
|
|
|
|
other->mThreadRecursionLevel = mThreadRecursionLevel;
|
|
|
|
other->mRunnable = mRunnable.forget();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool mStable;
|
2012-08-22 15:56:38 +00:00
|
|
|
uint32_t mEventloopNestingLevel;
|
|
|
|
uint32_t mThreadRecursionLevel;
|
2012-04-06 20:40:10 +00:00
|
|
|
nsCOMPtr<nsIRunnable> mRunnable;
|
|
|
|
};
|
2010-09-03 00:03:03 +00:00
|
|
|
|
2006-05-10 17:30:15 +00:00
|
|
|
nsCOMPtr<nsIRunnable> mDummyEvent;
|
2008-02-26 13:36:40 +00:00
|
|
|
/**
|
|
|
|
* mBlockedWait points back to a slot that controls the wait loop in
|
|
|
|
* an outer OnProcessNextEvent invocation. Nested calls always set
|
2011-10-17 14:59:28 +00:00
|
|
|
* it to false to unblock an outer loop, since all events may
|
2008-02-26 13:36:40 +00:00
|
|
|
* have been consumed by the inner event loop(s).
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool *mBlockedWait;
|
2015-04-13 16:02:27 +00:00
|
|
|
int32_t mFavorPerf;
|
2014-02-07 06:17:07 +00:00
|
|
|
mozilla::Atomic<bool> mNativeEventPending;
|
2015-04-13 16:02:27 +00:00
|
|
|
PRIntervalTime mStarvationDelay;
|
|
|
|
PRIntervalTime mSwitchTime;
|
|
|
|
PRIntervalTime mLastNativeEventTime;
|
2008-02-26 13:36:40 +00:00
|
|
|
enum EventloopNestingState {
|
|
|
|
eEventloopNone, // top level thread execution
|
|
|
|
eEventloopXPCOM, // innermost native event loop is ProcessNextNativeEvent
|
|
|
|
eEventloopOther // innermost native event loop is a native library/plugin etc
|
|
|
|
};
|
|
|
|
EventloopNestingState mEventloopNestingState;
|
2012-04-06 20:40:10 +00:00
|
|
|
nsTArray<SyncSection> mSyncSections;
|
2015-04-22 22:32:43 +00:00
|
|
|
bool mRunningSyncSections;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mRunning;
|
|
|
|
bool mExiting;
|
2008-03-15 01:12:13 +00:00
|
|
|
/**
|
|
|
|
* mBlockNativeEvent blocks the appshell from processing native events.
|
2011-10-17 14:59:28 +00:00
|
|
|
* It is set to true while a nested native event loop (eEventloopOther)
|
2008-03-15 01:12:13 +00:00
|
|
|
* is processing gecko events in NativeEventCallback(), thus queuing up
|
|
|
|
* native events until we return to that loop (bug 420148).
|
2011-10-17 14:59:28 +00:00
|
|
|
* We force mBlockNativeEvent to false in case handling one of the gecko
|
2008-03-15 01:12:13 +00:00
|
|
|
* events spins up a nested XPCOM event loop (eg. modal window) which would
|
|
|
|
* otherwise lead to a "deadlock" where native events aren't processed at all.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mBlockNativeEvent;
|
2010-10-25 23:34:13 +00:00
|
|
|
/**
|
|
|
|
* Tracks whether we have processed any gecko events in NativeEventCallback so
|
|
|
|
* that we can avoid erroneously entering a blocking loop waiting for gecko
|
|
|
|
* events to show up during OnProcessNextEvent. This is required because on
|
2014-02-07 06:17:07 +00:00
|
|
|
* OS X ProcessGeckoEvents may be invoked inside the context of
|
2010-10-25 23:34:13 +00:00
|
|
|
* ProcessNextNativeEvent and may result in NativeEventCallback being invoked
|
|
|
|
* and in turn invoking NS_ProcessPendingEvents. Because
|
|
|
|
* ProcessNextNativeEvent may be invoked prior to the NS_HasPendingEvents
|
|
|
|
* waiting loop, this is the only way to make the loop aware that events may
|
|
|
|
* have been processed.
|
|
|
|
*
|
2011-10-17 14:59:28 +00:00
|
|
|
* This variable is set to false in OnProcessNextEvent prior to the first
|
|
|
|
* call to DoProcessNextNativeEvent. It is set to true by
|
2010-10-25 23:34:13 +00:00
|
|
|
* NativeEventCallback after calling NS_ProcessPendingEvents.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mProcessedGeckoEvents;
|
2006-05-10 17:30:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsBaseAppShell_h__
|