-
-
Notifications
You must be signed in to change notification settings - Fork 281
Expand file tree
/
Copy pathasync-abort-controller.ts
More file actions
228 lines (188 loc) · 6.08 KB
/
async-abort-controller.ts
File metadata and controls
228 lines (188 loc) · 6.08 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
/**
* This special AbortController is used to wait for all the abort handlers to finish before resolving the promise.
*/
type AbortListener = EventListenerOrEventListenerObject
type ListenerRecord = {
wrapped: EventListener
cleanup: () => void
}
export class AsyncAbortController extends AbortController {
protected runningPromises = new Set<Promise<void>>()
protected abortListeners = new WeakMap<AbortListener, Map<boolean, ListenerRecord>>()
protected _nextGroup?: AsyncAbortController
constructor() {
super()
const originalAddEventListener = this.signal.addEventListener.bind(this.signal)
const originalRemoveEventListener = this.signal.removeEventListener.bind(this.signal)
// Patch event addEventListener to keep track of listeners and their promises
this.signal.addEventListener = (
type: string,
listener: EventListenerOrEventListenerObject | null,
options?: boolean | AddEventListenerOptions
) => {
if (!listener) {
return
}
if (type !== 'abort') {
return originalAddEventListener(type, listener, options)
}
if (this.signal.aborted) {
return originalAddEventListener(type, listener, options)
}
const capture = getCaptureOption(options)
const existingRecord = this.getAbortListenerRecord(listener, capture)
if (existingRecord) {
return originalAddEventListener(type, existingRecord.wrapped, options)
}
const registrationSignal = getRegistrationSignal(options)
if (registrationSignal?.aborted) {
return
}
let wrapped!: EventListener
const cleanupRegistrationSignal = this.watchListenerRemovalSignal(
registrationSignal,
listener,
capture
)
wrapped = (event: Event) => {
this.deleteAbortListenerRecord(listener, capture)
originalRemoveEventListener(type, wrapped, capture)
const runningPromise = this.invokeAbortListener(listener, event)
this.runningPromises.add(runningPromise)
void runningPromise.finally(() => {
this.runningPromises.delete(runningPromise)
})
}
this.setAbortListenerRecord(listener, capture, {
wrapped,
cleanup: cleanupRegistrationSignal,
})
return originalAddEventListener(type, wrapped, options)
}
this.signal.removeEventListener = (
type: string,
listener: EventListenerOrEventListenerObject | null,
options?: boolean | EventListenerOptions
) => {
if (!listener) {
return
}
if (type !== 'abort') {
return originalRemoveEventListener(type, listener, options)
}
const capture = getCaptureOption(options)
const record = this.getAbortListenerRecord(listener, capture)
if (!record) {
return originalRemoveEventListener(type, listener, options)
}
this.deleteAbortListenerRecord(listener, capture)
return originalRemoveEventListener(type, record.wrapped, options)
}
}
get nextGroup() {
if (this._nextGroup) {
return this._nextGroup
}
this._nextGroup = new AsyncAbortController()
return this._nextGroup
}
async abortAsync() {
this.abort()
while (this.runningPromises.size > 0) {
const promises = Array.from(this.runningPromises)
await Promise.allSettled(promises)
}
await this.abortNextGroup()
}
protected async abortNextGroup() {
if (this._nextGroup) {
await this._nextGroup.abortAsync()
}
}
protected invokeAbortListener(listener: AbortListener, event: Event): Promise<void> {
try {
const result =
typeof listener === 'function'
? listener.call(this.signal, event)
: listener.handleEvent(event)
return Promise.resolve(result).then(() => undefined)
} catch (error) {
return Promise.reject(error)
}
}
protected getAbortListenerRecord(
listener: AbortListener,
capture: boolean
): ListenerRecord | undefined {
return this.abortListeners.get(listener)?.get(capture)
}
protected setAbortListenerRecord(
listener: AbortListener,
capture: boolean,
record: ListenerRecord
) {
const records = this.abortListeners.get(listener) ?? new Map<boolean, ListenerRecord>()
records.set(capture, record)
this.abortListeners.set(listener, records)
}
protected deleteAbortListenerRecord(listener: AbortListener, capture: boolean) {
const records = this.abortListeners.get(listener)
const record = records?.get(capture)
if (!records || !record) {
return
}
record.cleanup()
records.delete(capture)
if (records.size === 0) {
this.abortListeners.delete(listener)
}
}
protected watchListenerRemovalSignal(
signal: AbortSignal | undefined,
listener: AbortListener,
capture: boolean
): () => void {
if (!signal) {
return () => {}
}
const onAbort = () => {
this.deleteAbortListenerRecord(listener, capture)
}
addNativeEventListener(signal, 'abort', onAbort, { once: true })
return () => {
removeNativeEventListener(signal, 'abort', onAbort, { capture: false })
}
}
}
const nativeAddEventListener = EventTarget.prototype.addEventListener
const nativeRemoveEventListener = EventTarget.prototype.removeEventListener
function addNativeEventListener(
target: EventTarget,
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | AddEventListenerOptions
) {
nativeAddEventListener.call(target, type, listener, options)
}
function removeNativeEventListener(
target: EventTarget,
type: string,
listener: EventListenerOrEventListenerObject,
options?: boolean | EventListenerOptions
) {
nativeRemoveEventListener.call(target, type, listener, options)
}
function getCaptureOption(options?: boolean | EventListenerOptions): boolean {
if (typeof options === 'boolean') {
return options
}
return options?.capture ?? false
}
function getRegistrationSignal(
options?: boolean | AddEventListenerOptions
): AbortSignal | undefined {
if (typeof options === 'boolean') {
return undefined
}
return options?.signal
}