mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
2164f6b1eb
Welcome to better optimised op calls! Currently opSync is called with parameters of every type and count. This most definitely makes the call megamorphic. Additionally, it seems that spread params leads to V8 not being able to optimise the calls quite as well (apparently Fast Calls cannot be used with spread params). Monomorphising op calls should lead to some improved performance. Now that unwrapping of sync ops results is done on Rust side, this is pretty simple: ``` opSync("op_foo", param1, param2); // -> turns to ops.op_foo(param1, param2); ``` This means sync op calls are now just directly calling the native binding function. When V8 Fast API Calls are enabled, this will enable those to be called on the optimised path. Monomorphising async ops likely requires using callbacks and is left as an exercise to the reader.
131 lines
2.7 KiB
JavaScript
131 lines
2.7 KiB
JavaScript
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
|
"use strict";
|
|
|
|
((window) => {
|
|
const core = window.Deno.core;
|
|
const ops = core.ops;
|
|
const { FsFile } = window.__bootstrap.files;
|
|
const { readAll } = window.__bootstrap.io;
|
|
const { pathFromURL } = window.__bootstrap.util;
|
|
const { assert } = window.__bootstrap.infra;
|
|
const {
|
|
ArrayPrototypeMap,
|
|
ArrayPrototypeSlice,
|
|
TypeError,
|
|
ObjectEntries,
|
|
String,
|
|
} = window.__bootstrap.primordials;
|
|
|
|
function opKill(pid, signo) {
|
|
ops.op_kill(pid, signo);
|
|
}
|
|
|
|
function opRunStatus(rid) {
|
|
return core.opAsync("op_run_status", rid);
|
|
}
|
|
|
|
function opRun(request) {
|
|
assert(request.cmd.length > 0);
|
|
return ops.op_run(request);
|
|
}
|
|
|
|
async function runStatus(rid) {
|
|
const res = await opRunStatus(rid);
|
|
|
|
if (res.gotSignal) {
|
|
const signal = res.exitSignal;
|
|
return { success: false, code: 128 + signal, signal };
|
|
} else if (res.exitCode != 0) {
|
|
return { success: false, code: res.exitCode };
|
|
} else {
|
|
return { success: true, code: 0 };
|
|
}
|
|
}
|
|
|
|
class Process {
|
|
constructor(res) {
|
|
this.rid = res.rid;
|
|
this.pid = res.pid;
|
|
|
|
if (res.stdinRid && res.stdinRid > 0) {
|
|
this.stdin = new FsFile(res.stdinRid);
|
|
}
|
|
|
|
if (res.stdoutRid && res.stdoutRid > 0) {
|
|
this.stdout = new FsFile(res.stdoutRid);
|
|
}
|
|
|
|
if (res.stderrRid && res.stderrRid > 0) {
|
|
this.stderr = new FsFile(res.stderrRid);
|
|
}
|
|
}
|
|
|
|
status() {
|
|
return runStatus(this.rid);
|
|
}
|
|
|
|
async output() {
|
|
if (!this.stdout) {
|
|
throw new TypeError("stdout was not piped");
|
|
}
|
|
try {
|
|
return await readAll(this.stdout);
|
|
} finally {
|
|
this.stdout.close();
|
|
}
|
|
}
|
|
|
|
async stderrOutput() {
|
|
if (!this.stderr) {
|
|
throw new TypeError("stderr was not piped");
|
|
}
|
|
try {
|
|
return await readAll(this.stderr);
|
|
} finally {
|
|
this.stderr.close();
|
|
}
|
|
}
|
|
|
|
close() {
|
|
core.close(this.rid);
|
|
}
|
|
|
|
kill(signo) {
|
|
opKill(this.pid, signo);
|
|
}
|
|
}
|
|
|
|
function run({
|
|
cmd,
|
|
cwd = undefined,
|
|
clearEnv = false,
|
|
env = {},
|
|
gid = undefined,
|
|
uid = undefined,
|
|
stdout = "inherit",
|
|
stderr = "inherit",
|
|
stdin = "inherit",
|
|
}) {
|
|
if (cmd[0] != null) {
|
|
cmd = [pathFromURL(cmd[0]), ...ArrayPrototypeSlice(cmd, 1)];
|
|
}
|
|
const res = opRun({
|
|
cmd: ArrayPrototypeMap(cmd, String),
|
|
cwd,
|
|
clearEnv,
|
|
env: ObjectEntries(env),
|
|
gid,
|
|
uid,
|
|
stdin,
|
|
stdout,
|
|
stderr,
|
|
});
|
|
return new Process(res);
|
|
}
|
|
|
|
window.__bootstrap.process = {
|
|
run,
|
|
Process,
|
|
kill: opKill,
|
|
};
|
|
})(this);
|