mirror of https://github.com/webpack/webpack.git
				
				
				
			
		
			
				
	
	
		
			149 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
			
		
		
	
	
			149 lines
		
	
	
		
			4.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
/*
 | 
						|
	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
						|
	Author Tobias Koppers @sokra
 | 
						|
*/
 | 
						|
 | 
						|
"use strict";
 | 
						|
 | 
						|
const { RawSource } = require("webpack-sources");
 | 
						|
const ModuleFilenameHelpers = require("./ModuleFilenameHelpers");
 | 
						|
const NormalModule = require("./NormalModule");
 | 
						|
const SourceMapDevToolModuleOptionsPlugin = require("./SourceMapDevToolModuleOptionsPlugin");
 | 
						|
const JavascriptModulesPlugin = require("./javascript/JavascriptModulesPlugin");
 | 
						|
 | 
						|
/** @typedef {import("webpack-sources").Source} Source */
 | 
						|
/** @typedef {import("./Compiler")} Compiler */
 | 
						|
 | 
						|
/** @type {WeakMap<Source, Source>} */
 | 
						|
const cache = new WeakMap();
 | 
						|
 | 
						|
class EvalSourceMapDevToolPlugin {
 | 
						|
	/**
 | 
						|
	 * @param {TODO} options Options object
 | 
						|
	 */
 | 
						|
	constructor(options = {}) {
 | 
						|
		if (typeof options === "string") {
 | 
						|
			options = {
 | 
						|
				append: options
 | 
						|
			};
 | 
						|
		}
 | 
						|
		this.sourceMapComment =
 | 
						|
			options.append || "//# sourceURL=[module]\n//# sourceMappingURL=[url]";
 | 
						|
		this.moduleFilenameTemplate =
 | 
						|
			options.moduleFilenameTemplate ||
 | 
						|
			"webpack://[namespace]/[resource-path]?[hash]";
 | 
						|
		this.namespace = options.namespace || "";
 | 
						|
		this.options = options;
 | 
						|
	}
 | 
						|
 | 
						|
	/**
 | 
						|
	 * @param {Compiler} compiler the compiler instance
 | 
						|
	 * @returns {void}
 | 
						|
	 */
 | 
						|
	apply(compiler) {
 | 
						|
		const options = this.options;
 | 
						|
		compiler.hooks.compilation.tap(
 | 
						|
			"EvalSourceMapDevToolPlugin",
 | 
						|
			compilation => {
 | 
						|
				const hooks = JavascriptModulesPlugin.getCompilationHooks(compilation);
 | 
						|
				new SourceMapDevToolModuleOptionsPlugin(options).apply(compilation);
 | 
						|
				const matchModule = ModuleFilenameHelpers.matchObject.bind(
 | 
						|
					ModuleFilenameHelpers,
 | 
						|
					options
 | 
						|
				);
 | 
						|
				hooks.renderModuleContent.tap(
 | 
						|
					"EvalSourceMapDevToolPlugin",
 | 
						|
					(source, m, { runtimeTemplate, chunkGraph }) => {
 | 
						|
						const cachedSource = cache.get(source);
 | 
						|
						if (cachedSource !== undefined) {
 | 
						|
							return cachedSource;
 | 
						|
						}
 | 
						|
 | 
						|
						if (!(m instanceof NormalModule)) {
 | 
						|
							return source;
 | 
						|
						}
 | 
						|
 | 
						|
						const module = /** @type {NormalModule} */ (m);
 | 
						|
 | 
						|
						if (!matchModule(module.resource)) {
 | 
						|
							return source;
 | 
						|
						}
 | 
						|
 | 
						|
						/** @type {{ [key: string]: TODO; }} */
 | 
						|
						let sourceMap;
 | 
						|
						let content;
 | 
						|
						if (source.sourceAndMap) {
 | 
						|
							const sourceAndMap = source.sourceAndMap(options);
 | 
						|
							sourceMap = sourceAndMap.map;
 | 
						|
							content = sourceAndMap.source;
 | 
						|
						} else {
 | 
						|
							sourceMap = source.map(options);
 | 
						|
							content = source.source();
 | 
						|
						}
 | 
						|
						if (!sourceMap) {
 | 
						|
							return source;
 | 
						|
						}
 | 
						|
 | 
						|
						// Clone (flat) the sourcemap to ensure that the mutations below do not persist.
 | 
						|
						sourceMap = Object.keys(sourceMap).reduce((obj, key) => {
 | 
						|
							obj[key] = sourceMap[key];
 | 
						|
							return obj;
 | 
						|
						}, {});
 | 
						|
						const modules = sourceMap.sources.map(source => {
 | 
						|
							const module = compilation.findModule(source);
 | 
						|
							return module || source;
 | 
						|
						});
 | 
						|
						let moduleFilenames = modules.map(module => {
 | 
						|
							return ModuleFilenameHelpers.createFilename(
 | 
						|
								module,
 | 
						|
								{
 | 
						|
									moduleFilenameTemplate: this.moduleFilenameTemplate,
 | 
						|
									namespace: this.namespace
 | 
						|
								},
 | 
						|
								{
 | 
						|
									requestShortener: runtimeTemplate.requestShortener,
 | 
						|
									chunkGraph
 | 
						|
								}
 | 
						|
							);
 | 
						|
						});
 | 
						|
						moduleFilenames = ModuleFilenameHelpers.replaceDuplicates(
 | 
						|
							moduleFilenames,
 | 
						|
							(filename, i, n) => {
 | 
						|
								for (let j = 0; j < n; j++) filename += "*";
 | 
						|
								return filename;
 | 
						|
							}
 | 
						|
						);
 | 
						|
						sourceMap.sources = moduleFilenames;
 | 
						|
						sourceMap.sourceRoot = options.sourceRoot || "";
 | 
						|
						const moduleId = chunkGraph.getModuleId(module);
 | 
						|
						sourceMap.file = `${moduleId}.js`;
 | 
						|
 | 
						|
						const footer =
 | 
						|
							this.sourceMapComment.replace(
 | 
						|
								/\[url\]/g,
 | 
						|
								`data:application/json;charset=utf-8;base64,${Buffer.from(
 | 
						|
									JSON.stringify(sourceMap),
 | 
						|
									"utf8"
 | 
						|
								).toString("base64")}`
 | 
						|
							) + `\n//# sourceURL=webpack-internal:///${moduleId}\n`; // workaround for chrome bug
 | 
						|
 | 
						|
						const evalSource = new RawSource(
 | 
						|
							`eval(${JSON.stringify(content + footer)});`
 | 
						|
						);
 | 
						|
 | 
						|
						cache.set(source, evalSource);
 | 
						|
 | 
						|
						return evalSource;
 | 
						|
					}
 | 
						|
				);
 | 
						|
				hooks.chunkHash.tap("EvalSourceMapDevToolPlugin", (chunk, hash) => {
 | 
						|
					hash.update("EvalSourceMapDevToolPlugin");
 | 
						|
					hash.update("1");
 | 
						|
				});
 | 
						|
			}
 | 
						|
		);
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
module.exports = EvalSourceMapDevToolPlugin;
 |