standalone.ts 10.9 KB
Newer Older
A
Alex Dima 已提交
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 ts from 'typescript';
import * as fs from 'fs';
import * as path from 'path';
9
import * as tss from './treeshaking';
A
Alex Dima 已提交
10 11 12 13

const REPO_ROOT = path.join(__dirname, '../../');
const SRC_DIR = path.join(REPO_ROOT, 'src');

14 15
let dirCache: { [dir: string]: boolean; } = {};

A
Alex Dima 已提交
16
function writeFile(filePath: string, contents: Buffer | string): void {
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
	function ensureDirs(dirPath: string): void {
		if (dirCache[dirPath]) {
			return;
		}
		dirCache[dirPath] = true;

		ensureDirs(path.dirname(dirPath));
		if (fs.existsSync(dirPath)) {
			return;
		}
		fs.mkdirSync(dirPath);
	}
	ensureDirs(path.dirname(filePath));
	fs.writeFileSync(filePath, contents);
}

export function extractEditor(options: tss.ITreeShakingOptions & { destRoot: string }): void {
	let result = tss.shake(options);
	for (let fileName in result) {
		if (result.hasOwnProperty(fileName)) {
			writeFile(path.join(options.destRoot, fileName), result[fileName]);
		}
	}
40
	let copied: { [fileName: string]: boolean; } = {};
41 42 43 44 45 46 47
	const copyFile = (fileName: string) => {
		if (copied[fileName]) {
			return;
		}
		copied[fileName] = true;
		const srcPath = path.join(options.sourcesRoot, fileName);
		const dstPath = path.join(options.destRoot, fileName);
A
Alex Dima 已提交
48
		writeFile(dstPath, fs.readFileSync(srcPath));
49
	};
M
Matt Bierner 已提交
50
	const writeOutputFile = (fileName: string, contents: string | Buffer) => {
51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
		writeFile(path.join(options.destRoot, fileName), contents);
	};
	for (let fileName in result) {
		if (result.hasOwnProperty(fileName)) {
			const fileContents = result[fileName];
			const info = ts.preProcessFile(fileContents);

			for (let i = info.importedFiles.length - 1; i >= 0; i--) {
				const importedFileName = info.importedFiles[i].fileName;

				let importedFilePath: string;
				if (/^vs\/css!/.test(importedFileName)) {
					importedFilePath = importedFileName.substr('vs/css!'.length) + '.css';
				} else {
					importedFilePath = importedFileName;
				}
				if (/(^\.\/)|(^\.\.\/)/.test(importedFilePath)) {
					importedFilePath = path.join(path.dirname(fileName), importedFilePath);
				}

				if (/\.css$/.test(importedFilePath)) {
					transportCSS(importedFilePath, copyFile, writeOutputFile);
				} else {
					if (fs.existsSync(path.join(options.sourcesRoot, importedFilePath + '.js'))) {
						copyFile(importedFilePath + '.js');
					}
				}
			}
		}
	}

A
Alex Dima 已提交
82 83
	const tsConfig = JSON.parse(fs.readFileSync(path.join(options.sourcesRoot, 'tsconfig.json')).toString());
	tsConfig.compilerOptions.noUnusedLocals = false;
84 85
	tsConfig.compilerOptions.preserveConstEnums = false;
	tsConfig.compilerOptions.declaration = false;
A
Alex Dima 已提交
86 87
	writeOutputFile('tsconfig.json', JSON.stringify(tsConfig, null, '\t'));

88 89 90 91 92 93 94 95 96 97
	[
		'vs/css.build.js',
		'vs/css.d.ts',
		'vs/css.js',
		'vs/loader.js',
		'vs/monaco.d.ts',
		'vs/nls.build.js',
		'vs/nls.d.ts',
		'vs/nls.js',
		'vs/nls.mock.ts',
A
Alex Dima 已提交
98 99 100 101
		'typings/lib.ie11_safe_es6.d.ts',
		'typings/thenable.d.ts',
		'typings/es6-promise.d.ts',
		'typings/require.d.ts',
102 103 104
	].forEach(copyFile);
}

105 106
export interface IOptions2 {
	srcFolder: string;
A
Alex Dima 已提交
107 108
	outFolder: string;
	outResourcesFolder: string;
109 110
	ignores: string[];
	renames: { [filename: string]: string; };
A
Alex Dima 已提交
111 112
}

113 114
export function createESMSourcesAndResources2(options: IOptions2): void {
	const SRC_FOLDER = path.join(REPO_ROOT, options.srcFolder);
A
Alex Dima 已提交
115 116 117
	const OUT_FOLDER = path.join(REPO_ROOT, options.outFolder);
	const OUT_RESOURCES_FOLDER = path.join(REPO_ROOT, options.outResourcesFolder);

118 119 120 121 122 123 124
	const getDestAbsoluteFilePath = (file: string): string => {
		let dest = options.renames[file.replace(/\\/g, '/')] || file;
		if (dest === 'tsconfig.json') {
			return path.join(OUT_FOLDER, `../tsconfig.json`);
		}
		if (/\.ts$/.test(dest)) {
			return path.join(OUT_FOLDER, dest);
A
Alex Dima 已提交
125
		}
126
		return path.join(OUT_RESOURCES_FOLDER, dest);
A
Alex Dima 已提交
127 128
	};

129 130 131 132 133 134
	const allFiles = walkDirRecursive(SRC_FOLDER);
	for (let i = 0; i < allFiles.length; i++) {
		const file = allFiles[i];

		if (options.ignores.indexOf(file.replace(/\\/g, '/')) >= 0) {
			continue;
A
Alex Dima 已提交
135 136
		}

137 138 139 140 141 142 143 144 145
		if (file === 'tsconfig.json') {
			const tsConfig = JSON.parse(fs.readFileSync(path.join(SRC_FOLDER, file)).toString());
			tsConfig.compilerOptions.moduleResolution = undefined;
			tsConfig.compilerOptions.baseUrl = undefined;
			tsConfig.compilerOptions.module = 'es6';
			tsConfig.compilerOptions.rootDir = 'src';
			tsConfig.compilerOptions.outDir = path.relative(path.dirname(OUT_FOLDER), OUT_RESOURCES_FOLDER);
			write(getDestAbsoluteFilePath(file), JSON.stringify(tsConfig, null, '\t'));
			continue;
A
Alex Dima 已提交
146
		}
147 148 149 150 151

		if (/\.d\.ts$/.test(file) || /\.css$/.test(file) || /\.js$/.test(file)) {
			// Transport the files directly
			write(getDestAbsoluteFilePath(file), fs.readFileSync(path.join(SRC_FOLDER, file)));
			continue;
A
Alex Dima 已提交
152 153
		}

154 155 156
		if (/\.ts$/.test(file)) {
			// Transform the .ts file
			let fileContents = fs.readFileSync(path.join(SRC_FOLDER, file)).toString();
A
Alex Dima 已提交
157

158
			const info = ts.preProcessFile(fileContents);
A
Alex Dima 已提交
159

160 161 162 163 164 165 166 167 168 169
			for (let i = info.importedFiles.length - 1; i >= 0; i--) {
				const importedFilename = info.importedFiles[i].fileName;
				const pos = info.importedFiles[i].pos;
				const end = info.importedFiles[i].end;

				let importedFilepath: string;
				if (/^vs\/css!/.test(importedFilename)) {
					importedFilepath = importedFilename.substr('vs/css!'.length) + '.css';
				} else {
					importedFilepath = importedFilename;
A
Alex Dima 已提交
170
				}
171 172
				if (/(^\.\/)|(^\.\.\/)/.test(importedFilepath)) {
					importedFilepath = path.join(path.dirname(file), importedFilepath);
A
Alex Dima 已提交
173 174
				}

175 176 177 178 179 180 181
				let relativePath: string;
				if (importedFilepath === path.dirname(file)) {
					relativePath = '../' + path.basename(path.dirname(file));
				} else if (importedFilepath === path.dirname(path.dirname(file))) {
					relativePath = '../../' + path.basename(path.dirname(path.dirname(file)));
				} else {
					relativePath = path.relative(path.dirname(file), importedFilepath);
A
Alex Dima 已提交
182
				}
183 184
				if (!/(^\.\/)|(^\.\.\/)/.test(relativePath)) {
					relativePath = './' + relativePath;
A
Alex Dima 已提交
185
				}
186 187 188 189 190
				fileContents = (
					fileContents.substring(0, pos + 1)
					+ relativePath
					+ fileContents.substring(end + 1)
				);
A
Alex Dima 已提交
191 192
			}

193 194 195
			fileContents = fileContents.replace(/import ([a-zA-z0-9]+) = require\(('[^']+')\);/g, function (_, m1, m2) {
				return `import * as ${m1} from ${m2};`;
			});
A
Alex Dima 已提交
196

197
			write(getDestAbsoluteFilePath(file), fileContents);
A
Alex Dima 已提交
198 199 200
			continue;
		}

201 202
		console.log(`UNKNOWN FILE: ${file}`);
	}
A
Alex Dima 已提交
203 204


205 206 207 208 209 210 211 212
	function walkDirRecursive(dir: string): string[] {
		if (dir.charAt(dir.length - 1) !== '/' || dir.charAt(dir.length - 1) !== '\\') {
			dir += '/';
		}
		let result: string[] = [];
		_walkDirRecursive(dir, result, dir.length);
		return result;
	}
A
Alex Dima 已提交
213

214 215 216 217 218 219
	function _walkDirRecursive(dir: string, result: string[], trimPos: number): void {
		const files = fs.readdirSync(dir);
		for (let i = 0; i < files.length; i++) {
			const file = path.join(dir, files[i]);
			if (fs.statSync(file).isDirectory()) {
				_walkDirRecursive(file, result, trimPos);
A
Alex Dima 已提交
220
			} else {
221
				result.push(file.substr(trimPos));
A
Alex Dima 已提交
222 223 224 225
			}
		}
	}

226 227 228
	function write(absoluteFilePath: string, contents: string | Buffer): void {
		if (/(\.ts$)|(\.js$)/.test(absoluteFilePath)) {
			contents = toggleComments(contents.toString());
A
Alex Dima 已提交
229
		}
230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257
		writeFile(absoluteFilePath, contents);

		function toggleComments(fileContents: string): string {
			let lines = fileContents.split(/\r\n|\r|\n/);
			let mode = 0;
			for (let i = 0; i < lines.length; i++) {
				const line = lines[i];

				if (mode === 0) {
					if (/\/\/ ESM-comment-begin/.test(line)) {
						mode = 1;
						continue;
					}
					if (/\/\/ ESM-uncomment-begin/.test(line)) {
						mode = 2;
						continue;
					}
					continue;
				}

				if (mode === 1) {
					if (/\/\/ ESM-comment-end/.test(line)) {
						mode = 0;
						continue;
					}
					lines[i] = '// ' + line;
					continue;
				}
A
Alex Dima 已提交
258

259 260 261 262 263 264 265 266 267 268
				if (mode === 2) {
					if (/\/\/ ESM-uncomment-end/.test(line)) {
						mode = 0;
						continue;
					}
					lines[i] = line.replace(/^(\s*)\/\/ ?/, function (_, indent) {
						return indent;
					});
				}
			}
A
Alex Dima 已提交
269

270 271 272
			return lines.join('\n');
		}
	}
A
Alex Dima 已提交
273 274
}

275
function transportCSS(module: string, enqueue: (module: string) => void, write: (path: string, contents: string | Buffer) => void): boolean {
A
Alex Dima 已提交
276 277 278 279 280 281 282 283 284 285

	if (!/\.css/.test(module)) {
		return false;
	}

	const filename = path.join(SRC_DIR, module);
	const fileContents = fs.readFileSync(filename).toString();
	const inlineResources = 'base64'; // see https://github.com/Microsoft/monaco-editor/issues/148
	const inlineResourcesLimit = 300000;//3000; // see https://github.com/Microsoft/monaco-editor/issues/336

286
	const newContents = _rewriteOrInlineUrls(fileContents, inlineResources === 'base64', inlineResourcesLimit);
A
Alex Dima 已提交
287 288 289
	write(module, newContents);
	return true;

290
	function _rewriteOrInlineUrls(contents: string, forceBase64: boolean, inlineByteLimit: number): string {
A
Alex Dima 已提交
291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
		return _replaceURL(contents, (url) => {
			let imagePath = path.join(path.dirname(module), url);
			let fileContents = fs.readFileSync(path.join(SRC_DIR, imagePath));

			if (fileContents.length < inlineByteLimit) {
				const MIME = /\.svg$/.test(url) ? 'image/svg+xml' : 'image/png';
				let DATA = ';base64,' + fileContents.toString('base64');

				if (!forceBase64 && /\.svg$/.test(url)) {
					// .svg => url encode as explained at https://codepen.io/tigt/post/optimizing-svgs-in-data-uris
					let newText = fileContents.toString()
						.replace(/"/g, '\'')
						.replace(/</g, '%3C')
						.replace(/>/g, '%3E')
						.replace(/&/g, '%26')
						.replace(/#/g, '%23')
						.replace(/\s+/g, ' ');
					let encodedData = ',' + newText;
					if (encodedData.length < DATA.length) {
						DATA = encodedData;
					}
				}
				return '"data:' + MIME + DATA + '"';
			}

			enqueue(imagePath);
			return url;
		});
	}

	function _replaceURL(contents: string, replacer: (url: string) => string): string {
		// Use ")" as the terminator as quotes are oftentimes not used at all
		return contents.replace(/url\(\s*([^\)]+)\s*\)?/g, (_: string, ...matches: string[]) => {
M
Matt Bierner 已提交
324
			let url = matches[0];
A
Alex Dima 已提交
325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
			// Eliminate starting quotes (the initial whitespace is not captured)
			if (url.charAt(0) === '"' || url.charAt(0) === '\'') {
				url = url.substring(1);
			}
			// The ending whitespace is captured
			while (url.length > 0 && (url.charAt(url.length - 1) === ' ' || url.charAt(url.length - 1) === '\t')) {
				url = url.substring(0, url.length - 1);
			}
			// Eliminate ending quotes
			if (url.charAt(url.length - 1) === '"' || url.charAt(url.length - 1) === '\'') {
				url = url.substring(0, url.length - 1);
			}

			if (!_startsWith(url, 'data:') && !_startsWith(url, 'http://') && !_startsWith(url, 'https://')) {
				url = replacer(url);
			}

			return 'url(' + url + ')';
		});
	}

	function _startsWith(haystack: string, needle: string): boolean {
		return haystack.length >= needle.length && haystack.substr(0, needle.length) === needle;
	}
}