forked from oakserver/oak
-
Notifications
You must be signed in to change notification settings - Fork 0
/
async_iterable_reader.ts
59 lines (54 loc) · 1.43 KB
/
async_iterable_reader.ts
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
// Copyright 2018-2021 the oak authors. All rights reserved. MIT license.
import { copyBytes } from "./deps.ts";
export class AsyncIterableReader<T> implements Deno.Reader {
#asyncIterator: AsyncIterator<T>;
#closed = false;
#current: Uint8Array | undefined;
#processValue: (value: T) => Uint8Array;
constructor(
asyncIterable: AsyncIterable<T>,
processValue: (value: T) => Uint8Array,
) {
this.#asyncIterator = asyncIterable[Symbol.asyncIterator]();
this.#processValue = processValue;
}
#close() {
if (this.#asyncIterator.return) {
this.#asyncIterator.return();
}
// deno-lint-ignore no-explicit-any
(this as any).#asyncIterator = undefined;
this.#closed = true;
}
async read(p: Uint8Array): Promise<number | null> {
if (this.#closed) {
return null;
}
if (p.byteLength === 0) {
this.#close();
return 0;
}
if (!this.#current) {
const { value, done } = await this.#asyncIterator.next();
if (done) {
this.#close();
}
if (value !== undefined) {
this.#current = this.#processValue(value);
}
}
if (!this.#current) {
if (!this.#closed) {
this.#close();
}
return null;
}
const len = copyBytes(this.#current, p);
if (len >= this.#current.byteLength) {
this.#current = undefined;
} else {
this.#current = this.#current.slice(len);
}
return len;
}
}