2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-03-07 19:25:16 -05:00
|
|
|
type Writer = Deno.Writer;
|
2019-05-26 19:58:31 -04:00
|
|
|
import { decode, encode } from "../strings/mod.ts";
|
2019-02-10 18:49:48 -05:00
|
|
|
|
|
|
|
/** Writer utility for buffering string chunks */
|
|
|
|
export class StringWriter implements Writer {
|
|
|
|
private chunks: Uint8Array[] = [];
|
2019-10-05 12:02:34 -04:00
|
|
|
private byteLength = 0;
|
2019-05-30 08:59:30 -04:00
|
|
|
private cache: string | undefined;
|
2019-02-10 18:49:48 -05:00
|
|
|
|
|
|
|
constructor(private base: string = "") {
|
|
|
|
const c = encode(base);
|
|
|
|
this.chunks.push(c);
|
|
|
|
this.byteLength += c.byteLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
async write(p: Uint8Array): Promise<number> {
|
|
|
|
this.chunks.push(p);
|
|
|
|
this.byteLength += p.byteLength;
|
2019-05-30 08:59:30 -04:00
|
|
|
this.cache = undefined;
|
2019-02-10 18:49:48 -05:00
|
|
|
return p.byteLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
toString(): string {
|
|
|
|
if (this.cache) {
|
|
|
|
return this.cache;
|
|
|
|
}
|
|
|
|
const buf = new Uint8Array(this.byteLength);
|
|
|
|
let offs = 0;
|
|
|
|
for (const chunk of this.chunks) {
|
|
|
|
buf.set(chunk, offs);
|
|
|
|
offs += chunk.byteLength;
|
|
|
|
}
|
|
|
|
this.cache = decode(buf);
|
2020-02-07 02:23:38 -05:00
|
|
|
return this.cache;
|
2019-02-10 18:49:48 -05:00
|
|
|
}
|
|
|
|
}
|