| 
									
										
										
										
											2016-05-05 16:13:50 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							| 
									
										
										
										
											2018-07-30 23:08:51 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 06:21:38 +08:00
										 |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-07-31 04:30:27 +08:00
										 |  |  | const { STAGE_BASIC } = require("../OptimizationStages"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-11-09 05:59:19 +08:00
										 |  |  | /** @typedef {import("../Chunk")} Chunk */ | 
					
						
							|  |  |  | /** @typedef {import("../ChunkGroup")} ChunkGroup */ | 
					
						
							|  |  |  | /** @typedef {import("../Compiler")} Compiler */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2025-06-04 02:20:37 +08:00
										 |  |  | const PLUGIN_NAME = "EnsureChunkConditionsPlugin"; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 06:21:38 +08:00
										 |  |  | class EnsureChunkConditionsPlugin { | 
					
						
							| 
									
										
										
										
											2018-11-09 05:59:19 +08:00
										 |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2020-04-23 16:48:36 +08:00
										 |  |  | 	 * Apply the plugin | 
					
						
							| 
									
										
										
										
											2018-11-09 05:59:19 +08:00
										 |  |  | 	 * @param {Compiler} compiler the compiler instance | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2017-01-05 06:21:38 +08:00
										 |  |  | 	apply(compiler) { | 
					
						
							| 
									
										
										
										
											2025-07-17 00:13:14 +08:00
										 |  |  | 		compiler.hooks.compilation.tap(PLUGIN_NAME, (compilation) => { | 
					
						
							| 
									
										
										
										
											2025-06-04 02:20:37 +08:00
										 |  |  | 			/** | 
					
						
							|  |  |  | 			 * @param {Iterable<Chunk>} chunks the chunks | 
					
						
							|  |  |  | 			 */ | 
					
						
							| 
									
										
										
										
											2025-07-17 00:13:14 +08:00
										 |  |  | 			const handler = (chunks) => { | 
					
						
							| 
									
										
										
										
											2025-06-04 02:20:37 +08:00
										 |  |  | 				const chunkGraph = compilation.chunkGraph; | 
					
						
							|  |  |  | 				// These sets are hoisted here to save memory
 | 
					
						
							|  |  |  | 				// They are cleared at the end of every loop
 | 
					
						
							|  |  |  | 				/** @type {Set<Chunk>} */ | 
					
						
							|  |  |  | 				const sourceChunks = new Set(); | 
					
						
							|  |  |  | 				/** @type {Set<ChunkGroup>} */ | 
					
						
							|  |  |  | 				const chunkGroups = new Set(); | 
					
						
							|  |  |  | 				for (const module of compilation.modules) { | 
					
						
							|  |  |  | 					if (!module.hasChunkCondition()) continue; | 
					
						
							|  |  |  | 					for (const chunk of chunkGraph.getModuleChunksIterable(module)) { | 
					
						
							|  |  |  | 						if (!module.chunkCondition(chunk, compilation)) { | 
					
						
							|  |  |  | 							sourceChunks.add(chunk); | 
					
						
							|  |  |  | 							for (const group of chunk.groupsIterable) { | 
					
						
							|  |  |  | 								chunkGroups.add(group); | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 							} | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2025-06-04 02:20:37 +08:00
										 |  |  | 					} | 
					
						
							|  |  |  | 					if (sourceChunks.size === 0) continue; | 
					
						
							|  |  |  | 					/** @type {Set<Chunk>} */ | 
					
						
							|  |  |  | 					const targetChunks = new Set(); | 
					
						
							|  |  |  | 					chunkGroupLoop: for (const chunkGroup of chunkGroups) { | 
					
						
							|  |  |  | 						// Can module be placed in a chunk of this group?
 | 
					
						
							|  |  |  | 						for (const chunk of chunkGroup.chunks) { | 
					
						
							|  |  |  | 							if (module.chunkCondition(chunk, compilation)) { | 
					
						
							|  |  |  | 								targetChunks.add(chunk); | 
					
						
							|  |  |  | 								continue chunkGroupLoop; | 
					
						
							| 
									
										
										
										
											2017-09-22 22:38:47 +08:00
										 |  |  | 							} | 
					
						
							| 
									
										
										
										
											2017-01-05 06:21:38 +08:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2025-06-04 02:20:37 +08:00
										 |  |  | 						// We reached the entrypoint: fail
 | 
					
						
							|  |  |  | 						if (chunkGroup.isInitial()) { | 
					
						
							|  |  |  | 							throw new Error( | 
					
						
							|  |  |  | 								`Cannot fulfil chunk condition of ${module.identifier()}` | 
					
						
							|  |  |  | 							); | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 						} | 
					
						
							| 
									
										
										
										
											2025-06-04 02:20:37 +08:00
										 |  |  | 						// Try placing in all parents
 | 
					
						
							|  |  |  | 						for (const group of chunkGroup.parentsIterable) { | 
					
						
							|  |  |  | 							chunkGroups.add(group); | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 						} | 
					
						
							|  |  |  | 					} | 
					
						
							| 
									
										
										
										
											2025-06-04 02:20:37 +08:00
										 |  |  | 					for (const sourceChunk of sourceChunks) { | 
					
						
							|  |  |  | 						chunkGraph.disconnectChunkAndModule(sourceChunk, module); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					for (const targetChunk of targetChunks) { | 
					
						
							|  |  |  | 						chunkGraph.connectChunkAndModule(targetChunk, module); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 					sourceChunks.clear(); | 
					
						
							|  |  |  | 					chunkGroups.clear(); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 			compilation.hooks.optimizeChunks.tap( | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					name: PLUGIN_NAME, | 
					
						
							|  |  |  | 					stage: STAGE_BASIC | 
					
						
							|  |  |  | 				}, | 
					
						
							|  |  |  | 				handler | 
					
						
							|  |  |  | 			); | 
					
						
							|  |  |  | 		}); | 
					
						
							| 
									
										
										
										
											2017-01-05 06:21:38 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2025-07-02 20:10:54 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-01-05 06:21:38 +08:00
										 |  |  | module.exports = EnsureChunkConditionsPlugin; |