mirror of
https://github.com/denoland/deno.git
synced 2024-11-25 15:29:32 -05:00
1251c89321
This commit moves implementation of bin ops to "deno_core" crates as well as unifying logic between bin ops and json ops to reuse as much code as possible (both in Rust and JavaScript).
136 lines
2.6 KiB
JavaScript
136 lines
2.6 KiB
JavaScript
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// Interfaces 100% copied from Go.
|
|
// Documentation liberally lifted from them too.
|
|
// Thank you! We love Go! <3
|
|
"use strict";
|
|
|
|
((window) => {
|
|
const core = window.Deno.core;
|
|
const DEFAULT_BUFFER_SIZE = 32 * 1024;
|
|
// Seek whence values.
|
|
// https://golang.org/pkg/io/#pkg-constants
|
|
const SeekMode = {
|
|
0: "Start",
|
|
1: "Current",
|
|
2: "End",
|
|
|
|
Start: 0,
|
|
Current: 1,
|
|
End: 2,
|
|
};
|
|
|
|
async function copy(
|
|
src,
|
|
dst,
|
|
options,
|
|
) {
|
|
let n = 0;
|
|
const bufSize = options?.bufSize ?? DEFAULT_BUFFER_SIZE;
|
|
const b = new Uint8Array(bufSize);
|
|
let gotEOF = false;
|
|
while (gotEOF === false) {
|
|
const result = await src.read(b);
|
|
if (result === null) {
|
|
gotEOF = true;
|
|
} else {
|
|
let nwritten = 0;
|
|
while (nwritten < result) {
|
|
nwritten += await dst.write(b.subarray(nwritten, result));
|
|
}
|
|
n += nwritten;
|
|
}
|
|
}
|
|
return n;
|
|
}
|
|
|
|
async function* iter(
|
|
r,
|
|
options,
|
|
) {
|
|
const bufSize = options?.bufSize ?? DEFAULT_BUFFER_SIZE;
|
|
const b = new Uint8Array(bufSize);
|
|
while (true) {
|
|
const result = await r.read(b);
|
|
if (result === null) {
|
|
break;
|
|
}
|
|
|
|
yield b.subarray(0, result);
|
|
}
|
|
}
|
|
|
|
function* iterSync(
|
|
r,
|
|
options,
|
|
) {
|
|
const bufSize = options?.bufSize ?? DEFAULT_BUFFER_SIZE;
|
|
const b = new Uint8Array(bufSize);
|
|
while (true) {
|
|
const result = r.readSync(b);
|
|
if (result === null) {
|
|
break;
|
|
}
|
|
|
|
yield b.subarray(0, result);
|
|
}
|
|
}
|
|
|
|
function readSync(rid, buffer) {
|
|
if (buffer.length === 0) {
|
|
return 0;
|
|
}
|
|
|
|
const nread = core.binOpSync("op_read_sync", rid, buffer);
|
|
if (nread < 0) {
|
|
throw new Error("read error");
|
|
}
|
|
|
|
return nread === 0 ? null : nread;
|
|
}
|
|
|
|
async function read(
|
|
rid,
|
|
buffer,
|
|
) {
|
|
if (buffer.length === 0) {
|
|
return 0;
|
|
}
|
|
|
|
const nread = await core.binOpAsync("op_read_async", rid, buffer);
|
|
if (nread < 0) {
|
|
throw new Error("read error");
|
|
}
|
|
|
|
return nread === 0 ? null : nread;
|
|
}
|
|
|
|
function writeSync(rid, data) {
|
|
const result = core.binOpSync("op_write_sync", rid, data);
|
|
if (result < 0) {
|
|
throw new Error("write error");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
async function write(rid, data) {
|
|
const result = await core.binOpAsync("op_write_async", rid, data);
|
|
if (result < 0) {
|
|
throw new Error("write error");
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
window.__bootstrap.io = {
|
|
iterSync,
|
|
iter,
|
|
copy,
|
|
SeekMode,
|
|
read,
|
|
readSync,
|
|
write,
|
|
writeSync,
|
|
};
|
|
})(this);
|