Welcome to mirror list, hosted at ThFree Co, Russian Federation.

code-server.js « scripts - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b8deef7bfcb598d57bff5e37f8448e0afd77a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

// @ts-check

const cp = require('child_process');
const path = require('path');
const opn = require('opn');
const crypto = require('crypto');
const minimist = require('minimist');

function main() {

	const args = minimist(process.argv.slice(2), {
		boolean: [
			'help',
			'launch'
		],
		string: [
			'host',
			'port',
			'driver',
			'connection-token',
			'server-data-dir'
		],
	});

	if (args.help) {
		console.log(
			'./scripts/code-server.sh|bat [options]\n' +
			' --launch              Opens a browser'
		);
		startServer(['--help']);
		return
	}

	const serverArgs = process.argv.slice(2).filter(v => v !== '--launch');

	const HOST = args['host'] ?? 'localhost';
	const PORT = args['port'] ?? '9888';
	const TOKEN = args['connection-token'] ?? String(crypto.randomInt(0xffffffff));

	if (args['connection-token'] === undefined && args['connection-token-file'] === undefined && !args['without-connection-token']) {
		serverArgs.push('--connection-token', TOKEN);
	}
	if (args['host'] === undefined) {
		serverArgs.push('--host', HOST);
	}
	if (args['port'] === undefined) {
		serverArgs.push('--port', PORT);
	}

	startServer(serverArgs);
	if (args['launch']) {
		opn(`http://${HOST}:${PORT}/?tkn=${TOKEN}`);
	}
}

function startServer(programArgs) {
	const env = { ...process.env };

	const entryPoint = path.join(__dirname, '..', 'out', 'server-main.js');

	console.log(`Starting server: ${entryPoint} ${programArgs.join(' ')}`);
	const proc = cp.spawn(process.execPath, [entryPoint, ...programArgs], { env, stdio: 'inherit' });

	proc.on('exit', (code) => process.exit(code));

	process.on('exit', () => proc.kill());
	process.on('SIGINT', () => {
		proc.kill();
		process.exit(128 + 2); // https://nodejs.org/docs/v14.16.0/api/process.html#process_signal_events
	});
	process.on('SIGTERM', () => {
		proc.kill();
		process.exit(128 + 15); // https://nodejs.org/docs/v14.16.0/api/process.html#process_signal_events
	});

}

main();