main.js 16.5 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
perf.mark('main:started');

J
Joao Moreno 已提交
12 13
const fs = require('fs');
const path = require('path');
14 15
const bootstrap = require('./bootstrap');
const paths = require('./paths');
16 17 18 19
// @ts-ignore
const product = require('../product.json');
// @ts-ignore
const app = require('electron').app;
J
Joao Moreno 已提交
20

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

// Enable ASAR support
bootstrap.enableASARSupport();

// Set userData path before app 'ready' event and call to process.chdir
const args = parseCLIArgs();
const userDataPath = getUserDataPath(args);
30

31 32 33 34 35 36 37 38 39
// global storage migration needs to happen very early before app.on("ready")
// TODO@Ben remove after a while
try {
	const globalStorageHome = path.join(userDataPath, 'User', 'globalStorage', 'state.vscdb');
	const localStorageHome = path.join(userDataPath, 'Local Storage');
	const localStorageDB = path.join(localStorageHome, 'file__0.localstorage');
	const localStorageDBBackup = path.join(localStorageHome, 'file__0.vscmig');
	if (!fs.existsSync(globalStorageHome) && fs.existsSync(localStorageDB)) {
		fs.renameSync(localStorageDB, localStorageDBBackup);
40
	}
41 42
} catch (error) {
	console.error(error);
43 44
}

45 46 47 48 49 50 51 52
app.setPath('userData', userDataPath);

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

// Global app listeners
registerListeners();

53 54 55 56 57
/**
 * Support user defined locale
 *
 * @type {Promise}
 */
58
let nlsConfiguration = undefined;
59
const userDefinedLocale = getUserDefinedLocale();
60 61 62 63 64 65 66
userDefinedLocale.then((locale) => {
	if (locale && !nlsConfiguration) {
		nlsConfiguration = getNLSConfiguration(locale);
	}
});

// Configure command line switches
67
const nodeCachedDataDir = getNodeCachedDir();
68 69 70 71
configureCommandlineSwitches(args, nodeCachedDataDir);

// Load our code once ready
app.once('ready', function () {
B
Benjamin Pasero 已提交
72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
	if (args['trace']) {
		// @ts-ignore
		const contentTracing = require('electron').contentTracing;

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

		contentTracing.startRecording(traceOptions, () => onReady());
	} else {
		onReady();
	}
});

function onReady() {
88 89 90 91 92 93 94 95 96 97 98
	perf.mark('main:appReady');

	Promise.all([nodeCachedDataDir.ensureExists(), userDefinedLocale]).then(([cachedDataDir, locale]) => {
		if (locale && !nlsConfiguration) {
			nlsConfiguration = getNLSConfiguration(locale);
		}

		if (!nlsConfiguration) {
			nlsConfiguration = Promise.resolve(undefined);
		}

H
HYEWON HWANG 已提交
99
		// First, we need to test a user defined locale. If it fails we try the app locale.
100 101 102 103 104 105
		// If that fails we fall back to English.
		nlsConfiguration.then((nlsConfig) => {

			const startup = nlsConfig => {
				nlsConfig._languagePackSupport = true;
				process.env['VSCODE_NLS_CONFIG'] = JSON.stringify(nlsConfig);
106
				process.env['VSCODE_NODE_CACHED_DATA_DIR'] = cachedDataDir || '';
107

108
				// Load main in AMD
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
				require('./bootstrap-amd').load('vs/code/electron-main/main');
			};

			// We recevied a valid nlsConfig from a user defined locale
			if (nlsConfig) {
				startup(nlsConfig);
			}

			// 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.
			else {
				let appLocale = app.getLocale();
				if (!appLocale) {
					startup({ locale: 'en', availableLanguages: {} });
				} else {

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

					getNLSConfiguration(appLocale).then((nlsConfig) => {
						if (!nlsConfig) {
							nlsConfig = { locale: appLocale, availableLanguages: {} };
						}

						startup(nlsConfig);
					});
				}
			}
		});
	}, console.error);
B
Benjamin Pasero 已提交
140
}
141

142 143 144 145 146 147
/**
 * @typedef {import('minimist').ParsedArgs} ParsedArgs
 *
 * @param {ParsedArgs} cliArgs
 * @param {{ jsFlags: () => string }} nodeCachedDataDir
 */
148 149 150
function configureCommandlineSwitches(cliArgs, nodeCachedDataDir) {

	// Force pre-Chrome-60 color profile handling (for https://github.com/Microsoft/vscode/issues/51791)
151
	// TODO@Ben check if future versions of Electron still support this flag
152 153 154 155 156 157
	app.commandLine.appendSwitch('disable-features', 'ColorCorrectRendering');

	// Support JS Flags
	const jsFlags = resolveJSFlags(cliArgs, nodeCachedDataDir.jsFlags());
	if (jsFlags) {
		app.commandLine.appendSwitch('--js-flags', jsFlags);
J
Joao Moreno 已提交
158 159 160
	}
}

161
/**
162 163
 * @param {ParsedArgs} cliArgs
 * @param {string[]} jsFlags
164 165
 * @returns {string}
 */
166
function resolveJSFlags(cliArgs, ...jsFlags) {
167 168

	// Add any existing JS flags we already got from the command line
169 170
	if (cliArgs['js-flags']) {
		jsFlags.push(cliArgs['js-flags']);
171 172
	}

173
	// Support max-memory flag
174 175
	if (cliArgs['max-memory'] && !/max_old_space_size=(\d+)/g.exec(cliArgs['js-flags'])) {
		jsFlags.push(`--max_old_space_size=${cliArgs['max-memory']}`);
176
	}
177 178

	return jsFlags.length > 0 ? jsFlags.join(' ') : null;
179 180
}

181
/**
182 183
 * @param {ParsedArgs} cliArgs
 *
184 185
 * @returns {string}
 */
186 187 188 189
function getUserDataPath(cliArgs) {
	if (portable.isPortable) {
		return path.join(portable.portableDataPath, 'user-data');
	}
J
Joao Moreno 已提交
190

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

194 195 196
/**
 * @returns {ParsedArgs}
 */
197
function parseCLIArgs() {
B
Benjamin Pasero 已提交
198
	const minimist = require('minimist');
199

200 201 202 203 204 205 206 207
	return minimist(process.argv, {
		string: [
			'user-data-dir',
			'locale',
			'js-flags',
			'max-memory'
		]
	});
J
Joao Moreno 已提交
208 209
}

210 211 212 213 214 215 216
function setCurrentWorkingDirectory() {
	try {
		if (process.platform === 'win32') {
			process.env['VSCODE_CWD'] = process.cwd(); // remember as environment letiable
			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 已提交
217
		}
218 219 220 221
	} catch (err) {
		console.error(err);
	}
}
A
Alex Dima 已提交
222

223
function registerListeners() {
A
Alex Dima 已提交
224

225 226 227 228 229 230
	/**
	 * Mac: when someone drops a file to the not-yet running VSCode, the open-file event fires even before
	 * the app-ready event. We listen very early for open-file and remember this upon startup as path to open.
	 *
	 * @type {string[]}
	 */
231 232
	const macOpenFiles = [];
	global['macOpenFiles'] = macOpenFiles;
233
	app.on('open-file', function (event, path) {
234
		macOpenFiles.push(path);
235
	});
236

237 238 239 240 241
	/**
	 * React to open-url requests.
	 *
	 * @type {string[]}
	 */
242 243 244
	const openUrls = [];
	const onOpenUrl = function (event, url) {
		event.preventDefault();
245

246 247
		openUrls.push(url);
	};
J
Joao Moreno 已提交
248

249 250 251
	app.on('will-finish-launching', function () {
		app.on('open-url', onOpenUrl);
	});
J
Joao Moreno 已提交
252

253
	global['getOpenUrls'] = function () {
254
		app.removeListener('open-url', onOpenUrl);
255

256 257
		return openUrls;
	};
258 259
}

260
/**
261
 * @returns {{ jsFlags: () => string; ensureExists: () => Promise<string | void>, _compute: () => string; }}
262
 */
263
function getNodeCachedDir() {
264
	return new class {
265

266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
		constructor() {
			this.value = this._compute();
		}

		jsFlags() {
			return this.value ? '--nolazy' : undefined;
		}

		ensureExists() {
			return mkdirp(this.value).then(() => this.value, () => { /*ignore*/ });
		}

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

283 284 285 286
			// IEnvironmentService.isBuilt
			if (process.env['VSCODE_DEV']) {
				return undefined;
			}
287

288
			// find commit id
289
			const commit = product.commit;
290 291 292
			if (!commit) {
				return undefined;
			}
293

294 295 296 297
			return path.join(userDataPath, 'CachedData', commit);
		}
	};
}
298

299
//#region NLS Support
300 301 302 303
/**
 * @param {string} content
 * @returns {string}
 */
304
function stripComments(content) {
305 306 307
	const regexp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;

	return content.replace(regexp, function (match, m1, m2, m3, m4) {
308 309 310 311
		// Only one of m1, m2, m3, m4 matches
		if (m3) {
			// A block comment. Replace with nothing
			return '';
D
Dirk Baeumer 已提交
312
		} else if (m4) {
313
			// A line comment. If it ends in \r?\n then keep it.
314
			const length_1 = m4.length;
315 316 317 318 319 320
			if (length_1 > 2 && m4[length_1 - 1] === '\n') {
				return m4[length_1 - 2] === '\r' ? '\r\n' : '\n';
			}
			else {
				return '';
			}
D
Dirk Baeumer 已提交
321
		} else {
322 323 324 325
			// We match a string
			return match;
		}
	});
J
lint  
Joao Moreno 已提交
326
}
327

328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366
/**
 * @param {string} dir
 * @returns {Promise<string>}
 */
function mkdir(dir) {
	return new Promise((c, e) => fs.mkdir(dir, err => (err && err.code !== 'EEXIST') ? e(err) : c(dir)));
}

/**
 * @param {string} file
 * @returns {Promise<boolean>}
 */
function exists(file) {
	return new Promise(c => fs.exists(file, c));
}

/**
 * @param {string} file
 * @returns {Promise<void>}
 */
function touch(file) {
	return new Promise((c, e) => { const d = new Date(); fs.utimes(file, d, d, err => err ? e(err) : c()); });
}

/**
 * @param {string} file
 * @returns {Promise<object>}
 */
function lstat(file) {
	return new Promise((c, e) => fs.lstat(file, (err, stats) => err ? e(err) : c(stats)));
}

/**
 * @param {string} dir
 * @returns {Promise<string[]>}
 */
function readdir(dir) {
	return new Promise((c, e) => fs.readdir(dir, (err, files) => err ? e(err) : c(files)));
}
D
Dirk Baeumer 已提交
367

368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
/**
 * @param {string} dir
 * @returns {Promise<void>}
 */
function rmdir(dir) {
	return new Promise((c, e) => fs.rmdir(dir, err => err ? e(err) : c(undefined)));
}

/**
 * @param {string} file
 * @returns {Promise<void>}
 */
function unlink(file) {
	return new Promise((c, e) => fs.unlink(file, err => err ? e(err) : c(undefined)));
}

/**
 * @param {string} dir
 * @returns {Promise<string>}
 */
D
Dirk Baeumer 已提交
388
function mkdirp(dir) {
J
Joao Moreno 已提交
389 390 391
	return mkdir(dir).then(null, err => {
		if (err && err.code === 'ENOENT') {
			const parent = path.dirname(dir);
D
Dirk Baeumer 已提交
392

J
Joao Moreno 已提交
393 394
			if (parent !== dir) { // if not arrived at root
				return mkdirp(parent).then(() => mkdir(dir));
D
Dirk Baeumer 已提交
395
			}
J
Joao Moreno 已提交
396
		}
D
Dirk Baeumer 已提交
397

J
Joao Moreno 已提交
398
		throw err;
D
Dirk Baeumer 已提交
399 400 401
	});
}

402 403 404 405
/**
 * @param {string} location
 * @returns {Promise<void>}
 */
406 407 408 409 410 411 412 413 414
function rimraf(location) {
	return lstat(location).then(stat => {
		if (stat.isDirectory() && !stat.isSymbolicLink()) {
			return readdir(location)
				.then(children => Promise.all(children.map(child => rimraf(path.join(location, child)))))
				.then(() => rmdir(location));
		} else {
			return unlink(location);
		}
415
	}, err => {
416
		if (err.code === 'ENOENT') {
R
Rob Lourens 已提交
417
			return undefined;
418 419 420 421 422
		}
		throw err;
	});
}

J
Joshua 已提交
423
// Language tags are case insensitive however an amd loader is case sensitive
D
Dirk Baeumer 已提交
424 425 426
// 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.
427 428 429
/**
 * @returns {Promise<string>}
 */
D
Dirk Baeumer 已提交
430
function getUserDefinedLocale() {
431
	const locale = args['locale'];
D
Dirk Baeumer 已提交
432 433 434 435
	if (locale) {
		return Promise.resolve(locale.toLowerCase());
	}

436
	const localeConfig = path.join(userDataPath, 'User', 'locale.json');
D
Dirk Baeumer 已提交
437 438
	return exists(localeConfig).then((result) => {
		if (result) {
439
			return bootstrap.readFile(localeConfig).then((content) => {
D
Dirk Baeumer 已提交
440 441
				content = stripComments(content);
				try {
442
					const value = JSON.parse(content).locale;
D
Dirk Baeumer 已提交
443 444 445 446 447 448 449 450 451 452 453
					return value && typeof value === 'string' ? value.toLowerCase() : undefined;
				} catch (e) {
					return undefined;
				}
			});
		} else {
			return undefined;
		}
	});
}

454 455 456
/**
 * @returns {object}
 */
D
Dirk Baeumer 已提交
457
function getLanguagePackConfigurations() {
458
	const configFile = path.join(userDataPath, 'languagepacks.json');
D
Dirk Baeumer 已提交
459 460 461 462 463 464 465 466 467
	try {
		return require(configFile);
	} catch (err) {
		// Do nothing. If we can't read the file we have no
		// language pack config.
	}
	return undefined;
}

468 469 470 471
/**
 * @param {object} config
 * @param {string} locale
 */
D
Dirk Baeumer 已提交
472 473 474 475 476 477
function resolveLanguagePackLocale(config, locale) {
	try {
		while (locale) {
			if (config[locale]) {
				return locale;
			} else {
478
				const index = locale.lastIndexOf('-');
D
Dirk Baeumer 已提交
479 480 481 482
				if (index > 0) {
					locale = locale.substring(0, index);
				} else {
					return undefined;
483 484 485
				}
			}
		}
D
Dirk Baeumer 已提交
486 487
	} catch (err) {
		console.error('Resolving language pack configuration failed.', err);
488
	}
D
Dirk Baeumer 已提交
489 490
	return undefined;
}
491

492 493 494
/**
 * @param {string} locale
 */
D
Dirk Baeumer 已提交
495
function getNLSConfiguration(locale) {
J
Joao Moreno 已提交
496
	if (locale === 'pseudo') {
D
Dirk Baeumer 已提交
497
		return Promise.resolve({ locale: locale, availableLanguages: {}, pseudo: true });
J
Joao Moreno 已提交
498
	}
D
Dirk Baeumer 已提交
499

J
Joao Moreno 已提交
500
	if (process.env['VSCODE_DEV']) {
D
Dirk Baeumer 已提交
501
		return Promise.resolve({ locale: locale, availableLanguages: {} });
J
Joao Moreno 已提交
502
	}
503

J
Joao Moreno 已提交
504 505
	// We have a built version so we have extracted nls file. Try to find
	// the right file to use.
506

507
	// Check if we have an English or English US locale. If so fall to default since that is our
508
	// English translation (we don't ship *.nls.en.json files)
509
	if (locale && (locale === 'en' || locale === 'en-us')) {
D
Dirk Baeumer 已提交
510
		return Promise.resolve({ locale: locale, availableLanguages: {} });
511 512
	}

513
	const initialLocale = locale;
D
Dirk Baeumer 已提交
514

515
	perf.mark('nlsGeneration:start');
516

517
	const defaultResult = function (locale) {
518 519
		perf.mark('nlsGeneration:end');
		return Promise.resolve({ locale: locale, availableLanguages: {} });
520 521
	};
	try {
522
		const commit = product.commit;
523
		if (!commit) {
524
			return defaultResult(initialLocale);
525
		}
526
		const configs = getLanguagePackConfigurations();
527
		if (!configs) {
528
			return defaultResult(initialLocale);
529 530 531 532 533
		}
		locale = resolveLanguagePackLocale(configs, locale);
		if (!locale) {
			return defaultResult(initialLocale);
		}
534
		const packConfig = configs[locale];
535 536
		let mainPack;
		if (!packConfig || typeof packConfig.hash !== 'string' || !packConfig.translations || typeof (mainPack = packConfig.translations['vscode']) !== 'string') {
537
			return defaultResult(initialLocale);
538 539 540
		}
		return exists(mainPack).then((fileExists) => {
			if (!fileExists) {
541
				return defaultResult(initialLocale);
D
Dirk Baeumer 已提交
542
			}
543 544 545 546 547 548
			const packId = packConfig.hash + '.' + locale;
			const cacheRoot = path.join(userDataPath, 'clp', packId);
			const coreLocation = path.join(cacheRoot, commit);
			const translationsConfigFile = path.join(cacheRoot, 'tcf.json');
			const corruptedFile = path.join(cacheRoot, 'corrupted.info');
			const result = {
549 550 551 552 553
				locale: initialLocale,
				availableLanguages: { '*': locale },
				_languagePackId: packId,
				_translationsConfigFile: translationsConfigFile,
				_cacheRoot: cacheRoot,
554 555
				_resolvedLanguagePackCoreLocation: coreLocation,
				_corruptedFile: corruptedFile
556
			};
557 558 559 560 561 562 563
			return exists(corruptedFile).then((corrupted) => {
				// The nls cache directory is corrupted.
				let toDelete;
				if (corrupted) {
					toDelete = rimraf(cacheRoot);
				} else {
					toDelete = Promise.resolve(undefined);
D
Dirk Baeumer 已提交
564
				}
565 566 567 568 569 570 571 572 573
				return toDelete.then(() => {
					return exists(coreLocation).then((fileExists) => {
						if (fileExists) {
							// We don't wait for this. No big harm if we can't touch
							touch(coreLocation).catch(() => { });
							perf.mark('nlsGeneration:end');
							return result;
						}
						return mkdirp(coreLocation).then(() => {
574
							return Promise.all([bootstrap.readFile(path.join(__dirname, 'nls.metadata.json')), bootstrap.readFile(mainPack)]);
575
						}).then((values) => {
576 577 578 579
							const metadata = JSON.parse(values[0]);
							const packData = JSON.parse(values[1]).contents;
							const bundles = Object.keys(metadata.bundles);
							const writes = [];
580
							for (let bundle of bundles) {
581 582
								const modules = metadata.bundles[bundle];
								const target = Object.create(null);
583
								for (let module of modules) {
584 585 586
									const keys = metadata.keys[module];
									const defaultMessages = metadata.messages[module];
									const translations = packData[module];
587 588 589 590
									let targetStrings;
									if (translations) {
										targetStrings = [];
										for (let i = 0; i < keys.length; i++) {
591 592
											const elem = keys[i];
											const key = typeof elem === 'string' ? elem : elem.key;
593 594 595 596 597 598 599 600
											let translatedMessage = translations[key];
											if (translatedMessage === undefined) {
												translatedMessage = defaultMessages[i];
											}
											targetStrings.push(translatedMessage);
										}
									} else {
										targetStrings = defaultMessages;
D
Dirk Baeumer 已提交
601
									}
602
									target[module] = targetStrings;
D
Dirk Baeumer 已提交
603
								}
604
								writes.push(bootstrap.writeFile(path.join(coreLocation, bundle.replace(/\//g, '!') + '.nls.json'), JSON.stringify(target)));
D
Dirk Baeumer 已提交
605
							}
606
							writes.push(bootstrap.writeFile(translationsConfigFile, JSON.stringify(packConfig.translations)));
607 608 609 610 611 612 613 614 615
							return Promise.all(writes);
						}).then(() => {
							perf.mark('nlsGeneration:end');
							return result;
						}).catch((err) => {
							console.error('Generating translation files failed.', err);
							return defaultResult(locale);
						});
					});
D
Dirk Baeumer 已提交
616 617
				});
			});
618 619 620 621
		});
	} catch (err) {
		console.error('Generating translation files failed.', err);
		return defaultResult(locale);
622
	}
J
Joao Moreno 已提交
623
}
J
Joshua 已提交
624
//#endregion