Welcome to mirror list, hosted at ThFree Co, Russian Federation.

css.build.ts « vs « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4b3fcc96b270383683026a2335e71f37d891320 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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
82
83
84
85
86
87
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
119
120
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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
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
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

interface ICSSPluginConfig {
	inlineResources?: boolean | 'base64';
	inlineResourcesLimit?: number;
}

interface ICSSEntryPointData {
	moduleName: string;
	contents: string;
	fsPath: string;
}

// This file gets compiled also with the standalone editor,
// so we cannot depend on types from node.d.ts
interface INodeFS {
	readFileSync(path: string, encoding: 'utf8'): string;
	readFileSync(path: string): INodeBuffer;
}
interface INodeBuffer {
	length: number;
	toString(encoding?: 'base64'): string;
}
interface INodePath {
	dirname(p: string): string;
	join(...paths: string[]): string;
}

const nodeReq = <T>(module: string): T | undefined => {
	if (typeof (<any>require).__$__nodeRequire === 'function') {
		return (<any>require).__$__nodeRequire(module);
	}
	return undefined;
};

const fs = nodeReq<INodeFS>('fs');
const path = nodeReq<INodePath>('path');

let inlineResources: boolean | 'base64' = false;
let inlineResourcesLimit: number = 5000;

const contentsMap: { [moduleName: string]: string } = {};
const pathMap: { [moduleName: string]: string } = {};
const entryPoints: { [entryPoint: string]: ICSSEntryPointData[] } = {};
const inlinedResources: string[] = [];

/**
 * Invoked by the loader at build-time
 */
export function load(name: string, req: AMDLoader.IRelativeRequire, load: AMDLoader.IPluginLoadCallback, config: AMDLoader.IConfigurationOptions): void {
	if (!fs) {
		throw new Error(`Cannot load files without 'fs'!`);
	}
	config = config || {};
	const myConfig = <ICSSPluginConfig>(config['vs/css'] || {});
	inlineResources = (typeof myConfig.inlineResources === 'undefined' ? false : myConfig.inlineResources);
	inlineResourcesLimit = (myConfig.inlineResourcesLimit || 5000);
	const cssUrl = req.toUrl(name + '.css');
	let contents = fs.readFileSync(cssUrl, 'utf8');
	if (contents.charCodeAt(0) === 65279 /* BOM */) {
		// Remove BOM
		contents = contents.substring(1);
	}
	if (config.isBuild) {
		contentsMap[name] = contents;
		pathMap[name] = cssUrl;
	}
	load({});
}

/**
 * Invoked by the loader at build-time
 */
export function write(pluginName: string, moduleName: string, write: AMDLoader.IPluginWriteCallback): void {
	const entryPoint = write.getEntryPoint();

	entryPoints[entryPoint] = entryPoints[entryPoint] || [];
	entryPoints[entryPoint].push({
		moduleName: moduleName,
		contents: contentsMap[moduleName],
		fsPath: pathMap[moduleName],
	});

	write.asModule(pluginName + '!' + moduleName,
		'define([\'vs/css!' + entryPoint + '\'], {});'
	);
}

/**
 * Invoked by the loader at build-time
 */
export function writeFile(pluginName: string, moduleName: string, req: AMDLoader.IRelativeRequire, write: AMDLoader.IPluginWriteFileCallback, config: AMDLoader.IConfigurationOptions): void {
	if (entryPoints && entryPoints.hasOwnProperty(moduleName)) {
		const fileName = req.toUrl(moduleName + '.css');
		const contents = [
			'/*---------------------------------------------------------',
			' * Copyright (c) Microsoft Corporation. All rights reserved.',
			' *--------------------------------------------------------*/'
		],
			entries = entryPoints[moduleName];
		for (let i = 0; i < entries.length; i++) {
			if (inlineResources) {
				contents.push(rewriteOrInlineUrls(entries[i].fsPath, entries[i].moduleName, moduleName, entries[i].contents, inlineResources === 'base64', inlineResourcesLimit));
			} else {
				contents.push(rewriteUrls(entries[i].moduleName, moduleName, entries[i].contents));
			}
		}
		write(fileName, contents.join('\r\n'));
	}
}

export function getInlinedResources(): string[] {
	return inlinedResources || [];
}

function rewriteOrInlineUrls(originalFileFSPath: string, originalFile: string, newFile: string, contents: string, forceBase64: boolean, inlineByteLimit: number): string {
	if (!fs || !path) {
		throw new Error(`Cannot rewrite or inline urls without 'fs' or 'path'!`);
	}
	return CSSPluginUtilities.replaceURL(contents, (url) => {
		if (/\.(svg|png)$/.test(url)) {
			const fsPath = path.join(path.dirname(originalFileFSPath), url);
			const fileContents = fs.readFileSync(fsPath);

			if (fileContents.length < inlineByteLimit) {
				const normalizedFSPath = fsPath.replace(/\\/g, '/');
				inlinedResources.push(normalizedFSPath);

				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
					const newText = fileContents.toString()
						.replace(/"/g, '\'')
						.replace(/%/g, '%25')
						.replace(/</g, '%3C')
						.replace(/>/g, '%3E')
						.replace(/&/g, '%26')
						.replace(/#/g, '%23')
						.replace(/\s+/g, ' ');
					const encodedData = ',' + newText;
					if (encodedData.length < DATA.length) {
						DATA = encodedData;
					}
				}
				return '"data:' + MIME + DATA + '"';
			}
		}

		const absoluteUrl = CSSPluginUtilities.joinPaths(CSSPluginUtilities.pathOf(originalFile), url);
		return CSSPluginUtilities.relativePath(newFile, absoluteUrl);
	});
}

export function rewriteUrls(originalFile: string, newFile: string, contents: string): string {
	return CSSPluginUtilities.replaceURL(contents, (url) => {
		const absoluteUrl = CSSPluginUtilities.joinPaths(CSSPluginUtilities.pathOf(originalFile), url);
		return CSSPluginUtilities.relativePath(newFile, absoluteUrl);
	});
}

export class CSSPluginUtilities {

	public static startsWith(haystack: string, needle: string): boolean {
		return haystack.length >= needle.length && haystack.substr(0, needle.length) === needle;
	}

	/**
	 * Find the path of a file.
	 */
	public static pathOf(filename: string): string {
		const lastSlash = filename.lastIndexOf('/');
		if (lastSlash !== -1) {
			return filename.substr(0, lastSlash + 1);
		} else {
			return '';
		}
	}

	/**
	 * A conceptual a + b for paths.
	 * Takes into account if `a` contains a protocol.
	 * Also normalizes the result: e.g.: a/b/ + ../c => a/c
	 */
	public static joinPaths(a: string, b: string): string {

		function findSlashIndexAfterPrefix(haystack: string, prefix: string): number {
			if (CSSPluginUtilities.startsWith(haystack, prefix)) {
				return Math.max(prefix.length, haystack.indexOf('/', prefix.length));
			}
			return 0;
		}

		let aPathStartIndex = 0;
		aPathStartIndex = aPathStartIndex || findSlashIndexAfterPrefix(a, '//');
		aPathStartIndex = aPathStartIndex || findSlashIndexAfterPrefix(a, 'http://');
		aPathStartIndex = aPathStartIndex || findSlashIndexAfterPrefix(a, 'https://');

		function pushPiece(pieces: string[], piece: string): void {
			if (piece === './') {
				// Ignore
				return;
			}
			if (piece === '../') {
				const prevPiece = (pieces.length > 0 ? pieces[pieces.length - 1] : null);
				if (prevPiece && prevPiece === '/') {
					// Ignore
					return;
				}
				if (prevPiece && prevPiece !== '../') {
					// Pop
					pieces.pop();
					return;
				}
			}
			// Push
			pieces.push(piece);
		}

		function push(pieces: string[], path: string): void {
			while (path.length > 0) {
				const slashIndex = path.indexOf('/');
				const piece = (slashIndex >= 0 ? path.substring(0, slashIndex + 1) : path);
				path = (slashIndex >= 0 ? path.substring(slashIndex + 1) : '');
				pushPiece(pieces, piece);
			}
		}

		let pieces: string[] = [];
		push(pieces, a.substr(aPathStartIndex));
		if (b.length > 0 && b.charAt(0) === '/') {
			pieces = [];
		}
		push(pieces, b);

		return a.substring(0, aPathStartIndex) + pieces.join('');
	}

	public static commonPrefix(str1: string, str2: string): string {
		const len = Math.min(str1.length, str2.length);
		for (let i = 0; i < len; i++) {
			if (str1.charCodeAt(i) !== str2.charCodeAt(i)) {
				return str1.substring(0, i);
			}
		}
		return str1.substring(0, len);
	}

	public static commonFolderPrefix(fromPath: string, toPath: string): string {
		const prefix = CSSPluginUtilities.commonPrefix(fromPath, toPath);
		const slashIndex = prefix.lastIndexOf('/');
		if (slashIndex === -1) {
			return '';
		}
		return prefix.substring(0, slashIndex + 1);
	}

	public static relativePath(fromPath: string, toPath: string): string {
		if (CSSPluginUtilities.startsWith(toPath, '/') || CSSPluginUtilities.startsWith(toPath, 'http://') || CSSPluginUtilities.startsWith(toPath, 'https://')) {
			return toPath;
		}

		// Ignore common folder prefix
		const prefix = CSSPluginUtilities.commonFolderPrefix(fromPath, toPath);
		fromPath = fromPath.substr(prefix.length);
		toPath = toPath.substr(prefix.length);

		const upCount = fromPath.split('/').length;
		let result = '';
		for (let i = 1; i < upCount; i++) {
			result += '../';
		}
		return result + toPath;
	}

	public static 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[]) => {
			let url = matches[0];
			// 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 (!CSSPluginUtilities.startsWith(url, 'data:') && !CSSPluginUtilities.startsWith(url, 'http://') && !CSSPluginUtilities.startsWith(url, 'https://')) {
				url = replacer(url);
			}

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