mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
ad3de86604
Original: 2f003fa35c
39 lines
1.1 KiB
TypeScript
39 lines
1.1 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
type Reader = Deno.Reader;
|
|
type ReadResult = Deno.ReadResult;
|
|
import { encode } from "../strings/mod.ts";
|
|
|
|
/** Reader utility for strings */
|
|
export class StringReader implements Reader {
|
|
private offs = 0;
|
|
private buf = new Uint8Array(encode(this.s));
|
|
|
|
constructor(private readonly s: string) {}
|
|
|
|
async read(p: Uint8Array): Promise<ReadResult> {
|
|
const n = Math.min(p.byteLength, this.buf.byteLength - this.offs);
|
|
p.set(this.buf.slice(this.offs, this.offs + n));
|
|
this.offs += n;
|
|
return { nread: n, eof: this.offs === this.buf.byteLength };
|
|
}
|
|
}
|
|
|
|
/** Reader utility for combining multiple readers */
|
|
export class MultiReader implements Reader {
|
|
private readonly readers: Reader[];
|
|
private currentIndex = 0;
|
|
|
|
constructor(...readers: Reader[]) {
|
|
this.readers = readers;
|
|
}
|
|
|
|
async read(p: Uint8Array): Promise<ReadResult> {
|
|
const r = this.readers[this.currentIndex];
|
|
if (!r) return { nread: 0, eof: true };
|
|
const { nread, eof } = await r.read(p);
|
|
if (eof) {
|
|
this.currentIndex++;
|
|
}
|
|
return { nread, eof: false };
|
|
}
|
|
}
|