2018-11-07 20:28:01 -05:00
|
|
|
// Ported to Deno from
|
|
|
|
// 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;
|
2018-11-07 20:28:01 -05:00
|
|
|
|
|
|
|
/** OneByteReader returns a Reader that implements
|
|
|
|
* each non-empty Read by reading one byte from r.
|
|
|
|
*/
|
|
|
|
export class OneByteReader implements Reader {
|
|
|
|
constructor(readonly r: Reader) {}
|
|
|
|
|
2019-07-07 15:20:41 -04:00
|
|
|
async read(p: Uint8Array): Promise<number | Deno.EOF> {
|
2018-11-07 20:28:01 -05:00
|
|
|
if (p.byteLength === 0) {
|
2019-07-07 15:20:41 -04:00
|
|
|
return 0;
|
2018-11-07 20:28:01 -05:00
|
|
|
}
|
|
|
|
if (!(p instanceof Uint8Array)) {
|
|
|
|
throw Error("expected Uint8Array");
|
|
|
|
}
|
|
|
|
return this.r.read(p.subarray(0, 1));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** HalfReader returns a Reader that implements Read
|
|
|
|
* by reading half as many requested bytes from r.
|
|
|
|
*/
|
|
|
|
export class HalfReader implements Reader {
|
|
|
|
constructor(readonly r: Reader) {}
|
|
|
|
|
2019-07-07 15:20:41 -04:00
|
|
|
async read(p: Uint8Array): Promise<number | Deno.EOF> {
|
2018-11-07 20:28:01 -05:00
|
|
|
if (!(p instanceof Uint8Array)) {
|
|
|
|
throw Error("expected Uint8Array");
|
|
|
|
}
|
|
|
|
const half = Math.floor((p.byteLength + 1) / 2);
|
|
|
|
return this.r.read(p.subarray(0, half));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export class ErrTimeout extends Error {
|
|
|
|
constructor() {
|
|
|
|
super("timeout");
|
|
|
|
this.name = "ErrTimeout";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/** TimeoutReader returns ErrTimeout on the second read
|
|
|
|
* with no data. Subsequent calls to read succeed.
|
|
|
|
*/
|
|
|
|
export class TimeoutReader implements Reader {
|
|
|
|
count = 0;
|
|
|
|
constructor(readonly r: Reader) {}
|
|
|
|
|
2019-07-07 15:20:41 -04:00
|
|
|
async read(p: Uint8Array): Promise<number | Deno.EOF> {
|
2018-11-07 20:28:01 -05:00
|
|
|
this.count++;
|
|
|
|
if (this.count === 2) {
|
|
|
|
throw new ErrTimeout();
|
|
|
|
}
|
|
|
|
return this.r.read(p);
|
|
|
|
}
|
|
|
|
}
|