mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
01583602a9
The bulk of this commit was generated with a script, executed at the top level of a typical source code checkout. The only non-machine-generated part was modifying MFBT's moz.build to reflect the new naming. CLOSED TREE makes big refactorings like this a piece of cake. # The main substitution. find . -name '*.cpp' -o -name '*.cc' -o -name '*.h' -o -name '*.mm' -o -name '*.idl'| \ xargs perl -p -i -e ' s/nsRefPtr\.h/RefPtr\.h/g; # handle includes s/nsRefPtr ?</RefPtr</g; # handle declarations and variables ' # Handle a special friend declaration in gfx/layers/AtomicRefCountedWithFinalize.h. perl -p -i -e 's/::nsRefPtr;/::RefPtr;/' gfx/layers/AtomicRefCountedWithFinalize.h # Handle nsRefPtr.h itself, a couple places that define constructors # from nsRefPtr, and code generators specially. We do this here, rather # than indiscriminantly s/nsRefPtr/RefPtr/, because that would rename # things like nsRefPtrHashtable. perl -p -i -e 's/nsRefPtr/RefPtr/g' \ mfbt/nsRefPtr.h \ xpcom/glue/nsCOMPtr.h \ xpcom/base/OwningNonNull.h \ ipc/ipdl/ipdl/lower.py \ ipc/ipdl/ipdl/builtin.py \ dom/bindings/Codegen.py \ python/lldbutils/lldbutils/utils.py # In our indiscriminate substitution above, we renamed # nsRefPtrGetterAddRefs, the class behind getter_AddRefs. Fix that up. find . -name '*.cpp' -o -name '*.h' -o -name '*.idl' | \ xargs perl -p -i -e 's/nsRefPtrGetterAddRefs/RefPtrGetterAddRefs/g' if [ -d .git ]; then git mv mfbt/nsRefPtr.h mfbt/RefPtr.h else hg mv mfbt/nsRefPtr.h mfbt/RefPtr.h fi --HG-- rename : mfbt/nsRefPtr.h => mfbt/RefPtr.h
239 lines
6.2 KiB
C++
239 lines
6.2 KiB
C++
/* -*- Mode: C++; tab-width: 20; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
/* 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/. */
|
|
|
|
#include "WebGLContextLossHandler.h"
|
|
|
|
#include "nsITimer.h"
|
|
#include "nsThreadUtils.h"
|
|
#include "WebGLContext.h"
|
|
#include "mozilla/dom/WorkerPrivate.h"
|
|
|
|
namespace mozilla {
|
|
|
|
// -------------------------------------------------------------------
|
|
// Begin worker specific code
|
|
// -------------------------------------------------------------------
|
|
|
|
// On workers we can only dispatch CancelableRunnables, so we have to wrap the
|
|
// timer's EventTarget to use our own cancelable runnable
|
|
|
|
class ContextLossWorkerEventTarget final : public nsIEventTarget
|
|
{
|
|
public:
|
|
explicit ContextLossWorkerEventTarget(nsIEventTarget* aEventTarget)
|
|
: mEventTarget(aEventTarget)
|
|
{
|
|
MOZ_ASSERT(aEventTarget);
|
|
}
|
|
|
|
NS_DECL_NSIEVENTTARGET
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
protected:
|
|
~ContextLossWorkerEventTarget() {}
|
|
|
|
private:
|
|
nsCOMPtr<nsIEventTarget> mEventTarget;
|
|
};
|
|
|
|
class ContextLossWorkerRunnable final : public nsICancelableRunnable
|
|
{
|
|
public:
|
|
explicit ContextLossWorkerRunnable(nsIRunnable* aRunnable)
|
|
: mRunnable(aRunnable)
|
|
{
|
|
}
|
|
|
|
NS_DECL_NSICANCELABLERUNNABLE
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
|
|
NS_FORWARD_NSIRUNNABLE(mRunnable->)
|
|
|
|
protected:
|
|
~ContextLossWorkerRunnable() {}
|
|
|
|
private:
|
|
nsCOMPtr<nsIRunnable> mRunnable;
|
|
};
|
|
|
|
NS_IMPL_ISUPPORTS(ContextLossWorkerEventTarget, nsIEventTarget,
|
|
nsISupports)
|
|
|
|
NS_IMETHODIMP
|
|
ContextLossWorkerEventTarget::DispatchFromScript(nsIRunnable* aEvent, uint32_t aFlags)
|
|
{
|
|
nsCOMPtr<nsIRunnable> event(aEvent);
|
|
return Dispatch(event.forget(), aFlags);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ContextLossWorkerEventTarget::Dispatch(already_AddRefed<nsIRunnable>&& aEvent,
|
|
uint32_t aFlags)
|
|
{
|
|
nsCOMPtr<nsIRunnable> eventRef(aEvent);
|
|
RefPtr<ContextLossWorkerRunnable> wrappedEvent =
|
|
new ContextLossWorkerRunnable(eventRef);
|
|
return mEventTarget->Dispatch(wrappedEvent, aFlags);
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
ContextLossWorkerEventTarget::IsOnCurrentThread(bool* aResult)
|
|
{
|
|
return mEventTarget->IsOnCurrentThread(aResult);
|
|
}
|
|
|
|
NS_IMPL_ISUPPORTS(ContextLossWorkerRunnable, nsICancelableRunnable,
|
|
nsIRunnable)
|
|
|
|
NS_IMETHODIMP
|
|
ContextLossWorkerRunnable::Cancel()
|
|
{
|
|
mRunnable = nullptr;
|
|
return NS_OK;
|
|
}
|
|
|
|
// -------------------------------------------------------------------
|
|
// End worker-specific code
|
|
// -------------------------------------------------------------------
|
|
|
|
WebGLContextLossHandler::WebGLContextLossHandler(WebGLContext* webgl)
|
|
: mWeakWebGL(webgl)
|
|
, mTimer(do_CreateInstance(NS_TIMER_CONTRACTID))
|
|
, mIsTimerRunning(false)
|
|
, mShouldRunTimerAgain(false)
|
|
, mIsDisabled(false)
|
|
, mFeatureAdded(false)
|
|
#ifdef DEBUG
|
|
, mThread(NS_GetCurrentThread())
|
|
#endif
|
|
{
|
|
}
|
|
|
|
WebGLContextLossHandler::~WebGLContextLossHandler()
|
|
{
|
|
MOZ_ASSERT(!mIsTimerRunning);
|
|
}
|
|
|
|
void
|
|
WebGLContextLossHandler::StartTimer(unsigned long delayMS)
|
|
{
|
|
// We can't pass an already_AddRefed through InitWithFuncCallback, so we
|
|
// should do the AddRef/Release manually.
|
|
this->AddRef();
|
|
|
|
mTimer->InitWithFuncCallback(StaticTimerCallback,
|
|
static_cast<void*>(this),
|
|
delayMS,
|
|
nsITimer::TYPE_ONE_SHOT);
|
|
}
|
|
|
|
/*static*/ void
|
|
WebGLContextLossHandler::StaticTimerCallback(nsITimer*, void* voidHandler)
|
|
{
|
|
typedef WebGLContextLossHandler T;
|
|
T* handler = static_cast<T*>(voidHandler);
|
|
|
|
handler->TimerCallback();
|
|
|
|
// Release the AddRef from StartTimer.
|
|
handler->Release();
|
|
}
|
|
|
|
void
|
|
WebGLContextLossHandler::TimerCallback()
|
|
{
|
|
MOZ_ASSERT(NS_GetCurrentThread() == mThread);
|
|
MOZ_ASSERT(mIsTimerRunning);
|
|
mIsTimerRunning = false;
|
|
|
|
if (mIsDisabled)
|
|
return;
|
|
|
|
// If we need to run the timer again, restart it immediately.
|
|
// Otherwise, the code we call into below might *also* try to
|
|
// restart it.
|
|
if (mShouldRunTimerAgain) {
|
|
RunTimer();
|
|
MOZ_ASSERT(mIsTimerRunning);
|
|
}
|
|
|
|
if (mWeakWebGL) {
|
|
mWeakWebGL->UpdateContextLossStatus();
|
|
}
|
|
}
|
|
|
|
void
|
|
WebGLContextLossHandler::RunTimer()
|
|
{
|
|
MOZ_ASSERT(!mIsDisabled);
|
|
|
|
// If the timer was already running, don't restart it here. Instead,
|
|
// wait until the previous call is done, then fire it one more time.
|
|
// This is an optimization to prevent unnecessary
|
|
// cross-communication between threads.
|
|
if (mIsTimerRunning) {
|
|
mShouldRunTimerAgain = true;
|
|
return;
|
|
}
|
|
|
|
if (!NS_IsMainThread()) {
|
|
dom::workers::WorkerPrivate* workerPrivate =
|
|
dom::workers::GetCurrentThreadWorkerPrivate();
|
|
nsCOMPtr<nsIEventTarget> target = workerPrivate->GetEventTarget();
|
|
mTimer->SetTarget(new ContextLossWorkerEventTarget(target));
|
|
if (!mFeatureAdded) {
|
|
workerPrivate->AddFeature(workerPrivate->GetJSContext(), this);
|
|
mFeatureAdded = true;
|
|
}
|
|
}
|
|
|
|
StartTimer(1000);
|
|
|
|
mIsTimerRunning = true;
|
|
mShouldRunTimerAgain = false;
|
|
}
|
|
|
|
void
|
|
WebGLContextLossHandler::DisableTimer()
|
|
{
|
|
if (mIsDisabled)
|
|
return;
|
|
|
|
mIsDisabled = true;
|
|
|
|
if (mFeatureAdded) {
|
|
dom::workers::WorkerPrivate* workerPrivate =
|
|
dom::workers::GetCurrentThreadWorkerPrivate();
|
|
MOZ_RELEASE_ASSERT(workerPrivate);
|
|
workerPrivate->RemoveFeature(workerPrivate->GetJSContext(), this);
|
|
mFeatureAdded = false;
|
|
}
|
|
|
|
// We can't just Cancel() the timer, as sometimes we end up
|
|
// receiving a callback after calling Cancel(). This could cause us
|
|
// to receive the callback after object destruction.
|
|
|
|
// Instead, we let the timer finish, but ignore it.
|
|
|
|
if (!mIsTimerRunning)
|
|
return;
|
|
|
|
mTimer->SetDelay(0);
|
|
}
|
|
|
|
bool
|
|
WebGLContextLossHandler::Notify(JSContext* aCx, dom::workers::Status aStatus)
|
|
{
|
|
bool isWorkerRunning = aStatus < dom::workers::Closing;
|
|
if (!isWorkerRunning && mIsTimerRunning) {
|
|
mIsTimerRunning = false;
|
|
this->Release();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace mozilla
|