2019-01-19 04:46:40 +07:00
|
|
|
import * as cp from "child_process";
|
|
|
|
import * as fs from "fs";
|
2019-01-24 00:52:58 +07:00
|
|
|
import * as net from "net";
|
2019-01-19 04:46:40 +07:00
|
|
|
import * as path from "path";
|
|
|
|
|
|
|
|
export const requireModule = (modulePath: string): void => {
|
|
|
|
process.env.AMD_ENTRYPOINT = modulePath;
|
|
|
|
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));
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-01-19 04:46:40 +07:00
|
|
|
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");
|
2019-01-19 04:46:40 +07:00
|
|
|
* 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.
|
2019-01-19 04:46:40 +07:00
|
|
|
*/
|
2019-01-24 02:43:20 +07:00
|
|
|
export const forkModule = (modulePath: string): cp.ChildProcess => {
|
2019-01-23 08:05:56 +07:00
|
|
|
let proc: cp.ChildProcess | undefined;
|
|
|
|
|
2019-01-19 04:46:40 +07:00
|
|
|
const args = ["--bootstrap-fork", modulePath];
|
2019-01-24 00:52:58 +07:00
|
|
|
const options: cp.SpawnOptions = {
|
|
|
|
stdio: [null, null, null, "pipe"],
|
|
|
|
};
|
2019-01-19 04:46:40 +07:00
|
|
|
if (process.env.CLI === "true") {
|
2019-01-24 02:43:20 +07:00
|
|
|
proc = cp.spawn(process.execPath, args, options);
|
2019-01-19 04:46:40 +07:00
|
|
|
} 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-19 04:46:40 +07:00
|
|
|
}
|
2019-01-23 08:05:56 +07:00
|
|
|
|
|
|
|
return proc;
|
2019-01-19 04:46:40 +07:00
|
|
|
};
|