0
0
mirror of https://github.com/honojs/hono.git synced 2024-11-29 09:43:20 +01:00
hono/deno_dist/utils/stream.ts
Yusuke Wada 2c47bf5890
fix(context): fix c.stream() and c.streamText() matters (#1482)
* fix(context): fix `c.stream()` and `c.streamText()`

* denoify

* remove the not used line
2023-09-20 22:53:30 +09:00

47 lines
1.1 KiB
TypeScript

export class StreamingApi {
private writer: WritableStreamDefaultWriter<Uint8Array>
private encoder: TextEncoder
private writable: WritableStream
constructor(writable: WritableStream) {
this.writable = writable
this.writer = writable.getWriter()
this.encoder = new TextEncoder()
}
async write(input: Uint8Array | string) {
try {
if (typeof input === 'string') {
input = this.encoder.encode(input)
}
await this.writer.write(input)
} catch (e) {
// Do nothing. If you want to handle errors, create a stream by yourself.
}
return this
}
async writeln(input: string) {
await this.write(input + '\n')
return this
}
sleep(ms: number) {
return new Promise((res) => setTimeout(res, ms))
}
async close() {
try {
await this.writer.close()
} catch (e) {
// Do nothing. If you want to handle errors, create a stream by yourself.
}
}
async pipe(body: ReadableStream) {
this.writer.releaseLock()
await body.pipeTo(this.writable, { preventClose: true })
this.writer = this.writable.getWriter()
}
}