2016-07-19 22:35:36 +03: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: */
|
|
|
|
/* 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 mozilla_mscom_MainThreadInvoker_h
|
|
|
|
#define mozilla_mscom_MainThreadInvoker_h
|
|
|
|
|
|
|
|
#include "mozilla/AlreadyAddRefed.h"
|
2017-03-07 03:22:43 +03:00
|
|
|
#include "mozilla/Move.h"
|
2016-07-19 22:35:36 +03:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2017-07-26 00:57:18 +03:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2017-03-07 03:22:43 +03:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsThreadUtils.h"
|
2016-07-19 22:35:36 +03:00
|
|
|
|
|
|
|
#include <windows.h>
|
|
|
|
|
|
|
|
class nsIRunnable;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace mscom {
|
|
|
|
|
|
|
|
class MainThreadInvoker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MainThreadInvoker();
|
|
|
|
|
2016-10-26 00:43:40 +03:00
|
|
|
bool Invoke(already_AddRefed<nsIRunnable>&& aRunnable);
|
2017-07-26 00:57:18 +03:00
|
|
|
const TimeDuration& GetDuration() const { return mDuration; }
|
2016-10-26 00:43:40 +03:00
|
|
|
static HANDLE GetTargetThread() { return sMainThread; }
|
2016-07-19 22:35:36 +03:00
|
|
|
|
|
|
|
private:
|
2017-07-26 00:57:18 +03:00
|
|
|
TimeDuration mDuration;
|
|
|
|
|
2016-07-19 22:35:36 +03:00
|
|
|
static bool InitStatics();
|
|
|
|
static VOID CALLBACK MainThreadAPC(ULONG_PTR aParam);
|
|
|
|
|
|
|
|
static HANDLE sMainThread;
|
|
|
|
};
|
|
|
|
|
2017-03-07 03:22:43 +03:00
|
|
|
template <typename Class, typename... Args>
|
|
|
|
inline bool
|
2017-06-12 22:34:10 +03:00
|
|
|
InvokeOnMainThread(const char* aName,
|
|
|
|
Class* aObject, void (Class::*aMethod)(Args...),
|
2017-03-07 03:22:43 +03:00
|
|
|
Args... aArgs)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIRunnable> runnable(
|
2017-06-12 22:34:10 +03:00
|
|
|
NewNonOwningRunnableMethod<Args...>(aName, aObject, aMethod,
|
2018-06-01 19:30:30 +03:00
|
|
|
std::forward<Args>(aArgs)...));
|
2017-03-07 03:22:43 +03:00
|
|
|
|
|
|
|
MainThreadInvoker invoker;
|
|
|
|
return invoker.Invoke(runnable.forget());
|
|
|
|
}
|
|
|
|
|
2016-07-19 22:35:36 +03:00
|
|
|
} // namespace mscom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_mscom_MainThreadInvoker_h
|