-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueue-manager-async.mjs
137 lines (126 loc) · 3.18 KB
/
queue-manager-async.mjs
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
class Entry {
fn;
abortController;
constructor(fn, abortController = new AbortController()) {
this.fn = fn;
this.abortController = abortController;
}
}
const abortError = new Error('abort');
abortError.isAbortError = true;
export class QueueManager extends EventTarget {
constructor({
parallelism = 1,
} = {}) {
super();
this.parallelism = parallelism;
this.runningEntries = [];
this.queue = [];
}
isIdle() {
return this.runningEntries.length === 0;
}
next(n = 1) {
let i;
for (i = 0; i < n; i++) {
const entry = this.runningEntries.shift();
if (entry) {
entry.abortController.abort(abortError);
continue;
}
}
// return whether we were able to abort all the entries
return i === n;
}
async waitForTurn(fn) {
const entry = new Entry(fn);
return await this.#waitForTurnEntry(entry);
}
async #waitForTurnEntry(entry) {
if (this.runningEntries.length < this.parallelism) {
this.runningEntries.push(entry);
if (this.runningEntries.length === 1) {
this.dispatchEvent(new MessageEvent('idlechange', {
data: {
idle: false,
},
}));
}
let result, error;
try {
const { fn, abortController } = entry;
const { signal } = abortController;
result = await fn({
signal,
});
} catch(err) {
error = err;
}
const index = this.runningEntries.indexOf(entry);
this.runningEntries.splice(index, 1);
if (this.queue.length > 0) {
const entry = this.queue.shift();
this.#waitForTurnEntry(entry);
} else {
if (this.runningEntries.length === 0) {
this.dispatchEvent(new MessageEvent('idlechange', {
data: {
idle: true,
},
}));
}
}
if (error === undefined || error === abortError) {
return result;
} else {
throw error;
}
} else {
const { fn, abortController } = entry;
const {
promise,
resolve,
reject,
} = Promise.withResolvers();
const fn2 = async (...args) => {
let result, error;
try {
result = await fn(...args);
} catch(err) {
error = err;
}
if (error === undefined || error === abortError) {
resolve(result);
return result;
} else {
reject(error);
throw error;
}
};
const entry2 = new Entry(fn2, abortController);
this.queue.push(entry2);
const result = await promise;
return result;
}
}
}
export class MultiQueueManager {
constructor(opts) {
this.opts = opts;
this.queueManagers = new Map();
}
async waitForTurn(key, fn) {
let queueManager = this.queueManagers.get(key);
if (!queueManager) {
queueManager = new QueueManager(this.opts);
this.queueManagers.set(key, queueManager);
queueManager.addEventListener('idlechange', e => {
const { idle } = e.data;
if (idle) {
this.queueManagers.delete(key);
}
});
}
return await queueManager.waitForTurn(fn);
}
}