| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra and Zackary Jackson @ScriptedAlchemy | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const { RawSource } = require("webpack-sources"); | 
					
						
							|  |  |  | const Module = require("../Module"); | 
					
						
							| 
									
										
										
										
											2023-05-05 07:19:11 +08:00
										 |  |  | const { WEBPACK_MODULE_TYPE_REMOTE } = require("../ModuleTypeConstants"); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | const RuntimeGlobals = require("../RuntimeGlobals"); | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | const makeSerializable = require("../util/makeSerializable"); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | const FallbackDependency = require("./FallbackDependency"); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | const RemoteToExternalDependency = require("./RemoteToExternalDependency"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** @typedef {import("../../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */ | 
					
						
							|  |  |  | /** @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:18:14 +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:18:14 +08:00
										 |  |  | /** @typedef {import("../util/Hash")} Hash */ | 
					
						
							|  |  |  | /** @typedef {import("../util/fs").InputFileSystem} InputFileSystem */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | const TYPES = new Set(["remote", "share-init"]); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | const RUNTIME_REQUIREMENTS = new Set([RuntimeGlobals.module]); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class RemoteModule extends Module { | 
					
						
							| 
									
										
										
										
											2020-05-14 21:50:35 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {string} request request string | 
					
						
							|  |  |  | 	 * @param {string[]} externalRequests list of external requests to containers | 
					
						
							|  |  |  | 	 * @param {string} internalRequest name of exposed module in container | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 	 * @param {string} shareScope the used share scope name | 
					
						
							| 
									
										
										
										
											2020-05-14 21:50:35 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 	constructor(request, externalRequests, internalRequest, shareScope) { | 
					
						
							| 
									
										
										
										
											2023-05-05 07:19:11 +08:00
										 |  |  | 		super(WEBPACK_MODULE_TYPE_REMOTE); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 		this.request = request; | 
					
						
							| 
									
										
										
										
											2020-05-14 21:50:35 +08:00
										 |  |  | 		this.externalRequests = externalRequests; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 		this.internalRequest = internalRequest; | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		this.shareScope = shareScope; | 
					
						
							|  |  |  | 		this._identifier = `remote (${shareScope}) ${this.externalRequests.join( | 
					
						
							|  |  |  | 			" " | 
					
						
							|  |  |  | 		)} ${this.internalRequest}`;
 | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @returns {string} a unique identifier of the module | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	identifier() { | 
					
						
							| 
									
										
										
										
											2020-05-04 21:00:23 +08:00
										 |  |  | 		return this._identifier; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {RequestShortener} requestShortener the request shortener | 
					
						
							|  |  |  | 	 * @returns {string} a user readable identifier of the module | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	readableIdentifier(requestShortener) { | 
					
						
							|  |  |  | 		return `remote ${this.request}`; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											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/remote/${ | 
					
						
							|  |  |  | 			this.request | 
					
						
							|  |  |  | 		}`;
 | 
					
						
							| 
									
										
										
										
											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:18:14 +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
										 |  |  | 		if (this.externalRequests.length === 1) { | 
					
						
							|  |  |  | 			this.addDependency( | 
					
						
							|  |  |  | 				new RemoteToExternalDependency(this.externalRequests[0]) | 
					
						
							|  |  |  | 			); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			this.addDependency(new FallbackDependency(this.externalRequests)); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		callback(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @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) | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	size(type) { | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		return 6; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2020-03-18 17:01:20 +08:00
										 |  |  | 	 * @returns {Set<string>} types available (do not mutate) | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	getSourceTypes() { | 
					
						
							|  |  |  | 		return TYPES; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @returns {string | null} absolute path which should be used for condition matching (usually the resource path) | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	nameForCondition() { | 
					
						
							|  |  |  | 		return this.request; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {CodeGenerationContext} context context for code generation | 
					
						
							|  |  |  | 	 * @returns {CodeGenerationResult} result | 
					
						
							|  |  |  | 	 */ | 
					
						
							|  |  |  | 	codeGeneration({ runtimeTemplate, moduleGraph, chunkGraph }) { | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		const module = moduleGraph.getModule(this.dependencies[0]); | 
					
						
							|  |  |  | 		const id = module && chunkGraph.getModuleId(module); | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | 		const sources = new Map(); | 
					
						
							|  |  |  | 		sources.set("remote", new RawSource("")); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		const data = new Map(); | 
					
						
							|  |  |  | 		data.set("share-init", [ | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				shareScope: this.shareScope, | 
					
						
							|  |  |  | 				initStage: 20, | 
					
						
							|  |  |  | 				init: id === undefined ? "" : `initExternal(${JSON.stringify(id)});` | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		]); | 
					
						
							|  |  |  | 		return { sources, data, runtimeRequirements: RUNTIME_REQUIREMENTS }; | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +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; | 
					
						
							|  |  |  | 		write(this.request); | 
					
						
							| 
									
										
										
										
											2020-05-14 21:50:35 +08:00
										 |  |  | 		write(this.externalRequests); | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 		write(this.internalRequest); | 
					
						
							| 
									
										
										
										
											2020-05-26 23:11:21 +08:00
										 |  |  | 		write(this.shareScope); | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 		super.serialize(context); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-14 22:06:49 +08:00
										 |  |  | 	static deserialize(context) { | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 		const { read } = context; | 
					
						
							| 
									
										
										
										
											2020-05-14 22:06:49 +08:00
										 |  |  | 		const obj = new RemoteModule(read(), read(), read(), read()); | 
					
						
							|  |  |  | 		obj.deserialize(context); | 
					
						
							|  |  |  | 		return obj; | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-04-17 08:41:51 +08:00
										 |  |  | makeSerializable(RemoteModule, "webpack/lib/container/RemoteModule"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-25 04:18:14 +08:00
										 |  |  | module.exports = RemoteModule; |