mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Merge VS Code 1.21 source code (#1067)
* Initial VS Code 1.21 file copy with patches * A few more merges * Post npm install * Fix batch of build breaks * Fix more build breaks * Fix more build errors * Fix more build breaks * Runtime fixes 1 * Get connection dialog working with some todos * Fix a few packaging issues * Copy several node_modules to package build to fix loader issues * Fix breaks from master * A few more fixes * Make tests pass * First pass of license header updates * Second pass of license header updates * Fix restore dialog issues * Remove add additional themes menu items * fix select box issues where the list doesn't show up * formatting * Fix editor dispose issue * Copy over node modules to correct location on all platforms
This commit is contained in:
474
src/main.js
474
src/main.js
@@ -2,44 +2,65 @@
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
'use strict';
|
||||
|
||||
var perf = require('./vs/base/common/performance');
|
||||
let perf = require('./vs/base/common/performance');
|
||||
perf.mark('main:started');
|
||||
|
||||
// Perf measurements
|
||||
global.perfStartTime = Date.now();
|
||||
|
||||
var app = require('electron').app;
|
||||
var fs = require('fs');
|
||||
var path = require('path');
|
||||
var minimist = require('minimist');
|
||||
var paths = require('./paths');
|
||||
//#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';
|
||||
|
||||
var args = minimist(process.argv, {
|
||||
const originalResolveLookupPaths = Module._resolveLookupPaths;
|
||||
Module._resolveLookupPaths = function (request, parent) {
|
||||
const result = originalResolveLookupPaths(request, parent);
|
||||
|
||||
const paths = result[1];
|
||||
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
|
||||
|
||||
let app = require('electron').app;
|
||||
let fs = require('fs');
|
||||
let path = require('path');
|
||||
let minimist = require('minimist');
|
||||
let paths = require('./paths');
|
||||
|
||||
let args = minimist(process.argv, {
|
||||
string: ['user-data-dir', 'locale']
|
||||
});
|
||||
|
||||
function stripComments(content) {
|
||||
var regexp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
|
||||
var result = content.replace(regexp, function (match, m1, m2, m3, m4) {
|
||||
let regexp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
|
||||
let 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) {
|
||||
} else if (m4) {
|
||||
// A line comment. If it ends in \r?\n then keep it.
|
||||
var length_1 = m4.length;
|
||||
let 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 {
|
||||
} else {
|
||||
// We match a string
|
||||
return match;
|
||||
}
|
||||
@@ -47,71 +68,322 @@ function stripComments(content) {
|
||||
return result;
|
||||
}
|
||||
|
||||
function getNLSConfiguration() {
|
||||
var locale = args['locale'];
|
||||
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;
|
||||
}
|
||||
return _commit || undefined;
|
||||
}
|
||||
|
||||
if (!locale) {
|
||||
var userData = app.getPath('userData');
|
||||
var localeConfig = path.join(userData, 'User', 'locale.json');
|
||||
if (fs.existsSync(localeConfig)) {
|
||||
try {
|
||||
var content = stripComments(fs.readFileSync(localeConfig, 'utf8'));
|
||||
var value = JSON.parse(content).locale;
|
||||
if (value && typeof value === 'string') {
|
||||
locale = value;
|
||||
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);
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
function resolveJSFlags() {
|
||||
let jsFlags = [];
|
||||
if (args['js-flags']) {
|
||||
jsFlags.push(args['js-flags']);
|
||||
}
|
||||
if (args['max-memory'] && !/max_old_space_size=(\d+)/g.exec(args['js-flags'])) {
|
||||
jsFlags.push(`--max_old_space_size=${args['max-memory']}`);
|
||||
}
|
||||
if (jsFlags.length > 0) {
|
||||
return jsFlags.join(' ');
|
||||
} else {
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
// 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;
|
||||
}
|
||||
} catch (e) {
|
||||
// noop
|
||||
}
|
||||
}
|
||||
} catch (err) {
|
||||
console.error('Resolving language pack configuration failed.', err);
|
||||
}
|
||||
return undefined;
|
||||
}
|
||||
|
||||
function getNLSConfiguration(locale) {
|
||||
if (locale === 'pseudo') {
|
||||
return Promise.resolve({ locale: locale, availableLanguages: {}, pseudo: true });
|
||||
}
|
||||
|
||||
var appLocale = app.getLocale();
|
||||
locale = locale || appLocale;
|
||||
// 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;
|
||||
if (locale === 'pseudo') {
|
||||
return { locale: locale, availableLanguages: {}, pseudo: true };
|
||||
}
|
||||
var initialLocale = locale;
|
||||
if (process.env['VSCODE_DEV']) {
|
||||
return { locale: locale, availableLanguages: {} };
|
||||
return Promise.resolve({ locale: locale, availableLanguages: {} });
|
||||
}
|
||||
|
||||
let userData = app.getPath('userData');
|
||||
|
||||
// We have a built version so we have extracted nls file. Try to find
|
||||
// the right file to use.
|
||||
|
||||
// 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-'))) {
|
||||
return { locale: locale, availableLanguages: {} };
|
||||
return Promise.resolve({ locale: locale, availableLanguages: {} });
|
||||
}
|
||||
|
||||
let initialLocale = locale;
|
||||
|
||||
function resolveLocale(locale) {
|
||||
while (locale) {
|
||||
var candidate = path.join(__dirname, 'vs', 'code', 'electron-main', 'main.nls.') + locale + '.js';
|
||||
let candidate = path.join(__dirname, 'vs', 'code', 'electron-main', 'main.nls.') + locale + '.js';
|
||||
if (fs.existsSync(candidate)) {
|
||||
return { locale: initialLocale, availableLanguages: { '*': locale } };
|
||||
} else {
|
||||
var index = locale.lastIndexOf('-');
|
||||
let index = locale.lastIndexOf('-');
|
||||
if (index > 0) {
|
||||
locale = locale.substring(0, index);
|
||||
} else {
|
||||
locale = null;
|
||||
locale = undefined;
|
||||
}
|
||||
}
|
||||
}
|
||||
return null;
|
||||
return undefined;
|
||||
}
|
||||
|
||||
var resolvedLocale = resolveLocale(locale);
|
||||
if (!resolvedLocale && appLocale && appLocale !== locale) {
|
||||
resolvedLocale = resolveLocale(appLocale);
|
||||
let isCoreLangaguage = true;
|
||||
if (locale) {
|
||||
isCoreLangaguage = ['de', 'es', 'fr', 'it', 'ja', 'ko', 'ru', 'zh-cn', 'zh-tw'].some((language) => {
|
||||
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();
|
||||
}
|
||||
let packConfig = configs[locale];
|
||||
let mainPack;
|
||||
if (!packConfig || typeof packConfig.hash !== 'string' || !packConfig.translations || typeof (mainPack = packConfig.translations['vscode']) !== 'string') {
|
||||
return defaultResult();
|
||||
}
|
||||
return exists(mainPack).then((fileExists) => {
|
||||
if (!fileExists) {
|
||||
return defaultResult();
|
||||
}
|
||||
let packId = packConfig.hash + '.' + locale;
|
||||
let cacheRoot = path.join(userData, 'clp', packId);
|
||||
let coreLocation = path.join(cacheRoot, commit);
|
||||
let translationsConfigFile = path.join(cacheRoot, 'tcf.json');
|
||||
let result = {
|
||||
locale: initialLocale,
|
||||
availableLanguages: { '*': locale },
|
||||
_languagePackId: packId,
|
||||
_translationsConfigFile: translationsConfigFile,
|
||||
_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(() => {
|
||||
return Promise.all([readFile(path.join(__dirname, 'nls.metadata.json')), readFile(mainPack)]);
|
||||
}).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;
|
||||
}
|
||||
writes.push(writeFile(path.join(coreLocation, bundle.replace(/\//g,'!') + '.nls.json'), JSON.stringify(target)));
|
||||
}
|
||||
writes.push(writeFile(translationsConfigFile, JSON.stringify(packConfig.translations)));
|
||||
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();
|
||||
}
|
||||
}
|
||||
return resolvedLocale ? resolvedLocale : { locale: initialLocale, availableLanguages: {} };
|
||||
}
|
||||
|
||||
function getNodeCachedDataDir() {
|
||||
@@ -126,52 +398,24 @@ function getNodeCachedDataDir() {
|
||||
}
|
||||
|
||||
// find commit id
|
||||
var productJson = require(path.join(__dirname, '../product.json'));
|
||||
if (!productJson.commit) {
|
||||
let commit = getCommit();
|
||||
if (!commit) {
|
||||
return Promise.resolve(undefined);
|
||||
}
|
||||
|
||||
var dir = path.join(app.getPath('userData'), 'CachedData', productJson.commit);
|
||||
let dir = path.join(app.getPath('userData'), 'CachedData', commit);
|
||||
|
||||
return mkdirp(dir).then(undefined, function () { /*ignore*/ });
|
||||
}
|
||||
|
||||
function mkdirp(dir) {
|
||||
return mkdir(dir)
|
||||
.then(null, function (err) {
|
||||
if (err && err.code === 'ENOENT') {
|
||||
var parent = path.dirname(dir);
|
||||
if (parent !== dir) { // if not arrived at root
|
||||
return mkdirp(parent)
|
||||
.then(function () {
|
||||
return mkdir(dir);
|
||||
});
|
||||
}
|
||||
}
|
||||
throw err;
|
||||
});
|
||||
}
|
||||
|
||||
function mkdir(dir) {
|
||||
return new Promise(function (resolve, reject) {
|
||||
fs.mkdir(dir, function (err) {
|
||||
if (err && err.code !== 'EEXIST') {
|
||||
reject(err);
|
||||
} else {
|
||||
resolve(dir);
|
||||
}
|
||||
});
|
||||
});
|
||||
}
|
||||
|
||||
// Set userData path before app 'ready' event and call to process.chdir
|
||||
var userData = path.resolve(args['user-data-dir'] || paths.getDefaultUserDataPath(process.platform));
|
||||
let userData = path.resolve(args['user-data-dir'] || paths.getDefaultUserDataPath(process.platform));
|
||||
app.setPath('userData', userData);
|
||||
|
||||
// Update cwd based on environment and platform
|
||||
try {
|
||||
if (process.platform === 'win32') {
|
||||
process.env['VSCODE_CWD'] = process.cwd(); // remember as environment variable
|
||||
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']);
|
||||
@@ -187,8 +431,8 @@ app.on('open-file', function (event, path) {
|
||||
global.macOpenFiles.push(path);
|
||||
});
|
||||
|
||||
var openUrls = [];
|
||||
var onOpenUrl = function (event, url) {
|
||||
let openUrls = [];
|
||||
let onOpenUrl = function (event, url) {
|
||||
event.preventDefault();
|
||||
openUrls.push(url);
|
||||
};
|
||||
@@ -205,25 +449,71 @@ global.getOpenUrls = function () {
|
||||
|
||||
// use '<UserData>/CachedData'-directory to store
|
||||
// node/v8 cached data.
|
||||
var nodeCachedDataDir = getNodeCachedDataDir().then(function (value) {
|
||||
let nodeCachedDataDir = getNodeCachedDataDir().then(function (value) {
|
||||
if (value) {
|
||||
// store the data directory
|
||||
process.env['VSCODE_NODE_CACHED_DATA_DIR_' + process.pid] = value;
|
||||
|
||||
// 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
|
||||
app.commandLine.appendSwitch('--js-flags', '--nolazy');
|
||||
let existingJSFlags = resolveJSFlags();
|
||||
app.commandLine.appendSwitch('--js-flags', existingJSFlags ? existingJSFlags + ' --nolazy' : '--nolazy');
|
||||
}
|
||||
return value;
|
||||
});
|
||||
|
||||
let nlsConfiguration = undefined;
|
||||
let userDefinedLocale = getUserDefinedLocale();
|
||||
userDefinedLocale.then((locale) => {
|
||||
if (locale && !nlsConfiguration) {
|
||||
nlsConfiguration = getNLSConfiguration(locale);
|
||||
}
|
||||
});
|
||||
|
||||
let jsFlags = resolveJSFlags();
|
||||
if (jsFlags) {
|
||||
app.commandLine.appendSwitch('--js-flags', jsFlags);
|
||||
}
|
||||
|
||||
// Load our code once ready
|
||||
app.once('ready', function () {
|
||||
perf.mark('main:appReady');
|
||||
global.perfAppReady = Date.now();
|
||||
var nlsConfig = getNLSConfiguration();
|
||||
process.env['VSCODE_NLS_CONFIG'] = JSON.stringify(nlsConfig);
|
||||
|
||||
nodeCachedDataDir.then(function () {
|
||||
require('./bootstrap-amd').bootstrap('vs/code/electron-main/main');
|
||||
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
|
||||
appLocale = appLocale.toLowerCase();
|
||||
getNLSConfiguration(appLocale).then((nlsConfig) => {
|
||||
if (!nlsConfig) {
|
||||
nlsConfig = { locale: appLocale, availableLanguages: {} };
|
||||
}
|
||||
boot(nlsConfig);
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
}, console.error);
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user