i18n.ts 42.7 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';
10
import * as File from 'vinyl';
D
Dirk Baeumer 已提交
11
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 18
import * as util from 'gulp-util';
import * as iconv from '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
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' }
];

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

66

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

71 72 73
interface Item {
	id: string;
	message: string;
74
	comment?: string;
75 76
}

77
export interface Resource {
78 79 80 81
	name: string;
	project: string;
}

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

D
Dirk Baeumer 已提交
88 89 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
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);
	}
}

119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
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));
		});
	}
}

D
Dirk Baeumer 已提交
140 141 142 143 144 145 146
interface BundledExtensionFormat {
	[key: string]: {
		messages: string[];
		keys: (string | LocalizeInfo)[];
	};
}

147 148 149
export class Line {
	private buffer: string[] = [];

150
	constructor(indent: number = 0) {
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178
		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 已提交
179
	private buffer: string[];
180
	private files: Map<Item[]>;
181
	public numberOfMessages: number;
182

J
Joao Moreno 已提交
183 184
	constructor(public project: string) {
		this.buffer = [];
185
		this.files = Object.create(null);
186
		this.numberOfMessages = 0;
187 188
	}

J
Joao Moreno 已提交
189 190
	public toString(): string {
		this.appendHeader();
191 192 193 194 195 196

		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 已提交
197
			this.appendNewLine('</body></file>', 2);
198 199 200 201 202 203
		}

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

D
Dirk Baeumer 已提交
204
	public addFile(original: string, keys: (string | LocalizeInfo)[], messages: string[]) {
205 206 207 208
		if (keys.length === 0) {
			console.log('No keys in ' + original);
			return;
		}
D
Dirk Baeumer 已提交
209 210 211
		if (keys.length !== messages.length) {
			throw new Error(`Unmatching keys(${keys.length}) and messages(${messages.length}).`);
		}
212
		this.numberOfMessages += keys.length;
213
		this.files[original] = [];
D
Dirk Baeumer 已提交
214 215 216
		let existingKeys = new Set<string>();
		for (let i = 0; i < keys.length; i++) {
			let key = keys[i];
217 218
			let realKey: string | undefined;
			let comment: string | undefined;
219
			if (Is.string(key)) {
D
Dirk Baeumer 已提交
220 221 222 223 224 225
				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');
226 227
				}
			}
D
Dirk Baeumer 已提交
228 229 230 231 232 233
			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 });
234 235 236
		}
	}

J
Joao Moreno 已提交
237 238
	private addStringItem(item: Item): void {
		if (!item.id || !item.message) {
D
Dirk Baeumer 已提交
239
			throw new Error(`No item ID or value specified: ${JSON.stringify(item)}`);
J
Joao Moreno 已提交
240
		}
241

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

J
Joao Moreno 已提交
245 246 247
		if (item.comment) {
			this.appendNewLine(`<note>${item.comment}</note>`, 6);
		}
248

J
Joao Moreno 已提交
249
		this.appendNewLine('</trans-unit>', 4);
250 251
	}

J
Joao Moreno 已提交
252 253 254
	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);
255 256
	}

J
Joao Moreno 已提交
257 258 259
	private appendFooter(): void {
		this.appendNewLine('</xliff>', 0);
	}
260

J
Joao Moreno 已提交
261 262 263 264 265
	private appendNewLine(content: string, indent?: number): void {
		let line = new Line(indent);
		line.append(content);
		this.buffer.push(line.toString());
	}
266

267
	static parsePseudo = function (xlfString: string): Promise<ParsedXLF[]> {
268
		return new Promise((resolve) => {
269 270
			let parser = new xml2js.Parser();
			let files: { messages: Map<string>, originalFilePath: string, language: string }[] = [];
271
			parser.parseString(xlfString, function (_err: any, result: any) {
272
				const fileNodes: any[] = result['xliff']['file'];
273
				fileNodes.forEach(file => {
274
					const originalFilePath = file.$.original;
275
					const messages: Map<string> = {};
276
					const transUnits = file.body[0]['trans-unit'];
277
					if (transUnits) {
M
Matt Bierner 已提交
278
						transUnits.forEach((unit: any) => {
279 280 281 282 283 284 285 286
							const key = unit.$.id;
							const val = pseudify(unit.source[0]['_'].toString());
							if (key && val) {
								messages[key] = decodeEntities(val);
							}
						});
						files.push({ messages: messages, originalFilePath: originalFilePath, language: 'ps' });
					}
287
				});
288
				resolve(files);
289 290 291 292
			});
		});
	};

J
Joao Moreno 已提交
293
	static parse = function (xlfString: string): Promise<ParsedXLF[]> {
294 295 296 297 298
		return new Promise((resolve, reject) => {
			let parser = new xml2js.Parser();

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

M
Matt Bierner 已提交
299
			parser.parseString(xlfString, function (err: any, result: any) {
300
				if (err) {
D
Dirk Baeumer 已提交
301
					reject(new Error(`XLF parsing error: Failed to parse XLIFF string. ${err}`));
302 303 304 305
				}

				const fileNodes: any[] = result['xliff']['file'];
				if (!fileNodes) {
D
Dirk Baeumer 已提交
306
					reject(new Error(`XLF parsing error: XLIFF file does not contain "xliff" or "file" node(s) required for parsing.`));
307 308 309 310 311
				}

				fileNodes.forEach((file) => {
					const originalFilePath = file.$.original;
					if (!originalFilePath) {
D
Dirk Baeumer 已提交
312
						reject(new Error(`XLF parsing error: XLIFF file node does not contain original attribute to determine the original location of the resource file.`));
313
					}
314
					let language = file.$['target-language'];
315
					if (!language) {
D
Dirk Baeumer 已提交
316
						reject(new Error(`XLF parsing error: XLIFF file node does not contain target-language attribute to determine translated language.`));
317
					}
318
					const messages: Map<string> = {};
319 320

					const transUnits = file.body[0]['trans-unit'];
321
					if (transUnits) {
M
Matt Bierner 已提交
322
						transUnits.forEach((unit: any) => {
323 324 325 326 327
							const key = unit.$.id;
							if (!unit.target) {
								return; // No translation available
							}

328 329 330 331
							let val = unit.target[0];
							if (typeof val !== 'string') {
								val = val._;
							}
332 333 334
							if (key && val) {
								messages[key] = decodeEntities(val);
							} else {
335
								reject(new Error(`XLF parsing error: XLIFF file ${originalFilePath} does not contain full localization data. ID or target translation for one of the trans-unit nodes is not present.`));
336 337 338 339
							}
						});
						files.push({ messages: messages, originalFilePath: originalFilePath, language: language.toLowerCase() });
					}
340 341 342 343 344 345 346 347
				});

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

348 349 350 351 352 353
export interface ITask<T> {
	(): T;
}

interface ILimitedTaskFactory<T> {
	factory: ITask<Promise<T>>;
354
	c: (value?: T | Promise<T>) => void;
355 356 357 358 359 360 361 362 363 364 365 366 367 368
	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 已提交
369
			this.outstandingPromises.push({ factory, c, e });
370 371 372 373 374 375
			this.consume();
		});
	}

	private consume(): void {
		while (this.outstandingPromises.length && this.runningPromises < this.maxDegreeOfParalellism) {
376
			const iLimitedTask = this.outstandingPromises.shift()!;
377 378 379 380 381 382 383 384 385 386 387 388 389 390
			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 已提交
391 392 393
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 已提交
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
	*/
M
Matt Bierner 已提交
404
	const regexp = /("(?:[^\\\"]*(?:\\.)?)*")|('(?:[^\\\']*(?:\\.)?)*')|(\/\*(?:\r?\n|.)*?\*\/)|(\/{2,}.*?(?:(?:\r?\n)|$))/g;
405
	let result = content.replace(regexp, (match, _m1, _m2, m3, m4) => {
D
Dirk Baeumer 已提交
406 407 408 409 410 411 412 413
		// 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 已提交
414
				return m4[length - 2] === '\r' ? '\r\n' : '\n';
D
Dirk Baeumer 已提交
415 416 417 418 419 420 421 422 423
			} else {
				return '';
			}
		} else {
			// We match a string
			return match;
		}
	});
	return result;
424
}
D
Dirk Baeumer 已提交
425

J
Joao Moreno 已提交
426
function escapeCharacters(value: string): string {
M
Matt Bierner 已提交
427 428 429
	const result: string[] = [];
	for (let i = 0; i < value.length; i++) {
		const ch = value.charAt(i);
J
Joao Moreno 已提交
430
		switch (ch) {
D
Dirk Baeumer 已提交
431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461
			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 已提交
462
function processCoreBundleFormat(fileHeader: string, languages: Language[], json: BundledFormat, emitter: ThroughStream) {
D
Dirk Baeumer 已提交
463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480
	let keysSection = json.keys;
	let messageSection = json.messages;
	let bundleSection = json.bundles;

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

	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) => {
D
Dirk Baeumer 已提交
481
			if (typeof key === 'string') {
D
Dirk Baeumer 已提交
482 483 484 485 486 487 488 489
				messageMap[key] = messages[i];
			} else {
				messageMap[key.key] = messages[i];
			}
		});
	});

	let languageDirectory = path.join(__dirname, '..', '..', 'i18n');
D
Dirk Baeumer 已提交
490 491
	let sortedLanguages = sortLanguages(languages);
	sortedLanguages.forEach((language) => {
J
Joao Moreno 已提交
492
		if (process.env['VSCODE_BUILD_VERBOSE']) {
D
Dirk Baeumer 已提交
493
			log(`Generating nls bundles for: ${language.id}`);
J
Joao Moreno 已提交
494 495
		}

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

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

587
const editorProject: string = 'vscode-editor',
588
	workbenchProject: string = 'vscode-workbench',
589
	extensionsProject: string = 'vscode-extensions',
590
	setupProject: string = 'vscode-setup';
591

592
export function getResource(sourceFile: string): Resource {
593 594
	let resource: string;

J
Joao Moreno 已提交
595
	if (/^vs\/platform/.test(sourceFile)) {
596
		return { name: 'vs/platform', project: editorProject };
J
Joao Moreno 已提交
597
	} else if (/^vs\/editor\/contrib/.test(sourceFile)) {
598
		return { name: 'vs/editor/contrib', project: editorProject };
J
Joao Moreno 已提交
599
	} else if (/^vs\/editor/.test(sourceFile)) {
600
		return { name: 'vs/editor', project: editorProject };
J
Joao Moreno 已提交
601
	} else if (/^vs\/base/.test(sourceFile)) {
602
		return { name: 'vs/base', project: editorProject };
J
Joao Moreno 已提交
603
	} else if (/^vs\/code/.test(sourceFile)) {
604
		return { name: 'vs/code', project: workbenchProject };
J
Joao Moreno 已提交
605
	} else if (/^vs\/workbench\/parts/.test(sourceFile)) {
606 607
		resource = sourceFile.split('/', 4).join('/');
		return { name: resource, project: workbenchProject };
J
Joao Moreno 已提交
608
	} else if (/^vs\/workbench\/services/.test(sourceFile)) {
609 610
		resource = sourceFile.split('/', 4).join('/');
		return { name: resource, project: workbenchProject };
J
Joao Moreno 已提交
611
	} else if (/^vs\/workbench/.test(sourceFile)) {
612 613 614
		return { name: 'vs/workbench', project: workbenchProject };
	}

J
Joao Moreno 已提交
615
	throw new Error(`Could not identify the XLF bundle for ${sourceFile}`);
616 617 618
}


D
Dirk Baeumer 已提交
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
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,
650
						contents: Buffer.from(xlf.toString(), 'utf8')
D
Dirk Baeumer 已提交
651 652 653 654 655 656 657 658 659 660
					});
					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;
661
		}
D
Dirk Baeumer 已提交
662
	});
663 664
}

D
Dirk Baeumer 已提交
665 666 667 668 669 670 671 672
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()) {
673 674
			return;
		}
D
Dirk Baeumer 已提交
675 676
		let extensionName = path.basename(extensionFolder.path);
		if (extensionName === 'node_modules') {
677 678
			return;
		}
D
Dirk Baeumer 已提交
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
		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'),
721
					contents: Buffer.from(_xlf.toString(), 'utf8')
D
Dirk Baeumer 已提交
722 723 724 725 726 727 728 729
				});
				folderStream.queue(xlfFile);
			}
			this.queue(null);
			counter--;
			if (counter === 0 && folderStreamEnded && !folderStreamEndEmitted) {
				folderStreamEndEmitted = true;
				folderStream.queue(null);
730
			}
D
Dirk Baeumer 已提交
731 732 733 734 735 736
		}));
	}, function () {
		folderStreamEnded = true;
		if (counter === 0) {
			folderStreamEndEmitted = true;
			this.queue(null);
737 738
		}
	});
D
Dirk Baeumer 已提交
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 779 780 781 782 783 784 785 786
}

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);
				}
			}
		});
787

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

D
Dirk Baeumer 已提交
791 792
		// Emit only upon all ISL files combined into single XLF instance
		const newFilePath = path.join(projectName, resourceFile);
793
		const xlfFile = new File({ path: newFilePath, contents: Buffer.from(xlf.toString(), 'utf-8') });
D
Dirk Baeumer 已提交
794 795
		this.queue(xlfFile);
	});
796 797
}

798
export function pushXlfFiles(apiHostname: string, username: string, password: string): ThroughStream {
799 800
	let tryGetPromises: Array<Promise<boolean>> = [];
	let updateCreatePromises: Array<Promise<boolean>> = [];
801

D
Dirk Baeumer 已提交
802
	return through(function (this: ThroughStream, file: File) {
803 804 805
		const project = path.dirname(file.relative);
		const fileName = path.basename(file.path);
		const slug = fileName.substr(0, fileName.length - '.xlf'.length);
806
		const credentials = `${username}:${password}`;
807 808

		// Check if resource already exists, if not, then create it.
809
		let promise = tryGetResource(project, slug, apiHostname, credentials);
810 811
		tryGetPromises.push(promise);
		promise.then(exists => {
812
			if (exists) {
813
				promise = updateResource(project, slug, file, apiHostname, credentials);
814
			} else {
815
				promise = createResource(project, slug, file, apiHostname, credentials);
816
			}
817 818 819
			updateCreatePromises.push(promise);
		});

J
Joao Moreno 已提交
820
	}, function () {
821 822 823
		// End the pipe only after all the communication with Transifex API happened
		Promise.all(tryGetPromises).then(() => {
			Promise.all(updateCreatePromises).then(() => {
D
Dirk Baeumer 已提交
824
				this.queue(null);
825 826
			}).catch((reason) => { throw new Error(reason); });
		}).catch((reason) => { throw new Error(reason); });
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
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);
865
	resourcesByProject[extensionsProject] = ([] as any[]).concat(externalExtensionsWithTranslations); // clone
866 867 868 869 870 871 872 873 874 875 876 877 878

	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 () {
879 880 881

		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, '_'));
882
		let extractedResources: string[] = [];
883 884 885 886 887 888 889 890 891 892 893 894
		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)})`);
		}

895
		let promises: Array<Promise<void>> = [];
896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
		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); });
	});
}

913
function tryGetResource(project: string, slug: string, apiHostname: string, credentials: string): Promise<boolean> {
914
	return new Promise((resolve, reject) => {
915 916 917 918 919 920 921
		const options = {
			hostname: apiHostname,
			path: `/api/2/project/${project}/resource/${slug}/?details`,
			auth: credentials,
			method: 'GET'
		};

922
		const request = https.request(options, (response) => {
923 924 925 926 927
			if (response.statusCode === 404) {
				resolve(false);
			} else if (response.statusCode === 200) {
				resolve(true);
			} else {
928
				reject(`Failed to query resource ${project}/${slug}. Response: ${response.statusCode} ${response.statusMessage}`);
929
			}
930 931
		});
		request.on('error', (err) => {
932
			reject(`Failed to get ${project}/${slug} on Transifex: ${err}`);
933
		});
934 935

		request.end();
936 937 938
	});
}

939
function createResource(project: string, slug: string, xlfFile: File, apiHostname: string, credentials: any): Promise<any> {
940
	return new Promise((_resolve, reject) => {
941 942 943 944 945 946
		const data = JSON.stringify({
			'content': xlfFile.contents.toString(),
			'name': slug,
			'slug': slug,
			'i18n_type': 'XLIFF'
		});
947
		const options = {
948 949 950 951 952
			hostname: apiHostname,
			path: `/api/2/project/${project}/resources`,
			headers: {
				'Content-Type': 'application/json',
				'Content-Length': Buffer.byteLength(data)
953
			},
954 955
			auth: credentials,
			method: 'POST'
956
		};
957

958
		let request = https.request(options, (res) => {
959 960 961
			if (res.statusCode === 201) {
				log(`Resource ${project}/${slug} successfully created on Transifex.`);
			} else {
962
				reject(`Something went wrong in the request creating ${slug} in ${project}. ${res.statusCode}`);
963
			}
964 965
		});
		request.on('error', (err) => {
966
			reject(`Failed to create ${project}/${slug} on Transifex: ${err}`);
967
		});
968 969 970

		request.write(data);
		request.end();
971 972 973 974 975 976 977
	});
}

/**
 * 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 已提交
978
function updateResource(project: string, slug: string, xlfFile: File, apiHostname: string, credentials: string): Promise<any> {
979 980
	return new Promise((resolve, reject) => {
		const data = JSON.stringify({ content: xlfFile.contents.toString() });
981
		const options = {
982 983 984 985 986 987 988 989
			hostname: apiHostname,
			path: `/api/2/project/${project}/resource/${slug}/content`,
			headers: {
				'Content-Type': 'application/json',
				'Content-Length': Buffer.byteLength(data)
			},
			auth: credentials,
			method: 'PUT'
990
		};
991

992
		let request = https.request(options, (res) => {
993
			if (res.statusCode === 200) {
994 995 996 997 998 999 1000 1001 1002 1003 1004
				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();
				});
1005
			} else {
1006
				reject(`Something went wrong in the request updating ${slug} in ${project}. ${res.statusCode}`);
1007
			}
1008 1009
		});
		request.on('error', (err) => {
1010
			reject(`Failed to update ${project}/${slug} on Transifex: ${err}`);
1011
		});
1012 1013 1014

		request.write(data);
		request.end();
1015 1016 1017
	});
}

D
Dirk Baeumer 已提交
1018
// cache resources
1019
let _coreAndExtensionResources: Resource[];
D
Dirk Baeumer 已提交
1020

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

		// extensions
		let extensionsToLocalize = Object.create(null);
1031 1032
		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);
D
Dirk Baeumer 已提交
1033 1034

		Object.keys(extensionsToLocalize).forEach(extension => {
1035
			_coreAndExtensionResources.push({ name: extension, project: extensionsProject });
1036
		});
1037 1038 1039 1040 1041 1042

		if (externalExtensions) {
			for (let resourceName in externalExtensions) {
				_coreAndExtensionResources.push({ name: resourceName, project: extensionsProject });
			}
		}
1043
	}
1044
	return pullXlfFiles(apiHostname, username, password, language, _coreAndExtensionResources);
1045 1046
}

D
Dirk Baeumer 已提交
1047
export function pullSetupXlfFiles(apiHostname: string, username: string, password: string, language: Language, includeDefault: boolean): NodeJS.ReadableStream {
1048
	let setupResources = [{ name: 'setup_messages', project: workbenchProject }];
D
Dirk Baeumer 已提交
1049
	if (includeDefault) {
1050
		setupResources.push({ name: 'setup_default', project: setupProject });
1051
	}
D
Dirk Baeumer 已提交
1052 1053
	return pullXlfFiles(apiHostname, username, password, language, setupResources);
}
1054

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

M
Matt Bierner 已提交
1060
	return readable(function (_count: any, callback: any) {
1061 1062 1063 1064 1065 1066 1067 1068
		// 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 已提交
1069
			resources.map(function (resource) {
1070
				retrieveResource(language, resource, apiHostname, credentials).then((file: File | null) => {
D
Dirk Baeumer 已提交
1071
					if (file) {
1072
						stream.emit('data', file);
D
Dirk Baeumer 已提交
1073 1074 1075
					}
					translationsRetrieved++;
				}).catch(error => { throw new Error(error); });
1076 1077 1078 1079 1080 1081
			});
		}

		callback();
	});
}
1082
const limiter = new Limiter<File | null>(NUMBER_OF_CONCURRENT_DOWNLOADS);
1083

M
Matt Bierner 已提交
1084
function retrieveResource(language: Language, resource: Resource, apiHostname: string, credentials: string): Promise<File | null> {
1085
	return limiter.queue(() => new Promise<File | null>((resolve, reject) => {
1086 1087
		const slug = resource.name.replace(/\//g, '_');
		const project = resource.project;
1088
		let transifexLanguageId = language.id === 'ps' ? 'en' : language.transifexId || language.id;
1089 1090
		const options = {
			hostname: apiHostname,
D
Dirk Baeumer 已提交
1091
			path: `/api/2/project/${project}/resource/${slug}/translation/${transifexLanguageId}?file&mode=onlyreviewed`,
1092
			auth: credentials,
1093
			port: 443,
1094 1095
			method: 'GET'
		};
1096
		console.log('[transifex] Fetching ' + options.path);
1097

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

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

D
Dirk Baeumer 已提交
1122
	return through(function (this: ThroughStream, xlf: File) {
1123
		let stream = this;
1124 1125 1126
		let parsePromise = XLF.parse(xlf.contents.toString());
		parsePromises.push(parsePromise);
		parsePromise.then(
D
Dirk Baeumer 已提交
1127
			resolvedFiles => {
1128
				resolvedFiles.forEach(file => {
D
Dirk Baeumer 已提交
1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139
					let translatedFile = createI18nFile(file.originalFilePath, file.messages);
					stream.queue(translatedFile);
				});
			}
		);
	}, function () {
		Promise.all(parsePromises)
			.then(() => { this.queue(null); })
			.catch(reason => { throw new Error(reason); });
	});
}
1140

D
Dirk Baeumer 已提交
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
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];
	}

D
Dirk Baeumer 已提交
1154 1155
	let content = JSON.stringify(result, null, '\t');
	if (process.platform === 'win32') {
D
Dirk Baeumer 已提交
1156
		content = content.replace(/\n/g, '\r\n');
D
Dirk Baeumer 已提交
1157
	}
D
Dirk Baeumer 已提交
1158 1159
	return new File({
		path: path.join(originalFilePath + '.i18n.json'),
1160
		contents: Buffer.from(content, 'utf8')
D
Dirk Baeumer 已提交
1161 1162
	});
}
1163

D
Dirk Baeumer 已提交
1164 1165 1166 1167 1168 1169 1170 1171 1172
interface I18nPack {
	version: string;
	contents: {
		[path: string]: Map<string>;
	};
}

const i18nPackVersion = "1.0.0";

1173 1174 1175 1176 1177 1178 1179
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)
1180
		.pipe(prepareI18nPackFiles(externalExtensionsWithTranslations, resultingTranslationPaths, language.id === 'ps'));
D
Dirk Baeumer 已提交
1181 1182
}

1183
export function prepareI18nPackFiles(externalExtensions: Map<string>, resultingTranslationPaths: TranslationPath[], pseudo = false): NodeJS.ReadWriteStream {
D
Dirk Baeumer 已提交
1184 1185 1186
	let parsePromises: Promise<ParsedXLF[]>[] = [];
	let mainPack: I18nPack = { version: i18nPackVersion, contents: {} };
	let extensionsPacks: Map<I18nPack> = {};
1187
	let errors: any[] = [];
D
Dirk Baeumer 已提交
1188
	return through(function (this: ThroughStream, xlf: File) {
1189 1190
		let project = path.dirname(xlf.relative);
		let resource = path.basename(xlf.relative, '.xlf');
1191 1192
		let contents = xlf.contents.toString();
		let parsePromise = pseudo ? XLF.parsePseudo(contents) : XLF.parse(contents);
D
Dirk Baeumer 已提交
1193 1194 1195 1196 1197 1198
		parsePromises.push(parsePromise);
		parsePromise.then(
			resolvedFiles => {
				resolvedFiles.forEach(file => {
					const path = file.originalFilePath;
					const firstSlash = path.indexOf('/');
1199 1200 1201 1202 1203

					if (project === extensionsProject) {
						let extPack = extensionsPacks[resource];
						if (!extPack) {
							extPack = extensionsPacks[resource] = { version: i18nPackVersion, contents: {} };
D
Dirk Baeumer 已提交
1204
						}
1205 1206 1207 1208 1209 1210 1211
						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;
						}
1212
					} else {
1213
						mainPack.contents[path.substr(firstSlash + 1)] = file.messages;
1214 1215 1216
					}
				});
			}
1217 1218 1219
		).catch(reason => {
			errors.push(reason);
		});
J
Joao Moreno 已提交
1220
	}, function () {
1221
		Promise.all(parsePromises)
D
Dirk Baeumer 已提交
1222
			.then(() => {
1223 1224 1225
				if (errors.length > 0) {
					throw errors;
				}
D
Dirk Baeumer 已提交
1226
				const translatedMainFile = createI18nFile('./main', mainPack);
1227 1228
				resultingTranslationPaths.push({ id: 'vscode', resourceName: 'main.i18n.json' });

D
Dirk Baeumer 已提交
1229 1230 1231 1232
				this.queue(translatedMainFile);
				for (let extension in extensionsPacks) {
					const translatedExtFile = createI18nFile(`./extensions/${extension}`, extensionsPacks[extension]);
					this.queue(translatedExtFile);
1233 1234 1235 1236 1237 1238 1239 1240

					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 已提交
1241 1242 1243
				}
				this.queue(null);
			})
1244 1245 1246
			.catch((reason) => {
				this.emit('error', reason);
			});
1247 1248 1249
	});
}

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

D
Dirk Baeumer 已提交
1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
	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);
				});
			}
1267 1268 1269
		).catch(reason => {
			this.emit('error', reason);
		});
D
Dirk Baeumer 已提交
1270 1271 1272
	}, function () {
		Promise.all(parsePromises)
			.then(() => { this.queue(null); })
1273 1274 1275
			.catch(reason => {
				this.emit('error', reason);
			});
1276 1277 1278
	});
}

D
Dirk Baeumer 已提交
1279
function createIslFile(originalFilePath: string, messages: Map<string>, language: Language, innoSetup: InnoSetup): File {
1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291
	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 ***') {
1292
					content.push(`; *** Inno Setup version 5.5.3+ ${innoSetup.defaultInfo!.name} messages ***`);
1293 1294 1295 1296 1297 1298 1299 1300 1301
				} else {
					content.push(line);
				}
			} else {
				let sections: string[] = line.split('=');
				let key = sections[0];
				let translated = line;
				if (key) {
					if (key === 'LanguageName') {
1302
						translated = `${key}=${innoSetup.defaultInfo!.name}`;
1303
					} else if (key === 'LanguageID') {
1304
						translated = `${key}=${innoSetup.defaultInfo!.id}`;
1305
					} else if (key === 'LanguageCodePage') {
D
Dirk Baeumer 已提交
1306
						translated = `${key}=${innoSetup.codePage.substr(2)}`;
1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319
					} else {
						let translatedMessage = messages[key];
						if (translatedMessage) {
							translated = `${key}=${translatedMessage}`;
						}
					}
				}

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

1320
	const basename = path.basename(originalFilePath);
D
Dirk Baeumer 已提交
1321
	const filePath = `${basename}.${language.id}.isl`;
1322 1323 1324

	return new File({
		path: filePath,
1325
		contents: iconv.encode(Buffer.from(content.join('\r\n'), 'utf8').toString(), innoSetup.codePage)
1326 1327 1328 1329
	});
}

function encodeEntities(value: string): string {
M
Matt Bierner 已提交
1330 1331 1332
	let result: string[] = [];
	for (let i = 0; i < value.length; i++) {
		let ch = value[i];
1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349
		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 已提交
1350
function decodeEntities(value: string): string {
1351
	return value.replace(/&lt;/g, '<').replace(/&gt;/g, '>').replace(/&amp;/g, '&');
1352 1353 1354 1355
}

function pseudify(message: string) {
	return '\uFF3B' + message.replace(/[aouei]/g, '$&$&') + '\uFF3D';
D
Dirk Baeumer 已提交
1356
}