2018-11-08 12:26:20 -05:00
|
|
|
// Based on https://github.com/golang/go/blob/891682/src/bufio/bufio.go
|
2018-11-07 14:17:36 -05:00
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2019-03-07 19:25:16 -05:00
|
|
|
type Reader = Deno.Reader;
|
|
|
|
type ReadResult = Deno.ReadResult;
|
|
|
|
type Writer = Deno.Writer;
|
2019-01-17 13:08:59 -05:00
|
|
|
import { charCode, copyBytes } from "./util.ts";
|
2019-03-06 16:39:50 -05:00
|
|
|
import { assert } from "../testing/asserts.ts";
|
2018-11-07 13:16:07 -05:00
|
|
|
|
|
|
|
const DEFAULT_BUF_SIZE = 4096;
|
|
|
|
const MIN_BUF_SIZE = 16;
|
|
|
|
const MAX_CONSECUTIVE_EMPTY_READS = 100;
|
2018-11-07 23:19:08 -05:00
|
|
|
const CR = charCode("\r");
|
|
|
|
const LF = charCode("\n");
|
2018-11-07 13:16:07 -05:00
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
export class BufferFullError extends Error {
|
|
|
|
name = "BufferFullError";
|
|
|
|
constructor(public partial: Uint8Array) {
|
|
|
|
super("Buffer full");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class UnexpectedEOFError extends Error {
|
|
|
|
name = "UnexpectedEOFError";
|
|
|
|
constructor() {
|
|
|
|
super("Unexpected EOF");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const EOF: unique symbol = Symbol("EOF");
|
|
|
|
export type EOF = typeof EOF;
|
|
|
|
|
|
|
|
/** Result type returned by of BufReader.readLine(). */
|
|
|
|
export interface ReadLineResult {
|
|
|
|
line: Uint8Array;
|
|
|
|
more: boolean;
|
|
|
|
}
|
2018-11-07 14:17:36 -05:00
|
|
|
|
2018-11-07 21:01:32 -05:00
|
|
|
/** BufReader implements buffering for a Reader object. */
|
|
|
|
export class BufReader implements Reader {
|
2018-11-07 13:16:07 -05:00
|
|
|
private buf: Uint8Array;
|
2018-11-07 21:01:32 -05:00
|
|
|
private rd: Reader; // Reader provided by caller.
|
2018-11-07 13:16:07 -05:00
|
|
|
private r = 0; // buf read position.
|
|
|
|
private w = 0; // buf write position.
|
2019-05-23 22:04:06 -04:00
|
|
|
private eof = false;
|
|
|
|
// private lastByte: number;
|
|
|
|
// private lastCharSize: number;
|
2018-11-07 13:16:07 -05:00
|
|
|
|
2019-05-14 15:19:12 -04:00
|
|
|
/** return new BufReader unless r is BufReader */
|
|
|
|
static create(r: Reader, size = DEFAULT_BUF_SIZE): BufReader {
|
|
|
|
return r instanceof BufReader ? r : new BufReader(r, size);
|
|
|
|
}
|
|
|
|
|
2018-11-07 21:01:32 -05:00
|
|
|
constructor(rd: Reader, size = DEFAULT_BUF_SIZE) {
|
2018-11-07 13:16:07 -05:00
|
|
|
if (size < MIN_BUF_SIZE) {
|
|
|
|
size = MIN_BUF_SIZE;
|
|
|
|
}
|
2018-11-07 14:17:36 -05:00
|
|
|
this._reset(new Uint8Array(size), rd);
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the size of the underlying buffer in bytes. */
|
2018-11-09 13:25:30 -05:00
|
|
|
size(): number {
|
2018-11-07 13:16:07 -05:00
|
|
|
return this.buf.byteLength;
|
|
|
|
}
|
|
|
|
|
2018-11-07 21:01:32 -05:00
|
|
|
buffered(): number {
|
|
|
|
return this.w - this.r;
|
|
|
|
}
|
|
|
|
|
2018-11-07 13:16:07 -05:00
|
|
|
// Reads a new chunk into the buffer.
|
2018-11-08 02:05:06 -05:00
|
|
|
private async _fill(): Promise<void> {
|
2018-11-07 13:16:07 -05:00
|
|
|
// Slide existing data to beginning.
|
|
|
|
if (this.r > 0) {
|
|
|
|
this.buf.copyWithin(0, this.r, this.w);
|
|
|
|
this.w -= this.r;
|
|
|
|
this.r = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.w >= this.buf.byteLength) {
|
|
|
|
throw Error("bufio: tried to fill full buffer");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Read new data: try a limited number of times.
|
|
|
|
for (let i = MAX_CONSECUTIVE_EMPTY_READS; i > 0; i--) {
|
2019-05-23 22:04:06 -04:00
|
|
|
let rr: ReadResult = await this.rd.read(this.buf.subarray(this.w));
|
2018-11-07 23:19:08 -05:00
|
|
|
assert(rr.nread >= 0, "negative read");
|
2018-11-07 20:28:01 -05:00
|
|
|
this.w += rr.nread;
|
|
|
|
if (rr.eof) {
|
2019-05-23 22:04:06 -04:00
|
|
|
this.eof = true;
|
2018-11-08 02:05:06 -05:00
|
|
|
return;
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
2018-11-07 20:28:01 -05:00
|
|
|
if (rr.nread > 0) {
|
2018-11-08 02:05:06 -05:00
|
|
|
return;
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
|
|
|
|
throw new Error(
|
|
|
|
`No progress after ${MAX_CONSECUTIVE_EMPTY_READS} read() calls`
|
|
|
|
);
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/** Discards any buffered data, resets all state, and switches
|
|
|
|
* the buffered reader to read from r.
|
|
|
|
*/
|
2018-11-07 21:01:32 -05:00
|
|
|
reset(r: Reader): void {
|
2018-11-07 13:16:07 -05:00
|
|
|
this._reset(this.buf, r);
|
|
|
|
}
|
|
|
|
|
2018-11-07 21:01:32 -05:00
|
|
|
private _reset(buf: Uint8Array, rd: Reader): void {
|
2018-11-07 13:16:07 -05:00
|
|
|
this.buf = buf;
|
|
|
|
this.rd = rd;
|
2019-05-23 22:04:06 -04:00
|
|
|
this.eof = false;
|
|
|
|
// this.lastByte = -1;
|
|
|
|
// this.lastCharSize = -1;
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
|
|
|
|
2018-11-07 14:17:36 -05:00
|
|
|
/** reads data into p.
|
|
|
|
* It returns the number of bytes read into p.
|
|
|
|
* The bytes are taken from at most one Read on the underlying Reader,
|
|
|
|
* hence n may be less than len(p).
|
|
|
|
* To read exactly len(p) bytes, use io.ReadFull(b, p).
|
|
|
|
*/
|
2018-11-09 17:23:01 -05:00
|
|
|
async read(p: Uint8Array): Promise<ReadResult> {
|
2018-11-07 21:01:32 -05:00
|
|
|
let rr: ReadResult = { nread: p.byteLength, eof: false };
|
2019-05-23 22:04:06 -04:00
|
|
|
if (p.byteLength === 0) return rr;
|
2018-11-07 14:17:36 -05:00
|
|
|
|
|
|
|
if (this.r === this.w) {
|
|
|
|
if (p.byteLength >= this.buf.byteLength) {
|
|
|
|
// Large read, empty buffer.
|
|
|
|
// Read directly into p to avoid copy.
|
2019-05-23 22:04:06 -04:00
|
|
|
const rr = await this.rd.read(p);
|
2018-11-07 23:19:08 -05:00
|
|
|
assert(rr.nread >= 0, "negative read");
|
2019-05-23 22:04:06 -04:00
|
|
|
// if (rr.nread > 0) {
|
|
|
|
// this.lastByte = p[rr.nread - 1];
|
|
|
|
// this.lastCharSize = -1;
|
|
|
|
// }
|
2018-11-07 14:17:36 -05:00
|
|
|
return rr;
|
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
|
2018-11-07 14:17:36 -05:00
|
|
|
// One read.
|
|
|
|
// Do not use this.fill, which will loop.
|
|
|
|
this.r = 0;
|
|
|
|
this.w = 0;
|
2019-05-23 22:04:06 -04:00
|
|
|
rr = await this.rd.read(this.buf);
|
2018-11-07 23:19:08 -05:00
|
|
|
assert(rr.nread >= 0, "negative read");
|
2019-05-23 22:04:06 -04:00
|
|
|
if (rr.nread === 0) return rr;
|
2018-11-07 14:17:36 -05:00
|
|
|
this.w += rr.nread;
|
|
|
|
}
|
|
|
|
|
|
|
|
// copy as much as we can
|
2019-05-23 22:04:06 -04:00
|
|
|
rr.nread = copyBytes(p, this.buf.subarray(this.r, this.w), 0);
|
2018-11-07 14:17:36 -05:00
|
|
|
this.r += rr.nread;
|
2019-05-23 22:04:06 -04:00
|
|
|
// this.lastByte = this.buf[this.r - 1];
|
|
|
|
// this.lastCharSize = -1;
|
2018-11-07 14:17:36 -05:00
|
|
|
return rr;
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
/** reads exactly `p.length` bytes into `p`.
|
|
|
|
*
|
|
|
|
* If successful, `p` is returned.
|
|
|
|
*
|
|
|
|
* If the end of the underlying stream has been reached, and there are no more
|
|
|
|
* bytes available in the buffer, `readFull()` returns `EOF` instead.
|
|
|
|
*
|
|
|
|
* An error is thrown if some bytes could be read, but not enough to fill `p`
|
|
|
|
* entirely before the underlying stream reported an error or EOF. Any error
|
|
|
|
* thrown will have a `partial` property that indicates the slice of the
|
|
|
|
* buffer that has been successfully filled with data.
|
|
|
|
*
|
2018-12-17 22:57:45 -05:00
|
|
|
* Ported from https://golang.org/pkg/io/#ReadFull
|
|
|
|
*/
|
2019-05-23 22:04:06 -04:00
|
|
|
async readFull(p: Uint8Array): Promise<Uint8Array | EOF> {
|
|
|
|
let bytesRead = 0;
|
|
|
|
while (bytesRead < p.length) {
|
|
|
|
try {
|
|
|
|
const rr = await this.read(p.subarray(bytesRead));
|
|
|
|
bytesRead += rr.nread;
|
|
|
|
if (rr.eof) {
|
|
|
|
if (bytesRead === 0) {
|
|
|
|
return EOF;
|
|
|
|
} else {
|
|
|
|
throw new UnexpectedEOFError();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (err) {
|
|
|
|
err.partial = p.subarray(0, bytesRead);
|
|
|
|
throw err;
|
|
|
|
}
|
2018-12-17 22:57:45 -05:00
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
return p;
|
2018-12-17 22:57:45 -05:00
|
|
|
}
|
|
|
|
|
2018-11-07 13:16:07 -05:00
|
|
|
/** Returns the next byte [0, 255] or -1 if EOF. */
|
|
|
|
async readByte(): Promise<number> {
|
|
|
|
while (this.r === this.w) {
|
2019-05-23 22:04:06 -04:00
|
|
|
if (this.eof) return -1;
|
2018-11-08 02:05:06 -05:00
|
|
|
await this._fill(); // buffer is empty.
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
|
|
|
const c = this.buf[this.r];
|
|
|
|
this.r++;
|
2019-05-23 22:04:06 -04:00
|
|
|
// this.lastByte = c;
|
2018-11-07 13:16:07 -05:00
|
|
|
return c;
|
|
|
|
}
|
2018-11-07 20:28:01 -05:00
|
|
|
|
|
|
|
/** readString() reads until the first occurrence of delim in the input,
|
|
|
|
* returning a string containing the data up to and including the delimiter.
|
|
|
|
* If ReadString encounters an error before finding a delimiter,
|
|
|
|
* it returns the data read before the error and the error itself (often io.EOF).
|
|
|
|
* ReadString returns err != nil if and only if the returned data does not end in
|
|
|
|
* delim.
|
|
|
|
* For simple uses, a Scanner may be more convenient.
|
|
|
|
*/
|
2019-05-23 22:04:06 -04:00
|
|
|
async readString(_delim: string): Promise<string | EOF> {
|
2018-11-07 20:28:01 -05:00
|
|
|
throw new Error("Not implemented");
|
|
|
|
}
|
2018-11-07 23:19:08 -05:00
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
/** `readLine()` is a low-level line-reading primitive. Most callers should
|
|
|
|
* use `readString('\n')` instead or use a Scanner.
|
2018-11-07 23:19:08 -05:00
|
|
|
*
|
2019-05-23 22:04:06 -04:00
|
|
|
* `readLine()` tries to return a single line, not including the end-of-line
|
|
|
|
* bytes. If the line was too long for the buffer then `more` is set and the
|
2018-11-07 23:19:08 -05:00
|
|
|
* beginning of the line is returned. The rest of the line will be returned
|
2019-05-23 22:04:06 -04:00
|
|
|
* from future calls. `more` will be false when returning the last fragment
|
2018-11-07 23:19:08 -05:00
|
|
|
* of the line. The returned buffer is only valid until the next call to
|
2019-05-23 22:04:06 -04:00
|
|
|
* `readLine()`.
|
2018-11-07 23:19:08 -05:00
|
|
|
*
|
2019-05-23 22:04:06 -04:00
|
|
|
* The text returned from ReadLine does not include the line end ("\r\n" or
|
|
|
|
* "\n").
|
|
|
|
*
|
|
|
|
* When the end of the underlying stream is reached, the final bytes in the
|
|
|
|
* stream are returned. No indication or error is given if the input ends
|
|
|
|
* without a final line end. When there are no more trailing bytes to read,
|
|
|
|
* `readLine()` returns the `EOF` symbol.
|
|
|
|
*
|
|
|
|
* Calling `unreadByte()` after `readLine()` will always unread the last byte
|
|
|
|
* read (possibly a character belonging to the line end) even if that byte is
|
|
|
|
* not part of the line returned by `readLine()`.
|
2018-11-07 23:19:08 -05:00
|
|
|
*/
|
2019-05-23 22:04:06 -04:00
|
|
|
async readLine(): Promise<ReadLineResult | EOF> {
|
|
|
|
let line: Uint8Array | EOF;
|
|
|
|
|
|
|
|
try {
|
|
|
|
line = await this.readSlice(LF);
|
|
|
|
} catch (err) {
|
|
|
|
let { partial } = err;
|
|
|
|
assert(
|
|
|
|
partial instanceof Uint8Array,
|
|
|
|
"bufio: caught error from `readSlice()` without `partial` property"
|
|
|
|
);
|
|
|
|
|
|
|
|
// Don't throw if `readSlice()` failed with `BufferFullError`, instead we
|
|
|
|
// just return whatever is available and set the `more` flag.
|
|
|
|
if (!(err instanceof BufferFullError)) {
|
|
|
|
throw err;
|
|
|
|
}
|
2018-11-07 23:19:08 -05:00
|
|
|
|
|
|
|
// Handle the case where "\r\n" straddles the buffer.
|
2019-05-23 22:04:06 -04:00
|
|
|
if (
|
|
|
|
!this.eof &&
|
|
|
|
partial.byteLength > 0 &&
|
|
|
|
partial[partial.byteLength - 1] === CR
|
|
|
|
) {
|
2018-11-07 23:19:08 -05:00
|
|
|
// Put the '\r' back on buf and drop it from line.
|
|
|
|
// Let the next call to ReadLine check for "\r\n".
|
|
|
|
assert(this.r > 0, "bufio: tried to rewind past start of buffer");
|
|
|
|
this.r--;
|
2019-05-23 22:04:06 -04:00
|
|
|
partial = partial.subarray(0, partial.byteLength - 1);
|
2018-11-07 23:19:08 -05:00
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
|
|
|
|
return { line: partial, more: !this.eof };
|
|
|
|
}
|
|
|
|
|
|
|
|
if (line === EOF) {
|
|
|
|
return EOF;
|
2018-11-07 23:19:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (line.byteLength === 0) {
|
2019-05-23 22:04:06 -04:00
|
|
|
return { line, more: false };
|
2018-11-07 23:19:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (line[line.byteLength - 1] == LF) {
|
|
|
|
let drop = 1;
|
|
|
|
if (line.byteLength > 1 && line[line.byteLength - 2] === CR) {
|
|
|
|
drop = 2;
|
|
|
|
}
|
|
|
|
line = line.subarray(0, line.byteLength - drop);
|
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
return { line, more: false };
|
2018-11-07 23:19:08 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
/** `readSlice()` reads until the first occurrence of `delim` in the input,
|
2018-11-07 23:19:08 -05:00
|
|
|
* returning a slice pointing at the bytes in the buffer. The bytes stop
|
2019-05-23 22:04:06 -04:00
|
|
|
* being valid at the next read.
|
|
|
|
*
|
|
|
|
* If `readSlice()` encounters an error before finding a delimiter, or the
|
|
|
|
* buffer fills without finding a delimiter, it throws an error with a
|
|
|
|
* `partial` property that contains the entire buffer.
|
|
|
|
*
|
|
|
|
* If `readSlice()` encounters the end of the underlying stream and there are
|
|
|
|
* any bytes left in the buffer, the rest of the buffer is returned. In other
|
|
|
|
* words, EOF is always treated as a delimiter. Once the buffer is empty,
|
|
|
|
* it returns `EOF`.
|
|
|
|
*
|
|
|
|
* Because the data returned from `readSlice()` will be overwritten by the
|
|
|
|
* next I/O operation, most clients should use `readString()` instead.
|
2018-11-07 23:19:08 -05:00
|
|
|
*/
|
2019-05-23 22:04:06 -04:00
|
|
|
async readSlice(delim: number): Promise<Uint8Array | EOF> {
|
2018-11-07 23:19:08 -05:00
|
|
|
let s = 0; // search start index
|
2019-05-23 22:04:06 -04:00
|
|
|
let slice: Uint8Array;
|
|
|
|
|
2018-11-07 23:19:08 -05:00
|
|
|
while (true) {
|
|
|
|
// Search buffer.
|
|
|
|
let i = this.buf.subarray(this.r + s, this.w).indexOf(delim);
|
|
|
|
if (i >= 0) {
|
|
|
|
i += s;
|
2019-05-23 22:04:06 -04:00
|
|
|
slice = this.buf.subarray(this.r, this.r + i + 1);
|
2018-11-07 23:19:08 -05:00
|
|
|
this.r += i + 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
// EOF?
|
|
|
|
if (this.eof) {
|
|
|
|
if (this.r === this.w) {
|
|
|
|
return EOF;
|
|
|
|
}
|
|
|
|
slice = this.buf.subarray(this.r, this.w);
|
2018-11-07 23:19:08 -05:00
|
|
|
this.r = this.w;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Buffer full?
|
|
|
|
if (this.buffered() >= this.buf.byteLength) {
|
|
|
|
this.r = this.w;
|
2019-05-23 22:04:06 -04:00
|
|
|
throw new BufferFullError(this.buf);
|
2018-11-07 23:19:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
s = this.w - this.r; // do not rescan area we scanned before
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
// Buffer is not full.
|
|
|
|
try {
|
|
|
|
await this._fill();
|
|
|
|
} catch (err) {
|
|
|
|
err.partial = slice;
|
|
|
|
throw err;
|
|
|
|
}
|
2018-11-07 23:19:08 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle last byte, if any.
|
2019-05-23 22:04:06 -04:00
|
|
|
// const i = slice.byteLength - 1;
|
|
|
|
// if (i >= 0) {
|
|
|
|
// this.lastByte = slice[i];
|
|
|
|
// this.lastCharSize = -1
|
|
|
|
// }
|
2018-11-07 23:19:08 -05:00
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
return slice;
|
2018-11-07 23:19:08 -05:00
|
|
|
}
|
2018-11-08 04:01:20 -05:00
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
/** `peek()` returns the next `n` bytes without advancing the reader. The
|
|
|
|
* bytes stop being valid at the next read call.
|
|
|
|
*
|
|
|
|
* When the end of the underlying stream is reached, but there are unread
|
|
|
|
* bytes left in the buffer, those bytes are returned. If there are no bytes
|
|
|
|
* left in the buffer, it returns `EOF`.
|
|
|
|
*
|
|
|
|
* If an error is encountered before `n` bytes are available, `peek()` throws
|
|
|
|
* an error with the `partial` property set to a slice of the buffer that
|
|
|
|
* contains the bytes that were available before the error occurred.
|
2018-11-08 04:01:20 -05:00
|
|
|
*/
|
2019-05-23 22:04:06 -04:00
|
|
|
async peek(n: number): Promise<Uint8Array | EOF> {
|
2018-11-08 04:01:20 -05:00
|
|
|
if (n < 0) {
|
|
|
|
throw Error("negative count");
|
|
|
|
}
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
let avail = this.w - this.r;
|
|
|
|
while (avail < n && avail < this.buf.byteLength && !this.eof) {
|
|
|
|
try {
|
|
|
|
await this._fill();
|
|
|
|
} catch (err) {
|
|
|
|
err.partial = this.buf.subarray(this.r, this.w);
|
|
|
|
throw err;
|
|
|
|
}
|
|
|
|
avail = this.w - this.r;
|
2018-11-08 04:01:20 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
if (avail === 0 && this.eof) {
|
|
|
|
return EOF;
|
|
|
|
} else if (avail < n && this.eof) {
|
|
|
|
return this.buf.subarray(this.r, this.r + avail);
|
|
|
|
} else if (avail < n) {
|
|
|
|
throw new BufferFullError(this.buf.subarray(this.r, this.w));
|
2018-11-08 04:01:20 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
return this.buf.subarray(this.r, this.r + n);
|
2018-11-08 04:01:20 -05:00
|
|
|
}
|
2018-11-07 13:16:07 -05:00
|
|
|
}
|
2018-11-08 18:15:26 -05:00
|
|
|
|
|
|
|
/** BufWriter implements buffering for an deno.Writer object.
|
|
|
|
* If an error occurs writing to a Writer, no more data will be
|
|
|
|
* accepted and all subsequent writes, and flush(), will return the error.
|
|
|
|
* After all data has been written, the client should call the
|
|
|
|
* flush() method to guarantee all data has been forwarded to
|
|
|
|
* the underlying deno.Writer.
|
|
|
|
*/
|
|
|
|
export class BufWriter implements Writer {
|
2018-11-09 13:25:30 -05:00
|
|
|
buf: Uint8Array;
|
|
|
|
n: number = 0;
|
2019-05-23 22:04:06 -04:00
|
|
|
err: Error | null = null;
|
2018-11-09 13:25:30 -05:00
|
|
|
|
2019-05-14 15:19:12 -04:00
|
|
|
/** return new BufWriter unless w is BufWriter */
|
|
|
|
static create(w: Writer, size = DEFAULT_BUF_SIZE): BufWriter {
|
|
|
|
return w instanceof BufWriter ? w : new BufWriter(w, size);
|
|
|
|
}
|
|
|
|
|
2018-11-09 13:25:30 -05:00
|
|
|
constructor(private wr: Writer, size = DEFAULT_BUF_SIZE) {
|
|
|
|
if (size <= 0) {
|
|
|
|
size = DEFAULT_BUF_SIZE;
|
|
|
|
}
|
|
|
|
this.buf = new Uint8Array(size);
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Size returns the size of the underlying buffer in bytes. */
|
|
|
|
size(): number {
|
|
|
|
return this.buf.byteLength;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Discards any unflushed buffered data, clears any error, and
|
|
|
|
* resets b to write its output to w.
|
|
|
|
*/
|
|
|
|
reset(w: Writer): void {
|
|
|
|
this.err = null;
|
|
|
|
this.n = 0;
|
|
|
|
this.wr = w;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Flush writes any buffered data to the underlying io.Writer. */
|
2019-05-23 22:04:06 -04:00
|
|
|
async flush(): Promise<void> {
|
|
|
|
if (this.err !== null) throw this.err;
|
|
|
|
if (this.n === 0) return;
|
2018-11-09 13:25:30 -05:00
|
|
|
|
|
|
|
let n: number;
|
|
|
|
try {
|
|
|
|
n = await this.wr.write(this.buf.subarray(0, this.n));
|
|
|
|
} catch (e) {
|
2019-05-23 22:04:06 -04:00
|
|
|
this.err = e;
|
|
|
|
throw e;
|
2018-11-09 13:25:30 -05:00
|
|
|
}
|
|
|
|
|
2019-05-23 22:04:06 -04:00
|
|
|
if (n < this.n) {
|
|
|
|
if (n > 0) {
|
2018-11-09 13:25:30 -05:00
|
|
|
this.buf.copyWithin(0, n, this.n);
|
2019-05-23 22:04:06 -04:00
|
|
|
this.n -= n;
|
2018-11-09 13:25:30 -05:00
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
this.err = new Error("Short write");
|
|
|
|
throw this.err;
|
2018-11-09 13:25:30 -05:00
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
|
2018-11-09 13:25:30 -05:00
|
|
|
this.n = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns how many bytes are unused in the buffer. */
|
|
|
|
available(): number {
|
|
|
|
return this.buf.byteLength - this.n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** buffered returns the number of bytes that have been written into the
|
|
|
|
* current buffer.
|
|
|
|
*/
|
|
|
|
buffered(): number {
|
|
|
|
return this.n;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Writes the contents of p into the buffer.
|
|
|
|
* Returns the number of bytes written.
|
|
|
|
*/
|
|
|
|
async write(p: Uint8Array): Promise<number> {
|
2019-05-23 22:04:06 -04:00
|
|
|
if (this.err !== null) throw this.err;
|
|
|
|
if (p.length === 0) return 0;
|
|
|
|
|
2018-11-09 13:25:30 -05:00
|
|
|
let nn = 0;
|
|
|
|
let n: number;
|
2019-05-23 22:04:06 -04:00
|
|
|
while (p.byteLength > this.available()) {
|
|
|
|
if (this.buffered() === 0) {
|
2018-11-09 13:25:30 -05:00
|
|
|
// Large write, empty buffer.
|
|
|
|
// Write directly from p to avoid copy.
|
|
|
|
try {
|
|
|
|
n = await this.wr.write(p);
|
|
|
|
} catch (e) {
|
|
|
|
this.err = e;
|
2019-05-23 22:04:06 -04:00
|
|
|
throw e;
|
2018-11-09 13:25:30 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
n = copyBytes(this.buf, p, this.n);
|
|
|
|
this.n += n;
|
2018-12-11 17:56:32 -05:00
|
|
|
await this.flush();
|
2018-11-09 13:25:30 -05:00
|
|
|
}
|
|
|
|
nn += n;
|
|
|
|
p = p.subarray(n);
|
|
|
|
}
|
2019-05-23 22:04:06 -04:00
|
|
|
|
2018-11-09 13:25:30 -05:00
|
|
|
n = copyBytes(this.buf, p, this.n);
|
|
|
|
this.n += n;
|
|
|
|
nn += n;
|
|
|
|
return nn;
|
|
|
|
}
|
2018-11-08 18:15:26 -05:00
|
|
|
}
|