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
|
/*
* Copyright (C) 2010 Apple Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS''
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
* THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include <wtf/RunLoop.h>
#include <wtf/NeverDestroyed.h>
#include <wtf/StdLibExtras.h>
namespace WTF {
static RunLoop* s_mainRunLoop;
#if USE(WEB_THREAD)
static RunLoop* s_webRunLoop;
#endif
// Helper class for ThreadSpecificData.
class RunLoop::Holder {
WTF_MAKE_FAST_ALLOCATED;
public:
Holder()
: m_runLoop(adoptRef(*new RunLoop))
{
}
~Holder()
{
m_runLoop->threadWillExit();
}
RunLoop& runLoop() { return m_runLoop; }
private:
Ref<RunLoop> m_runLoop;
};
void RunLoop::initializeMain()
{
RELEASE_ASSERT(!s_mainRunLoop);
s_mainRunLoop = &RunLoop::current();
}
auto RunLoop::runLoopHolder() -> ThreadSpecific<Holder>&
{
static LazyNeverDestroyed<ThreadSpecific<Holder>> runLoopHolder;
static std::once_flag onceKey;
std::call_once(onceKey, [&] {
runLoopHolder.construct();
});
return runLoopHolder;
}
RunLoop& RunLoop::current()
{
return runLoopHolder()->runLoop();
}
RunLoop& RunLoop::main()
{
ASSERT(s_mainRunLoop);
return *s_mainRunLoop;
}
#if USE(WEB_THREAD)
void RunLoop::initializeWeb()
{
RELEASE_ASSERT(!s_webRunLoop);
s_webRunLoop = &RunLoop::current();
}
RunLoop& RunLoop::web()
{
ASSERT(s_webRunLoop);
return *s_webRunLoop;
}
RunLoop* RunLoop::webIfExists()
{
return s_webRunLoop;
}
#endif
bool RunLoop::isMain()
{
ASSERT(s_mainRunLoop);
// Avoid constructing the RunLoop for the current thread if it has not been created yet.
return runLoopHolder().isSet() && s_mainRunLoop == &RunLoop::current();
}
void RunLoop::performWork()
{
bool didSuspendFunctions = false;
{
Locker locker { m_nextIterationLock };
// If the RunLoop re-enters or re-schedules, we're expected to execute all functions in order.
while (!m_currentIteration.isEmpty())
m_nextIteration.prepend(m_currentIteration.takeLast());
m_currentIteration = std::exchange(m_nextIteration, { });
}
while (!m_currentIteration.isEmpty()) {
if (m_isFunctionDispatchSuspended) {
didSuspendFunctions = true;
break;
}
auto function = m_currentIteration.takeFirst();
function();
}
// Suspend only for a single cycle.
m_isFunctionDispatchSuspended = false;
m_hasSuspendedFunctions = didSuspendFunctions;
if (m_hasSuspendedFunctions)
wakeUp();
}
void RunLoop::dispatch(Function<void()>&& function)
{
RELEASE_ASSERT(function);
bool needsWakeup = false;
{
Locker locker { m_nextIterationLock };
needsWakeup = m_nextIteration.isEmpty();
m_nextIteration.append(WTFMove(function));
}
if (needsWakeup)
wakeUp();
}
void RunLoop::dispatchAfter(Seconds delay, Function<void()>&& function)
{
RELEASE_ASSERT(function);
auto timer = new DispatchTimer(*this);
timer->setFunction([timer, function = WTFMove(function)] {
function();
delete timer;
});
timer->startOneShot(delay);
}
void RunLoop::suspendFunctionDispatchForCurrentCycle()
{
// Don't suspend if there are already suspended functions to avoid unexecuted function pile-up.
if (m_isFunctionDispatchSuspended || m_hasSuspendedFunctions)
return;
m_isFunctionDispatchSuspended = true;
// Wake up (even if there is nothing to do) to disable suspension.
wakeUp();
}
void RunLoop::threadWillExit()
{
m_currentIteration.clear();
{
Locker locker { m_nextIterationLock };
m_nextIteration.clear();
}
}
} // namespace WTF
|