i18n.ts 41.5 KB
Newer Older
D
Dirk Baeumer 已提交
1 2 3 4 5 6 7 8
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

import * as path from 'path';
import * as fs from 'fs';

D
Dirk Baeumer 已提交
9
import { through, readable, ThroughStream } from 'event-stream';
D
Dirk Baeumer 已提交
10 11
import File = require('vinyl');
import * as Is from 'is';
12
import * as xml2js from 'xml2js';
13
import * as glob from 'glob';
14
import * as https from 'https';
D
Dirk Baeumer 已提交
15
import * as gulp from 'gulp';
D
Dirk Baeumer 已提交
16 17

var util = require('gulp-util');
18
var iconv = require('iconv-lite');
J
Joao Moreno 已提交
19

20
const NUMBER_OF_CONCURRENT_DOWNLOADS = 4;
21

D
Dirk Baeumer 已提交
22
function log(message: any, ...rest: any[]): void {
J
Joao Moreno 已提交
23
	util.log(util.colors.green('[i18n]'), message, ...rest);
D
Dirk Baeumer 已提交
24 25
}

D
Dirk Baeumer 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
export interface Language {
	id: string; // laguage id, e.g. zh-tw, de
	transifexId?: string; // language id used in transifex, e.g zh-hant, de (optional, if not set, the id is used)
	folderName?: string; // language specific folder name, e.g. cht, deu  (optional, if not set, the id is used)
}

export interface InnoSetup {
	codePage: string; //code page for encoding (http://www.jrsoftware.org/ishelp/index.php?topic=langoptionssection)
	defaultInfo?: {
		name: string; // inno setup language name
		id: string; // locale identifier (https://msdn.microsoft.com/en-us/library/dd318693.aspx)
	};
}

export const defaultLanguages: Language[] = [
	{ id: 'zh-tw', folderName: 'cht', transifexId: 'zh-hant' },
	{ id: 'zh-cn', folderName: 'chs', transifexId: 'zh-hans' },
	{ id: 'ja', folderName: 'jpn' },
	{ id: 'ko', folderName: 'kor' },
	{ id: 'de', folderName: 'deu' },
	{ id: 'fr', folderName: 'fra' },
	{ id: 'es', folderName: 'esn' },
	{ id: 'ru', folderName: 'rus' },
	{ id: 'it', folderName: 'ita' }
];

// languages requested by the community to non-stable builds
export const extraLanguages: Language[] = [
	{ id: 'pt-br', folderName: 'ptb' },
	{ id: 'hu', folderName: 'hun' },
	{ id: 'tr', folderName: 'trk' }
];

export const pseudoLanguage: Language = { id: 'pseudo', folderName: 'pseudo', transifexId: 'pseudo' };

61
// non built-in extensions also that are transifex and need to be part of the language packs
62 63 64 65 66 67
const externalExtensionsWithTranslations = {
	'vscode-chrome-debug': 'msjsdiag.debugger-for-chrome',
	'vscode-node-debug': 'ms-vscode.node-debug',
	'vscode-node-debug2': 'ms-vscode.node-debug2'
};

68

D
Dirk Baeumer 已提交
69 70 71 72
interface Map<V> {
	[key: string]: V;
}

73 74 75 76 77 78
interface Item {
	id: string;
	message: string;
	comment: string;
}

79
export interface Resource {
80 81 82 83
	name: string;
	project: string;
}

84 85 86 87 88 89
interface ParsedXLF {
	messages: Map<string>;
	originalFilePath: string;
	language: string;
}

D
Dirk Baeumer 已提交
90 91 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
interface LocalizeInfo {
	key: string;
	comment: string[];
}

module LocalizeInfo {
	export function is(value: any): value is LocalizeInfo {
		let candidate = value as LocalizeInfo;
		return Is.defined(candidate) && Is.string(candidate.key) && (Is.undef(candidate.comment) || (Is.array(candidate.comment) && candidate.comment.every(element => Is.string(element))));
	}
}

interface BundledFormat {
	keys: Map<(string | LocalizeInfo)[]>;
	messages: Map<string[]>;
	bundles: Map<string[]>;
}

module BundledFormat {
	export function is(value: any): value is BundledFormat {
		if (Is.undef(value)) {
			return false;
		}

		let candidate = value as BundledFormat;
		let length = Object.keys(value).length;

		return length === 3 && Is.defined(candidate.keys) && Is.defined(candidate.messages) && Is.defined(candidate.bundles);
	}
}

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
interface ValueFormat {
	message: string;
	comment: string[];
}

interface PackageJsonFormat {
	[key: string]: string | ValueFormat;
}

module PackageJsonFormat {
	export function is(value: any): value is PackageJsonFormat {
		if (Is.undef(value) || !Is.object(value)) {
			return false;
		}
		return Object.keys(value).every(key => {
			let element = value[key];
			return Is.string(element) || (Is.object(element) && Is.defined(element.message) && Is.defined(element.comment));
		});
	}
}

interface ModuleJsonFormat {
	messages: string[];
	keys: (string | LocalizeInfo)[];
}

module ModuleJsonFormat {
	export function is(value: any): value is ModuleJsonFormat {
		let candidate = value as ModuleJsonFormat;
		return Is.defined(candidate)
			&& Is.array(candidate.messages) && candidate.messages.every(message => Is.string(message))
			&& Is.array(candidate.keys) && candidate.keys.every(key => Is.string(key) || LocalizeInfo.is(key));
	}
}

D
Dirk Baeumer 已提交
156 157 158 159 160 161 162 163 164 165 166 167 168 169
interface BundledExtensionHeaderFormat {
	id: string;
	type: string;
	hash: string;
	outDir: string;
}

interface BundledExtensionFormat {
	[key: string]: {
		messages: string[];
		keys: (string | LocalizeInfo)[];
	};
}

170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
export class Line {
	private buffer: string[] = [];

	constructor(private indent: number = 0) {
		if (indent > 0) {
			this.buffer.push(new Array(indent + 1).join(' '));
		}
	}

	public append(value: string): Line {
		this.buffer.push(value);
		return this;
	}

	public toString(): string {
		return this.buffer.join('');
	}
}

class TextModel {
	private _lines: string[];

	constructor(contents: string) {
		this._lines = contents.split(/\r\n|\r|\n/);
	}

	public get lines(): string[] {
		return this._lines;
	}
}

export class XLF {
J
Joao Moreno 已提交
202
	private buffer: string[];
203
	private files: Map<Item[]>;
204
	public numberOfMessages: number;
205

J
Joao Moreno 已提交
206 207
	constructor(public project: string) {
		this.buffer = [];
208
		this.files = Object.create(null);
209
		this.numberOfMessages = 0;
210 211
	}

J
Joao Moreno 已提交
212 213
	public toString(): string {
		this.appendHeader();
214 215 216 217 218 219

		for (let file in this.files) {
			this.appendNewLine(`<file original="${file}" source-language="en" datatype="plaintext"><body>`, 2);
			for (let item of this.files[file]) {
				this.addStringItem(item);
			}
J
Joao Moreno 已提交
220
			this.appendNewLine('</body></file>', 2);
221 222 223 224 225 226
		}

		this.appendFooter();
		return this.buffer.join('\r\n');
	}

D
Dirk Baeumer 已提交
227 228 229 230
	public addFile(original: string, keys: (string | LocalizeInfo)[], messages: string[]) {
		if (keys.length !== messages.length) {
			throw new Error(`Unmatching keys(${keys.length}) and messages(${messages.length}).`);
		}
231
		this.numberOfMessages += keys.length;
232
		this.files[original] = [];
D
Dirk Baeumer 已提交
233 234 235 236 237
		let existingKeys = new Set<string>();
		for (let i = 0; i < keys.length; i++) {
			let key = keys[i];
			let realKey: string;
			let comment: string;
238
			if (Is.string(key)) {
D
Dirk Baeumer 已提交
239 240 241 242 243 244
				realKey = key;
				comment = undefined;
			} else if (LocalizeInfo.is(key)) {
				realKey = key.key;
				if (key.comment && key.comment.length > 0) {
					comment = key.comment.map(comment => encodeEntities(comment)).join('\r\n');
245 246
				}
			}
D
Dirk Baeumer 已提交
247 248 249 250 251 252
			if (!realKey || existingKeys.has(realKey)) {
				continue;
			}
			existingKeys.add(realKey);
			let message: string = encodeEntities(messages[i]);
			this.files[original].push({ id: realKey, message: message, comment: comment });
253 254 255
		}
	}

J
Joao Moreno 已提交
256 257
	private addStringItem(item: Item): void {
		if (!item.id || !item.message) {
D
Dirk Baeumer 已提交
258
			throw new Error(`No item ID or value specified: ${JSON.stringify(item)}`);
J
Joao Moreno 已提交
259
		}
260

J
Joao Moreno 已提交
261 262
		this.appendNewLine(`<trans-unit id="${item.id}">`, 4);
		this.appendNewLine(`<source xml:lang="en">${item.message}</source>`, 6);
263

J
Joao Moreno 已提交
264 265 266
		if (item.comment) {
			this.appendNewLine(`<note>${item.comment}</note>`, 6);
		}
267

J
Joao Moreno 已提交
268
		this.appendNewLine('</trans-unit>', 4);
269 270
	}

J
Joao Moreno 已提交
271 272 273
	private appendHeader(): void {
		this.appendNewLine('<?xml version="1.0" encoding="utf-8"?>', 0);
		this.appendNewLine('<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">', 0);
274 275
	}

J
Joao Moreno 已提交
276 277 278
	private appendFooter(): void {
		this.appendNewLine('</xliff>', 0);
	}
279

J
Joao Moreno 已提交
280 281 282 283 284
	private appendNewLine(content: string, indent?: number): void {
		let line = new Line(indent);
		line.append(content);
		this.buffer.push(line.toString());
	}
285

J
Joao Moreno 已提交
286
	static parse = function (xlfString: string): Promise<ParsedXLF[]> {
287 288 289 290 291
		return new Promise((resolve, reject) => {
			let parser = new xml2js.Parser();

			let files: { messages: Map<string>, originalFilePath: string, language: string }[] = [];

J
Joao Moreno 已提交
292
			parser.parseString(xlfString, function (err, result) {
293
				if (err) {
D
Dirk Baeumer 已提交
294
					reject(new Error(`XLF parsing error: Failed to parse XLIFF string. ${err}`));
295 296 297 298
				}

				const fileNodes: any[] = result['xliff']['file'];
				if (!fileNodes) {
D
Dirk Baeumer 已提交
299
					reject(new Error(`XLF parsing error: XLIFF file does not contain "xliff" or "file" node(s) required for parsing.`));
300 301 302 303 304
				}

				fileNodes.forEach((file) => {
					const originalFilePath = file.$.original;
					if (!originalFilePath) {
D
Dirk Baeumer 已提交
305
						reject(new Error(`XLF parsing error: XLIFF file node does not contain original attribute to determine the original location of the resource file.`));
306
					}
D
Dirk Baeumer 已提交
307
					const language = file.$['target-language'];
308
					if (!language) {
D
Dirk Baeumer 已提交
309
						reject(new Error(`XLF parsing error: XLIFF file node does not contain target-language attribute to determine translated language.`));
310 311 312 313 314 315 316 317 318 319 320 321 322 323 324
					}

					let messages: Map<string> = {};
					const transUnits = file.body[0]['trans-unit'];

					transUnits.forEach(unit => {
						const key = unit.$.id;
						if (!unit.target) {
							return; // No translation available
						}

						const val = unit.target.toString();
						if (key && val) {
							messages[key] = decodeEntities(val);
						} else {
D
Dirk Baeumer 已提交
325
							reject(new Error(`XLF parsing error: XLIFF file does not contain full localization data. ID or target translation for one of the trans-unit nodes is not present.`));
326 327 328
						}
					});

D
Dirk Baeumer 已提交
329
					files.push({ messages: messages, originalFilePath: originalFilePath, language: language.toLowerCase() });
330 331 332 333 334 335 336 337
				});

				resolve(files);
			});
		});
	};
}

338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
export interface ITask<T> {
	(): T;
}

interface ILimitedTaskFactory<T> {
	factory: ITask<Promise<T>>;
	c: (value?: T | Thenable<T>) => void;
	e: (error?: any) => void;
}

export class Limiter<T> {
	private runningPromises: number;
	private outstandingPromises: ILimitedTaskFactory<any>[];

	constructor(private maxDegreeOfParalellism: number) {
		this.outstandingPromises = [];
		this.runningPromises = 0;
	}

	queue(factory: ITask<Promise<T>>): Promise<T> {
		return new Promise<T>((c, e) => {
D
Dirk Baeumer 已提交
359
			this.outstandingPromises.push({ factory, c, e });
360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380
			this.consume();
		});
	}

	private consume(): void {
		while (this.outstandingPromises.length && this.runningPromises < this.maxDegreeOfParalellism) {
			const iLimitedTask = this.outstandingPromises.shift();
			this.runningPromises++;

			const promise = iLimitedTask.factory();
			promise.then(iLimitedTask.c).catch(iLimitedTask.e);
			promise.then(() => this.consumed()).catch(() => this.consumed());
		}
	}

	private consumed(): void {
		this.runningPromises--;
		this.consume();
	}
}

D
Dirk Baeumer 已提交
381 382 383
function sortLanguages(languages: Language[]): Language[] {
	return languages.sort((a: Language, b: Language): number => {
		return a.id < b.id ? -1 : (a.id > b.id ? 1 : 0);
D
Dirk Baeumer 已提交
384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403
	});
}

function stripComments(content: string): string {
	/**
	* First capturing group matches double quoted string
	* Second matches single quotes string
	* Third matches block comments
	* Fourth matches line comments
	*/
	var regexp: RegExp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
	let result = content.replace(regexp, (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.
			let length = m4.length;
			if (length > 2 && m4[length - 1] === '\n') {
J
Joao Moreno 已提交
404
				return m4[length - 2] === '\r' ? '\r\n' : '\n';
D
Dirk Baeumer 已提交
405 406 407 408 409 410 411 412 413
			} else {
				return '';
			}
		} else {
			// We match a string
			return match;
		}
	});
	return result;
414
}
D
Dirk Baeumer 已提交
415

J
Joao Moreno 已提交
416 417
function escapeCharacters(value: string): string {
	var result: string[] = [];
D
Dirk Baeumer 已提交
418 419
	for (var i = 0; i < value.length; i++) {
		var ch = value.charAt(i);
J
Joao Moreno 已提交
420
		switch (ch) {
D
Dirk Baeumer 已提交
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
			case '\'':
				result.push('\\\'');
				break;
			case '"':
				result.push('\\"');
				break;
			case '\\':
				result.push('\\\\');
				break;
			case '\n':
				result.push('\\n');
				break;
			case '\r':
				result.push('\\r');
				break;
			case '\t':
				result.push('\\t');
				break;
			case '\b':
				result.push('\\b');
				break;
			case '\f':
				result.push('\\f');
				break;
			default:
				result.push(ch);
		}
	}
	return result.join('');
}

D
Dirk Baeumer 已提交
452
function processCoreBundleFormat(fileHeader: string, languages: Language[], json: BundledFormat, emitter: ThroughStream) {
D
Dirk Baeumer 已提交
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
	let keysSection = json.keys;
	let messageSection = json.messages;
	let bundleSection = json.bundles;

	let statistics: Map<number> = Object.create(null);

	let total: number = 0;
	let defaultMessages: Map<Map<string>> = Object.create(null);
	let modules = Object.keys(keysSection);
	modules.forEach((module) => {
		let keys = keysSection[module];
		let messages = messageSection[module];
		if (!messages || keys.length !== messages.length) {
			emitter.emit('error', `Message for module ${module} corrupted. Mismatch in number of keys and messages.`);
			return;
		}
		let messageMap: Map<string> = Object.create(null);
		defaultMessages[module] = messageMap;
		keys.map((key, i) => {
			total++;
D
Dirk Baeumer 已提交
473
			if (typeof key === 'string') {
D
Dirk Baeumer 已提交
474 475 476 477 478 479 480 481
				messageMap[key] = messages[i];
			} else {
				messageMap[key.key] = messages[i];
			}
		});
	});

	let languageDirectory = path.join(__dirname, '..', '..', 'i18n');
D
Dirk Baeumer 已提交
482 483
	let sortedLanguages = sortLanguages(languages);
	sortedLanguages.forEach((language) => {
J
Joao Moreno 已提交
484
		if (process.env['VSCODE_BUILD_VERBOSE']) {
D
Dirk Baeumer 已提交
485
			log(`Generating nls bundles for: ${language.id}`);
J
Joao Moreno 已提交
486 487
		}

D
Dirk Baeumer 已提交
488
		statistics[language.id] = 0;
D
Dirk Baeumer 已提交
489
		let localizedModules: Map<string[]> = Object.create(null);
D
Dirk Baeumer 已提交
490 491
		let languageFolderName = language.folderName || language.id;
		let cwd = path.join(languageDirectory, languageFolderName, 'src');
D
Dirk Baeumer 已提交
492 493 494 495 496 497 498 499
		modules.forEach((module) => {
			let order = keysSection[module];
			let i18nFile = path.join(cwd, module) + '.i18n.json';
			let messages: Map<string> = null;
			if (fs.existsSync(i18nFile)) {
				let content = stripComments(fs.readFileSync(i18nFile, 'utf8'));
				messages = JSON.parse(content);
			} else {
J
Joao Moreno 已提交
500 501 502
				if (process.env['VSCODE_BUILD_VERBOSE']) {
					log(`No localized messages found for module ${module}. Using default messages.`);
				}
D
Dirk Baeumer 已提交
503
				messages = defaultMessages[module];
D
Dirk Baeumer 已提交
504
				statistics[language.id] = statistics[language.id] + Object.keys(messages).length;
D
Dirk Baeumer 已提交
505 506 507 508
			}
			let localizedMessages: string[] = [];
			order.forEach((keyInfo) => {
				let key: string = null;
D
Dirk Baeumer 已提交
509
				if (typeof keyInfo === 'string') {
D
Dirk Baeumer 已提交
510 511 512 513 514 515
					key = keyInfo;
				} else {
					key = keyInfo.key;
				}
				let message: string = messages[key];
				if (!message) {
J
Joao Moreno 已提交
516 517 518
					if (process.env['VSCODE_BUILD_VERBOSE']) {
						log(`No localized message found for key ${key} in module ${module}. Using default message.`);
					}
D
Dirk Baeumer 已提交
519
					message = defaultMessages[module][key];
D
Dirk Baeumer 已提交
520
					statistics[language.id] = statistics[language.id] + 1;
D
Dirk Baeumer 已提交
521 522 523 524 525 526 527 528
				}
				localizedMessages.push(message);
			});
			localizedModules[module] = localizedMessages;
		});
		Object.keys(bundleSection).forEach((bundle) => {
			let modules = bundleSection[bundle];
			let contents: string[] = [
A
Alex Dima 已提交
529
				fileHeader,
D
Dirk Baeumer 已提交
530
				`define("${bundle}.nls.${language.id}", {`
D
Dirk Baeumer 已提交
531 532 533 534 535 536 537 538 539
			];
			modules.forEach((module, index) => {
				contents.push(`\t"${module}": [`);
				let messages = localizedModules[module];
				if (!messages) {
					emitter.emit('error', `Didn't find messages for module ${module}.`);
					return;
				}
				messages.forEach((message, index) => {
J
Joao Moreno 已提交
540
					contents.push(`\t\t"${escapeCharacters(message)}${index < messages.length ? '",' : '"'}`);
D
Dirk Baeumer 已提交
541 542 543 544
				});
				contents.push(index < modules.length - 1 ? '\t],' : '\t]');
			});
			contents.push('});');
D
Dirk Baeumer 已提交
545
			emitter.queue(new File({ path: bundle + '.nls.' + language.id + '.js', contents: new Buffer(contents.join('\n'), 'utf-8') }));
D
Dirk Baeumer 已提交
546 547 548 549
		});
	});
	Object.keys(statistics).forEach(key => {
		let value = statistics[key];
J
Joao Moreno 已提交
550
		log(`${key} has ${value} untranslated strings.`);
D
Dirk Baeumer 已提交
551
	});
D
Dirk Baeumer 已提交
552 553 554 555
	sortedLanguages.forEach(language => {
		let stats = statistics[language.id];
		if (Is.undef(stats)) {
			log(`\tNo translations found for language ${language.id}. Using default language instead.`);
D
Dirk Baeumer 已提交
556 557 558 559
		}
	});
}

D
Dirk Baeumer 已提交
560 561
export function processNlsFiles(opts: { fileHeader: string; languages: Language[] }): ThroughStream {
	return through(function (this: ThroughStream, file: File) {
D
Dirk Baeumer 已提交
562 563 564 565
		let fileName = path.basename(file.path);
		if (fileName === 'nls.metadata.json') {
			let json = null;
			if (file.isBuffer()) {
566
				json = JSON.parse((<Buffer>file.contents).toString('utf8'));
D
Dirk Baeumer 已提交
567
			} else {
J
Joao Moreno 已提交
568
				this.emit('error', `Failed to read component file: ${file.relative}`);
D
Dirk Baeumer 已提交
569
				return;
D
Dirk Baeumer 已提交
570 571
			}
			if (BundledFormat.is(json)) {
572
				processCoreBundleFormat(opts.fileHeader, opts.languages, json, this);
D
Dirk Baeumer 已提交
573 574
			}
		}
D
Dirk Baeumer 已提交
575
		this.queue(file);
D
Dirk Baeumer 已提交
576
	});
577 578
}

579
const editorProject: string = 'vscode-editor',
580
	workbenchProject: string = 'vscode-workbench',
581
	extensionsProject: string = 'vscode-extensions',
582
	setupProject: string = 'vscode-setup';
583

584
export function getResource(sourceFile: string): Resource {
585 586
	let resource: string;

J
Joao Moreno 已提交
587
	if (/^vs\/platform/.test(sourceFile)) {
588
		return { name: 'vs/platform', project: editorProject };
J
Joao Moreno 已提交
589
	} else if (/^vs\/editor\/contrib/.test(sourceFile)) {
590
		return { name: 'vs/editor/contrib', project: editorProject };
J
Joao Moreno 已提交
591
	} else if (/^vs\/editor/.test(sourceFile)) {
592
		return { name: 'vs/editor', project: editorProject };
J
Joao Moreno 已提交
593
	} else if (/^vs\/base/.test(sourceFile)) {
594
		return { name: 'vs/base', project: editorProject };
J
Joao Moreno 已提交
595
	} else if (/^vs\/code/.test(sourceFile)) {
596
		return { name: 'vs/code', project: workbenchProject };
J
Joao Moreno 已提交
597
	} else if (/^vs\/workbench\/parts/.test(sourceFile)) {
598 599
		resource = sourceFile.split('/', 4).join('/');
		return { name: resource, project: workbenchProject };
J
Joao Moreno 已提交
600
	} else if (/^vs\/workbench\/services/.test(sourceFile)) {
601 602
		resource = sourceFile.split('/', 4).join('/');
		return { name: resource, project: workbenchProject };
J
Joao Moreno 已提交
603
	} else if (/^vs\/workbench/.test(sourceFile)) {
604 605 606
		return { name: 'vs/workbench', project: workbenchProject };
	}

J
Joao Moreno 已提交
607
	throw new Error(`Could not identify the XLF bundle for ${sourceFile}`);
608 609 610
}


D
Dirk Baeumer 已提交
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652
export function createXlfFilesForCoreBundle(): ThroughStream {
	return through(function (this: ThroughStream, file: File) {
		const basename = path.basename(file.path);
		if (basename === 'nls.metadata.json') {
			if (file.isBuffer()) {
				const xlfs: Map<XLF> = Object.create(null);
				const json: BundledFormat = JSON.parse((file.contents as Buffer).toString('utf8'));
				for (let coreModule in json.keys) {
					const projectResource = getResource(coreModule);
					const resource = projectResource.name;
					const project = projectResource.project;

					const keys = json.keys[coreModule];
					const messages = json.messages[coreModule];
					if (keys.length !== messages.length) {
						this.emit('error', `There is a mismatch between keys and messages in ${file.relative} for module ${coreModule}`);
						return;
					} else {
						let xlf = xlfs[resource];
						if (!xlf) {
							xlf = new XLF(project);
							xlfs[resource] = xlf;
						}
						xlf.addFile(`src/${coreModule}`, keys, messages);
					}
				}
				for (let resource in xlfs) {
					const xlf = xlfs[resource];
					const filePath = `${xlf.project}/${resource.replace(/\//g, '_')}.xlf`;
					const xlfFile = new File({
						path: filePath,
						contents: new Buffer(xlf.toString(), 'utf8')
					});
					this.queue(xlfFile);
				}
			} else {
				this.emit('error', new Error(`File ${file.relative} is not using a buffer content`));
				return;
			}
		} else {
			this.emit('error', new Error(`File ${file.relative} is not a core meta data file.`));
			return;
653
		}
D
Dirk Baeumer 已提交
654
	});
655 656
}

D
Dirk Baeumer 已提交
657 658 659 660 661 662 663 664
export function createXlfFilesForExtensions(): ThroughStream {
	let counter: number = 0;
	let folderStreamEnded: boolean = false;
	let folderStreamEndEmitted: boolean = false;
	return through(function (this: ThroughStream, extensionFolder: File) {
		const folderStream = this;
		const stat = fs.statSync(extensionFolder.path);
		if (!stat.isDirectory()) {
665 666
			return;
		}
D
Dirk Baeumer 已提交
667 668
		let extensionName = path.basename(extensionFolder.path);
		if (extensionName === 'node_modules') {
669 670
			return;
		}
D
Dirk Baeumer 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721
		counter++;
		let _xlf: XLF;
		function getXlf() {
			if (!_xlf) {
				_xlf = new XLF(extensionsProject);
			}
			return _xlf;
		}
		gulp.src([`./extensions/${extensionName}/package.nls.json`, `./extensions/${extensionName}/**/nls.metadata.json`]).pipe(through(function (file: File) {
			if (file.isBuffer()) {
				const buffer: Buffer = file.contents as Buffer;
				const basename = path.basename(file.path);
				if (basename === 'package.nls.json') {
					const json: PackageJsonFormat = JSON.parse(buffer.toString('utf8'));
					const keys = Object.keys(json);
					const messages = keys.map((key) => {
						const value = json[key];
						if (Is.string(value)) {
							return value;
						} else if (value) {
							return value.message;
						} else {
							return `Unknown message for key: ${key}`;
						}
					});
					getXlf().addFile(`extensions/${extensionName}/package`, keys, messages);
				} else if (basename === 'nls.metadata.json') {
					const json: BundledExtensionFormat = JSON.parse(buffer.toString('utf8'));
					const relPath = path.relative(`./extensions/${extensionName}`, path.dirname(file.path));
					for (let file in json) {
						const fileContent = json[file];
						getXlf().addFile(`extensions/${extensionName}/${relPath}/${file}`, fileContent.keys, fileContent.messages);
					}
				} else {
					this.emit('error', new Error(`${file.path} is not a valid extension nls file`));
					return;
				}
			}
		}, function () {
			if (_xlf) {
				let xlfFile = new File({
					path: path.join(extensionsProject, extensionName + '.xlf'),
					contents: new Buffer(_xlf.toString(), 'utf8')
				});
				folderStream.queue(xlfFile);
			}
			this.queue(null);
			counter--;
			if (counter === 0 && folderStreamEnded && !folderStreamEndEmitted) {
				folderStreamEndEmitted = true;
				folderStream.queue(null);
722
			}
D
Dirk Baeumer 已提交
723 724 725 726 727 728
		}));
	}, function () {
		folderStreamEnded = true;
		if (counter === 0) {
			folderStreamEndEmitted = true;
			this.queue(null);
729 730
		}
	});
D
Dirk Baeumer 已提交
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778
}

export function createXlfFilesForIsl(): ThroughStream {
	return through(function (this: ThroughStream, file: File) {
		let projectName: string,
			resourceFile: string;
		if (path.basename(file.path) === 'Default.isl') {
			projectName = setupProject;
			resourceFile = 'setup_default.xlf';
		} else {
			projectName = workbenchProject;
			resourceFile = 'setup_messages.xlf';
		}

		let xlf = new XLF(projectName),
			keys: string[] = [],
			messages: string[] = [];

		let model = new TextModel(file.contents.toString());
		let inMessageSection = false;
		model.lines.forEach(line => {
			if (line.length === 0) {
				return;
			}
			let firstChar = line.charAt(0);
			switch (firstChar) {
				case ';':
					// Comment line;
					return;
				case '[':
					inMessageSection = '[Messages]' === line || '[CustomMessages]' === line;
					return;
			}
			if (!inMessageSection) {
				return;
			}
			let sections: string[] = line.split('=');
			if (sections.length !== 2) {
				throw new Error(`Badly formatted message found: ${line}`);
			} else {
				let key = sections[0];
				let value = sections[1];
				if (key.length > 0 && value.length > 0) {
					keys.push(key);
					messages.push(value);
				}
			}
		});
779

D
Dirk Baeumer 已提交
780 781
		const originalPath = file.path.substring(file.cwd.length + 1, file.path.split('.')[0].length).replace(/\\/g, '/');
		xlf.addFile(originalPath, keys, messages);
782

D
Dirk Baeumer 已提交
783 784 785 786 787
		// Emit only upon all ISL files combined into single XLF instance
		const newFilePath = path.join(projectName, resourceFile);
		const xlfFile = new File({ path: newFilePath, contents: new Buffer(xlf.toString(), 'utf-8') });
		this.queue(xlfFile);
	});
788 789
}

790
export function pushXlfFiles(apiHostname: string, username: string, password: string): ThroughStream {
791 792 793
	let tryGetPromises = [];
	let updateCreatePromises = [];

D
Dirk Baeumer 已提交
794
	return through(function (this: ThroughStream, file: File) {
795 796 797
		const project = path.dirname(file.relative);
		const fileName = path.basename(file.path);
		const slug = fileName.substr(0, fileName.length - '.xlf'.length);
798
		const credentials = `${username}:${password}`;
799 800

		// Check if resource already exists, if not, then create it.
801
		let promise = tryGetResource(project, slug, apiHostname, credentials);
802 803
		tryGetPromises.push(promise);
		promise.then(exists => {
804
			if (exists) {
805
				promise = updateResource(project, slug, file, apiHostname, credentials);
806
			} else {
807
				promise = createResource(project, slug, file, apiHostname, credentials);
808
			}
809 810 811
			updateCreatePromises.push(promise);
		});

J
Joao Moreno 已提交
812
	}, function () {
813 814 815
		// End the pipe only after all the communication with Transifex API happened
		Promise.all(tryGetPromises).then(() => {
			Promise.all(updateCreatePromises).then(() => {
D
Dirk Baeumer 已提交
816
				this.queue(null);
817 818
			}).catch((reason) => { throw new Error(reason); });
		}).catch((reason) => { throw new Error(reason); });
819 820 821
	});
}

822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870
function getAllResources(project: string, apiHostname: string, username: string, password: string): Promise<string[]> {
	return new Promise((resolve, reject) => {
		const credentials = `${username}:${password}`;
		const options = {
			hostname: apiHostname,
			path: `/api/2/project/${project}/resources`,
			auth: credentials,
			method: 'GET'
		};

		const request = https.request(options, (res) => {
			let buffer: Buffer[] = [];
			res.on('data', (chunk: Buffer) => buffer.push(chunk));
			res.on('end', () => {
				if (res.statusCode === 200) {
					let json = JSON.parse(Buffer.concat(buffer).toString());
					if (Array.isArray(json)) {
						resolve(json.map(o => o.slug));
						return;
					}
					reject(`Unexpected data format. Response code: ${res.statusCode}.`);
				} else {
					reject(`No resources in ${project} returned no data. Response code: ${res.statusCode}.`);
				}
			});
		});
		request.on('error', (err) => {
			reject(`Failed to query resources in ${project} with the following error: ${err}. ${options.path}`);
		});
		request.end();
	});
}

export function findObsoleteResources(apiHostname: string, username: string, password: string): ThroughStream {
	let resourcesByProject: Map<string[]> = Object.create(null);
	resourcesByProject[extensionsProject] = [].concat(externalExtensionsWithTranslations); // clone

	return through(function (this: ThroughStream, file: File) {
		const project = path.dirname(file.relative);
		const fileName = path.basename(file.path);
		const slug = fileName.substr(0, fileName.length - '.xlf'.length);

		let slugs = resourcesByProject[project];
		if (!slugs) {
			resourcesByProject[project] = slugs = [];
		}
		slugs.push(slug);
		this.push(file);
	}, function () {
871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886

		const json = JSON.parse(fs.readFileSync('./build/lib/i18n.resources.json', 'utf8'));
		let i18Resources = [...json.editor, ...json.workbench].map((r: Resource) => r.project + '/' + r.name.replace(/\//g, '_'));
		let extractedResources = [];
		for (let project of [workbenchProject, editorProject]) {
			for (let resource of resourcesByProject[project]) {
				if (resource !== 'setup_messages') {
					extractedResources.push(project + '/' + resource);
				}
			}
		}
		if (i18Resources.length !== extractedResources.length) {
			console.log(`[i18n] Obsolete resources in file 'build/lib/i18n.resources.json': JSON.stringify(${i18Resources.filter(p => extractedResources.indexOf(p) === -1)})`);
			console.log(`[i18n] Missing resources in file 'build/lib/i18n.resources.json': JSON.stringify(${extractedResources.filter(p => i18Resources.indexOf(p) === -1)})`);
		}

887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904
		let promises = [];
		for (let project in resourcesByProject) {
			promises.push(
				getAllResources(project, apiHostname, username, password).then(resources => {
					let expectedResources = resourcesByProject[project];
					let unusedResources = resources.filter(resource => resource && expectedResources.indexOf(resource) === -1);
					if (unusedResources.length) {
						console.log(`[transifex] Obsolete resources in project '${project}': ${unusedResources.join(', ')}`);
					}
				})
			);
		}
		return Promise.all(promises).then(_ => {
			this.push(null);
		}).catch((reason) => { throw new Error(reason); });
	});
}

905
function tryGetResource(project: string, slug: string, apiHostname: string, credentials: string): Promise<boolean> {
906
	return new Promise((resolve, reject) => {
907 908 909 910 911 912 913
		const options = {
			hostname: apiHostname,
			path: `/api/2/project/${project}/resource/${slug}/?details`,
			auth: credentials,
			method: 'GET'
		};

914
		const request = https.request(options, (response) => {
915 916 917 918 919
			if (response.statusCode === 404) {
				resolve(false);
			} else if (response.statusCode === 200) {
				resolve(true);
			} else {
920
				reject(`Failed to query resource ${project}/${slug}. Response: ${response.statusCode} ${response.statusMessage}`);
921
			}
922 923
		});
		request.on('error', (err) => {
924
			reject(`Failed to get ${project}/${slug} on Transifex: ${err}`);
925
		});
926 927

		request.end();
928 929 930
	});
}

931 932 933 934 935 936 937 938
function createResource(project: string, slug: string, xlfFile: File, apiHostname: string, credentials: any): Promise<any> {
	return new Promise((resolve, reject) => {
		const data = JSON.stringify({
			'content': xlfFile.contents.toString(),
			'name': slug,
			'slug': slug,
			'i18n_type': 'XLIFF'
		});
939
		const options = {
940 941 942 943 944
			hostname: apiHostname,
			path: `/api/2/project/${project}/resources`,
			headers: {
				'Content-Type': 'application/json',
				'Content-Length': Buffer.byteLength(data)
945
			},
946 947
			auth: credentials,
			method: 'POST'
948
		};
949

950
		let request = https.request(options, (res) => {
951 952 953
			if (res.statusCode === 201) {
				log(`Resource ${project}/${slug} successfully created on Transifex.`);
			} else {
954
				reject(`Something went wrong in the request creating ${slug} in ${project}. ${res.statusCode}`);
955
			}
956 957
		});
		request.on('error', (err) => {
958
			reject(`Failed to create ${project}/${slug} on Transifex: ${err}`);
959
		});
960 961 962

		request.write(data);
		request.end();
963 964 965 966 967 968 969
	});
}

/**
 * The following link provides information about how Transifex handles updates of a resource file:
 * https://dev.befoolish.co/tx-docs/public/projects/updating-content#what-happens-when-you-update-files
 */
J
Joao Moreno 已提交
970
function updateResource(project: string, slug: string, xlfFile: File, apiHostname: string, credentials: string): Promise<any> {
971 972
	return new Promise((resolve, reject) => {
		const data = JSON.stringify({ content: xlfFile.contents.toString() });
973
		const options = {
974 975 976 977 978 979 980 981
			hostname: apiHostname,
			path: `/api/2/project/${project}/resource/${slug}/content`,
			headers: {
				'Content-Type': 'application/json',
				'Content-Length': Buffer.byteLength(data)
			},
			auth: credentials,
			method: 'PUT'
982
		};
983

984
		let request = https.request(options, (res) => {
985
			if (res.statusCode === 200) {
986 987 988 989 990 991 992 993 994 995 996
				res.setEncoding('utf8');

				let responseBuffer: string = '';
				res.on('data', function (chunk) {
					responseBuffer += chunk;
				});
				res.on('end', () => {
					const response = JSON.parse(responseBuffer);
					log(`Resource ${project}/${slug} successfully updated on Transifex. Strings added: ${response.strings_added}, updated: ${response.strings_added}, deleted: ${response.strings_added}`);
					resolve();
				});
997
			} else {
998
				reject(`Something went wrong in the request updating ${slug} in ${project}. ${res.statusCode}`);
999
			}
1000 1001
		});
		request.on('error', (err) => {
1002
			reject(`Failed to update ${project}/${slug} on Transifex: ${err}`);
1003
		});
1004 1005 1006

		request.write(data);
		request.end();
1007 1008 1009
	});
}

D
Dirk Baeumer 已提交
1010
// cache resources
1011
let _coreAndExtensionResources: Resource[];
D
Dirk Baeumer 已提交
1012

1013
export function pullCoreAndExtensionsXlfFiles(apiHostname: string, username: string, password: string, language: Language, externalExtensions?: Map<string>): NodeJS.ReadableStream {
1014 1015
	if (!_coreAndExtensionResources) {
		_coreAndExtensionResources = [];
D
Dirk Baeumer 已提交
1016 1017
		// editor and workbench
		const json = JSON.parse(fs.readFileSync('./build/lib/i18n.resources.json', 'utf8'));
1018 1019
		_coreAndExtensionResources.push(...json.editor);
		_coreAndExtensionResources.push(...json.workbench);
D
Dirk Baeumer 已提交
1020 1021 1022 1023 1024 1025 1026

		// extensions
		let extensionsToLocalize = Object.create(null);
		glob.sync('./extensions/**/*.nls.json', ).forEach(extension => extensionsToLocalize[extension.split('/')[2]] = true);
		glob.sync('./extensions/*/node_modules/vscode-nls', ).forEach(extension => extensionsToLocalize[extension.split('/')[2]] = true);

		Object.keys(extensionsToLocalize).forEach(extension => {
1027
			_coreAndExtensionResources.push({ name: extension, project: extensionsProject });
1028
		});
1029 1030 1031 1032 1033 1034

		if (externalExtensions) {
			for (let resourceName in externalExtensions) {
				_coreAndExtensionResources.push({ name: resourceName, project: extensionsProject });
			}
		}
1035
	}
1036
	return pullXlfFiles(apiHostname, username, password, language, _coreAndExtensionResources);
1037 1038
}

D
Dirk Baeumer 已提交
1039
export function pullSetupXlfFiles(apiHostname: string, username: string, password: string, language: Language, includeDefault: boolean): NodeJS.ReadableStream {
1040
	let setupResources = [{ name: 'setup_messages', project: workbenchProject }];
D
Dirk Baeumer 已提交
1041
	if (includeDefault) {
1042
		setupResources.push({ name: 'setup_default', project: setupProject });
1043
	}
D
Dirk Baeumer 已提交
1044 1045
	return pullXlfFiles(apiHostname, username, password, language, setupResources);
}
1046

D
Dirk Baeumer 已提交
1047
function pullXlfFiles(apiHostname: string, username: string, password: string, language: Language, resources: Resource[]): NodeJS.ReadableStream {
1048
	const credentials = `${username}:${password}`;
D
Dirk Baeumer 已提交
1049
	let expectedTranslationsCount = resources.length;
1050 1051
	let translationsRetrieved = 0, called = false;

J
Joao Moreno 已提交
1052
	return readable(function (count, callback) {
1053 1054 1055 1056 1057 1058 1059 1060
		// Mark end of stream when all resources were retrieved
		if (translationsRetrieved === expectedTranslationsCount) {
			return this.emit('end');
		}

		if (!called) {
			called = true;
			const stream = this;
D
Dirk Baeumer 已提交
1061 1062 1063
			resources.map(function (resource) {
				retrieveResource(language, resource, apiHostname, credentials).then((file: File) => {
					if (file) {
1064
						stream.emit('data', file);
D
Dirk Baeumer 已提交
1065 1066 1067
					}
					translationsRetrieved++;
				}).catch(error => { throw new Error(error); });
1068 1069 1070 1071 1072 1073
			});
		}

		callback();
	});
}
1074
const limiter = new Limiter<File>(NUMBER_OF_CONCURRENT_DOWNLOADS);
1075

D
Dirk Baeumer 已提交
1076
function retrieveResource(language: Language, resource: Resource, apiHostname, credentials): Promise<File> {
1077
	return limiter.queue(() => new Promise<File>((resolve, reject) => {
1078 1079
		const slug = resource.name.replace(/\//g, '_');
		const project = resource.project;
D
Dirk Baeumer 已提交
1080
		const transifexLanguageId = language.transifexId || language.id;
1081 1082
		const options = {
			hostname: apiHostname,
D
Dirk Baeumer 已提交
1083
			path: `/api/2/project/${project}/resource/${slug}/translation/${transifexLanguageId}?file&mode=onlyreviewed`,
1084
			auth: credentials,
1085
			port: 443,
1086 1087
			method: 'GET'
		};
1088
		console.log('[transifex] Fetching ' + options.path);
1089

1090
		let request = https.request(options, (res) => {
J
Joao Moreno 已提交
1091 1092 1093 1094
			let xlfBuffer: Buffer[] = [];
			res.on('data', (chunk: Buffer) => xlfBuffer.push(chunk));
			res.on('end', () => {
				if (res.statusCode === 200) {
D
Dirk Baeumer 已提交
1095 1096
					resolve(new File({ contents: Buffer.concat(xlfBuffer), path: `${project}/${slug}.xlf` }));
				} else if (res.statusCode === 404) {
1097
					console.log(`[transifex] ${slug} in ${project} returned no data.`);
D
Dirk Baeumer 已提交
1098 1099 1100
					resolve(null);
				} else {
					reject(`${slug} in ${project} returned no data. Response code: ${res.statusCode}.`);
J
Joao Moreno 已提交
1101 1102
				}
			});
1103 1104
		});
		request.on('error', (err) => {
1105
			reject(`Failed to query resource ${slug} with the following error: ${err}. ${options.path}`);
1106 1107
		});
		request.end();
1108
	}));
1109 1110
}

D
Dirk Baeumer 已提交
1111
export function prepareI18nFiles(): ThroughStream {
1112 1113
	let parsePromises: Promise<ParsedXLF[]>[] = [];

D
Dirk Baeumer 已提交
1114
	return through(function (this: ThroughStream, xlf: File) {
1115
		let stream = this;
1116 1117 1118
		let parsePromise = XLF.parse(xlf.contents.toString());
		parsePromises.push(parsePromise);
		parsePromise.then(
D
Dirk Baeumer 已提交
1119
			resolvedFiles => {
1120
				resolvedFiles.forEach(file => {
D
Dirk Baeumer 已提交
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131
					let translatedFile = createI18nFile(file.originalFilePath, file.messages);
					stream.queue(translatedFile);
				});
			}
		);
	}, function () {
		Promise.all(parsePromises)
			.then(() => { this.queue(null); })
			.catch(reason => { throw new Error(reason); });
	});
}
1132

D
Dirk Baeumer 已提交
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
function createI18nFile(originalFilePath: string, messages: any): File {
	let result = Object.create(null);
	result[''] = [
		'--------------------------------------------------------------------------------------------',
		'Copyright (c) Microsoft Corporation. All rights reserved.',
		'Licensed under the MIT License. See License.txt in the project root for license information.',
		'--------------------------------------------------------------------------------------------',
		'Do not edit this file. It is machine generated.'
	];
	for (let key of Object.keys(messages)) {
		result[key] = messages[key];
	}

	let content = JSON.stringify(result, null, '\t').replace(/\r\n/g, '\n');
	return new File({
		path: path.join(originalFilePath + '.i18n.json'),
		contents: new Buffer(content, 'utf8')
	});
}
1152

D
Dirk Baeumer 已提交
1153 1154 1155 1156 1157 1158 1159 1160 1161
interface I18nPack {
	version: string;
	contents: {
		[path: string]: Map<string>;
	};
}

const i18nPackVersion = "1.0.0";

1162 1163 1164 1165 1166 1167 1168 1169
export interface TranslationPath {
	id: string;
	resourceName: string;
}

export function pullI18nPackFiles(apiHostname: string, username: string, password: string, language: Language, resultingTranslationPaths: TranslationPath[]): NodeJS.ReadableStream {
	return pullCoreAndExtensionsXlfFiles(apiHostname, username, password, language, externalExtensionsWithTranslations)
		.pipe(prepareI18nPackFiles(externalExtensionsWithTranslations, resultingTranslationPaths));
D
Dirk Baeumer 已提交
1170 1171
}

1172
export function prepareI18nPackFiles(externalExtensions: Map<string>, resultingTranslationPaths: TranslationPath[]): NodeJS.ReadWriteStream {
D
Dirk Baeumer 已提交
1173 1174 1175 1176 1177
	let parsePromises: Promise<ParsedXLF[]>[] = [];
	let mainPack: I18nPack = { version: i18nPackVersion, contents: {} };
	let extensionsPacks: Map<I18nPack> = {};
	return through(function (this: ThroughStream, xlf: File) {
		let stream = this;
1178 1179
		let project = path.dirname(xlf.path);
		let resource = path.basename(xlf.path, '.xlf');
D
Dirk Baeumer 已提交
1180 1181 1182 1183 1184 1185 1186
		let parsePromise = XLF.parse(xlf.contents.toString());
		parsePromises.push(parsePromise);
		parsePromise.then(
			resolvedFiles => {
				resolvedFiles.forEach(file => {
					const path = file.originalFilePath;
					const firstSlash = path.indexOf('/');
1187 1188 1189 1190 1191

					if (project === extensionsProject) {
						let extPack = extensionsPacks[resource];
						if (!extPack) {
							extPack = extensionsPacks[resource] = { version: i18nPackVersion, contents: {} };
D
Dirk Baeumer 已提交
1192
						}
1193 1194 1195 1196 1197 1198 1199
						const externalId = externalExtensions[resource];
						if (!externalId) { // internal extension: remove 'extensions/extensionId/' segnent
							const secondSlash = path.indexOf('/', firstSlash + 1);
							extPack.contents[path.substr(secondSlash + 1)] = file.messages;
						} else {
							extPack.contents[path] = file.messages;
						}
1200
					} else {
1201
						mainPack.contents[path.substr(firstSlash + 1)] = file.messages;
1202 1203 1204 1205
					}
				});
			}
		);
J
Joao Moreno 已提交
1206
	}, function () {
1207
		Promise.all(parsePromises)
D
Dirk Baeumer 已提交
1208 1209
			.then(() => {
				const translatedMainFile = createI18nFile('./main', mainPack);
1210 1211
				resultingTranslationPaths.push({ id: 'vscode', resourceName: 'main.i18n.json' });

D
Dirk Baeumer 已提交
1212 1213 1214 1215
				this.queue(translatedMainFile);
				for (let extension in extensionsPacks) {
					const translatedExtFile = createI18nFile(`./extensions/${extension}`, extensionsPacks[extension]);
					this.queue(translatedExtFile);
1216 1217 1218 1219 1220 1221 1222 1223

					const externalExtensionId = externalExtensions[extension];
					if (externalExtensionId) {
						resultingTranslationPaths.push({ id: externalExtensionId, resourceName: `extensions/${extension}.i18n.json` });
					} else {
						resultingTranslationPaths.push({ id: `vscode.${extension}`, resourceName: `extensions/${extension}.i18n.json` });
					}

D
Dirk Baeumer 已提交
1224 1225 1226
				}
				this.queue(null);
			})
1227
			.catch(reason => { throw new Error(reason); });
1228 1229 1230
	});
}

D
Dirk Baeumer 已提交
1231 1232
export function prepareIslFiles(language: Language, innoSetupConfig: InnoSetup): ThroughStream {
	let parsePromises: Promise<ParsedXLF[]>[] = [];
1233

D
Dirk Baeumer 已提交
1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252
	return through(function (this: ThroughStream, xlf: File) {
		let stream = this;
		let parsePromise = XLF.parse(xlf.contents.toString());
		parsePromises.push(parsePromise);
		parsePromise.then(
			resolvedFiles => {
				resolvedFiles.forEach(file => {
					if (path.basename(file.originalFilePath) === 'Default' && !innoSetupConfig.defaultInfo) {
						return;
					}
					let translatedFile = createIslFile(file.originalFilePath, file.messages, language, innoSetupConfig);
					stream.queue(translatedFile);
				});
			}
		);
	}, function () {
		Promise.all(parsePromises)
			.then(() => { this.queue(null); })
			.catch(reason => { throw new Error(reason); });
1253 1254 1255
	});
}

D
Dirk Baeumer 已提交
1256
function createIslFile(originalFilePath: string, messages: Map<string>, language: Language, innoSetup: InnoSetup): File {
1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268
	let content: string[] = [];
	let originalContent: TextModel;
	if (path.basename(originalFilePath) === 'Default') {
		originalContent = new TextModel(fs.readFileSync(originalFilePath + '.isl', 'utf8'));
	} else {
		originalContent = new TextModel(fs.readFileSync(originalFilePath + '.en.isl', 'utf8'));
	}
	originalContent.lines.forEach(line => {
		if (line.length > 0) {
			let firstChar = line.charAt(0);
			if (firstChar === '[' || firstChar === ';') {
				if (line === '; *** Inno Setup version 5.5.3+ English messages ***') {
D
Dirk Baeumer 已提交
1269
					content.push(`; *** Inno Setup version 5.5.3+ ${innoSetup.defaultInfo.name} messages ***`);
1270 1271 1272 1273 1274 1275 1276 1277 1278
				} else {
					content.push(line);
				}
			} else {
				let sections: string[] = line.split('=');
				let key = sections[0];
				let translated = line;
				if (key) {
					if (key === 'LanguageName') {
D
Dirk Baeumer 已提交
1279
						translated = `${key}=${innoSetup.defaultInfo.name}`;
1280
					} else if (key === 'LanguageID') {
D
Dirk Baeumer 已提交
1281
						translated = `${key}=${innoSetup.defaultInfo.id}`;
1282
					} else if (key === 'LanguageCodePage') {
D
Dirk Baeumer 已提交
1283
						translated = `${key}=${innoSetup.codePage.substr(2)}`;
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296
					} else {
						let translatedMessage = messages[key];
						if (translatedMessage) {
							translated = `${key}=${translatedMessage}`;
						}
					}
				}

				content.push(translated);
			}
		}
	});

1297
	const basename = path.basename(originalFilePath);
D
Dirk Baeumer 已提交
1298
	const filePath = `${basename}.${language.id}.isl`;
1299 1300 1301

	return new File({
		path: filePath,
D
Dirk Baeumer 已提交
1302
		contents: iconv.encode(new Buffer(content.join('\r\n'), 'utf8'), innoSetup.codePage)
1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326
	});
}

function encodeEntities(value: string): string {
	var result: string[] = [];
	for (var i = 0; i < value.length; i++) {
		var ch = value[i];
		switch (ch) {
			case '<':
				result.push('&lt;');
				break;
			case '>':
				result.push('&gt;');
				break;
			case '&':
				result.push('&amp;');
				break;
			default:
				result.push(ch);
		}
	}
	return result.join('');
}

J
Joao Moreno 已提交
1327
function decodeEntities(value: string): string {
1328
	return value.replace(/&lt;/g, '<').replace(/&gt;/g, '>').replace(/&amp;/g, '&');
D
Dirk Baeumer 已提交
1329
}