|
|
|
|
|
|
|
|
|
|
|
export function trackBodyConsumed( |
|
|
body: string | ReadableStream, |
|
|
onEnd: () => void |
|
|
): BodyInit { |
|
|
if (typeof body === 'string') { |
|
|
const generator = async function* generate() { |
|
|
const encoder = new TextEncoder() |
|
|
yield encoder.encode(body) |
|
|
onEnd() |
|
|
} |
|
|
|
|
|
return generator() |
|
|
} else { |
|
|
return trackStreamConsumed(body, onEnd) |
|
|
} |
|
|
} |
|
|
|
|
|
export function trackStreamConsumed<TChunk>( |
|
|
stream: ReadableStream<TChunk>, |
|
|
onEnd: () => void |
|
|
): ReadableStream<TChunk> { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const dest = new TransformStream() |
|
|
const runOnEnd = () => onEnd() |
|
|
stream.pipeTo(dest.writable).then(runOnEnd, runOnEnd) |
|
|
return dest.readable |
|
|
} |
|
|
|
|
|
export class CloseController { |
|
|
private target = new EventTarget() |
|
|
listeners = 0 |
|
|
isClosed = false |
|
|
|
|
|
onClose(callback: () => void) { |
|
|
if (this.isClosed) { |
|
|
throw new Error('Cannot subscribe to a closed CloseController') |
|
|
} |
|
|
|
|
|
this.target.addEventListener('close', callback) |
|
|
this.listeners++ |
|
|
} |
|
|
|
|
|
dispatchClose() { |
|
|
if (this.isClosed) { |
|
|
throw new Error('Cannot close a CloseController multiple times') |
|
|
} |
|
|
if (this.listeners > 0) { |
|
|
this.target.dispatchEvent(new Event('close')) |
|
|
} |
|
|
this.isClosed = true |
|
|
} |
|
|
} |
|
|
|