main.js 16.7 KB
Newer Older
J
Joao Moreno 已提交
1 2 3 4
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
5 6

//@ts-check
7 8
'use strict';

J
Joao Moreno 已提交
9
const perf = require('./vs/base/common/performance');
10 11
const lp = require('./vs/base/node/languagePacks');

12 13
perf.mark('main:started');

J
Joao Moreno 已提交
14
const path = require('path');
15 16
const fs = require('fs');
const os = require('os');
17 18
const bootstrap = require('./bootstrap');
const paths = require('./paths');
19
/** @type {any} */
20
const product = require('../product.json');
21
const { app, protocol } = require('electron');
J
Joao Moreno 已提交
22

23 24 25 26 27 28
// Enable portable support
const portable = bootstrap.configurePortable();

// Enable ASAR support
bootstrap.enableASARSupport();

B
Benjamin Pasero 已提交
29
// Set userData path before app 'ready' event
30 31 32 33
const args = parseCLIArgs();
const userDataPath = getUserDataPath(args);
app.setPath('userData', userDataPath);

34 35 36
// Set temp directory based on crash-reporter-directory CLI argument
// The crash reporter will store crashes in temp folder so we need
// to change that location accordingly.
37 38 39

// If a crash-reporter-directory is specified we setup the crash reporter
// right from the beginning as early as possible to monitor all processes.
40
let crashReporterDirectory = args['crash-reporter-directory'];
41
if (crashReporterDirectory) {
42 43
	crashReporterDirectory = path.normalize(crashReporterDirectory);

44 45 46 47 48
	if (!path.isAbsolute(crashReporterDirectory)) {
		console.error(`The path '${crashReporterDirectory}' specified for --crash-reporter-directory must be absolute.`);
		app.exit(1);
	}

49 50 51 52 53 54 55 56
	if (!fs.existsSync(crashReporterDirectory)) {
		try {
			fs.mkdirSync(crashReporterDirectory);
		} catch (error) {
			console.error(`The path '${crashReporterDirectory}' specified for --crash-reporter-directory does not seem to exist or cannot be created.`);
			app.exit(1);
		}
	}
57 58 59

	// Crashes are stored in the temp directory by default, so we
	// need to change that directory to the provided one
60
	console.log(`Found --crash-reporter-directory argument. Setting temp directory to be '${crashReporterDirectory}'`);
61
	app.setPath('temp', crashReporterDirectory);
62 63 64

	// Start crash reporter
	const { crashReporter } = require('electron');
65 66
	const productName = (product.crashReporter && product.crashReporter.productName) || product.nameShort;
	const companyName = (product.crashReporter && product.crashReporter.companyName) || 'Microsoft';
67
	crashReporter.start({
68 69
		companyName: companyName,
		productName: process.env['VSCODE_DEV'] ? `${productName} Dev` : productName,
70 71 72
		submitURL: '',
		uploadToServer: false
	});
73 74
}

B
Benjamin Pasero 已提交
75 76 77 78 79 80 81 82
// Set logs path before app 'ready' event if running portable
// to ensure that no 'logs' folder is created on disk at a
// location outside of the portable directory
// (https://github.com/microsoft/vscode/issues/56651)
if (portable.isPortable) {
	app.setAppLogsPath(path.join(userDataPath, 'logs'));
}

83 84 85
// Update cwd based on environment and platform
setCurrentWorkingDirectory();

86 87
// Register custom schemes with privileges
protocol.registerSchemesAsPrivileged([
88
	{
89
		scheme: 'vscode-webview',
90
		privileges: {
91
			standard: true,
92 93 94
			secure: true,
		}
	}, {
95 96 97 98 99 100 101 102
		scheme: 'vscode-webview-resource',
		privileges: {
			secure: true,
			standard: true,
			supportFetchAPI: true,
			corsEnabled: true,
		}
	},
103 104
]);

105 106 107
// Global app listeners
registerListeners();

108 109 110 111 112 113
// Cached data
const nodeCachedDataDir = getNodeCachedDir();

// Configure static command line arguments
const argvConfig = configureCommandlineSwitchesSync(args);

J
João Moreno 已提交
114 115 116 117 118 119
// Remove env set by snap https://github.com/microsoft/vscode/issues/85344
if (process.env['SNAP']) {
	delete process.env['GDK_PIXBUF_MODULE_FILE'];
	delete process.env['GDK_PIXBUF_MODULEDIR'];
}

120
/**
B
Benjamin Pasero 已提交
121 122
 * Support user defined locale: load it early before app('ready')
 * to have more things running in parallel.
123
 *
B
Benjamin Pasero 已提交
124
 * @type {Promise<import('./vs/base/node/languagePacks').NLSConfiguration>} nlsConfig | undefined
125
 */
B
Benjamin Pasero 已提交
126
let nlsConfigurationPromise = undefined;
127

128 129 130 131 132
const metaDataFile = path.join(__dirname, 'nls.metadata.json');
const locale = getUserDefinedLocale(argvConfig);
if (locale) {
	nlsConfigurationPromise = lp.getNLSConfiguration(product.commit, userDataPath, metaDataFile, locale);
}
133 134 135

// Load our code once ready
app.once('ready', function () {
B
Benjamin Pasero 已提交
136 137 138 139 140 141 142 143
	if (args['trace']) {
		const contentTracing = require('electron').contentTracing;

		const traceOptions = {
			categoryFilter: args['trace-category-filter'] || '*',
			traceOptions: args['trace-options'] || 'record-until-full,enable-sampling'
		};

144
		contentTracing.startRecording(traceOptions).finally(() => onReady());
B
Benjamin Pasero 已提交
145 146 147 148 149
	} else {
		onReady();
	}
});

B
Benjamin Pasero 已提交
150 151 152 153 154 155 156 157
/**
 * Main startup routine
 *
 * @param {string | undefined} cachedDataDir
 * @param {import('./vs/base/node/languagePacks').NLSConfiguration} nlsConfig
 */
function startup(cachedDataDir, nlsConfig) {
	nlsConfig._languagePackSupport = true;
158

B
Benjamin Pasero 已提交
159 160
	process.env['VSCODE_NLS_CONFIG'] = JSON.stringify(nlsConfig);
	process.env['VSCODE_NODE_CACHED_DATA_DIR'] = cachedDataDir || '';
161

B
Benjamin Pasero 已提交
162 163 164 165 166 167
	// Load main in AMD
	perf.mark('willLoadMainBundle');
	require('./bootstrap-amd').load('vs/code/electron-main/main', () => {
		perf.mark('didLoadMainBundle');
	});
}
168

B
Benjamin Pasero 已提交
169 170
async function onReady() {
	perf.mark('main:appReady');
171

B
Benjamin Pasero 已提交
172
	try {
173
		const [cachedDataDir, nlsConfig] = await Promise.all([nodeCachedDataDir.ensureExists(), resolveNlsConfiguration()]);
B
Benjamin Pasero 已提交
174

175
		startup(cachedDataDir, nlsConfig);
B
Benjamin Pasero 已提交
176 177 178
	} catch (error) {
		console.error(error);
	}
B
Benjamin Pasero 已提交
179
}
180

181
/**
182
 * @typedef	 {{ [arg: string]: any; '--'?: string[]; _: string[]; }} ParsedArgs
183 184 185
 *
 * @param {ParsedArgs} cliArgs
 */
186 187 188 189 190 191 192
function configureCommandlineSwitchesSync(cliArgs) {
	const SUPPORTED_ELECTRON_SWITCHES = [

		// alias from us for --disable-gpu
		'disable-hardware-acceleration',

		// provided by Electron
193 194 195 196
		'disable-color-correct-rendering',

		// override for the color profile to use
		'force-color-profile'
197
	];
198

199 200 201
	if (process.platform === 'linux') {
		SUPPORTED_ELECTRON_SWITCHES.push('force-renderer-accessibility');
	}
202

203 204 205 206 207 208
	const SUPPORTED_MAIN_PROCESS_SWITCHES = [

		// Persistently enable proposed api via argv.json: https://github.com/microsoft/vscode/issues/99775
		'enable-proposed-api'
	];

209
	// Read argv config
210
	const argvConfig = readArgvConfigSync();
211

212 213
	Object.keys(argvConfig).forEach(argvKey => {
		const argvValue = argvConfig[argvKey];
214

215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230
		// Append Electron flags to Electron
		if (SUPPORTED_ELECTRON_SWITCHES.indexOf(argvKey) !== -1) {
			// Color profile
			if (argvKey === 'force-color-profile') {
				if (argvValue) {
					app.commandLine.appendSwitch(argvKey, argvValue);
				}
			}

			// Others
			else if (argvValue === true || argvValue === 'true') {
				if (argvKey === 'disable-hardware-acceleration') {
					app.disableHardwareAcceleration(); // needs to be called explicitly
				} else {
					app.commandLine.appendSwitch(argvKey);
				}
231 232 233
			}
		}

234 235 236 237 238 239 240 241
		// Append main process flags to process.argv
		else if (SUPPORTED_MAIN_PROCESS_SWITCHES.indexOf(argvKey) !== -1) {
			if (argvKey === 'enable-proposed-api') {
				if (Array.isArray(argvValue)) {
					argvValue.forEach(id => id && typeof id === 'string' && process.argv.push('--enable-proposed-api', id));
				} else {
					console.error(`Unexpected value for \`enable-proposed-api\` in argv.json. Expected array of extension ids.`);
				}
242 243 244
			}
		}
	});
245 246

	// Support JS Flags
247
	const jsFlags = getJSFlags(cliArgs);
248
	if (jsFlags) {
249
		app.commandLine.appendSwitch('js-flags', jsFlags);
J
Joao Moreno 已提交
250
	}
251

252
	// TODO@Deepak Electron 7 workaround for https://github.com/microsoft/vscode/issues/88873
253 254
	app.commandLine.appendSwitch('disable-features', 'LayoutNG');

255
	return argvConfig;
J
Joao Moreno 已提交
256 257
}

258
function readArgvConfigSync() {
259 260 261 262 263 264 265 266

	// Read or create the argv.json config file sync before app('ready')
	const argvConfigPath = getArgvConfigPath();
	let argvConfig;
	try {
		argvConfig = JSON.parse(stripComments(fs.readFileSync(argvConfigPath).toString()));
	} catch (error) {
		if (error && error.code === 'ENOENT') {
267
			createDefaultArgvConfigSync(argvConfigPath);
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
		} else {
			console.warn(`Unable to read argv.json configuration file in ${argvConfigPath}, falling back to defaults (${error})`);
		}
	}

	// Fallback to default
	if (!argvConfig) {
		argvConfig = {
			'disable-color-correct-rendering': true // Force pre-Chrome-60 color profile handling (for https://github.com/Microsoft/vscode/issues/51791)
		};
	}

	return argvConfig;
}

283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307
/**
 * @param {string} argvConfigPath
 */
function createDefaultArgvConfigSync(argvConfigPath) {
	try {

		// Ensure argv config parent exists
		const argvConfigPathDirname = path.dirname(argvConfigPath);
		if (!fs.existsSync(argvConfigPathDirname)) {
			fs.mkdirSync(argvConfigPathDirname);
		}

		// Migrate over legacy locale
		const localeConfigPath = path.join(userDataPath, 'User', 'locale.json');
		const legacyLocale = getLegacyUserDefinedLocaleSync(localeConfigPath);
		if (legacyLocale) {
			try {
				fs.unlinkSync(localeConfigPath);
			} catch (error) {
				//ignore
			}
		}

		// Default argv content
		const defaultArgvConfigContent = [
G
Greg Van Liew 已提交
308
			'// This configuration file allows you to pass permanent command line arguments to VS Code.',
309 310 311 312 313
			'// Only a subset of arguments is currently supported to reduce the likelyhood of breaking',
			'// the installation.',
			'//',
			'// PLEASE DO NOT CHANGE WITHOUT UNDERSTANDING THE IMPACT',
			'//',
G
Greg Van Liew 已提交
314
			'// NOTE: Changing this file requires a restart of VS Code.',
315
			'{',
B
Benjamin Pasero 已提交
316 317
			'	// Use software rendering instead of hardware accelerated rendering.',
			'	// This can help in cases where you see rendering issues in VS Code.',
B
Benjamin Pasero 已提交
318 319 320 321 322
			'	// "disable-hardware-acceleration": true,',
			'',
			'	// Enabled by default by VS Code to resolve color issues in the renderer',
			'	// See https://github.com/Microsoft/vscode/issues/51791 for details',
			'	"disable-color-correct-rendering": true'
323 324 325 326 327 328
		];

		if (legacyLocale) {
			defaultArgvConfigContent[defaultArgvConfigContent.length - 1] = `${defaultArgvConfigContent[defaultArgvConfigContent.length - 1]},`; // append trailing ","

			defaultArgvConfigContent.push('');
G
Greg Van Liew 已提交
329
			defaultArgvConfigContent.push('	// Display language of VS Code');
330 331 332 333 334 335 336 337 338 339 340 341
			defaultArgvConfigContent.push(`	"locale": "${legacyLocale}"`);
		}

		defaultArgvConfigContent.push('}');

		// Create initial argv.json with default content
		fs.writeFileSync(argvConfigPath, defaultArgvConfigContent.join('\n'));
	} catch (error) {
		console.error(`Unable to create argv.json configuration file in ${argvConfigPath}, falling back to defaults (${error})`);
	}
}

342 343 344 345 346 347 348 349 350 351 352 353 354 355
function getArgvConfigPath() {
	const vscodePortable = process.env['VSCODE_PORTABLE'];
	if (vscodePortable) {
		return path.join(vscodePortable, 'argv.json');
	}

	let dataFolderName = product.dataFolderName;
	if (process.env['VSCODE_DEV']) {
		dataFolderName = `${dataFolderName}-dev`;
	}

	return path.join(os.homedir(), dataFolderName, 'argv.json');
}

356
/**
357
 * @param {ParsedArgs} cliArgs
358 359
 * @returns {string}
 */
360 361
function getJSFlags(cliArgs) {
	const jsFlags = [];
362 363

	// Add any existing JS flags we already got from the command line
364 365
	if (cliArgs['js-flags']) {
		jsFlags.push(cliArgs['js-flags']);
366 367
	}

368
	// Support max-memory flag
369 370
	if (cliArgs['max-memory'] && !/max_old_space_size=(\d+)/g.exec(cliArgs['js-flags'])) {
		jsFlags.push(`--max_old_space_size=${cliArgs['max-memory']}`);
371
	}
372 373

	return jsFlags.length > 0 ? jsFlags.join(' ') : null;
374 375
}

376
/**
377 378
 * @param {ParsedArgs} cliArgs
 *
379 380
 * @returns {string}
 */
381 382 383 384
function getUserDataPath(cliArgs) {
	if (portable.isPortable) {
		return path.join(portable.portableDataPath, 'user-data');
	}
J
Joao Moreno 已提交
385

386
	return path.resolve(cliArgs['user-data-dir'] || paths.getDefaultUserDataPath(process.platform));
J
Joao Moreno 已提交
387 388
}

389 390 391
/**
 * @returns {ParsedArgs}
 */
392
function parseCLIArgs() {
D
Daniel Imms 已提交
393
	const minimist = require('minimist');
394

395 396 397 398 399
	return minimist(process.argv, {
		string: [
			'user-data-dir',
			'locale',
			'js-flags',
400 401
			'max-memory',
			'crash-reporter-directory'
402 403
		]
	});
J
Joao Moreno 已提交
404 405
}

406 407 408
function setCurrentWorkingDirectory() {
	try {
		if (process.platform === 'win32') {
409
			process.env['VSCODE_CWD'] = process.cwd(); // remember as environment variable
410 411 412
			process.chdir(path.dirname(app.getPath('exe'))); // always set application folder as cwd
		} else if (process.env['VSCODE_CWD']) {
			process.chdir(process.env['VSCODE_CWD']);
A
Alex Dima 已提交
413
		}
414 415 416 417
	} catch (err) {
		console.error(err);
	}
}
A
Alex Dima 已提交
418

419
function registerListeners() {
A
Alex Dima 已提交
420

421
	/**
422
	 * macOS: when someone drops a file to the not-yet running VSCode, the open-file event fires even before
423 424 425 426
	 * the app-ready event. We listen very early for open-file and remember this upon startup as path to open.
	 *
	 * @type {string[]}
	 */
427 428
	const macOpenFiles = [];
	global['macOpenFiles'] = macOpenFiles;
429
	app.on('open-file', function (event, path) {
430
		macOpenFiles.push(path);
431
	});
432

433
	/**
434
	 * macOS: react to open-url requests.
435 436 437
	 *
	 * @type {string[]}
	 */
438 439 440
	const openUrls = [];
	const onOpenUrl = function (event, url) {
		event.preventDefault();
441

442 443
		openUrls.push(url);
	};
J
Joao Moreno 已提交
444

445 446 447
	app.on('will-finish-launching', function () {
		app.on('open-url', onOpenUrl);
	});
J
Joao Moreno 已提交
448

449
	global['getOpenUrls'] = function () {
450
		app.removeListener('open-url', onOpenUrl);
451

452 453
		return openUrls;
	};
454 455
}

456
/**
B
Benjamin Pasero 已提交
457
 * @returns {{ ensureExists: () => Promise<string | undefined> }}
458
 */
459
function getNodeCachedDir() {
460
	return new class {
461

462 463 464 465
		constructor() {
			this.value = this._compute();
		}

B
Benjamin Pasero 已提交
466 467
		async ensureExists() {
			try {
468
				await mkdirp(this.value);
B
Benjamin Pasero 已提交
469 470 471 472 473

				return this.value;
			} catch (error) {
				// ignore
			}
474 475 476 477 478 479
		}

		_compute() {
			if (process.argv.indexOf('--no-cached-data') > 0) {
				return undefined;
			}
480

481 482 483 484
			// IEnvironmentService.isBuilt
			if (process.env['VSCODE_DEV']) {
				return undefined;
			}
485

486
			// find commit id
487
			const commit = product.commit;
488 489 490
			if (!commit) {
				return undefined;
			}
491

492 493 494 495
			return path.join(userDataPath, 'CachedData', commit);
		}
	};
}
496

497 498 499 500 501 502 503 504 505 506 507 508
/**
 * @param {string} dir
 * @returns {Promise<string>}
 */
function mkdirp(dir) {
	const fs = require('fs');

	return new Promise((resolve, reject) => {
		fs.mkdir(dir, { recursive: true }, err => (err && err.code !== 'EEXIST') ? reject(err) : resolve(dir));
	});
}

509
//#region NLS Support
510

B
Benjamin Pasero 已提交
511 512 513 514 515
/**
 * Resolve the NLS configuration
 *
 * @return {Promise<import('./vs/base/node/languagePacks').NLSConfiguration>}
 */
516
async function resolveNlsConfiguration() {
B
Benjamin Pasero 已提交
517 518 519

	// First, we need to test a user defined locale. If it fails we try the app locale.
	// If that fails we fall back to English.
520
	let nlsConfiguration = nlsConfigurationPromise ? await nlsConfigurationPromise : undefined;
B
Benjamin Pasero 已提交
521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545
	if (!nlsConfiguration) {

		// Try to use the app locale. Please note that the app locale is only
		// valid after we have received the app ready event. This is why the
		// code is here.
		let appLocale = app.getLocale();
		if (!appLocale) {
			nlsConfiguration = { locale: 'en', availableLanguages: {} };
		} else {

			// See above the comment about the loader and case sensitiviness
			appLocale = appLocale.toLowerCase();

			nlsConfiguration = await lp.getNLSConfiguration(product.commit, userDataPath, metaDataFile, appLocale);
			if (!nlsConfiguration) {
				nlsConfiguration = { locale: appLocale, availableLanguages: {} };
			}
		}
	} else {
		// We received a valid nlsConfig from a user defined locale
	}

	return nlsConfiguration;
}

546 547 548 549
/**
 * @param {string} content
 * @returns {string}
 */
550
function stripComments(content) {
A
Alex Dima 已提交
551
	const regexp = /("(?:[^\\"]*(?:\\.)?)*")|('(?:[^\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
552 553

	return content.replace(regexp, function (match, m1, m2, m3, m4) {
554 555 556 557
		// Only one of m1, m2, m3, m4 matches
		if (m3) {
			// A block comment. Replace with nothing
			return '';
D
Dirk Baeumer 已提交
558
		} else if (m4) {
559
			// A line comment. If it ends in \r?\n then keep it.
560
			const length_1 = m4.length;
561 562 563 564 565 566
			if (length_1 > 2 && m4[length_1 - 1] === '\n') {
				return m4[length_1 - 2] === '\r' ? '\r\n' : '\n';
			}
			else {
				return '';
			}
D
Dirk Baeumer 已提交
567
		} else {
568 569 570 571
			// We match a string
			return match;
		}
	});
J
lint  
Joao Moreno 已提交
572
}
573

574
/**
B
Benjamin Pasero 已提交
575 576 577 578 579
 * Language tags are case insensitive however an amd loader is case sensitive
 * To make this work on case preserving & insensitive FS we do the following:
 * the language bundles have lower case language tags and we always lower case
 * the locale we receive from the user or OS.
 *
580 581
 * @param {{ locale: string | undefined; }} argvConfig
 * @returns {string | undefined}
582
 */
583
function getUserDefinedLocale(argvConfig) {
584
	const locale = args['locale'];
D
Dirk Baeumer 已提交
585
	if (locale) {
586
		return locale.toLowerCase(); // a directly provided --locale always wins
D
Dirk Baeumer 已提交
587 588
	}

589 590
	return argvConfig.locale && typeof argvConfig.locale === 'string' ? argvConfig.locale.toLowerCase() : undefined;
}
B
Benjamin Pasero 已提交
591

592 593 594 595 596
/**
 * @param {string} localeConfigPath
 * @returns {string | undefined}
 */
function getLegacyUserDefinedLocaleSync(localeConfigPath) {
B
Benjamin Pasero 已提交
597
	try {
598
		const content = stripComments(fs.readFileSync(localeConfigPath).toString());
B
Benjamin Pasero 已提交
599 600 601 602 603 604

		const value = JSON.parse(content).locale;
		return value && typeof value === 'string' ? value.toLowerCase() : undefined;
	} catch (error) {
		// ignore
	}
D
Dirk Baeumer 已提交
605
}
606

607
//#endregion