| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra and Zackary Jackson @ScriptedAlchemy | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | const { RawSource } = require("webpack-sources"); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | const Module = require("../Module"); | 
					
						
							| 
									
										
										
										
											2023-05-05 07:19:11 +08:00
										 |  |  | const { WEBPACK_MODULE_TYPE_FALLBACK } = require("../ModuleTypeConstants"); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | const RuntimeGlobals = require("../RuntimeGlobals"); | 
					
						
							|  |  |  | const Template = require("../Template"); | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | const makeSerializable = require("../util/makeSerializable"); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | const FallbackItemDependency = require("./FallbackItemDependency"); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | /** @typedef {import("../../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */ | 
					
						
							| 
									
										
										
										
											2020-02-27 00:16:01 +08:00
										 |  |  | /** @typedef {import("../Chunk")} Chunk */ | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | /** @typedef {import("../ChunkGraph")} ChunkGraph */ | 
					
						
							|  |  |  | /** @typedef {import("../ChunkGroup")} ChunkGroup */ | 
					
						
							|  |  |  | /** @typedef {import("../Compilation")} Compilation */ | 
					
						
							|  |  |  | /** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */ | 
					
						
							|  |  |  | /** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */ | 
					
						
							| 
									
										
										
										
											2020-05-05 16:43:18 +08:00
										 |  |  | /** @typedef {import("../Module").LibIdentOptions} LibIdentOptions */ | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | /** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */ | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | /** @typedef {import("../RequestShortener")} RequestShortener */ | 
					
						
							|  |  |  | /** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */ | 
					
						
							|  |  |  | /** @typedef {import("../WebpackError")} WebpackError */ | 
					
						
							| 
									
										
										
										
											2023-04-12 02:57:43 +08:00
										 |  |  | /** @typedef {import("../serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */ | 
					
						
							|  |  |  | /** @typedef {import("../serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */ | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | /** @typedef {import("../util/Hash")} Hash */ | 
					
						
							|  |  |  | /** @typedef {import("../util/fs").InputFileSystem} InputFileSystem */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const TYPES = new Set(["javascript"]); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | const RUNTIME_REQUIREMENTS = new Set([RuntimeGlobals.module]); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | class FallbackModule extends Module { | 
					
						
							| 
									
										
										
										
											2020-05-14 21:50:35 +08:00
										 |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 	 * @param {string[]} requests list of requests to choose one | 
					
						
							| 
									
										
										
										
											2020-05-14 21:50:35 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 	constructor(requests) { | 
					
						
							| 
									
										
										
										
											2023-05-05 07:19:11 +08:00
										 |  |  | 		super(WEBPACK_MODULE_TYPE_FALLBACK); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		this.requests = requests; | 
					
						
							|  |  |  | 		this._identifier = `fallback ${this.requests.join(" ")}`; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @returns {string} a unique identifier of the module | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	identifier() { | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		return this._identifier; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {RequestShortener} requestShortener the request shortener | 
					
						
							|  |  |  | 	 * @returns {string} a user readable identifier of the module | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	readableIdentifier(requestShortener) { | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		return this._identifier; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-05 16:43:18 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {LibIdentOptions} options options | 
					
						
							|  |  |  | 	 * @returns {string | null} an identifier for library inclusion | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	libIdent(options) { | 
					
						
							| 
									
										
										
										
											2022-01-14 19:05:28 +08:00
										 |  |  | 		return `${this.layer ? `(${this.layer})/` : ""}webpack/container/fallback/${ | 
					
						
							|  |  |  | 			this.requests[0] | 
					
						
							|  |  |  | 		}/and ${this.requests.length - 1} more`;
 | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {Chunk} chunk the chunk which condition should be checked | 
					
						
							|  |  |  | 	 * @param {Compilation} compilation the compilation | 
					
						
							|  |  |  | 	 * @returns {boolean} true, if the chunk is ok for the module | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	chunkCondition(chunk, { chunkGraph }) { | 
					
						
							|  |  |  | 		return chunkGraph.getNumberOfEntryModules(chunk) > 0; | 
					
						
							| 
									
										
										
										
											2020-05-05 16:43:18 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {NeedBuildContext} context context info | 
					
						
							| 
									
										
										
										
											2021-12-24 20:27:31 +08:00
										 |  |  | 	 * @param {function((WebpackError | null)=, boolean=): void} callback callback function, returns true, if the module needs a rebuild | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	needBuild(context, callback) { | 
					
						
							|  |  |  | 		callback(null, !this.buildInfo); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {WebpackOptions} options webpack options | 
					
						
							|  |  |  | 	 * @param {Compilation} compilation the compilation | 
					
						
							|  |  |  | 	 * @param {ResolverWithOptions} resolver the resolver | 
					
						
							|  |  |  | 	 * @param {InputFileSystem} fs the file system | 
					
						
							|  |  |  | 	 * @param {function(WebpackError=): void} callback callback function | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	build(options, compilation, resolver, fs, callback) { | 
					
						
							|  |  |  | 		this.buildMeta = {}; | 
					
						
							|  |  |  | 		this.buildInfo = { | 
					
						
							|  |  |  | 			strict: true | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		this.clearDependenciesAndBlocks(); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		for (const request of this.requests) | 
					
						
							|  |  |  | 			this.addDependency(new FallbackItemDependency(request)); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		callback(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-27 00:16:01 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {string=} type the source type for which the size should be estimated | 
					
						
							|  |  |  | 	 * @returns {number} the estimated size of the module (must be non-zero) | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	size(type) { | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		return this.requests.length * 5 + 42; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2020-03-18 17:01:20 +08:00
										 |  |  | 	 * @returns {Set<string>} types available (do not mutate) | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	getSourceTypes() { | 
					
						
							|  |  |  | 		return TYPES; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {CodeGenerationContext} context context for code generation | 
					
						
							|  |  |  | 	 * @returns {CodeGenerationResult} result | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	codeGeneration({ runtimeTemplate, moduleGraph, chunkGraph }) { | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		const ids = this.dependencies.map(dep => | 
					
						
							|  |  |  | 			chunkGraph.getModuleId(moduleGraph.getModule(dep)) | 
					
						
							|  |  |  | 		); | 
					
						
							|  |  |  | 		const code = Template.asString([ | 
					
						
							|  |  |  | 			`var ids = ${JSON.stringify(ids)};`, | 
					
						
							|  |  |  | 			"var error, result, i = 0;", | 
					
						
							|  |  |  | 			`var loop = ${runtimeTemplate.basicFunction("next", [ | 
					
						
							|  |  |  | 				"while(i < ids.length) {", | 
					
						
							|  |  |  | 				Template.indent([ | 
					
						
							| 
									
										
										
										
											2023-05-19 23:55:47 +08:00
										 |  |  | 					`try { next = ${RuntimeGlobals.require}(ids[i++]); } catch(e) { return handleError(e); }`, | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 					"if(next) return next.then ? next.then(handleResult, handleError) : handleResult(next);" | 
					
						
							|  |  |  | 				]), | 
					
						
							|  |  |  | 				"}", | 
					
						
							|  |  |  | 				"if(error) throw error;" | 
					
						
							|  |  |  | 			])}`,
 | 
					
						
							|  |  |  | 			`var handleResult = ${runtimeTemplate.basicFunction("result", [ | 
					
						
							|  |  |  | 				"if(result) return result;", | 
					
						
							|  |  |  | 				"return loop();" | 
					
						
							|  |  |  | 			])};`,
 | 
					
						
							|  |  |  | 			`var handleError = ${runtimeTemplate.basicFunction("e", [ | 
					
						
							|  |  |  | 				"error = e;", | 
					
						
							|  |  |  | 				"return loop();" | 
					
						
							|  |  |  | 			])};`,
 | 
					
						
							|  |  |  | 			"module.exports = loop();" | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 		]); | 
					
						
							|  |  |  | 		const sources = new Map(); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		sources.set("javascript", new RawSource(code)); | 
					
						
							|  |  |  | 		return { sources, runtimeRequirements: RUNTIME_REQUIREMENTS }; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-04-12 02:57:43 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {ObjectSerializerContext} context context | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 	serialize(context) { | 
					
						
							|  |  |  | 		const { write } = context; | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		write(this.requests); | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 		super.serialize(context); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-05-27 01:21:35 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {ObjectDeserializerContext} context context | 
					
						
							|  |  |  | 	 * @returns {FallbackModule} deserialized fallback module | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2020-05-14 22:06:49 +08:00
										 |  |  | 	static deserialize(context) { | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 		const { read } = context; | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		const obj = new FallbackModule(read()); | 
					
						
							| 
									
										
										
										
											2020-05-14 22:06:49 +08:00
										 |  |  | 		obj.deserialize(context); | 
					
						
							|  |  |  | 		return obj; | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-25 04:20:53 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | makeSerializable(FallbackModule, "webpack/lib/container/FallbackModule"); | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | module.exports = FallbackModule; |