// 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 { 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 { 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 }; } }