-
Notifications
You must be signed in to change notification settings - Fork 394
Expand file tree
/
Copy pathPriorityQueue.js
More file actions
371 lines (255 loc) · 6.54 KB
/
PriorityQueue.js
File metadata and controls
371 lines (255 loc) · 6.54 KB
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
365
366
367
368
369
370
371
import { Scheduler } from './Scheduler.js';
/**
* Error thrown when a queued item's promise is rejected because the item was removed
* before its callback could run.
*
* @extends Error
*/
export class PriorityQueueItemRemovedError extends Error {
constructor() {
super( 'PriorityQueue: Item removed' );
this.name = 'PriorityQueueItemRemovedError';
}
}
/**
* @callback PriorityCallback
* @param {any} a
* @param {any} b
* @returns {number}
*/
/**
* @callback SchedulingCallback
* @param {Function} func
*/
/**
* @callback ItemCallback
* @param {any} item
* @returns {Promise<any>|any}
*/
/**
* @callback FilterCallback
* @param {any} item
* @returns {boolean}
*/
/**
* Priority queue for scheduling async work with a concurrency limit. Items are
* sorted by `priorityCallback` and dispatched up to `maxJobs` at a time.
*/
export class PriorityQueue {
/**
* returns whether tasks are queued or actively running
* @readonly
* @type {boolean}
*/
get running() {
return this.items.length !== 0 || this.currJobs !== 0;
}
/**
* Callback used to schedule when to run jobs next, so more work doesn't happen in a
* single frame than there is time for. Should be overridden in scenarios where
* `requestAnimationFrame` is not reliable, such as when running in WebXR.
* @type {SchedulingCallback}
* @default requestAnimationFrame
* @deprecated
*/
get schedulingCallback() {
return this._schedulingCallback;
}
set schedulingCallback( cb ) {
console.log( 'PriorityQueue: Setting "schedulingCallback" has been deprecated. Use Scheduler to switch to an XRSession rAF, instead.' );
this._schedulingCallback = cb;
}
constructor() {
/**
* Maximum number of jobs that can run concurrently.
* @type {number}
* @default 6
*/
this.maxJobs = 6;
this.items = [];
this.callbacks = new Map();
this.currJobs = 0;
this.scheduled = false;
/**
* If true, job runs are automatically scheduled after `add` and after each job completes.
* @type {boolean}
* @default true
*/
this.autoUpdate = true;
/**
* Comparator used to sort queued items. Higher-priority items should sort last
* (i.e. return positive when `itemA` should run before `itemB`).
* @type {PriorityCallback|null}
* @default null
*/
this.priorityCallback = null;
this._schedulingCallback = func => {
Scheduler.requestAnimationFrame( func );
};
this._runjobs = () => {
this.scheduled = false;
this.tryRunJobs();
};
}
/**
* Sorts the pending item list using `priorityCallback`, if set.
*/
sort() {
const priorityCallback = this.priorityCallback;
const items = this.items;
if ( priorityCallback !== null ) {
items.sort( priorityCallback );
}
}
/**
* Returns whether the given item is currently queued.
* @param {any} item
* @returns {boolean}
*/
has( item ) {
return this.callbacks.has( item );
}
/**
* Adds an item to the queue and returns a Promise that resolves when the item's
* callback completes, or rejects if the item is removed before running.
* @param {any} item
* @param {ItemCallback} callback - Invoked with `item` when it is dequeued; may return a Promise
* @returns {Promise<any>}
*/
add( item, callback ) {
const data = {
callback,
reject: null,
resolve: null,
promise: null,
};
data.promise = new Promise( ( resolve, reject ) => {
const items = this.items;
const callbacks = this.callbacks;
data.resolve = resolve;
data.reject = reject;
items.unshift( item );
callbacks.set( item, data );
if ( this.autoUpdate ) {
this.scheduleJobRun();
}
} );
return data.promise;
}
/**
* Removes an item from the queue, rejecting its promise with `PriorityQueueItemRemovedError`.
* @param {any} item
*/
remove( item ) {
const items = this.items;
const callbacks = this.callbacks;
const index = items.indexOf( item );
if ( index !== - 1 ) {
// reject the promise to ensure there are no dangling promises - add a
// catch here to handle the case where the promise was never used anywhere
// else.
const info = callbacks.get( item );
info.promise.catch( err => {
if ( ! ( err instanceof PriorityQueueItemRemovedError ) ) {
throw err;
}
} );
info.reject( new PriorityQueueItemRemovedError() );
items.splice( index, 1 );
callbacks.delete( item );
}
}
/**
* Removes all queued items for which `filter` returns true.
* @param {FilterCallback} filter - Called with each item; return true to remove
*/
removeByFilter( filter ) {
const { items } = this;
for ( let i = 0; i < items.length; i ++ ) {
const item = items[ i ];
if ( filter( item ) ) {
this.remove( item );
i --;
}
}
}
/**
* Immediately attempts to dequeue and run pending jobs up to `maxJobs` concurrency.
*/
tryRunJobs() {
this.sort();
const items = this.items;
const callbacks = this.callbacks;
const maxJobs = this.maxJobs;
let iterated = 0;
const completedCallback = () => {
this.currJobs --;
if ( this.autoUpdate ) {
this.scheduleJobRun();
}
};
while ( maxJobs > this.currJobs && items.length > 0 && iterated < maxJobs ) {
this.currJobs ++;
iterated ++;
const item = items.pop();
const { callback, resolve, reject } = callbacks.get( item );
callbacks.delete( item );
let result;
try {
result = callback( item );
} catch ( err ) {
reject( err );
completedCallback();
}
if ( result instanceof Promise ) {
result
.then( resolve )
.catch( reject )
.finally( completedCallback );
} else {
resolve( result );
completedCallback();
}
}
}
/**
* Immediately runs the callback for the given item, removing it from the queue.
* Does nothing if the item is not queued.
* @param {any} item
* @returns {Promise<any>|any}
*/
flush( item ) {
const { items, callbacks } = this;
const index = items.indexOf( item );
if ( ! callbacks.has( item ) ) {
return;
}
const { callback, resolve, reject } = callbacks.get( item );
callbacks.delete( item );
items.splice( index, 1 );
let result;
try {
result = callback( item );
} catch ( err ) {
reject( err );
return;
}
if ( result instanceof Promise ) {
result
.then( resolve )
.catch( reject );
} else {
resolve( result );
}
return result;
}
/**
* Schedules a deferred call to `tryRunJobs` via `schedulingCallback`.
*/
scheduleJobRun() {
if ( ! this.scheduled ) {
this._schedulingCallback( this._runjobs );
this.scheduled = true;
}
}
}