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 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290
|
/* -*- 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 "IdleTaskRunner.h"
#include "mozilla/TaskController.h"
#include "nsRefreshDriver.h"
namespace mozilla {
already_AddRefed<IdleTaskRunner> IdleTaskRunner::Create(
const CallbackType& aCallback, const nsACString& aRunnableName,
TimeDuration aStartDelay, TimeDuration aMaxDelay,
TimeDuration aMinimumUsefulBudget, bool aRepeating,
const MayStopProcessingCallbackType& aMayStopProcessing,
const RequestInterruptCallbackType& aRequestInterrupt) {
if (aMayStopProcessing && aMayStopProcessing()) {
return nullptr;
}
RefPtr<IdleTaskRunner> runner = new IdleTaskRunner(
aCallback, aRunnableName, aStartDelay, aMaxDelay, aMinimumUsefulBudget,
aRepeating, aMayStopProcessing, aRequestInterrupt);
runner->Schedule(false); // Initial scheduling shouldn't use idle dispatch.
return runner.forget();
}
class IdleTaskRunnerTask : public Task {
public:
explicit IdleTaskRunnerTask(IdleTaskRunner* aRunner)
: Task(Kind::MainThreadOnly, EventQueuePriority::Idle),
mRunner(aRunner),
mRequestInterrupt(aRunner->mRequestInterrupt) {
SetManager(TaskController::Get()->GetIdleTaskManager());
}
TaskResult Run() override {
if (mRunner) {
// IdleTaskRunner::Run can actually trigger the destruction of the
// IdleTaskRunner. Make sure it doesn't get destroyed before the method
// finished.
RefPtr<IdleTaskRunner> runner(mRunner);
runner->Run();
}
return TaskResult::Complete;
}
void SetIdleDeadline(TimeStamp aDeadline) override {
if (mRunner) {
mRunner->SetIdleDeadline(aDeadline);
}
}
void Cancel() { mRunner = nullptr; }
bool GetName(nsACString& aName) override {
if (mRunner) {
aName.Assign(mRunner->GetName());
} else {
aName = "ExpiredIdleTaskRunner"_ns;
}
return true;
}
void RequestInterrupt(uint32_t aInterruptPriority) override {
if (mRequestInterrupt) {
mRequestInterrupt(aInterruptPriority);
}
}
private:
IdleTaskRunner* mRunner;
// Copied here and invoked even if there is no mRunner currently, to avoid
// race conditions checking mRunner when an interrupt is requested.
IdleTaskRunner::RequestInterruptCallbackType mRequestInterrupt;
};
IdleTaskRunner::IdleTaskRunner(
const CallbackType& aCallback, const nsACString& aRunnableName,
TimeDuration aStartDelay, TimeDuration aMaxDelay,
TimeDuration aMinimumUsefulBudget, bool aRepeating,
const MayStopProcessingCallbackType& aMayStopProcessing,
const RequestInterruptCallbackType& aRequestInterrupt)
: mCallback(aCallback),
mStartTime(TimeStamp::Now() + aStartDelay),
mMaxDelay(aMaxDelay),
mMinimumUsefulBudget(aMinimumUsefulBudget),
mRepeating(aRepeating),
mTimerActive(false),
mMayStopProcessing(aMayStopProcessing),
mRequestInterrupt(aRequestInterrupt),
mName(aRunnableName) {}
void IdleTaskRunner::Run() {
if (!mCallback) {
return;
}
// Deadline is null when called from timer or RunNextCollectorTimer rather
// than during idle time.
TimeStamp now = TimeStamp::Now();
// Note that if called from RunNextCollectorTimer, we may not have reached
// mStartTime yet. Pretend we are overdue for idle time.
bool overdueForIdle = mDeadline.IsNull();
bool didRun = false;
bool allowIdleDispatch = false;
if (mTask) {
// If we find ourselves here we should usually be running from this task,
// but there are exceptions. In any case we're doing the work now and don't
// need our task going forward unless we're re-scheduled.
nsRefreshDriver::CancelIdleTask(mTask);
// Extra safety, make sure a task can never have a dangling ptr.
mTask->Cancel();
mTask = nullptr;
}
if (overdueForIdle || ((now + mMinimumUsefulBudget) < mDeadline)) {
CancelTimer();
didRun = mCallback(mDeadline);
// If we didn't do meaningful work, don't schedule using immediate
// idle dispatch, since that could lead to a loop until the idle
// period ends.
allowIdleDispatch = didRun;
} else if (now >= mDeadline) {
allowIdleDispatch = true;
}
if (mCallback && (mRepeating || !didRun)) {
Schedule(allowIdleDispatch);
} else {
mCallback = nullptr;
}
}
static void TimedOut(nsITimer* aTimer, void* aClosure) {
RefPtr<IdleTaskRunner> runner = static_cast<IdleTaskRunner*>(aClosure);
runner->Run();
}
void IdleTaskRunner::SetIdleDeadline(mozilla::TimeStamp aDeadline) {
mDeadline = aDeadline;
}
void IdleTaskRunner::SetMinimumUsefulBudget(int64_t aMinimumUsefulBudget) {
mMinimumUsefulBudget = TimeDuration::FromMilliseconds(aMinimumUsefulBudget);
}
void IdleTaskRunner::SetTimer(TimeDuration aDelay, nsIEventTarget* aTarget) {
MOZ_ASSERT(NS_IsMainThread());
MOZ_ASSERT(aTarget->IsOnCurrentThread());
// aTarget is always the main thread event target provided from
// NS_DispatchToCurrentThreadQueue(). We ignore aTarget here to ensure that
// CollectorRunner always run specifically the main thread.
SetTimerInternal(aDelay);
}
void IdleTaskRunner::Cancel() {
CancelTimer();
mTimer = nullptr;
mScheduleTimer = nullptr;
mCallback = nullptr;
}
static void ScheduleTimedOut(nsITimer* aTimer, void* aClosure) {
RefPtr<IdleTaskRunner> runnable = static_cast<IdleTaskRunner*>(aClosure);
runnable->Schedule(true);
}
void IdleTaskRunner::Schedule(bool aAllowIdleDispatch) {
MOZ_ASSERT(NS_IsMainThread());
if (!mCallback) {
return;
}
if (mMayStopProcessing && mMayStopProcessing()) {
Cancel();
return;
}
mDeadline = TimeStamp();
TimeStamp now = TimeStamp::Now();
if (aAllowIdleDispatch) {
SetTimerInternal(mMaxDelay);
if (!mTask) {
mTask = new IdleTaskRunnerTask(this);
RefPtr<Task> task(mTask);
TaskController::Get()->AddTask(task.forget());
}
return;
}
bool useRefreshDriver = false;
if (now >= mStartTime) {
// Detect whether the refresh driver is ticking by checking if
// GetIdleDeadlineHint returns its input parameter.
useRefreshDriver =
(nsRefreshDriver::GetIdleDeadlineHint(
now, nsRefreshDriver::IdleCheck::OnlyThisProcessRefreshDriver) !=
now);
}
if (useRefreshDriver) {
if (!mTask) {
// If a task was already scheduled, no point rescheduling.
mTask = new IdleTaskRunnerTask(this);
// RefreshDriver is ticking, let it schedule the idle dispatch.
nsRefreshDriver::DispatchIdleTaskAfterTickUnlessExists(mTask);
}
// Ensure we get called at some point, even if RefreshDriver is stopped.
SetTimerInternal(mMaxDelay);
} else {
// RefreshDriver doesn't seem to be running.
if (!mScheduleTimer) {
mScheduleTimer = NS_NewTimer();
if (!mScheduleTimer) {
return;
}
} else {
mScheduleTimer->Cancel();
}
// We weren't allowed to do idle dispatch immediately, do it after a
// short timeout. (Or wait for our start time if we haven't started yet.)
uint32_t waitToSchedule = 16; /* ms */
if (now < mStartTime) {
// + 1 to round milliseconds up to be sure to wait until after
// mStartTime.
waitToSchedule = (mStartTime - now).ToMilliseconds() + 1;
}
// We rely on timers that target the main thread to be infallible (except
// for very late shutdown edge cases that should not occur, normally).
DebugOnly<nsresult> rv = mScheduleTimer->InitWithNamedFuncCallback(
ScheduleTimedOut, this, waitToSchedule,
nsITimer::TYPE_ONE_SHOT_LOW_PRIORITY, mName);
MOZ_ASSERT(NS_SUCCEEDED(rv));
}
}
IdleTaskRunner::~IdleTaskRunner() { CancelTimer(); }
void IdleTaskRunner::CancelTimer() {
if (mTask) {
nsRefreshDriver::CancelIdleTask(mTask);
mTask->Cancel();
mTask = nullptr;
}
if (mTimer) {
mTimer->Cancel();
}
if (mScheduleTimer) {
mScheduleTimer->Cancel();
}
mTimerActive = false;
}
void IdleTaskRunner::SetTimerInternal(TimeDuration aDelay) {
if (mTimerActive) {
return;
}
ResetTimer(aDelay);
}
void IdleTaskRunner::ResetTimer(TimeDuration aDelay) {
MOZ_ASSERT(NS_IsMainThread());
mTimerActive = false;
if (!mTimer) {
mTimer = NS_NewTimer();
} else {
mTimer->Cancel();
}
if (mTimer) {
// We rely on timers that target the main thread to be infallible (except
// for very late shutdown edge cases that should not occur, normally).
DebugOnly<nsresult> rv = mTimer->InitWithNamedFuncCallback(
TimedOut, this, aDelay.ToMilliseconds(), nsITimer::TYPE_ONE_SHOT,
mName);
MOZ_ASSERT(NS_SUCCEEDED(rv));
mTimerActive = true;
}
}
} // end of namespace mozilla
|