mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
e435c2be15
Co-authored-by: Ryan Dahl <ry@tinyclouds.org>
69 lines
1.7 KiB
TypeScript
69 lines
1.7 KiB
TypeScript
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { sendAsyncMinimal, sendSyncMinimal } from "./dispatch_minimal.ts";
|
|
import { EOF } from "../io.ts";
|
|
// TODO(bartlomieju): remove this import and maybe lazy-initialize
|
|
// OPS_CACHE that belongs only to this module
|
|
import { OPS_CACHE } from "../runtime.ts";
|
|
|
|
// This is done because read/write are extremely performance sensitive.
|
|
let OP_READ = -1;
|
|
let OP_WRITE = -1;
|
|
|
|
export function readSync(rid: number, p: Uint8Array): number | EOF {
|
|
if (p.length == 0) {
|
|
return 0;
|
|
}
|
|
if (OP_READ < 0) {
|
|
OP_READ = OPS_CACHE["op_read"];
|
|
}
|
|
const nread = sendSyncMinimal(OP_READ, rid, p);
|
|
if (nread < 0) {
|
|
throw new Error("read error");
|
|
} else if (nread == 0) {
|
|
return EOF;
|
|
} else {
|
|
return nread;
|
|
}
|
|
}
|
|
|
|
export async function read(rid: number, p: Uint8Array): Promise<number | EOF> {
|
|
if (p.length == 0) {
|
|
return 0;
|
|
}
|
|
if (OP_READ < 0) {
|
|
OP_READ = OPS_CACHE["op_read"];
|
|
}
|
|
const nread = await sendAsyncMinimal(OP_READ, rid, p);
|
|
if (nread < 0) {
|
|
throw new Error("read error");
|
|
} else if (nread == 0) {
|
|
return EOF;
|
|
} else {
|
|
return nread;
|
|
}
|
|
}
|
|
|
|
export function writeSync(rid: number, p: Uint8Array): number {
|
|
if (OP_WRITE < 0) {
|
|
OP_WRITE = OPS_CACHE["op_write"];
|
|
}
|
|
const result = sendSyncMinimal(OP_WRITE, rid, p);
|
|
if (result < 0) {
|
|
throw new Error("write error");
|
|
} else {
|
|
return result;
|
|
}
|
|
}
|
|
|
|
export async function write(rid: number, p: Uint8Array): Promise<number> {
|
|
if (OP_WRITE < 0) {
|
|
OP_WRITE = OPS_CACHE["op_write"];
|
|
}
|
|
const result = await sendAsyncMinimal(OP_WRITE, rid, p);
|
|
if (result < 0) {
|
|
throw new Error("write error");
|
|
} else {
|
|
return result;
|
|
}
|
|
}
|