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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241
|
/*
* Copyright (C) 2018 Igalia, S.L.
* Copyright (C) 2018 Metrological Group B.V.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Library General Public License for more details.
*
* You should have received a copy of the GNU Library General Public License
* aint with this library; see the file COPYING.LIB. If not, write to
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#pragma once
#include <wtf/Condition.h>
#include <wtf/Deque.h>
#include <wtf/Function.h>
#include <wtf/Lock.h>
#include <wtf/RunLoop.h>
#include <wtf/StdLibExtras.h>
namespace WebCore {
/* AbortableTaskQueue is a high-level synchronization object for cases where abortable work is done in
* background thread(s) that sometimes needs to post tasks to the main thread.
*
* The tasks posted by the background thread(s) to the main thread may be asynchronous, using enqueueTask(),
* which returns immediately; or synchronous, using enqueueTaskAndWait(), which blocks the calling
* background thread until the task is run by the main thread (possibly returning a value).
*
* What makes AbortableTaskQueue different from other task queueing mechanisms is that it provides a two-phase
* protocol for aborting the work in the background thread in presence of queued tasks without deadlocks or
* late notification bugs.
*
* Without a two-phase design deadlocks would occur when attempting an abort if a background thread was
* blocked in a synchronous task and needed to return from there for the abort to be handled. Also, without
* a design like this, tasks already enqueued at that point or soon thereafter until the abort is complete
* would still be handled by the main thread, even though we don't want to anymore.
*
* Aborting background processing with AbortableTaskQueue is a several step process:
*
* 1. Call abortableTaskQueue.startAborting() -- This will make any current or future (until further notice)
* synchronous tasks fail immediately, so that we don't deadlock in the next step. Also, tasks of any kind
* already enqueued will not be run.
*
* 2. Send the abort signal to the background threads. This is completely application specific. For instance,
* in the AppendPipeline case you would flush or reset the GStreamer pipeline here. Wait until all the
* background threads have finished aborting.
*
* 3. Call abortableTaskQueue.finishAborting() -- This will allow new tasks queued from this point on to be
* handled just as before the abort was made.
*
* 4. After this, the background thread(s) can be put to work again safely.
*
* This class is used for handling demuxer events in AppendPipeline, taking into account demuxing can be
* aborted at any moment if SourceBuffer.abort() is called or the SourceBuffer is destroyed. */
class AbortableTaskQueue final {
WTF_MAKE_NONCOPYABLE(AbortableTaskQueue);
public:
AbortableTaskQueue()
{
ASSERT(isMainThread());
}
~AbortableTaskQueue()
{
ASSERT(isMainThread());
ASSERT(!m_lock.isHeld());
ASSERT(m_channel.isEmpty());
}
// ===========================
// Methods for the main thread
// ===========================
// Starts an abort process.
//
// Tasks already queued will be discarded.
//
// Until finishAborting is called, all present and future calls to enqueueTaskAndWait() will immediately
// return an empty optional.
//
// This method is idempotent.
void startAborting()
{
ASSERT(isMainThread());
{
Locker locker { m_lock };
m_aborting = true;
cancelAllTasks();
}
m_abortedOrResponseSet.notifyAll();
}
// Declares the previous abort finished.
//
// In order to avoid race conditions the background threads must be unable to post tasks at this point.
void finishAborting()
{
ASSERT(isMainThread());
Locker locker { m_lock };
ASSERT(m_aborting);
m_aborting = false;
}
// ==================================
// Methods for the background threads
// ==================================
// Enqueue a task to be run on the main thread. The task may be cancelled if an abort starts before it's
// handled.
void enqueueTask(Function<void()>&& mainThreadTaskHandler)
{
ASSERT(!isMainThread());
Locker locker { m_lock };
if (m_aborting)
return;
postTask(WTFMove(mainThreadTaskHandler));
}
// Enqueue a task to be run on the main thread and wait for it to return. The return value of the task is
// forwarded to the background thread, wrapped in an optional.
//
// If we are aborting, the call finishes immediately, returning an empty optional.
//
// It is allowed for the main thread task handler to abort the AbortableTaskQueue. In that case, the return
// value is discarded and the caller receives an empty optional.
template<typename R>
std::optional<R> enqueueTaskAndWait(Function<R()>&& mainThreadTaskHandler)
{
// Don't deadlock the main thread with itself.
ASSERT(!isMainThread());
Locker locker { m_lock };
if (m_aborting)
return std::nullopt;
std::optional<R> response = std::nullopt;
postTask([this, &response, &mainThreadTaskHandler]() {
R responseValue = mainThreadTaskHandler();
Locker locker { m_lock };
if (!m_aborting)
response = WTFMove(responseValue);
m_abortedOrResponseSet.notifyAll();
});
m_abortedOrResponseSet.wait(m_lock, [this, &response]() {
assertIsHeld(m_lock);
return m_aborting || response;
});
return response;
}
// This is class is provided for convenience when you want to use enqueueTaskAndWait() but
// you don't need any particular data from the main thread in return and just knowing that it finished
// running the handler function is enough.
class Void { };
private:
// Protected state:
// Main thread: read-write. Writes must be made with the lock.
// Background threads: read only. Reads must be made with the lock.
class Task : public ThreadSafeRefCounted<Task> {
WTF_MAKE_NONCOPYABLE(Task);
WTF_MAKE_FAST_ALLOCATED(Task);
public:
static Ref<Task> create(AbortableTaskQueue* taskQueue, Function<void()>&& taskCallback)
{
return adoptRef(*new Task(taskQueue, WTFMove(taskCallback)));
}
bool isCancelled() const
{
return !m_taskQueue;
}
void cancel()
{
ASSERT(!isCancelled());
m_taskCallback = nullptr;
m_taskQueue = nullptr;
}
void dispatch()
{
ASSERT(isMainThread());
if (isCancelled())
return;
{
Locker lock { m_taskQueue->m_lock };
ASSERT(this == m_taskQueue->m_channel.first().ptr());
m_taskQueue->m_channel.removeFirst();
}
m_taskCallback();
}
private:
AbortableTaskQueue* m_taskQueue;
Function<void()> m_taskCallback;
Task(AbortableTaskQueue* taskQueue, Function<void()>&& taskCallback)
: m_taskQueue(taskQueue), m_taskCallback(WTFMove(taskCallback))
{ }
};
void postTask(Function<void()>&& callback) WTF_REQUIRES_LOCK(m_lock)
{
ASSERT(m_lock.isHeld());
Ref<Task> task = Task::create(this, WTFMove(callback));
m_channel.append(task.copyRef());
RunLoop::main().dispatch([task = WTFMove(task)]() { task->dispatch(); });
}
void cancelAllTasks() WTF_REQUIRES_LOCK(m_lock)
{
ASSERT(isMainThread());
ASSERT(m_lock.isHeld());
for (Ref<Task>& task : m_channel)
task->cancel();
m_channel.clear();
}
bool m_aborting WTF_GUARDED_BY_LOCK(m_lock) { false };
Lock m_lock;
Condition m_abortedOrResponseSet;
Deque<Ref<Task>> m_channel WTF_GUARDED_BY_LOCK(m_lock);
};
} // namespace WebCore
|