| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | /* | 
					
						
							|  |  |  | 	MIT License http://www.opensource.org/licenses/mit-license.php
 | 
					
						
							|  |  |  | 	Author Tobias Koppers @sokra | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const SortableSet = require("./util/SortableSet"); | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | const compareLocations = require("./compareLocations"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | /** @typedef {import("./Chunk")} Chunk */ | 
					
						
							|  |  |  | /** @typedef {import("./Module")} Module */ | 
					
						
							|  |  |  | /** @typedef {import("./ModuleReason")} ModuleReason */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /** @typedef {{id: number}} HasId */ | 
					
						
							| 
									
										
										
										
											2018-05-08 20:31:51 +08:00
										 |  |  | /** @typedef {{module: Module, loc: TODO, request: string}} OriginRecord */ | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | /** @typedef {string|{name: string}} ChunkGroupOptions */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | let debugId = 5000; | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | /** | 
					
						
							| 
									
										
										
										
											2018-06-05 05:22:20 +08:00
										 |  |  |  * @template T | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  |  * @param {Set<T>} set set to convert to array. | 
					
						
							|  |  |  |  * @returns {T[]} the array format of existing set | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | const getArray = set => Array.from(set); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * A convenience method used to sort chunks based on their id's | 
					
						
							|  |  |  |  * @param {HasId} a first sorting comparitor | 
					
						
							|  |  |  |  * @param {HasId} b second sorting comparitor | 
					
						
							|  |  |  |  * @returns {1|0|-1} a sorting index to determine order | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | const sortById = (a, b) => { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 	if (a.id < b.id) return -1; | 
					
						
							|  |  |  | 	if (b.id < a.id) return 1; | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	return 0; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | /** | 
					
						
							|  |  |  |  * @param {OriginRecord} a the first comparitor in sort | 
					
						
							|  |  |  |  * @param {OriginRecord} b the second comparitor in sort | 
					
						
							|  |  |  |  * @returns {1|-1|0} returns sorting order as index | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2018-01-20 18:28:45 +08:00
										 |  |  | const sortOrigin = (a, b) => { | 
					
						
							|  |  |  | 	const aIdent = a.module ? a.module.identifier() : ""; | 
					
						
							|  |  |  | 	const bIdent = b.module ? b.module.identifier() : ""; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 	if (aIdent < bIdent) return -1; | 
					
						
							|  |  |  | 	if (aIdent > bIdent) return 1; | 
					
						
							| 
									
										
										
										
											2018-01-20 18:28:45 +08:00
										 |  |  | 	return compareLocations(a.loc, b.loc); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | class ChunkGroup { | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Creates an instance of ChunkGroup. | 
					
						
							|  |  |  | 	 * @param {ChunkGroupOptions=} options chunk group options passed to chunkGroup | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 	constructor(options) { | 
					
						
							|  |  |  | 		if (typeof options === "string") { | 
					
						
							|  |  |  | 			options = { name: options }; | 
					
						
							|  |  |  | 		} else if (!options) { | 
					
						
							|  |  |  | 			options = { name: undefined }; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 		/** @type {number} */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		this.groupDebugId = debugId++; | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 		this.options = options; | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		this._children = new SortableSet(undefined, sortById); | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 		this._parents = new SortableSet(undefined, sortById); | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		this._blocks = new SortableSet(); | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 		/** @type {Chunk[]} */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		this.chunks = []; | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 		/** @type {OriginRecord[]} */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		this.origins = []; | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * when a new chunk is added to a chunkGroup, addingOptions will occur. | 
					
						
							|  |  |  | 	 * @param {ChunkGroupOptions} options the chunkGroup options passed to addOptions | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 	addOptions(options) { | 
					
						
							|  |  |  | 		for (const key of Object.keys(options)) { | 
					
						
							|  |  |  | 			if (this.options[key] === undefined) { | 
					
						
							|  |  |  | 				this.options[key] = options[key]; | 
					
						
							|  |  |  | 			} else if (this.options[key] !== options[key]) { | 
					
						
							| 
									
										
										
										
											2018-04-17 00:00:34 +08:00
										 |  |  | 				if (key.endsWith("Order")) { | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 					this.options[key] = Math.max(this.options[key], options[key]); | 
					
						
							|  |  |  | 				} else { | 
					
						
							|  |  |  | 					throw new Error( | 
					
						
							|  |  |  | 						`ChunkGroup.addOptions: No option merge strategy for ${key}` | 
					
						
							|  |  |  | 					); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * returns the name of current ChunkGroup | 
					
						
							| 
									
										
										
										
											2018-05-03 05:07:58 +08:00
										 |  |  | 	 * @returns {string|undefined} returns the ChunkGroup name | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 	get name() { | 
					
						
							|  |  |  | 		return this.options.name; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * sets a new name for current ChunkGroup | 
					
						
							|  |  |  | 	 * @param {string} value the new name for ChunkGroup | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 	set name(value) { | 
					
						
							|  |  |  | 		this.options.name = value; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * get a uniqueId for ChunkGroup, made up of its member Chunk debugId's | 
					
						
							|  |  |  | 	 * @returns {string} a unique concatenation of chunk debugId's | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	get debugId() { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		return Array.from(this.chunks, x => x.debugId).join("+"); | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * get a unique id for ChunkGroup, made up of its member Chunk id's | 
					
						
							|  |  |  | 	 * @returns {string} a unique concatenation of chunk ids | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	get id() { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		return Array.from(this.chunks, x => x.id).join("+"); | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Performs an unshift of a specific chunk | 
					
						
							|  |  |  | 	 * @param {Chunk} chunk chunk being unshifted | 
					
						
							|  |  |  | 	 * @returns {boolean} returns true if attempted chunk shift is accepted | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	unshiftChunk(chunk) { | 
					
						
							|  |  |  | 		const oldIdx = this.chunks.indexOf(chunk); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (oldIdx > 0) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this.chunks.splice(oldIdx, 1); | 
					
						
							|  |  |  | 			this.chunks.unshift(chunk); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		} else if (oldIdx < 0) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this.chunks.unshift(chunk); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * inserts a chunk before another existing chunk in group | 
					
						
							|  |  |  | 	 * @param {Chunk} chunk Chunk being inserted | 
					
						
							|  |  |  | 	 * @param {Chunk} before Placeholder/target chunk marking new chunk insertion point | 
					
						
							|  |  |  | 	 * @returns {boolean} return true if insertion was successful | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	insertChunk(chunk, before) { | 
					
						
							|  |  |  | 		const oldIdx = this.chunks.indexOf(chunk); | 
					
						
							|  |  |  | 		const idx = this.chunks.indexOf(before); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (idx < 0) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			throw new Error("before chunk not found"); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (oldIdx >= 0 && oldIdx > idx) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this.chunks.splice(oldIdx, 1); | 
					
						
							|  |  |  | 			this.chunks.splice(idx, 0, chunk); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		} else if (oldIdx < 0) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this.chunks.splice(idx, 0, chunk); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * add a chunk into ChunkGroup. Is pushed on or prepended | 
					
						
							|  |  |  | 	 * @param {Chunk} chunk chunk being pushed into ChunkGroupS | 
					
						
							|  |  |  | 	 * @returns {boolean} returns true if chunk addition was ssuccesful. | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	pushChunk(chunk) { | 
					
						
							|  |  |  | 		const oldIdx = this.chunks.indexOf(chunk); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (oldIdx >= 0) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		this.chunks.push(chunk); | 
					
						
							|  |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {Chunk} oldChunk chunk to be replaced | 
					
						
							|  |  |  | 	 * @param {Chunk} newChunk New chunkt that will be replaced | 
					
						
							|  |  |  | 	 * @returns {boolean} rerturns true for | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	replaceChunk(oldChunk, newChunk) { | 
					
						
							|  |  |  | 		const oldIdx = this.chunks.indexOf(oldChunk); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (oldIdx < 0) return false; | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		const newIdx = this.chunks.indexOf(newChunk); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (newIdx < 0) { | 
					
						
							| 
									
										
										
										
											2018-01-20 18:28:45 +08:00
										 |  |  | 			this.chunks[oldIdx] = newChunk; | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (newIdx < oldIdx) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this.chunks.splice(oldIdx, 1); | 
					
						
							|  |  |  | 			return true; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		} else if (newIdx !== oldIdx) { | 
					
						
							| 
									
										
										
										
											2018-01-20 18:28:45 +08:00
										 |  |  | 			this.chunks[oldIdx] = newChunk; | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this.chunks.splice(newIdx, 1); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	removeChunk(chunk) { | 
					
						
							|  |  |  | 		const idx = this.chunks.indexOf(chunk); | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (idx >= 0) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this.chunks.splice(idx, 1); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	isInitial() { | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	addChild(chunk) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (this._children.has(chunk)) { | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		this._children.add(chunk); | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 		return true; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	getChildren() { | 
					
						
							|  |  |  | 		return this._children.getFromCache(getArray); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getNumberOfChildren() { | 
					
						
							|  |  |  | 		return this._children.size; | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	get childrenIterable() { | 
					
						
							|  |  |  | 		return this._children; | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	removeChild(chunk) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (!this._children.has(chunk)) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			return false; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		this._children.delete(chunk); | 
					
						
							|  |  |  | 		chunk.removeParent(this); | 
					
						
							|  |  |  | 		return true; | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addParent(parentChunk) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (!this._parents.has(parentChunk)) { | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 			this._parents.add(parentChunk); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getParents() { | 
					
						
							|  |  |  | 		return this._parents.getFromCache(getArray); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	setParents(newParents) { | 
					
						
							|  |  |  | 		this._parents.clear(); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 		for (const p of newParents) { | 
					
						
							|  |  |  | 			this._parents.add(p); | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getNumberOfParents() { | 
					
						
							|  |  |  | 		return this._parents.size; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hasParent(parent) { | 
					
						
							|  |  |  | 		return this._parents.has(parent); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	get parentsIterable() { | 
					
						
							|  |  |  | 		return this._parents; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	removeParent(chunk) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (this._parents.delete(chunk)) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			chunk.removeChunk(this); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	/** | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	 * @returns {Array} - an array containing the blocks | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	 */ | 
					
						
							|  |  |  | 	getBlocks() { | 
					
						
							|  |  |  | 		return this._blocks.getFromCache(getArray); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	getNumberOfBlocks() { | 
					
						
							|  |  |  | 		return this._blocks.size; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	hasBlock(block) { | 
					
						
							|  |  |  | 		return this._blocks.has(block); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	get blocksIterable() { | 
					
						
							|  |  |  | 		return this._blocks; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addBlock(block) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		if (!this._blocks.has(block)) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			this._blocks.add(block); | 
					
						
							|  |  |  | 			return true; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	addOrigin(module, loc, request) { | 
					
						
							|  |  |  | 		this.origins.push({ | 
					
						
							|  |  |  | 			module, | 
					
						
							|  |  |  | 			loc, | 
					
						
							|  |  |  | 			request | 
					
						
							|  |  |  | 		}); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	containsModule(module) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		for (const chunk of this.chunks) { | 
					
						
							|  |  |  | 			if (chunk.containsModule(module)) return true; | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 		return false; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 	getFiles() { | 
					
						
							|  |  |  | 		const files = new Set(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		for (const chunk of this.chunks) { | 
					
						
							|  |  |  | 			for (const file of chunk.files) { | 
					
						
							|  |  |  | 				files.add(file); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		return Array.from(files); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * @param {ModuleReason} reason reason for removing ChunkGroup | 
					
						
							|  |  |  | 	 * @returns {void} | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	remove(reason) { | 
					
						
							|  |  |  | 		// cleanup parents
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		for (const parentChunkGroup of this._parents) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			// remove this chunk from its parents
 | 
					
						
							|  |  |  | 			parentChunkGroup._children.delete(this); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			// cleanup "sub chunks"
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 			for (const chunkGroup of this._children) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 				/** | 
					
						
							|  |  |  | 				 * remove this chunk as "intermediary" and connect | 
					
						
							|  |  |  | 				 * it "sub chunks" and parents directly | 
					
						
							|  |  |  | 				 */ | 
					
						
							|  |  |  | 				// add parent to each "sub chunk"
 | 
					
						
							|  |  |  | 				chunkGroup.addParent(parentChunkGroup); | 
					
						
							|  |  |  | 				// add "sub chunk" to parent
 | 
					
						
							|  |  |  | 				parentChunkGroup.addChild(chunkGroup); | 
					
						
							| 
									
										
										
										
											2018-01-22 20:52:43 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		/** | 
					
						
							|  |  |  | 		 * we need to iterate again over the children | 
					
						
							|  |  |  | 		 * to remove this from the childs parents. | 
					
						
							|  |  |  | 		 * This can not be done in the above loop | 
					
						
							| 
									
										
										
										
											2018-02-26 10:30:35 +08:00
										 |  |  | 		 * as it is not guaranteed that `this._parents` contains anything. | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		 */ | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		for (const chunkGroup of this._children) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			// remove this as parent of every "sub chunk"
 | 
					
						
							|  |  |  | 			chunkGroup._parents.delete(this); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// cleanup blocks
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		for (const block of this._blocks) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			block.chunkGroup = null; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// remove chunks
 | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		for (const chunk of this.chunks) { | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 			chunk.removeGroup(this); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	sortItems() { | 
					
						
							| 
									
										
										
										
											2018-01-20 18:28:45 +08:00
										 |  |  | 		this.origins.sort(sortOrigin); | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		this._parents.sort(); | 
					
						
							|  |  |  | 		this._children.sort(); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-25 05:27:25 +08:00
										 |  |  | 	/** | 
					
						
							|  |  |  | 	 * Sorting predicate which allows current ChunkGroup to be compared against another. | 
					
						
							|  |  |  | 	 * Sorting values are based off of number of chunks in ChunkGroup. | 
					
						
							|  |  |  | 	 * | 
					
						
							|  |  |  | 	 * @param {ChunkGroup} otherGroup the chunkGroup to compare this against | 
					
						
							|  |  |  | 	 * @returns {-1|0|1} sort position for comparison | 
					
						
							|  |  |  | 	 */ | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 	compareTo(otherGroup) { | 
					
						
							|  |  |  | 		if (this.chunks.length > otherGroup.chunks.length) return -1; | 
					
						
							|  |  |  | 		if (this.chunks.length < otherGroup.chunks.length) return 1; | 
					
						
							|  |  |  | 		const a = this.chunks[Symbol.iterator](); | 
					
						
							|  |  |  | 		const b = otherGroup.chunks[Symbol.iterator](); | 
					
						
							|  |  |  | 		// eslint-disable-next-line
 | 
					
						
							|  |  |  | 		while (true) { | 
					
						
							|  |  |  | 			const aItem = a.next(); | 
					
						
							|  |  |  | 			const bItem = b.next(); | 
					
						
							|  |  |  | 			if (aItem.done) return 0; | 
					
						
							|  |  |  | 			const cmp = aItem.value.compareTo(bItem.value); | 
					
						
							|  |  |  | 			if (cmp !== 0) return cmp; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-04-17 00:00:34 +08:00
										 |  |  | 	getChildrenByOrders() { | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 		const lists = new Map(); | 
					
						
							|  |  |  | 		for (const childGroup of this._children) { | 
					
						
							|  |  |  | 			// TODO webpack 5 remove this check for options
 | 
					
						
							|  |  |  | 			if (typeof childGroup.options === "object") { | 
					
						
							|  |  |  | 				for (const key of Object.keys(childGroup.options)) { | 
					
						
							| 
									
										
										
										
											2018-04-17 00:00:34 +08:00
										 |  |  | 					if (key.endsWith("Order")) { | 
					
						
							|  |  |  | 						const name = key.substr(0, key.length - "Order".length); | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 						let list = lists.get(name); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 						if (list === undefined) { | 
					
						
							|  |  |  | 							lists.set(name, (list = [])); | 
					
						
							|  |  |  | 						} | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 						list.push({ | 
					
						
							| 
									
										
										
										
											2018-04-17 00:00:34 +08:00
										 |  |  | 							order: childGroup.options[key], | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 							group: childGroup | 
					
						
							|  |  |  | 						}); | 
					
						
							|  |  |  | 					} | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		const result = Object.create(null); | 
					
						
							|  |  |  | 		for (const [name, list] of lists) { | 
					
						
							|  |  |  | 			list.sort((a, b) => { | 
					
						
							| 
									
										
										
										
											2018-04-17 00:00:34 +08:00
										 |  |  | 				const cmp = b.order - a.order; | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 				if (cmp !== 0) return cmp; | 
					
						
							|  |  |  | 				// TOOD webpack 5 remove this check of compareTo
 | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 				if (a.group.compareTo) { | 
					
						
							|  |  |  | 					return a.group.compareTo(b.group); | 
					
						
							|  |  |  | 				} | 
					
						
							| 
									
										
										
										
											2018-04-16 16:27:22 +08:00
										 |  |  | 				return 0; | 
					
						
							|  |  |  | 			}); | 
					
						
							|  |  |  | 			result[name] = list.map(i => i.group); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return result; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 	checkConstraints() { | 
					
						
							|  |  |  | 		const chunk = this; | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		for (const child of chunk._children) { | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 			if (!child._parents.has(chunk)) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				throw new Error( | 
					
						
							|  |  |  | 					`checkConstraints: child missing parent ${chunk.debugId} -> ${ | 
					
						
							|  |  |  | 						child.debugId | 
					
						
							|  |  |  | 					}`
 | 
					
						
							|  |  |  | 				); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 		for (const parentChunk of chunk._parents) { | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 			if (!parentChunk._children.has(chunk)) { | 
					
						
							| 
									
										
										
										
											2018-02-25 09:00:20 +08:00
										 |  |  | 				throw new Error( | 
					
						
							|  |  |  | 					`checkConstraints: parent missing child ${parentChunk.debugId} <- ${ | 
					
						
							|  |  |  | 						chunk.debugId | 
					
						
							|  |  |  | 					}`
 | 
					
						
							|  |  |  | 				); | 
					
						
							| 
									
										
										
										
											2018-05-29 20:50:40 +08:00
										 |  |  | 			} | 
					
						
							| 
									
										
										
										
											2018-01-20 00:06:59 +08:00
										 |  |  | 		} | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2018-01-10 05:39:16 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | module.exports = ChunkGroup; |