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 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim:expandtab:shiftwidth=2:tabstop=2:
*/
/* 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/. */
#ifndef mozilla_dom_WebTaskScheduler_h
#define mozilla_dom_WebTaskScheduler_h
#include "TaskSignal.h"
#include "mozilla/Variant.h"
#include "mozilla/dom/AbortFollower.h"
#include "mozilla/dom/Promise.h"
#include "mozilla/dom/TimeoutHandler.h"
#include "mozilla/dom/WebTaskSchedulingBinding.h"
#include "nsClassHashtable.h"
#include "nsPIDOMWindow.h"
#include "nsThreadUtils.h"
#include "nsWrapperCache.h"
namespace mozilla::dom {
// Keep tracks of the number of same-event-loop-high-priority-queues
// (User_blocking or User_visible) that have at least one task scheduled.
MOZ_CONSTINIT extern uint32_t
gNumNormalOrHighPriorityQueuesHaveTaskScheduledMainThread;
// https://wicg.github.io/scheduling-apis/#scheduling-state
class WebTaskSchedulingState {
public:
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(WebTaskSchedulingState)
NS_DECL_CYCLE_COLLECTION_NATIVE_CLASS(WebTaskSchedulingState)
void Reset() {
mAbortSource = nullptr;
mPrioritySource = nullptr;
}
void SetAbortSource(AbortSignal* aAbortSource) {
mAbortSource = aAbortSource;
}
AbortSignal* GetAbortSource() { return mAbortSource; }
TaskSignal* GetPrioritySource() { return mPrioritySource; }
void SetPrioritySource(already_AddRefed<TaskSignal> aPrioritySource) {
mPrioritySource = aPrioritySource;
MOZ_ASSERT(mPrioritySource->IsTaskSignal());
}
private:
~WebTaskSchedulingState() = default;
RefPtr<AbortSignal> mAbortSource;
RefPtr<TaskSignal> mPrioritySource;
};
class WebTaskQueueHashKey : public PLDHashEntryHdr {
public:
enum { ALLOW_MEMMOVE = false };
typedef const WebTaskQueueHashKey& KeyType;
typedef const WebTaskQueueHashKey* KeyTypePointer;
using StaticPriorityTaskQueueKey = uint32_t;
using DynamicPriorityTaskQueueKey = RefPtr<TaskSignal>;
// When WebTaskQueueTypeKey is RefPtr<TaskSignal>, this
// class holds a strong reference to a cycle collectable
// objects.
using WebTaskQueueTypeKey =
mozilla::Variant<StaticPriorityTaskQueueKey, DynamicPriorityTaskQueueKey>;
WebTaskQueueHashKey(StaticPriorityTaskQueueKey aKey, bool aIsContinuation)
: mKey(aKey), mIsContinuation(aIsContinuation) {}
WebTaskQueueHashKey(DynamicPriorityTaskQueueKey aKey, bool aIsContinuation)
: mKey(aKey), mIsContinuation(aIsContinuation) {}
explicit WebTaskQueueHashKey(KeyTypePointer aKey)
: mKey(aKey->mKey), mIsContinuation(aKey->mIsContinuation) {}
explicit WebTaskQueueHashKey(KeyType aKey)
: mKey(aKey.mKey), mIsContinuation(aKey.mIsContinuation) {}
WebTaskQueueHashKey(WebTaskQueueHashKey&& aToMove) = default;
~WebTaskQueueHashKey() = default;
KeyType GetKey() const { return *this; }
bool KeyEquals(KeyTypePointer aKey) const {
return aKey->mKey == mKey && aKey->mIsContinuation == mIsContinuation;
}
// https://wicg.github.io/scheduling-apis/#scheduler-task-queue-effective-priority
uint8_t EffectivePriority() const {
switch (Priority()) {
case TaskPriority::Background:
return mIsContinuation ? 1 : 0;
case TaskPriority::User_visible:
return mIsContinuation ? 3 : 2;
case TaskPriority::User_blocking:
return mIsContinuation ? 5 : 4;
default:
MOZ_ASSERT_UNREACHABLE("Unexpected priority");
return 0;
}
}
TaskPriority Priority() const {
return mKey.match(
[&](const StaticPriorityTaskQueueKey& aStaticKey) {
return static_cast<TaskPriority>(aStaticKey);
},
[&](const DynamicPriorityTaskQueueKey& aDynamicKey) {
return aDynamicKey->Priority();
});
}
static KeyTypePointer KeyToPointer(KeyType& aKey) { return &aKey; }
static PLDHashNumber HashKey(KeyTypePointer aKey) {
const WebTaskQueueTypeKey& key = aKey->mKey;
return key.match(
[&](const StaticPriorityTaskQueueKey& aStaticKey) {
return mozilla::HashGeneric(aStaticKey, aKey->mIsContinuation);
},
[&](const DynamicPriorityTaskQueueKey& aDynamicKey) {
return mozilla::HashGeneric(aDynamicKey.get(), aKey->mIsContinuation);
});
}
WebTaskQueueTypeKey& GetTypeKey() { return mKey; }
const WebTaskQueueTypeKey& GetTypeKey() const { return mKey; }
private:
WebTaskQueueTypeKey mKey;
const bool mIsContinuation;
};
class WebTask : public LinkedListElement<RefPtr<WebTask>>,
public AbortFollower,
public SupportsWeakPtr {
friend class WebTaskScheduler;
public:
MOZ_CAN_RUN_SCRIPT bool Run();
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS(WebTask)
WebTask(uint32_t aEnqueueOrder,
const Maybe<SchedulerPostTaskCallback&>& aCallback,
WebTaskSchedulingState* aSchedulingState, Promise* aPromise,
WebTaskScheduler* aWebTaskScheduler,
const WebTaskQueueHashKey& aHashKey);
void RunAbortAlgorithm() override;
bool HasScheduled() const { return mHasScheduled; }
uint32_t EnqueueOrder() const { return mEnqueueOrder; }
void ClearWebTaskScheduler() { mScheduler = nullptr; }
const WebTaskQueueHashKey& TaskQueueHashKey() const {
return mWebTaskQueueHashKey;
}
TaskPriority Priority() const { return mWebTaskQueueHashKey.Priority(); }
private:
void SetHasScheduled() {
MOZ_ASSERT(!mHasScheduled);
mHasScheduled = true;
}
uint32_t mEnqueueOrder;
RefPtr<SchedulerPostTaskCallback> mCallback;
RefPtr<Promise> mPromise;
bool mHasScheduled;
RefPtr<WebTaskSchedulingState> mSchedulingState;
// WebTaskScheduler owns WebTaskQueue, and WebTaskQueue owns WebTask, so it's
// okay to use a raw pointer
WebTaskScheduler* mScheduler;
// Depending on whether this task was scheduled with static priority
// or dynamic priority, it could hold a reference reference to TaskSignal
// (cycle collectable object).
WebTaskQueueHashKey mWebTaskQueueHashKey;
~WebTask() = default;
};
class WebTaskQueue {
public:
static constexpr int EffectivePriorityCount = 6;
explicit WebTaskQueue(WebTaskScheduler* aScheduler) : mScheduler(aScheduler) {
MOZ_ASSERT(aScheduler);
}
WebTaskQueue(WebTaskQueue&& aWebTaskQueue) = default;
~WebTaskQueue();
TaskPriority Priority() const { return mPriority; }
void SetPriority(TaskPriority aNewPriority) { mPriority = aNewPriority; }
LinkedList<RefPtr<WebTask>>& Tasks() { return mTasks; }
const LinkedList<RefPtr<WebTask>>& Tasks() const { return mTasks; }
void AddTask(WebTask* aTask) { mTasks.insertBack(aTask); }
bool IsEmpty() const { return mTasks.isEmpty(); }
// TODO: To optimize it, we could have the scheduled and unscheduled
// tasks stored separately.
WebTask* GetFirstScheduledTask() {
for (const auto& task : mTasks) {
if (task->HasScheduled()) {
return task;
}
}
return nullptr;
}
bool HasScheduledTasks() const {
if (mTasks.isEmpty()) {
return false;
}
for (const auto& task : mTasks) {
if (task->HasScheduled()) {
return true;
}
}
return false;
}
private:
TaskPriority mPriority = TaskPriority::User_visible;
LinkedList<RefPtr<WebTask>> mTasks;
// WebTaskScheduler owns WebTaskQueue as a hashtable value, so using a raw
// pointer points to WebTaskScheduler is ok.
WebTaskScheduler* mScheduler;
};
class WebTaskSchedulerMainThread;
class WebTaskSchedulerWorker;
class WebTaskScheduler : public nsWrapperCache,
public SupportsWeakPtr,
public LinkedListElement<WebTaskScheduler> {
friend class DelayedWebTaskHandler;
public:
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(WebTaskScheduler)
NS_DECL_CYCLE_COLLECTION_NATIVE_WRAPPERCACHE_CLASS(WebTaskScheduler)
static already_AddRefed<WebTaskSchedulerMainThread> CreateForMainThread(
nsGlobalWindowInner* aWindow);
static already_AddRefed<WebTaskSchedulerWorker> CreateForWorker(
WorkerPrivate* aWorkerPrivate);
explicit WebTaskScheduler(nsIGlobalObject* aParent);
already_AddRefed<Promise> PostTask(SchedulerPostTaskCallback& aCallback,
const SchedulerPostTaskOptions& aOptions);
already_AddRefed<Promise> YieldImpl();
nsIGlobalObject* GetParentObject() const { return mParent; }
virtual JSObject* WrapObject(JSContext* cx,
JS::Handle<JSObject*> aGivenProto) override;
WebTask* GetNextTask(bool aIsMainThread);
virtual void Disconnect();
void RunTaskSignalPriorityChange(TaskSignal* aTaskSignal);
void DeleteEntryFromWebTaskQueueMap(const WebTaskQueueHashKey& aKey) {
DebugOnly<bool> result = mWebTaskQueues.Remove(aKey);
MOZ_ASSERT(result);
}
void NotifyTaskWillBeRunOrAborted(const WebTask* aWebTask);
virtual void IncreaseNumNormalOrHighPriorityQueuesHaveTaskScheduled() = 0;
virtual void DecreaseNumNormalOrHighPriorityQueuesHaveTaskScheduled() = 0;
protected:
virtual ~WebTaskScheduler() = default;
nsCOMPtr<nsIGlobalObject> mParent;
private:
struct SelectedTaskQueueData {
WebTaskQueueHashKey mSelectedQueueHashKey;
WebTaskQueue& mSelectedTaskQueue;
};
already_AddRefed<WebTask> CreateTask(
AbortSignal* aAbortSignal, TaskSignal* aTaskSignal,
const Optional<TaskPriority>& aPriority, const bool aIsContinuation,
const Maybe<SchedulerPostTaskCallback&>& aCallback,
WebTaskSchedulingState* aSchedulingState, Promise* aPromise);
bool DispatchTask(WebTask* aTask, EventQueuePriority aPriority);
SelectedTaskQueueData SelectTaskQueue(TaskSignal* aSignal,
const Optional<TaskPriority>& aPriority,
const bool aIsContinuation);
virtual nsresult SetTimeoutForDelayedTask(WebTask* aTask, uint64_t aDelay,
EventQueuePriority aPriority) = 0;
virtual bool DispatchEventLoopRunnable(EventQueuePriority aPriority) = 0;
EventQueuePriority GetEventQueuePriority(const TaskPriority& aPriority,
bool aIsContinuation) const;
nsTHashMap<WebTaskQueueHashKey, WebTaskQueue>& GetWebTaskQueues() {
return mWebTaskQueues;
}
nsTHashMap<WebTaskQueueHashKey, WebTaskQueue> mWebTaskQueues;
};
class DelayedWebTaskHandler final : public TimeoutHandler {
public:
DelayedWebTaskHandler(JSContext* aCx, WebTaskScheduler* aScheduler,
WebTask* aTask, EventQueuePriority aPriority)
: TimeoutHandler(aCx), mScheduler(aScheduler), mWebTask(aTask) {}
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS(DelayedWebTaskHandler)
MOZ_CAN_RUN_SCRIPT bool Call(const char* /* unused */) override {
if (mScheduler && mWebTask && mWebTask->isInList()) {
MOZ_ASSERT(!mWebTask->HasScheduled());
if (!mScheduler->DispatchTask(mWebTask, mPriority)) {
return false;
}
}
return true;
}
private:
~DelayedWebTaskHandler() override = default;
WeakPtr<WebTaskScheduler> mScheduler;
// WebTask gets added to WebTaskQueue, and WebTaskQueue keeps its alive.
WeakPtr<WebTask> mWebTask;
EventQueuePriority mPriority;
};
} // namespace mozilla::dom
#endif
|