main.js 14.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
'use strict';

D
Dirk Baeumer 已提交
7
let perf = require('./vs/base/common/performance');
8 9
perf.mark('main:started');

J
Joao Moreno 已提交
10
// Perf measurements
11
global.perfStartTime = Date.now();
J
Joao Moreno 已提交
12

B
Benjamin Pasero 已提交
13 14
Error.stackTraceLimit = 100; // increase number of stack frames (from 10, https://github.com/v8/v8/wiki/Stack-Trace-API)

A
Alex Dima 已提交
15 16 17 18 19 20 21 22
//#region Add support for using node_modules.asar
(function () {
	const path = require('path');
	const Module = require('module');
	const NODE_MODULES_PATH = path.join(__dirname, '../node_modules');
	const NODE_MODULES_ASAR_PATH = NODE_MODULES_PATH + '.asar';

	const originalResolveLookupPaths = Module._resolveLookupPaths;
A
Alex Dima 已提交
23 24
	Module._resolveLookupPaths = function (request, parent, newReturn) {
		const result = originalResolveLookupPaths(request, parent, newReturn);
A
Alex Dima 已提交
25

A
Alex Dima 已提交
26
		const paths = newReturn ? result : result[1];
A
Alex Dima 已提交
27 28 29 30 31 32 33 34 35 36 37 38
		for (let i = 0, len = paths.length; i < len; i++) {
			if (paths[i] === NODE_MODULES_PATH) {
				paths.splice(i, 0, NODE_MODULES_ASAR_PATH);
				break;
			}
		}

		return result;
	};
})();
//#endregion

D
Dirk Baeumer 已提交
39 40 41 42 43
let app = require('electron').app;
let fs = require('fs');
let path = require('path');
let minimist = require('minimist');
let paths = require('./paths');
J
Joao Moreno 已提交
44

D
Dirk Baeumer 已提交
45
let args = minimist(process.argv, {
J
Joao Moreno 已提交
46 47 48
	string: ['user-data-dir', 'locale']
});

49
function stripComments(content) {
D
Dirk Baeumer 已提交
50 51
	let regexp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
	let result = content.replace(regexp, function (match, m1, m2, m3, m4) {
52 53 54 55
		// Only one of m1, m2, m3, m4 matches
		if (m3) {
			// A block comment. Replace with nothing
			return '';
D
Dirk Baeumer 已提交
56
		} else if (m4) {
57
			// A line comment. If it ends in \r?\n then keep it.
D
Dirk Baeumer 已提交
58
			let length_1 = m4.length;
59 60 61 62 63 64
			if (length_1 > 2 && m4[length_1 - 1] === '\n') {
				return m4[length_1 - 2] === '\r' ? '\r\n' : '\n';
			}
			else {
				return '';
			}
D
Dirk Baeumer 已提交
65
		} else {
66 67 68 69 70
			// We match a string
			return match;
		}
	});
	return result;
J
lint  
Joao Moreno 已提交
71
}
72

D
Dirk Baeumer 已提交
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
let _commit;
function getCommit() {
	if (_commit) {
		return _commit;
	}
	if (_commit === null) {
		return undefined;
	}
	try {
		let productJson = require(path.join(__dirname, '../product.json'));
		if (productJson.commit) {
			_commit = productJson.commit;
		} else {
			_commit = null;
		}
	} catch (exp) {
		_commit = null;
	}
91
	return _commit || undefined;
D
Dirk Baeumer 已提交
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 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 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
}

function mkdirp(dir) {
	return mkdir(dir)
		.then(null, (err) => {
			if (err && err.code === 'ENOENT') {
				let parent = path.dirname(dir);
				if (parent !== dir) { // if not arrived at root
					return mkdirp(parent)
						.then(() => {
							return mkdir(dir);
						});
				}
			}
			throw err;
		});
}

function mkdir(dir) {
	return new Promise((resolve, reject) => {
		fs.mkdir(dir, (err) => {
			if (err && err.code !== 'EEXIST') {
				reject(err);
			} else {
				resolve(dir);
			}
		});
	});
}

function exists(file) {
	return new Promise((resolve) => {
		fs.exists(file, (result) => {
			resolve(result);
		});
	});
}

function readFile(file) {
	return new Promise((resolve, reject) => {
		fs.readFile(file, 'utf8', (err, data) => {
			if (err) {
				reject(err);
				return;
			}
			resolve(data);
		});
	});
}

function writeFile(file, content) {
	return new Promise((resolve, reject) => {
		fs.writeFile(file, content, 'utf8', (err) => {
			if (err) {
				reject(err);
				return;
			}
			resolve(undefined);
		});
	});
}

function touch(file) {
	return new Promise((resolve, reject) => {
		let d = new Date();
		fs.utimes(file, d, d, (err) => {
			if (err) {
				reject(err);
				return;
			}
			resolve(undefined);
		});
	});
}

167 168 169
function resolveJSFlags() {
	let jsFlags = [];
	if (args['js-flags']) {
P
Peng Lyu 已提交
170
		jsFlags.push(args['js-flags']);
171
	}
P
Peng Lyu 已提交
172 173
	if (args['max-memory'] && !/max_old_space_size=(\d+)/g.exec(args['js-flags'])) {
		jsFlags.push(`--max_old_space_size=${args['max-memory']}`);
174 175 176 177 178 179 180 181
	}
	if (jsFlags.length > 0) {
		return jsFlags.join(' ');
	} else {
		return null;
	}
}

D
Dirk Baeumer 已提交
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
// Language tags are case insensitve 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.

function getUserDefinedLocale() {
	let locale = args['locale'];
	if (locale) {
		return Promise.resolve(locale.toLowerCase());
	}

	let userData = app.getPath('userData');
	let localeConfig = path.join(userData, 'User', 'locale.json');
	return exists(localeConfig).then((result) => {
		if (result) {
			return readFile(localeConfig).then((content) => {
				content = stripComments(content);
				try {
					let value = JSON.parse(content).locale;
					return value && typeof value === 'string' ? value.toLowerCase() : undefined;
				} catch (e) {
					return undefined;
				}
			});
		} else {
			return undefined;
		}
	});
}

function getLanguagePackConfigurations() {
	let userData = app.getPath('userData');
	let configFile = path.join(userData, 'languagepacks.json');
	try {
		return require(configFile);
	} catch (err) {
		// Do nothing. If we can't read the file we have no
		// language pack config.
	}
	return undefined;
}

function resolveLanguagePackLocale(config, locale) {
	try {
		while (locale) {
			if (config[locale]) {
				return locale;
			} else {
				let index = locale.lastIndexOf('-');
				if (index > 0) {
					locale = locale.substring(0, index);
				} else {
					return undefined;
235 236 237
				}
			}
		}
D
Dirk Baeumer 已提交
238 239
	} catch (err) {
		console.error('Resolving language pack configuration failed.', err);
240
	}
D
Dirk Baeumer 已提交
241 242
	return undefined;
}
243

D
Dirk Baeumer 已提交
244
function getNLSConfiguration(locale) {
J
Joao Moreno 已提交
245
	if (locale === 'pseudo') {
D
Dirk Baeumer 已提交
246
		return Promise.resolve({ locale: locale, availableLanguages: {}, pseudo: true });
J
Joao Moreno 已提交
247
	}
D
Dirk Baeumer 已提交
248

J
Joao Moreno 已提交
249
	if (process.env['VSCODE_DEV']) {
D
Dirk Baeumer 已提交
250
		return Promise.resolve({ locale: locale, availableLanguages: {} });
J
Joao Moreno 已提交
251
	}
252

D
Dirk Baeumer 已提交
253 254
	let userData = app.getPath('userData');

J
Joao Moreno 已提交
255 256
	// We have a built version so we have extracted nls file. Try to find
	// the right file to use.
257 258 259 260

	// Check if we have an English locale. If so fall to default since that is our
	// English translation (we don't ship *.nls.en.json files)
	if (locale && (locale == 'en' || locale.startsWith('en-'))) {
D
Dirk Baeumer 已提交
261
		return Promise.resolve({ locale: locale, availableLanguages: {} });
262 263
	}

D
Dirk Baeumer 已提交
264 265
	let initialLocale = locale;

266 267
	function resolveLocale(locale) {
		while (locale) {
D
Dirk Baeumer 已提交
268
			let candidate = path.join(__dirname, 'vs', 'code', 'electron-main', 'main.nls.') + locale + '.js';
269 270
			if (fs.existsSync(candidate)) {
				return { locale: initialLocale, availableLanguages: { '*': locale } };
J
Joao Moreno 已提交
271
			} else {
D
Dirk Baeumer 已提交
272
				let index = locale.lastIndexOf('-');
273 274 275
				if (index > 0) {
					locale = locale.substring(0, index);
				} else {
D
Dirk Baeumer 已提交
276
					locale = undefined;
277
				}
J
Joao Moreno 已提交
278 279
			}
		}
D
Dirk Baeumer 已提交
280
		return undefined;
J
Joao Moreno 已提交
281 282
	}

D
Dirk Baeumer 已提交
283 284
	let isCoreLangaguage = true;
	if (locale) {
285
		isCoreLangaguage = ['de', 'es', 'fr', 'it', 'ja', 'ko', 'ru', 'zh-cn', 'zh-tw'].some((language) => {
D
Dirk Baeumer 已提交
286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
			return locale === language || locale.startsWith(language + '-');
		});
	}

	if (isCoreLangaguage) {
		return Promise.resolve(resolveLocale(locale));
	} else {
		perf.mark('nlsGeneration:start');
		let defaultResult = function() {
			perf.mark('nlsGeneration:end');
			return Promise.resolve({ locale: locale, availableLanguages: {} });
		};
		try {
			let commit = getCommit();
			if (!commit) {
				return defaultResult();
			}
			let configs = getLanguagePackConfigurations();
			if (!configs) {
				return defaultResult();
			}
			let initialLocale = locale;
			locale = resolveLanguagePackLocale(configs, locale);
			if (!locale) {
				return defaultResult();
			}
312 313 314
			let packConfig = configs[locale];
			let mainPack;
			if (!packConfig || typeof packConfig.hash !== 'string' || !packConfig.translations || typeof (mainPack = packConfig.translations['vscode']) !== 'string') {
D
Dirk Baeumer 已提交
315 316
				return defaultResult();
			}
317
			return exists(mainPack).then((fileExists) => {
D
Dirk Baeumer 已提交
318 319 320
				if (!fileExists) {
					return defaultResult();
				}
321
				let packId = packConfig.hash + '.' + locale;
D
Dirk Baeumer 已提交
322 323
				let cacheRoot = path.join(userData, 'clp', packId);
				let coreLocation = path.join(cacheRoot, commit);
324
				let translationsConfigFile = path.join(cacheRoot, 'tcf.json');
D
Dirk Baeumer 已提交
325 326 327 328
				let result = {
					locale: initialLocale,
					availableLanguages: { '*': locale },
					_languagePackId: packId,
329
					_translationsConfigFile: translationsConfigFile,
D
Dirk Baeumer 已提交
330 331 332 333 334 335 336 337 338 339 340
					_cacheRoot: cacheRoot,
					_resolvedLanguagePackCoreLocation: coreLocation
				};
				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(() => {
341
						return Promise.all([readFile(path.join(__dirname, 'nls.metadata.json')), readFile(mainPack)]);
D
Dirk Baeumer 已提交
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 367 368 369 370
					}).then((values) => {
						let metadata = JSON.parse(values[0]);
						let packData = JSON.parse(values[1]).contents;
						let bundles = Object.keys(metadata.bundles);
						let writes = [];
						for (let bundle of bundles) {
							let modules = metadata.bundles[bundle];
							let target = Object.create(null);
							for (let module of modules) {
								let keys = metadata.keys[module];
								let defaultMessages = metadata.messages[module];
								let translations = packData[module];
								let targetStrings;
								if (translations) {
									targetStrings = [];
									for (let i = 0; i < keys.length; i++) {
										let elem = keys[i];
										let key = typeof elem === 'string' ? elem : elem.key;
										let translatedMessage = translations[key];
										if (translatedMessage === undefined) {
											translatedMessage = defaultMessages[i];
										}
										targetStrings.push(translatedMessage);
									}
								} else {
									targetStrings = defaultMessages;
								}
								target[module] = targetStrings;
							}
B
Benjamin Pasero 已提交
371
							writes.push(writeFile(path.join(coreLocation, bundle.replace(/\//g, '!') + '.nls.json'), JSON.stringify(target)));
D
Dirk Baeumer 已提交
372
						}
373
						writes.push(writeFile(translationsConfigFile, JSON.stringify(packConfig.translations)));
D
Dirk Baeumer 已提交
374 375 376 377 378 379 380 381 382 383 384 385 386 387
						return Promise.all(writes);
					}).then(() => {
						perf.mark('nlsGeneration:end');
						return result;
					}).catch((err) => {
						console.error('Generating translation files failed.', err);
						return defaultResult();
					});
				});
			});
		} catch (err) {
			console.error('Generating translation files failed.', err);
			return defaultResult();
		}
388
	}
J
Joao Moreno 已提交
389 390
}

391
function getNodeCachedDataDir() {
392 393 394 395
	// flag to disable cached data support
	if (process.argv.indexOf('--no-cached-data') > 0) {
		return Promise.resolve(undefined);
	}
396 397 398

	// IEnvironmentService.isBuilt
	if (process.env['VSCODE_DEV']) {
399
		return Promise.resolve(undefined);
400 401
	}

402
	// find commit id
D
Dirk Baeumer 已提交
403 404
	let commit = getCommit();
	if (!commit) {
405 406 407
		return Promise.resolve(undefined);
	}

D
Dirk Baeumer 已提交
408
	let dir = path.join(app.getPath('userData'), 'CachedData', commit);
409

J
Joao Moreno 已提交
410
	return mkdirp(dir).then(undefined, function () { /*ignore*/ });
411 412
}

413
// Set userData path before app 'ready' event and call to process.chdir
D
Dirk Baeumer 已提交
414
let userData = path.resolve(args['user-data-dir'] || paths.getDefaultUserDataPath(process.platform));
415 416
app.setPath('userData', userData);

B
polish  
Benjamin Pasero 已提交
417
// Update cwd based on environment and platform
J
Joao Moreno 已提交
418
try {
B
polish  
Benjamin Pasero 已提交
419
	if (process.platform === 'win32') {
D
Dirk Baeumer 已提交
420
		process.env['VSCODE_CWD'] = process.cwd(); // remember as environment letiable
B
polish  
Benjamin Pasero 已提交
421
		process.chdir(path.dirname(app.getPath('exe'))); // always set application folder as cwd
J
Joao Moreno 已提交
422 423
	} else if (process.env['VSCODE_CWD']) {
		process.chdir(process.env['VSCODE_CWD']);
J
Joao Moreno 已提交
424 425
	}
} catch (err) {
B
polish  
Benjamin Pasero 已提交
426
	console.error(err);
J
Joao Moreno 已提交
427 428 429 430 431
}

// 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.
global.macOpenFiles = [];
B
polish  
Benjamin Pasero 已提交
432
app.on('open-file', function (event, path) {
J
Joao Moreno 已提交
433 434 435
	global.macOpenFiles.push(path);
});

D
Dirk Baeumer 已提交
436 437
let openUrls = [];
let onOpenUrl = function (event, url) {
J
Joao Moreno 已提交
438 439 440 441
	event.preventDefault();
	openUrls.push(url);
};

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

446
global.getOpenUrls = function () {
J
Joao Moreno 已提交
447 448 449 450
	app.removeListener('open-url', onOpenUrl);
	return openUrls;
};

451

452 453
// use '<UserData>/CachedData'-directory to store
// node/v8 cached data.
D
Dirk Baeumer 已提交
454
let nodeCachedDataDir = getNodeCachedDataDir().then(function (value) {
455
	if (value) {
456
		// store the data directory
457
		process.env['VSCODE_NODE_CACHED_DATA_DIR_' + process.pid] = value;
458 459 460

		// tell v8 to not be lazy when parsing JavaScript. Generally this makes startup slower
		// but because we generate cached data it makes subsequent startups much faster
461 462
		let existingJSFlags = resolveJSFlags();
		app.commandLine.appendSwitch('--js-flags', existingJSFlags ? existingJSFlags + ' --nolazy' : '--nolazy');
463
	}
D
Dirk Baeumer 已提交
464 465 466 467 468 469 470 471 472
	return value;
});

let nlsConfiguration = undefined;
let userDefinedLocale = getUserDefinedLocale();
userDefinedLocale.then((locale) => {
	if (locale && !nlsConfiguration) {
		nlsConfiguration = getNLSConfiguration(locale);
	}
473 474
});

475 476 477 478 479
let jsFlags = resolveJSFlags();
if (jsFlags) {
	app.commandLine.appendSwitch('--js-flags', jsFlags);
}

480 481
// Load our code once ready
app.once('ready', function () {
482
	perf.mark('main:appReady');
D
Dirk Baeumer 已提交
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509
	Promise.all([nodeCachedDataDir, userDefinedLocale]).then((values) => {
		let locale = values[1];
		if (locale && !nlsConfiguration) {
			nlsConfiguration = getNLSConfiguration(locale);
		}
		if (!nlsConfiguration) {
			nlsConfiguration = Promise.resolve(undefined);
		}
		// We first need to test a user defined locale. If it fails we try the app locale.
		// If that fails we fall back to English.
		nlsConfiguration.then((nlsConfig) => {
			let boot = (nlsConfig) => {
				process.env['VSCODE_NLS_CONFIG'] = JSON.stringify(nlsConfig);
				require('./bootstrap-amd').bootstrap('vs/code/electron-main/main');
			};
			// We recevied a valid nlsConfig from a user defined locale
			if (nlsConfig) {
				boot(nlsConfig);
			} else {
				// 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) {
					boot({ locale: 'en', availableLanguages: {} });
				} else {
					// See above the comment about the loader and case sensitiviness
510
					appLocale = appLocale.toLowerCase();
D
Dirk Baeumer 已提交
511 512 513 514 515 516 517 518 519
					getNLSConfiguration(appLocale).then((nlsConfig) => {
						if (!nlsConfig) {
							nlsConfig = { locale: appLocale, availableLanguages: {} };
						}
						boot(nlsConfig);
					});
				}
			}
		});
520
	}, console.error);
521
});