mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
883849ee32
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
161 lines
3.2 KiB
C++
161 lines
3.2 KiB
C++
/* 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/. */
|
|
|
|
#ifndef __IPC_GLUE_MESSAGEPUMP_H__
|
|
#define __IPC_GLUE_MESSAGEPUMP_H__
|
|
|
|
#include "base/message_pump_default.h"
|
|
#if defined(XP_WIN)
|
|
#include "base/message_pump_win.h"
|
|
#endif
|
|
|
|
#include "base/time.h"
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/Mutex.h"
|
|
#include "nsAutoPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIThreadInternal.h"
|
|
|
|
class nsIThread;
|
|
class nsITimer;
|
|
|
|
namespace mozilla {
|
|
namespace ipc {
|
|
|
|
class DoWorkRunnable;
|
|
|
|
class MessagePump : public base::MessagePumpDefault
|
|
{
|
|
friend class DoWorkRunnable;
|
|
|
|
public:
|
|
MessagePump();
|
|
|
|
// From base::MessagePump.
|
|
virtual void
|
|
Run(base::MessagePump::Delegate* aDelegate) override;
|
|
|
|
// From base::MessagePump.
|
|
virtual void
|
|
ScheduleWork() override;
|
|
|
|
// From base::MessagePump.
|
|
virtual void
|
|
ScheduleWorkForNestedLoop() override;
|
|
|
|
// From base::MessagePump.
|
|
virtual void
|
|
ScheduleDelayedWork(const base::TimeTicks& aDelayedWorkTime) override;
|
|
|
|
protected:
|
|
virtual ~MessagePump();
|
|
|
|
private:
|
|
// Only called by DoWorkRunnable.
|
|
void DoDelayedWork(base::MessagePump::Delegate* aDelegate);
|
|
|
|
protected:
|
|
// mDelayedWorkTimer and mThread are set in Run() by this class or its
|
|
// subclasses.
|
|
nsCOMPtr<nsITimer> mDelayedWorkTimer;
|
|
nsIThread* mThread;
|
|
|
|
private:
|
|
// Only accessed by this class.
|
|
nsRefPtr<DoWorkRunnable> mDoWorkEvent;
|
|
};
|
|
|
|
class MessagePumpForChildProcess final: public MessagePump
|
|
{
|
|
public:
|
|
MessagePumpForChildProcess()
|
|
: mFirstRun(true)
|
|
{ }
|
|
|
|
virtual void Run(base::MessagePump::Delegate* aDelegate) override;
|
|
|
|
private:
|
|
~MessagePumpForChildProcess()
|
|
{ }
|
|
|
|
bool mFirstRun;
|
|
};
|
|
|
|
class MessagePumpForNonMainThreads final : public MessagePump
|
|
{
|
|
public:
|
|
MessagePumpForNonMainThreads()
|
|
{ }
|
|
|
|
virtual void Run(base::MessagePump::Delegate* aDelegate) override;
|
|
|
|
private:
|
|
~MessagePumpForNonMainThreads()
|
|
{ }
|
|
};
|
|
|
|
#if defined(XP_WIN)
|
|
// Extends the TYPE_UI message pump to process xpcom events. Currently only
|
|
// implemented for Win.
|
|
class MessagePumpForNonMainUIThreads final:
|
|
public base::MessagePumpForUI,
|
|
public nsIThreadObserver
|
|
{
|
|
public:
|
|
// We don't want xpcom refing, chromium controls our lifetime via
|
|
// RefCountedThreadSafe.
|
|
NS_IMETHOD_(MozExternalRefCountType) AddRef(void) {
|
|
return 2;
|
|
}
|
|
NS_IMETHOD_(MozExternalRefCountType) Release(void) {
|
|
return 1;
|
|
}
|
|
NS_IMETHOD QueryInterface(REFNSIID aIID, void** aInstancePtr);
|
|
|
|
NS_DECL_NSITHREADOBSERVER
|
|
|
|
public:
|
|
MessagePumpForNonMainUIThreads() :
|
|
mThread(nullptr),
|
|
mInWait(false),
|
|
mWaitLock("mInWait")
|
|
{
|
|
}
|
|
|
|
// The main run loop for this thread.
|
|
virtual void DoRunLoop();
|
|
|
|
protected:
|
|
nsIThread* mThread;
|
|
|
|
void SetInWait() {
|
|
MutexAutoLock lock(mWaitLock);
|
|
mInWait = true;
|
|
}
|
|
|
|
void ClearInWait() {
|
|
MutexAutoLock lock(mWaitLock);
|
|
mInWait = false;
|
|
}
|
|
|
|
bool GetInWait() {
|
|
MutexAutoLock lock(mWaitLock);
|
|
return mInWait;
|
|
}
|
|
|
|
private:
|
|
~MessagePumpForNonMainUIThreads()
|
|
{
|
|
}
|
|
|
|
bool mInWait;
|
|
mozilla::Mutex mWaitLock;
|
|
};
|
|
#endif // defined(XP_WIN)
|
|
|
|
} /* namespace ipc */
|
|
} /* namespace mozilla */
|
|
|
|
#endif /* __IPC_GLUE_MESSAGEPUMP_H__ */
|