code-server/packages/server/src/vscode/bootstrapFork.ts

54 lines
1.7 KiB
TypeScript
Raw Normal View History

import * as cp from "child_process";
import * as fs from "fs";
2019-01-24 00:52:58 +07:00
import * as net from "net";
import * as path from "path";
export const requireModule = (modulePath: string): void => {
process.env.AMD_ENTRYPOINT = modulePath;
// Always do this so we can see console.logs.
// process.env.VSCODE_ALLOW_IO = "true";
2019-01-24 00:52:58 +07:00
if (!process.send) {
const socket = new net.Socket({ fd: 3 });
socket.on("data", (data) => {
process.emit("message", JSON.parse(data.toString()), undefined);
});
2019-01-24 02:43:20 +07:00
// tslint:disable-next-line no-any
2019-01-24 00:52:58 +07:00
process.send = (message: any): void => {
socket.write(JSON.stringify(message));
};
}
const content = fs.readFileSync(path.join(process.env.BUILD_DIR as string || path.join(__dirname, "../.."), "./build/bootstrap-fork.js"));
eval(content.toString());
};
/**
* Uses the internal bootstrap-fork.js to load a module
* @example
2019-01-24 02:43:20 +07:00
* const cp = forkModule("vs/code/electron-browser/sharedProcess/sharedProcessMain");
* cp.stdout.on("data", (data) => console.log(data.toString("utf8")));
* cp.stderr.on("data", (data) => console.log(data.toString("utf8")));
2019-01-23 08:05:56 +07:00
* @param modulePath Path of the VS Code module to load.
*/
export const forkModule = (modulePath: string, env?: NodeJS.ProcessEnv): cp.ChildProcess => {
2019-01-23 08:05:56 +07:00
let proc: cp.ChildProcess | undefined;
const args = ["--bootstrap-fork", modulePath];
if (env) {
args.push("--env", JSON.stringify(env));
}
2019-01-24 00:52:58 +07:00
const options: cp.SpawnOptions = {
stdio: [null, null, null, "pipe"],
};
if (process.env.CLI === "true") {
2019-01-24 02:43:20 +07:00
proc = cp.spawn(process.execPath, args, options);
} else {
2019-01-24 00:52:58 +07:00
proc = cp.spawn(process.execArgv[0], ["-r", "tsconfig-paths/register", process.argv[1], ...args], options);
}
2019-01-23 08:05:56 +07:00
return proc;
};