mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 22:38:35 +00:00
d1af43433c
- Bug 1187817. Part 1 - Move Set{Volume,PlaybackRate,PreservesPitch} to the audio thread. r=kinetik. (a234a7080)
- Bug 1187817. Part 2 - remove unused code. r=kinetik. (836c52a19)
- Bug 1187763. Part 1 - move while loop out of WaitingForAudioToPlay(). r=kinetik. (a80d70f87)
- Bug 1187763. Part 2 - extract some code of AudioLoop() into its own function. r=kinetik. (275b8bfb6)
- Bug 1187763. Part 3 - refactor AudioSink::AudioLoop into a series of events. r=kinetik (7eb3f506f)
- Bug 1187817. Part 3 - move SetPlaying to the audio thread. r=kinetik. (0fef85968)
- Bug 1187817. Part 4 - move some code in Shutdown to the audio thread. r=kinetik. (8c73fbe6d)
- Bug 1187817. Part 5 - assert some code in the audio thread and don't enter the monitor. r=kinetik. (64de4616f)
- move include (f842b4b1e)
- Bug 1163486 - Update test to use new MP4Demuxer. r=bholley (b853be477)
- Bug 1190496 - Namespace the SharedThreadPool.h include. r=cpearce (196d25d42)
- Bug 1190496 - Hoist SharedThreadPool into xpcom. r=froydnj (3dad8176f)
- Bug 1190492 - Hoist AbstractThread and TaskDispatcher to xpcom. r=froydnj (c3329fa29)
- bug 1166107 documentation of mWaitForInternalDrain thread access r=gerald (f762764b1)
- correct comment (b623b2959)
- revert demuxer check from promise reject to assert like in 1156708 (f540b270c)
- more chekcs back to asserts (7e82a0f99)
- space (733bd85a3)
- Bug 1188220: Allow disabling HW acceleration even when SharedDecoderManager isn't used. r=cpearce (909a86682)
- bug 1161903 ensure pending DrainComplete is not run after Flush() r=cpearce (648cabbb7)
- Bug 1158089 - Fall back to d3d9 DXVA if d3d11 initialization fails. r=cpearce (84b3a8e6d)
145 lines
4.4 KiB
C++
145 lines
4.4 KiB
C++
/* -*- 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/. */
|
|
|
|
#include "mozilla/AbstractThread.h"
|
|
|
|
#include "mozilla/ClearOnShutdown.h"
|
|
#include "mozilla/Maybe.h"
|
|
#include "mozilla/StaticPtr.h"
|
|
#include "mozilla/TaskQueue.h"
|
|
#include "mozilla/TaskDispatcher.h"
|
|
#include "mozilla/unused.h"
|
|
|
|
#include "nsThreadUtils.h"
|
|
#include "nsContentUtils.h"
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
StaticRefPtr<AbstractThread> sMainThread;
|
|
ThreadLocal<AbstractThread*> AbstractThread::sCurrentThreadTLS;
|
|
|
|
class XPCOMThreadWrapper : public AbstractThread
|
|
{
|
|
public:
|
|
explicit XPCOMThreadWrapper(nsIThread* aTarget, bool aRequireTailDispatch)
|
|
: AbstractThread(aRequireTailDispatch)
|
|
, mTarget(aTarget)
|
|
{
|
|
// Our current mechanism of implementing tail dispatch is appshell-specific.
|
|
// This is because a very similar mechanism already exists on the main
|
|
// thread, and we want to avoid making event dispatch on the main thread
|
|
// more complicated than it already is.
|
|
//
|
|
// If you need to use tail dispatch on other XPCOM threads, you'll need to
|
|
// implement an nsIThreadObserver to fire the tail dispatcher at the
|
|
// appropriate times.
|
|
MOZ_ASSERT_IF(aRequireTailDispatch,
|
|
NS_IsMainThread() && NS_GetCurrentThread() == aTarget);
|
|
}
|
|
|
|
virtual void Dispatch(already_AddRefed<nsIRunnable> aRunnable,
|
|
DispatchFailureHandling aFailureHandling = AssertDispatchSuccess,
|
|
DispatchReason aReason = NormalDispatch) override
|
|
{
|
|
nsCOMPtr<nsIRunnable> r = aRunnable;
|
|
AbstractThread* currentThread;
|
|
if (aReason != TailDispatch && (currentThread = GetCurrent()) && RequiresTailDispatch(currentThread)) {
|
|
currentThread->TailDispatcher().AddTask(this, r.forget(), aFailureHandling);
|
|
return;
|
|
}
|
|
|
|
nsresult rv = mTarget->Dispatch(r, NS_DISPATCH_NORMAL);
|
|
MOZ_DIAGNOSTIC_ASSERT(aFailureHandling == DontAssertDispatchSuccess || NS_SUCCEEDED(rv));
|
|
unused << rv;
|
|
}
|
|
|
|
virtual bool IsCurrentThreadIn() override
|
|
{
|
|
// Compare NSPR threads so that this works after shutdown when
|
|
// NS_GetCurrentThread starts returning null.
|
|
PRThread* thread = nullptr;
|
|
mTarget->GetPRThread(&thread);
|
|
bool in = PR_GetCurrentThread() == thread;
|
|
MOZ_ASSERT(in == (GetCurrent() == this));
|
|
return in;
|
|
}
|
|
|
|
void FireTailDispatcher()
|
|
{
|
|
MOZ_DIAGNOSTIC_ASSERT(mTailDispatcher.isSome());
|
|
mTailDispatcher.ref().DrainDirectTasks();
|
|
mTailDispatcher.reset();
|
|
}
|
|
|
|
virtual TaskDispatcher& TailDispatcher() override
|
|
{
|
|
MOZ_ASSERT(this == sMainThread); // See the comment in the constructor.
|
|
MOZ_ASSERT(IsCurrentThreadIn());
|
|
if (!mTailDispatcher.isSome()) {
|
|
mTailDispatcher.emplace(/* aIsTailDispatcher = */ true);
|
|
|
|
nsCOMPtr<nsIRunnable> event = NS_NewRunnableMethod(this, &XPCOMThreadWrapper::FireTailDispatcher);
|
|
nsContentUtils::RunInStableState(event.forget());
|
|
}
|
|
|
|
return mTailDispatcher.ref();
|
|
}
|
|
|
|
virtual nsIThread* AsXPCOMThread() override { return mTarget; }
|
|
|
|
private:
|
|
nsRefPtr<nsIThread> mTarget;
|
|
Maybe<AutoTaskDispatcher> mTailDispatcher;
|
|
};
|
|
|
|
bool
|
|
AbstractThread::RequiresTailDispatch(AbstractThread* aThread) const
|
|
{
|
|
// We require tail dispatch if both the source and destination
|
|
// threads support it.
|
|
return SupportsTailDispatch() && aThread->SupportsTailDispatch();
|
|
}
|
|
|
|
AbstractThread*
|
|
AbstractThread::MainThread()
|
|
{
|
|
MOZ_ASSERT(sMainThread);
|
|
return sMainThread;
|
|
}
|
|
|
|
void
|
|
AbstractThread::InitStatics()
|
|
{
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
MOZ_ASSERT(!sMainThread);
|
|
nsCOMPtr<nsIThread> mainThread;
|
|
NS_GetMainThread(getter_AddRefs(mainThread));
|
|
MOZ_DIAGNOSTIC_ASSERT(mainThread);
|
|
sMainThread = new XPCOMThreadWrapper(mainThread.get(), /* aRequireTailDispatch = */ true);
|
|
ClearOnShutdown(&sMainThread);
|
|
|
|
if (!sCurrentThreadTLS.init()) {
|
|
MOZ_CRASH();
|
|
}
|
|
sCurrentThreadTLS.set(sMainThread);
|
|
}
|
|
|
|
void
|
|
AbstractThread::DispatchStateChange(already_AddRefed<nsIRunnable> aRunnable)
|
|
{
|
|
GetCurrent()->TailDispatcher().AddStateChangeTask(this, Move(aRunnable));
|
|
}
|
|
|
|
/* static */ void
|
|
AbstractThread::DispatchDirectTask(already_AddRefed<nsIRunnable> aRunnable)
|
|
{
|
|
GetCurrent()->TailDispatcher().AddDirectTask(Move(aRunnable));
|
|
}
|
|
|
|
} // namespace mozilla
|