1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/* -*- 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 "RemoteLazyInputStreamThread.h"
#include "ErrorList.h"
#include "mozilla/AppShutdown.h"
#include "mozilla/SchedulerGroup.h"
#include "mozilla/StaticMutex.h"
#include "mozilla/StaticPtr.h"
#include "mozilla/ipc/BackgroundChild.h"
#include "mozilla/ipc/PBackgroundChild.h"
#include "nsXPCOMPrivate.h"
using namespace mozilla::ipc;
namespace mozilla {
namespace {
StaticMutex gRemoteLazyThreadMutex;
StaticRefPtr<RemoteLazyInputStreamThread> gRemoteLazyThread
MOZ_GUARDED_BY(gRemoteLazyThreadMutex);
} // namespace
NS_IMPL_ISUPPORTS(RemoteLazyInputStreamThread, nsIEventTarget,
nsISerialEventTarget, nsIDirectTaskDispatcher)
/* static */
already_AddRefed<RemoteLazyInputStreamThread>
RemoteLazyInputStreamThread::Get() {
StaticMutexAutoLock lock(gRemoteLazyThreadMutex);
return do_AddRef(gRemoteLazyThread);
}
/* static */
already_AddRefed<RemoteLazyInputStreamThread>
RemoteLazyInputStreamThread::GetOrCreate() {
StaticMutexAutoLock lock(gRemoteLazyThreadMutex);
if (AppShutdown::IsInOrBeyond(ShutdownPhase::XPCOMShutdownThreads)) {
return nullptr;
}
if (!gRemoteLazyThread) {
nsCOMPtr<nsIThread> thread;
nsresult rv = NS_NewNamedThread("RemoteLzyStream", getter_AddRefs(thread));
if (NS_WARN_IF(NS_FAILED(rv))) {
return nullptr;
}
gRemoteLazyThread =
new RemoteLazyInputStreamThread(WrapMovingNotNull(thread));
// Dispatch to the main thread, which will set up a listener
// to shut down the thread during XPCOMShutdownThreads.
//
// We do this even if we're already on the main thread, as
// if we're too late in shutdown, this will trigger the thread
// to shut down synchronously.
NS_DispatchToMainThread(NS_NewRunnableFunction(
"RemoteLazyInputStreamThread::MainThreadInit", [] {
RunOnShutdown(
[] {
RefPtr<RemoteLazyInputStreamThread> rlis =
RemoteLazyInputStreamThread::Get();
// This is the only place supposed to ever null our reference.
MOZ_ASSERT(rlis);
rlis->mThread->Shutdown();
StaticMutexAutoLock lock(gRemoteLazyThreadMutex);
gRemoteLazyThread = nullptr;
},
ShutdownPhase::XPCOMShutdownThreads);
}));
}
return do_AddRef(gRemoteLazyThread);
}
// nsIEventTarget
NS_IMETHODIMP_(bool)
RemoteLazyInputStreamThread::IsOnCurrentThreadInfallible() {
return mThread->IsOnCurrentThread();
}
NS_IMETHODIMP
RemoteLazyInputStreamThread::IsOnCurrentThread(bool* aRetval) {
return mThread->IsOnCurrentThread(aRetval);
}
NS_IMETHODIMP
RemoteLazyInputStreamThread::Dispatch(already_AddRefed<nsIRunnable> aRunnable,
DispatchFlags aFlags) {
return mThread->Dispatch(std::move(aRunnable), aFlags);
}
NS_IMETHODIMP
RemoteLazyInputStreamThread::DispatchFromScript(nsIRunnable* aRunnable,
DispatchFlags aFlags) {
return mThread->Dispatch(do_AddRef(aRunnable), aFlags);
}
NS_IMETHODIMP
RemoteLazyInputStreamThread::DelayedDispatch(already_AddRefed<nsIRunnable>,
uint32_t) {
return NS_ERROR_NOT_IMPLEMENTED;
}
NS_IMETHODIMP
RemoteLazyInputStreamThread::RegisterShutdownTask(
nsITargetShutdownTask* aTask) {
return mThread->RegisterShutdownTask(aTask);
}
NS_IMETHODIMP
RemoteLazyInputStreamThread::UnregisterShutdownTask(
nsITargetShutdownTask* aTask) {
return mThread->UnregisterShutdownTask(aTask);
}
NS_IMETHODIMP
RemoteLazyInputStreamThread::DispatchDirectTask(
already_AddRefed<nsIRunnable> aRunnable) {
nsCOMPtr<nsIRunnable> runnable(aRunnable);
nsCOMPtr<nsIDirectTaskDispatcher> dispatcher = do_QueryInterface(mThread);
if (dispatcher) {
return dispatcher->DispatchDirectTask(runnable.forget());
}
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP RemoteLazyInputStreamThread::DrainDirectTasks() {
nsCOMPtr<nsIDirectTaskDispatcher> dispatcher = do_QueryInterface(mThread);
if (dispatcher) {
return dispatcher->DrainDirectTasks();
}
return NS_ERROR_FAILURE;
}
NS_IMETHODIMP RemoteLazyInputStreamThread::HaveDirectTasks(bool* aValue) {
nsCOMPtr<nsIDirectTaskDispatcher> dispatcher = do_QueryInterface(mThread);
if (dispatcher) {
return dispatcher->HaveDirectTasks(aValue);
}
return NS_ERROR_FAILURE;
}
bool IsOnDOMFileThread() {
RefPtr<RemoteLazyInputStreamThread> rlis = RemoteLazyInputStreamThread::Get();
return rlis && rlis->IsOnCurrentThread();
}
void AssertIsOnDOMFileThread() { MOZ_ASSERT(IsOnDOMFileThread()); }
} // namespace mozilla
|