2019-07-03 04:55:54 +07:00
|
|
|
import * as os from "os";
|
|
|
|
import { validatePaths } from "vs/code/node/paths";
|
|
|
|
import { parseMainProcessArgv } from "vs/platform/environment/node/argvHelper";
|
|
|
|
import { ParsedArgs } from "vs/platform/environment/common/environment";
|
2019-07-03 06:29:48 +07:00
|
|
|
import { buildHelpMessage, buildVersionMessage, options } from "vs/platform/environment/node/argv";
|
2019-07-03 04:55:54 +07:00
|
|
|
import product from "vs/platform/product/node/product";
|
|
|
|
import pkg from "vs/platform/product/node/package";
|
|
|
|
import { MainServer, WebviewServer } from "vs/server/server";
|
|
|
|
import "vs/server/tar";
|
|
|
|
|
2019-07-03 06:29:48 +07:00
|
|
|
interface Args extends ParsedArgs {
|
|
|
|
port?: string;
|
|
|
|
"webview-port"?: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
options.push({ id: "port", type: "string", cat: "o", description: "Port for the main server." });
|
|
|
|
options.push({ id: "webview-port", type: "string", cat: "o", description: "Port for the webview server." });
|
|
|
|
|
2019-07-03 04:55:54 +07:00
|
|
|
interface IMainCli {
|
|
|
|
main: (argv: ParsedArgs) => Promise<void>;
|
|
|
|
}
|
|
|
|
|
|
|
|
const main = async (): Promise<void> => {
|
2019-07-03 06:29:48 +07:00
|
|
|
const args = validatePaths(parseMainProcessArgv(process.argv)) as Args;
|
2019-07-03 04:55:54 +07:00
|
|
|
|
|
|
|
if (!product.extensionsGallery) {
|
|
|
|
product.extensionsGallery = {
|
|
|
|
serviceUrl: process.env.SERVICE_URL || "https://v1.extapi.coder.com",
|
|
|
|
itemUrl: process.env.ITEM_URL || "",
|
|
|
|
controlUrl: "",
|
|
|
|
recommendationsUrl: "",
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.help) {
|
|
|
|
const executable = `${product.applicationName}${os.platform() === "win32" ? ".exe" : ""}`;
|
|
|
|
return console.log(buildHelpMessage(product.nameLong, executable, pkg.version));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (args.version) {
|
|
|
|
return console.log(buildVersionMessage(pkg.version, product.commit));
|
|
|
|
}
|
|
|
|
|
|
|
|
const shouldSpawnCliProcess = (): boolean => {
|
|
|
|
return !!args["install-source"]
|
|
|
|
|| !!args["list-extensions"]
|
|
|
|
|| !!args["install-extension"]
|
|
|
|
|| !!args["uninstall-extension"]
|
|
|
|
|| !!args["locate-extension"]
|
|
|
|
|| !!args["telemetry"];
|
|
|
|
};
|
|
|
|
|
|
|
|
if (shouldSpawnCliProcess()) {
|
|
|
|
const cli = await new Promise<IMainCli>((c, e) => require(["vs/code/node/cliProcessMain"], c, e));
|
|
|
|
await cli.main(args);
|
|
|
|
// There is some WriteStream instance keeping it open so force an exit.
|
|
|
|
return process.exit(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
const webviewServer = new WebviewServer();
|
|
|
|
const server = new MainServer(webviewServer, args);
|
|
|
|
// The main server inserts webview server address to the root HTML, so we'll
|
|
|
|
// need to wait for it to listen otherwise the address will be null.
|
2019-07-03 06:29:48 +07:00
|
|
|
await webviewServer.listen(typeof args["webview-port"] !== "undefined" && parseInt(args["webview-port"], 10) || 8444);
|
|
|
|
await server.listen(typeof args.port !== "undefined" && parseInt(args.port, 10) || 8443);
|
2019-07-03 04:55:54 +07:00
|
|
|
console.log(`Main server serving ${server.address}`);
|
|
|
|
console.log(`Webview server serving ${webviewServer.address}`);
|
|
|
|
};
|
|
|
|
|
|
|
|
main().catch((error) => {
|
|
|
|
console.error(error);
|
|
|
|
process.exit(1);
|
|
|
|
});
|