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

// Perf measurements
global.vscodeStart = Date.now();

var app = require('electron').app;
J
Joao Moreno 已提交
10
var fs = require('fs');
J
Joao Moreno 已提交
11 12
var path = require('path');

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
function stripComments(content) {
	var regexp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
	var result = content.replace(regexp, function (match, m1, m2, m3, m4) {
		// Only one of m1, m2, m3, m4 matches
		if (m3) {
			// A block comment. Replace with nothing
			return '';
		}
		else if (m4) {
			// A line comment. If it ends in \r?\n then keep it.
			var length_1 = m4.length;
			if (length_1 > 2 && m4[length_1 - 1] === '\n') {
				return m4[length_1 - 2] === '\r' ? '\r\n' : '\n';
			}
			else {
				return '';
			}
		}
		else {
			// We match a string
			return match;
		}
	});
	return result;
};

J
Joao Moreno 已提交
39 40 41 42 43 44 45 46 47 48 49 50
function getNLSConfiguration() {
	var locale = undefined;
	var localeOpts = '--locale';
	for (var i = 0; i < process.argv.length; i++) {
		var arg = process.argv[i];
		if (arg.slice(0, localeOpts.length) == localeOpts) {
			var segments = arg.split('=');
			locale = segments[1];
			break;
		}
	}

51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
	if (!locale) {
		var userData = app.getPath('userData');
		localeConfig = path.join(userData, 'User', 'locale.json');
		if (fs.existsSync(localeConfig)) {
			try {
				var content = stripComments(fs.readFileSync(localeConfig, 'utf8'));
				value = JSON.parse(content).locale;
				if (value && typeof value === 'string') {
					locale = value;
				}
			} catch (e) {
			}
		}
	}

66 67 68 69 70 71
	locale = locale || app.getLocale();
	// 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.
	locale = locale ? locale.toLowerCase() : locale;
J
Joao Moreno 已提交
72
	if (locale === 'pseudo') {
73
		return { locale: locale, availableLanguages: {}, pseudo: true }
J
Joao Moreno 已提交
74
	}
75
	var initialLocale = locale;
J
Joao Moreno 已提交
76
	if (process.env.VSCODE_DEV) {
77
		return { locale: locale, availableLanguages: {} };
J
Joao Moreno 已提交
78 79 80 81
	}
	// We have a built version so we have extracted nls file. Try to find
	// the right file to use.
	while (locale) {
82
		var candidate = path.join(__dirname, 'vs', 'workbench', 'electron-main', 'main.nls.') + locale + '.js';
J
Joao Moreno 已提交
83
		if (fs.existsSync(candidate)) {
84
			return { locale: initialLocale, availableLanguages: { '*': locale } };
J
Joao Moreno 已提交
85 86 87 88 89 90 91 92 93 94
		} else {
			var index = locale.lastIndexOf('-');
			if (index > 0) {
				locale = locale.substring(0, index);
			} else {
				locale = null;
			}
		}
	}

95
	return { locale: initialLocale, availableLanguages: {} };
J
Joao Moreno 已提交
96 97
}

J
Joao Moreno 已提交
98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
// Change cwd if given via env variable
try {
	if (process.env.VSCODE_CWD) {
		process.chdir(process.env.VSCODE_CWD);
	}
} catch (err) {
	// noop
}

// Set path according to being built or not
if (process.env.VSCODE_DEV) {
	var appData = app.getPath('appData');
	app.setPath('userData', path.join(appData, 'Code-Development'));
}

113 114 115 116 117 118 119 120
// Use custom user data dir if specified, required to run as root on Linux
var args = process.argv;
args.forEach(function (arg) {
	if (arg.indexOf('--user-data-dir=') === 0) {
		app.setPath('userData', arg.split('=')[1]);
	}
});

J
Joao Moreno 已提交
121 122 123 124 125 126 127 128 129
// 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 = [];
app.on('open-file', function(event, path) {
	global.macOpenFiles.push(path);
});

// Load our code once ready
app.once('ready', function() {
130 131
	var nlsConfig = getNLSConfiguration();
	process.env['VSCODE_NLS_CONFIG'] = JSON.stringify(nlsConfig);
132
	require('./bootstrap-amd').bootstrap('vs/workbench/electron-main/main');
J
Joao Moreno 已提交
133
});