ChunkGraph.js 49 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const util = require("util");
  7. const Entrypoint = require("./Entrypoint");
  8. const ModuleGraphConnection = require("./ModuleGraphConnection");
  9. const { first } = require("./util/SetHelpers");
  10. const SortableSet = require("./util/SortableSet");
  11. const {
  12. compareModulesById,
  13. compareIterables,
  14. compareModulesByIdentifier,
  15. concatComparators,
  16. compareSelect,
  17. compareIds
  18. } = require("./util/comparators");
  19. const createHash = require("./util/createHash");
  20. const findGraphRoots = require("./util/findGraphRoots");
  21. const {
  22. RuntimeSpecMap,
  23. RuntimeSpecSet,
  24. runtimeToString,
  25. mergeRuntime,
  26. forEachRuntime
  27. } = require("./util/runtime");
  28. /** @typedef {import("./AsyncDependenciesBlock")} AsyncDependenciesBlock */
  29. /** @typedef {import("./Chunk")} Chunk */
  30. /** @typedef {import("./ChunkGroup")} ChunkGroup */
  31. /** @typedef {import("./Module")} Module */
  32. /** @typedef {import("./ModuleGraph")} ModuleGraph */
  33. /** @typedef {import("./RuntimeModule")} RuntimeModule */
  34. /** @typedef {typeof import("./util/Hash")} Hash */
  35. /** @typedef {import("./util/runtime").RuntimeSpec} RuntimeSpec */
  36. /** @type {ReadonlySet<string>} */
  37. const EMPTY_SET = new Set();
  38. const ZERO_BIG_INT = BigInt(0);
  39. const compareModuleIterables = compareIterables(compareModulesByIdentifier);
  40. /** @typedef {(c: Chunk, chunkGraph: ChunkGraph) => boolean} ChunkFilterPredicate */
  41. /** @typedef {(m: Module) => boolean} ModuleFilterPredicate */
  42. /**
  43. * @typedef {Object} ChunkSizeOptions
  44. * @property {number=} chunkOverhead constant overhead for a chunk
  45. * @property {number=} entryChunkMultiplicator multiplicator for initial chunks
  46. */
  47. class ModuleHashInfo {
  48. constructor(hash, renderedHash) {
  49. this.hash = hash;
  50. this.renderedHash = renderedHash;
  51. }
  52. }
  53. /** @template T @typedef {(set: SortableSet<T>) => T[]} SetToArrayFunction<T> */
  54. /**
  55. * @template T
  56. * @param {SortableSet<T>} set the set
  57. * @returns {T[]} set as array
  58. */
  59. const getArray = set => {
  60. return Array.from(set);
  61. };
  62. /**
  63. * @param {SortableSet<Chunk>} chunks the chunks
  64. * @returns {RuntimeSpecSet} runtimes
  65. */
  66. const getModuleRuntimes = chunks => {
  67. const runtimes = new RuntimeSpecSet();
  68. for (const chunk of chunks) {
  69. runtimes.add(chunk.runtime);
  70. }
  71. return runtimes;
  72. };
  73. /**
  74. * @param {SortableSet<Module>} set the set
  75. * @returns {Map<string, SortableSet<Module>>} modules by source type
  76. */
  77. const modulesBySourceType = set => {
  78. /** @type {Map<string, SortableSet<Module>>} */
  79. const map = new Map();
  80. for (const module of set) {
  81. for (const sourceType of module.getSourceTypes()) {
  82. let innerSet = map.get(sourceType);
  83. if (innerSet === undefined) {
  84. innerSet = new SortableSet();
  85. map.set(sourceType, innerSet);
  86. }
  87. innerSet.add(module);
  88. }
  89. }
  90. for (const [key, innerSet] of map) {
  91. // When all modules have the source type, we reuse the original SortableSet
  92. // to benefit from the shared cache (especially for sorting)
  93. if (innerSet.size === set.size) {
  94. map.set(key, set);
  95. }
  96. }
  97. return map;
  98. };
  99. /** @type {WeakMap<Function, any>} */
  100. const createOrderedArrayFunctionMap = new WeakMap();
  101. /**
  102. * @template T
  103. * @param {function(T, T): -1|0|1} comparator comparator function
  104. * @returns {SetToArrayFunction<T>} set as ordered array
  105. */
  106. const createOrderedArrayFunction = comparator => {
  107. /** @type {SetToArrayFunction<T>} */
  108. let fn = createOrderedArrayFunctionMap.get(comparator);
  109. if (fn !== undefined) return fn;
  110. fn = set => {
  111. set.sortWith(comparator);
  112. return Array.from(set);
  113. };
  114. createOrderedArrayFunctionMap.set(comparator, fn);
  115. return fn;
  116. };
  117. /**
  118. * @param {Iterable<Module>} modules the modules to get the count/size of
  119. * @returns {number} the size of the modules
  120. */
  121. const getModulesSize = modules => {
  122. let size = 0;
  123. for (const module of modules) {
  124. for (const type of module.getSourceTypes()) {
  125. size += module.size(type);
  126. }
  127. }
  128. return size;
  129. };
  130. /**
  131. * @param {Iterable<Module>} modules the sortable Set to get the size of
  132. * @returns {Record<string, number>} the sizes of the modules
  133. */
  134. const getModulesSizes = modules => {
  135. let sizes = Object.create(null);
  136. for (const module of modules) {
  137. for (const type of module.getSourceTypes()) {
  138. sizes[type] = (sizes[type] || 0) + module.size(type);
  139. }
  140. }
  141. return sizes;
  142. };
  143. /**
  144. * @param {Chunk} a chunk
  145. * @param {Chunk} b chunk
  146. * @returns {boolean} true, if a is always a parent of b
  147. */
  148. const isAvailableChunk = (a, b) => {
  149. const queue = new Set(b.groupsIterable);
  150. for (const chunkGroup of queue) {
  151. if (a.isInGroup(chunkGroup)) continue;
  152. if (chunkGroup.isInitial()) return false;
  153. for (const parent of chunkGroup.parentsIterable) {
  154. queue.add(parent);
  155. }
  156. }
  157. return true;
  158. };
  159. class ChunkGraphModule {
  160. constructor() {
  161. /** @type {SortableSet<Chunk>} */
  162. this.chunks = new SortableSet();
  163. /** @type {Set<Chunk> | undefined} */
  164. this.entryInChunks = undefined;
  165. /** @type {Set<Chunk> | undefined} */
  166. this.runtimeInChunks = undefined;
  167. /** @type {RuntimeSpecMap<ModuleHashInfo>} */
  168. this.hashes = undefined;
  169. /** @type {string | number} */
  170. this.id = null;
  171. /** @type {RuntimeSpecMap<Set<string>> | undefined} */
  172. this.runtimeRequirements = undefined;
  173. /** @type {RuntimeSpecMap<string>} */
  174. this.graphHashes = undefined;
  175. /** @type {RuntimeSpecMap<string>} */
  176. this.graphHashesWithConnections = undefined;
  177. }
  178. }
  179. class ChunkGraphChunk {
  180. constructor() {
  181. /** @type {SortableSet<Module>} */
  182. this.modules = new SortableSet();
  183. /** @type {Map<Module, Entrypoint>} */
  184. this.entryModules = new Map();
  185. /** @type {SortableSet<RuntimeModule>} */
  186. this.runtimeModules = new SortableSet();
  187. /** @type {Set<RuntimeModule> | undefined} */
  188. this.fullHashModules = undefined;
  189. /** @type {Set<RuntimeModule> | undefined} */
  190. this.dependentHashModules = undefined;
  191. /** @type {Set<string> | undefined} */
  192. this.runtimeRequirements = undefined;
  193. /** @type {Set<string>} */
  194. this.runtimeRequirementsInTree = new Set();
  195. }
  196. }
  197. class ChunkGraph {
  198. /**
  199. * @param {ModuleGraph} moduleGraph the module graph
  200. * @param {string | Hash} hashFunction the hash function to use
  201. */
  202. constructor(moduleGraph, hashFunction = "md4") {
  203. /** @private @type {WeakMap<Module, ChunkGraphModule>} */
  204. this._modules = new WeakMap();
  205. /** @private @type {WeakMap<Chunk, ChunkGraphChunk>} */
  206. this._chunks = new WeakMap();
  207. /** @private @type {WeakMap<AsyncDependenciesBlock, ChunkGroup>} */
  208. this._blockChunkGroups = new WeakMap();
  209. /** @private @type {Map<string, string | number>} */
  210. this._runtimeIds = new Map();
  211. /** @type {ModuleGraph} */
  212. this.moduleGraph = moduleGraph;
  213. this._hashFunction = hashFunction;
  214. this._getGraphRoots = this._getGraphRoots.bind(this);
  215. }
  216. /**
  217. * @private
  218. * @param {Module} module the module
  219. * @returns {ChunkGraphModule} internal module
  220. */
  221. _getChunkGraphModule(module) {
  222. let cgm = this._modules.get(module);
  223. if (cgm === undefined) {
  224. cgm = new ChunkGraphModule();
  225. this._modules.set(module, cgm);
  226. }
  227. return cgm;
  228. }
  229. /**
  230. * @private
  231. * @param {Chunk} chunk the chunk
  232. * @returns {ChunkGraphChunk} internal chunk
  233. */
  234. _getChunkGraphChunk(chunk) {
  235. let cgc = this._chunks.get(chunk);
  236. if (cgc === undefined) {
  237. cgc = new ChunkGraphChunk();
  238. this._chunks.set(chunk, cgc);
  239. }
  240. return cgc;
  241. }
  242. /**
  243. * @param {SortableSet<Module>} set the sortable Set to get the roots of
  244. * @returns {Module[]} the graph roots
  245. */
  246. _getGraphRoots(set) {
  247. const { moduleGraph } = this;
  248. return Array.from(
  249. findGraphRoots(set, module => {
  250. /** @type {Set<Module>} */
  251. const set = new Set();
  252. const addDependencies = module => {
  253. for (const connection of moduleGraph.getOutgoingConnections(module)) {
  254. if (!connection.module) continue;
  255. const activeState = connection.getActiveState(undefined);
  256. if (activeState === false) continue;
  257. if (activeState === ModuleGraphConnection.TRANSITIVE_ONLY) {
  258. addDependencies(connection.module);
  259. continue;
  260. }
  261. set.add(connection.module);
  262. }
  263. };
  264. addDependencies(module);
  265. return set;
  266. })
  267. ).sort(compareModulesByIdentifier);
  268. }
  269. /**
  270. * @param {Chunk} chunk the new chunk
  271. * @param {Module} module the module
  272. * @returns {void}
  273. */
  274. connectChunkAndModule(chunk, module) {
  275. const cgm = this._getChunkGraphModule(module);
  276. const cgc = this._getChunkGraphChunk(chunk);
  277. cgm.chunks.add(chunk);
  278. cgc.modules.add(module);
  279. }
  280. /**
  281. * @param {Chunk} chunk the chunk
  282. * @param {Module} module the module
  283. * @returns {void}
  284. */
  285. disconnectChunkAndModule(chunk, module) {
  286. const cgm = this._getChunkGraphModule(module);
  287. const cgc = this._getChunkGraphChunk(chunk);
  288. cgc.modules.delete(module);
  289. cgm.chunks.delete(chunk);
  290. }
  291. /**
  292. * @param {Chunk} chunk the chunk which will be disconnected
  293. * @returns {void}
  294. */
  295. disconnectChunk(chunk) {
  296. const cgc = this._getChunkGraphChunk(chunk);
  297. for (const module of cgc.modules) {
  298. const cgm = this._getChunkGraphModule(module);
  299. cgm.chunks.delete(chunk);
  300. }
  301. cgc.modules.clear();
  302. chunk.disconnectFromGroups();
  303. ChunkGraph.clearChunkGraphForChunk(chunk);
  304. }
  305. /**
  306. * @param {Chunk} chunk the chunk
  307. * @param {Iterable<Module>} modules the modules
  308. * @returns {void}
  309. */
  310. attachModules(chunk, modules) {
  311. const cgc = this._getChunkGraphChunk(chunk);
  312. for (const module of modules) {
  313. cgc.modules.add(module);
  314. }
  315. }
  316. /**
  317. * @param {Chunk} chunk the chunk
  318. * @param {Iterable<RuntimeModule>} modules the runtime modules
  319. * @returns {void}
  320. */
  321. attachRuntimeModules(chunk, modules) {
  322. const cgc = this._getChunkGraphChunk(chunk);
  323. for (const module of modules) {
  324. cgc.runtimeModules.add(module);
  325. }
  326. }
  327. /**
  328. * @param {Chunk} chunk the chunk
  329. * @param {Iterable<RuntimeModule>} modules the modules that require a full hash
  330. * @returns {void}
  331. */
  332. attachFullHashModules(chunk, modules) {
  333. const cgc = this._getChunkGraphChunk(chunk);
  334. if (cgc.fullHashModules === undefined) cgc.fullHashModules = new Set();
  335. for (const module of modules) {
  336. cgc.fullHashModules.add(module);
  337. }
  338. }
  339. /**
  340. * @param {Chunk} chunk the chunk
  341. * @param {Iterable<RuntimeModule>} modules the modules that require a full hash
  342. * @returns {void}
  343. */
  344. attachDependentHashModules(chunk, modules) {
  345. const cgc = this._getChunkGraphChunk(chunk);
  346. if (cgc.dependentHashModules === undefined)
  347. cgc.dependentHashModules = new Set();
  348. for (const module of modules) {
  349. cgc.dependentHashModules.add(module);
  350. }
  351. }
  352. /**
  353. * @param {Module} oldModule the replaced module
  354. * @param {Module} newModule the replacing module
  355. * @returns {void}
  356. */
  357. replaceModule(oldModule, newModule) {
  358. const oldCgm = this._getChunkGraphModule(oldModule);
  359. const newCgm = this._getChunkGraphModule(newModule);
  360. for (const chunk of oldCgm.chunks) {
  361. const cgc = this._getChunkGraphChunk(chunk);
  362. cgc.modules.delete(oldModule);
  363. cgc.modules.add(newModule);
  364. newCgm.chunks.add(chunk);
  365. }
  366. oldCgm.chunks.clear();
  367. if (oldCgm.entryInChunks !== undefined) {
  368. if (newCgm.entryInChunks === undefined) {
  369. newCgm.entryInChunks = new Set();
  370. }
  371. for (const chunk of oldCgm.entryInChunks) {
  372. const cgc = this._getChunkGraphChunk(chunk);
  373. const old = cgc.entryModules.get(oldModule);
  374. /** @type {Map<Module, Entrypoint>} */
  375. const newEntryModules = new Map();
  376. for (const [m, cg] of cgc.entryModules) {
  377. if (m === oldModule) {
  378. newEntryModules.set(newModule, old);
  379. } else {
  380. newEntryModules.set(m, cg);
  381. }
  382. }
  383. cgc.entryModules = newEntryModules;
  384. newCgm.entryInChunks.add(chunk);
  385. }
  386. oldCgm.entryInChunks = undefined;
  387. }
  388. if (oldCgm.runtimeInChunks !== undefined) {
  389. if (newCgm.runtimeInChunks === undefined) {
  390. newCgm.runtimeInChunks = new Set();
  391. }
  392. for (const chunk of oldCgm.runtimeInChunks) {
  393. const cgc = this._getChunkGraphChunk(chunk);
  394. cgc.runtimeModules.delete(/** @type {RuntimeModule} */ (oldModule));
  395. cgc.runtimeModules.add(/** @type {RuntimeModule} */ (newModule));
  396. newCgm.runtimeInChunks.add(chunk);
  397. if (
  398. cgc.fullHashModules !== undefined &&
  399. cgc.fullHashModules.has(/** @type {RuntimeModule} */ (oldModule))
  400. ) {
  401. cgc.fullHashModules.delete(/** @type {RuntimeModule} */ (oldModule));
  402. cgc.fullHashModules.add(/** @type {RuntimeModule} */ (newModule));
  403. }
  404. if (
  405. cgc.dependentHashModules !== undefined &&
  406. cgc.dependentHashModules.has(/** @type {RuntimeModule} */ (oldModule))
  407. ) {
  408. cgc.dependentHashModules.delete(
  409. /** @type {RuntimeModule} */ (oldModule)
  410. );
  411. cgc.dependentHashModules.add(
  412. /** @type {RuntimeModule} */ (newModule)
  413. );
  414. }
  415. }
  416. oldCgm.runtimeInChunks = undefined;
  417. }
  418. }
  419. /**
  420. * @param {Module} module the checked module
  421. * @param {Chunk} chunk the checked chunk
  422. * @returns {boolean} true, if the chunk contains the module
  423. */
  424. isModuleInChunk(module, chunk) {
  425. const cgc = this._getChunkGraphChunk(chunk);
  426. return cgc.modules.has(module);
  427. }
  428. /**
  429. * @param {Module} module the checked module
  430. * @param {ChunkGroup} chunkGroup the checked chunk group
  431. * @returns {boolean} true, if the chunk contains the module
  432. */
  433. isModuleInChunkGroup(module, chunkGroup) {
  434. for (const chunk of chunkGroup.chunks) {
  435. if (this.isModuleInChunk(module, chunk)) return true;
  436. }
  437. return false;
  438. }
  439. /**
  440. * @param {Module} module the checked module
  441. * @returns {boolean} true, if the module is entry of any chunk
  442. */
  443. isEntryModule(module) {
  444. const cgm = this._getChunkGraphModule(module);
  445. return cgm.entryInChunks !== undefined;
  446. }
  447. /**
  448. * @param {Module} module the module
  449. * @returns {Iterable<Chunk>} iterable of chunks (do not modify)
  450. */
  451. getModuleChunksIterable(module) {
  452. const cgm = this._getChunkGraphModule(module);
  453. return cgm.chunks;
  454. }
  455. /**
  456. * @param {Module} module the module
  457. * @param {function(Chunk, Chunk): -1|0|1} sortFn sort function
  458. * @returns {Iterable<Chunk>} iterable of chunks (do not modify)
  459. */
  460. getOrderedModuleChunksIterable(module, sortFn) {
  461. const cgm = this._getChunkGraphModule(module);
  462. cgm.chunks.sortWith(sortFn);
  463. return cgm.chunks;
  464. }
  465. /**
  466. * @param {Module} module the module
  467. * @returns {Chunk[]} array of chunks (cached, do not modify)
  468. */
  469. getModuleChunks(module) {
  470. const cgm = this._getChunkGraphModule(module);
  471. return cgm.chunks.getFromCache(getArray);
  472. }
  473. /**
  474. * @param {Module} module the module
  475. * @returns {number} the number of chunk which contain the module
  476. */
  477. getNumberOfModuleChunks(module) {
  478. const cgm = this._getChunkGraphModule(module);
  479. return cgm.chunks.size;
  480. }
  481. /**
  482. * @param {Module} module the module
  483. * @returns {RuntimeSpecSet} runtimes
  484. */
  485. getModuleRuntimes(module) {
  486. const cgm = this._getChunkGraphModule(module);
  487. return cgm.chunks.getFromUnorderedCache(getModuleRuntimes);
  488. }
  489. /**
  490. * @param {Chunk} chunk the chunk
  491. * @returns {number} the number of modules which are contained in this chunk
  492. */
  493. getNumberOfChunkModules(chunk) {
  494. const cgc = this._getChunkGraphChunk(chunk);
  495. return cgc.modules.size;
  496. }
  497. /**
  498. * @param {Chunk} chunk the chunk
  499. * @returns {number} the number of full hash modules which are contained in this chunk
  500. */
  501. getNumberOfChunkFullHashModules(chunk) {
  502. const cgc = this._getChunkGraphChunk(chunk);
  503. return cgc.fullHashModules === undefined ? 0 : cgc.fullHashModules.size;
  504. }
  505. /**
  506. * @param {Chunk} chunk the chunk
  507. * @returns {Iterable<Module>} return the modules for this chunk
  508. */
  509. getChunkModulesIterable(chunk) {
  510. const cgc = this._getChunkGraphChunk(chunk);
  511. return cgc.modules;
  512. }
  513. /**
  514. * @param {Chunk} chunk the chunk
  515. * @param {string} sourceType source type
  516. * @returns {Iterable<Module> | undefined} return the modules for this chunk
  517. */
  518. getChunkModulesIterableBySourceType(chunk, sourceType) {
  519. const cgc = this._getChunkGraphChunk(chunk);
  520. const modulesWithSourceType = cgc.modules
  521. .getFromUnorderedCache(modulesBySourceType)
  522. .get(sourceType);
  523. return modulesWithSourceType;
  524. }
  525. /**
  526. * @param {Chunk} chunk the chunk
  527. * @param {function(Module, Module): -1|0|1} comparator comparator function
  528. * @returns {Iterable<Module>} return the modules for this chunk
  529. */
  530. getOrderedChunkModulesIterable(chunk, comparator) {
  531. const cgc = this._getChunkGraphChunk(chunk);
  532. cgc.modules.sortWith(comparator);
  533. return cgc.modules;
  534. }
  535. /**
  536. * @param {Chunk} chunk the chunk
  537. * @param {string} sourceType source type
  538. * @param {function(Module, Module): -1|0|1} comparator comparator function
  539. * @returns {Iterable<Module> | undefined} return the modules for this chunk
  540. */
  541. getOrderedChunkModulesIterableBySourceType(chunk, sourceType, comparator) {
  542. const cgc = this._getChunkGraphChunk(chunk);
  543. const modulesWithSourceType = cgc.modules
  544. .getFromUnorderedCache(modulesBySourceType)
  545. .get(sourceType);
  546. if (modulesWithSourceType === undefined) return undefined;
  547. modulesWithSourceType.sortWith(comparator);
  548. return modulesWithSourceType;
  549. }
  550. /**
  551. * @param {Chunk} chunk the chunk
  552. * @returns {Module[]} return the modules for this chunk (cached, do not modify)
  553. */
  554. getChunkModules(chunk) {
  555. const cgc = this._getChunkGraphChunk(chunk);
  556. return cgc.modules.getFromUnorderedCache(getArray);
  557. }
  558. /**
  559. * @param {Chunk} chunk the chunk
  560. * @param {function(Module, Module): -1|0|1} comparator comparator function
  561. * @returns {Module[]} return the modules for this chunk (cached, do not modify)
  562. */
  563. getOrderedChunkModules(chunk, comparator) {
  564. const cgc = this._getChunkGraphChunk(chunk);
  565. const arrayFunction = createOrderedArrayFunction(comparator);
  566. return cgc.modules.getFromUnorderedCache(arrayFunction);
  567. }
  568. /**
  569. * @param {Chunk} chunk the chunk
  570. * @param {ModuleFilterPredicate} filterFn function used to filter modules
  571. * @param {boolean} includeAllChunks all chunks or only async chunks
  572. * @returns {Record<string|number, (string|number)[]>} chunk to module ids object
  573. */
  574. getChunkModuleIdMap(chunk, filterFn, includeAllChunks = false) {
  575. /** @type {Record<string|number, (string|number)[]>} */
  576. const chunkModuleIdMap = Object.create(null);
  577. for (const asyncChunk of includeAllChunks
  578. ? chunk.getAllReferencedChunks()
  579. : chunk.getAllAsyncChunks()) {
  580. /** @type {(string|number)[]} */
  581. let array;
  582. for (const module of this.getOrderedChunkModulesIterable(
  583. asyncChunk,
  584. compareModulesById(this)
  585. )) {
  586. if (filterFn(module)) {
  587. if (array === undefined) {
  588. array = [];
  589. chunkModuleIdMap[asyncChunk.id] = array;
  590. }
  591. const moduleId = this.getModuleId(module);
  592. array.push(moduleId);
  593. }
  594. }
  595. }
  596. return chunkModuleIdMap;
  597. }
  598. /**
  599. * @param {Chunk} chunk the chunk
  600. * @param {ModuleFilterPredicate} filterFn function used to filter modules
  601. * @param {number} hashLength length of the hash
  602. * @param {boolean} includeAllChunks all chunks or only async chunks
  603. * @returns {Record<string|number, Record<string|number, string>>} chunk to module id to module hash object
  604. */
  605. getChunkModuleRenderedHashMap(
  606. chunk,
  607. filterFn,
  608. hashLength = 0,
  609. includeAllChunks = false
  610. ) {
  611. /** @type {Record<string|number, Record<string|number, string>>} */
  612. const chunkModuleHashMap = Object.create(null);
  613. for (const asyncChunk of includeAllChunks
  614. ? chunk.getAllReferencedChunks()
  615. : chunk.getAllAsyncChunks()) {
  616. /** @type {Record<string|number, string>} */
  617. let idToHashMap;
  618. for (const module of this.getOrderedChunkModulesIterable(
  619. asyncChunk,
  620. compareModulesById(this)
  621. )) {
  622. if (filterFn(module)) {
  623. if (idToHashMap === undefined) {
  624. idToHashMap = Object.create(null);
  625. chunkModuleHashMap[asyncChunk.id] = idToHashMap;
  626. }
  627. const moduleId = this.getModuleId(module);
  628. const hash = this.getRenderedModuleHash(module, asyncChunk.runtime);
  629. idToHashMap[moduleId] = hashLength ? hash.slice(0, hashLength) : hash;
  630. }
  631. }
  632. }
  633. return chunkModuleHashMap;
  634. }
  635. /**
  636. * @param {Chunk} chunk the chunk
  637. * @param {ChunkFilterPredicate} filterFn function used to filter chunks
  638. * @returns {Record<string|number, boolean>} chunk map
  639. */
  640. getChunkConditionMap(chunk, filterFn) {
  641. const map = Object.create(null);
  642. for (const c of chunk.getAllReferencedChunks()) {
  643. map[c.id] = filterFn(c, this);
  644. }
  645. return map;
  646. }
  647. /**
  648. * @param {Chunk} chunk the chunk
  649. * @param {ModuleFilterPredicate} filterFn predicate function used to filter modules
  650. * @param {ChunkFilterPredicate=} filterChunkFn predicate function used to filter chunks
  651. * @returns {boolean} return true if module exists in graph
  652. */
  653. hasModuleInGraph(chunk, filterFn, filterChunkFn) {
  654. const queue = new Set(chunk.groupsIterable);
  655. const chunksProcessed = new Set();
  656. for (const chunkGroup of queue) {
  657. for (const innerChunk of chunkGroup.chunks) {
  658. if (!chunksProcessed.has(innerChunk)) {
  659. chunksProcessed.add(innerChunk);
  660. if (!filterChunkFn || filterChunkFn(innerChunk, this)) {
  661. for (const module of this.getChunkModulesIterable(innerChunk)) {
  662. if (filterFn(module)) {
  663. return true;
  664. }
  665. }
  666. }
  667. }
  668. }
  669. for (const child of chunkGroup.childrenIterable) {
  670. queue.add(child);
  671. }
  672. }
  673. return false;
  674. }
  675. /**
  676. * @param {Chunk} chunkA first chunk
  677. * @param {Chunk} chunkB second chunk
  678. * @returns {-1|0|1} this is a comparator function like sort and returns -1, 0, or 1 based on sort order
  679. */
  680. compareChunks(chunkA, chunkB) {
  681. const cgcA = this._getChunkGraphChunk(chunkA);
  682. const cgcB = this._getChunkGraphChunk(chunkB);
  683. if (cgcA.modules.size > cgcB.modules.size) return -1;
  684. if (cgcA.modules.size < cgcB.modules.size) return 1;
  685. cgcA.modules.sortWith(compareModulesByIdentifier);
  686. cgcB.modules.sortWith(compareModulesByIdentifier);
  687. return compareModuleIterables(cgcA.modules, cgcB.modules);
  688. }
  689. /**
  690. * @param {Chunk} chunk the chunk
  691. * @returns {number} total size of all modules in the chunk
  692. */
  693. getChunkModulesSize(chunk) {
  694. const cgc = this._getChunkGraphChunk(chunk);
  695. return cgc.modules.getFromUnorderedCache(getModulesSize);
  696. }
  697. /**
  698. * @param {Chunk} chunk the chunk
  699. * @returns {Record<string, number>} total sizes of all modules in the chunk by source type
  700. */
  701. getChunkModulesSizes(chunk) {
  702. const cgc = this._getChunkGraphChunk(chunk);
  703. return cgc.modules.getFromUnorderedCache(getModulesSizes);
  704. }
  705. /**
  706. * @param {Chunk} chunk the chunk
  707. * @returns {Module[]} root modules of the chunks (ordered by identifier)
  708. */
  709. getChunkRootModules(chunk) {
  710. const cgc = this._getChunkGraphChunk(chunk);
  711. return cgc.modules.getFromUnorderedCache(this._getGraphRoots);
  712. }
  713. /**
  714. * @param {Chunk} chunk the chunk
  715. * @param {ChunkSizeOptions} options options object
  716. * @returns {number} total size of the chunk
  717. */
  718. getChunkSize(chunk, options = {}) {
  719. const cgc = this._getChunkGraphChunk(chunk);
  720. const modulesSize = cgc.modules.getFromUnorderedCache(getModulesSize);
  721. const chunkOverhead =
  722. typeof options.chunkOverhead === "number" ? options.chunkOverhead : 10000;
  723. const entryChunkMultiplicator =
  724. typeof options.entryChunkMultiplicator === "number"
  725. ? options.entryChunkMultiplicator
  726. : 10;
  727. return (
  728. chunkOverhead +
  729. modulesSize * (chunk.canBeInitial() ? entryChunkMultiplicator : 1)
  730. );
  731. }
  732. /**
  733. * @param {Chunk} chunkA chunk
  734. * @param {Chunk} chunkB chunk
  735. * @param {ChunkSizeOptions} options options object
  736. * @returns {number} total size of the chunk or false if chunks can't be integrated
  737. */
  738. getIntegratedChunksSize(chunkA, chunkB, options = {}) {
  739. const cgcA = this._getChunkGraphChunk(chunkA);
  740. const cgcB = this._getChunkGraphChunk(chunkB);
  741. const allModules = new Set(cgcA.modules);
  742. for (const m of cgcB.modules) allModules.add(m);
  743. let modulesSize = getModulesSize(allModules);
  744. const chunkOverhead =
  745. typeof options.chunkOverhead === "number" ? options.chunkOverhead : 10000;
  746. const entryChunkMultiplicator =
  747. typeof options.entryChunkMultiplicator === "number"
  748. ? options.entryChunkMultiplicator
  749. : 10;
  750. return (
  751. chunkOverhead +
  752. modulesSize *
  753. (chunkA.canBeInitial() || chunkB.canBeInitial()
  754. ? entryChunkMultiplicator
  755. : 1)
  756. );
  757. }
  758. /**
  759. * @param {Chunk} chunkA chunk
  760. * @param {Chunk} chunkB chunk
  761. * @returns {boolean} true, if chunks could be integrated
  762. */
  763. canChunksBeIntegrated(chunkA, chunkB) {
  764. if (chunkA.preventIntegration || chunkB.preventIntegration) {
  765. return false;
  766. }
  767. const hasRuntimeA = chunkA.hasRuntime();
  768. const hasRuntimeB = chunkB.hasRuntime();
  769. if (hasRuntimeA !== hasRuntimeB) {
  770. if (hasRuntimeA) {
  771. return isAvailableChunk(chunkA, chunkB);
  772. } else if (hasRuntimeB) {
  773. return isAvailableChunk(chunkB, chunkA);
  774. } else {
  775. return false;
  776. }
  777. }
  778. if (
  779. this.getNumberOfEntryModules(chunkA) > 0 ||
  780. this.getNumberOfEntryModules(chunkB) > 0
  781. ) {
  782. return false;
  783. }
  784. return true;
  785. }
  786. /**
  787. * @param {Chunk} chunkA the target chunk
  788. * @param {Chunk} chunkB the chunk to integrate
  789. * @returns {void}
  790. */
  791. integrateChunks(chunkA, chunkB) {
  792. // Decide for one name (deterministic)
  793. if (chunkA.name && chunkB.name) {
  794. if (
  795. this.getNumberOfEntryModules(chunkA) > 0 ===
  796. this.getNumberOfEntryModules(chunkB) > 0
  797. ) {
  798. // When both chunks have entry modules or none have one, use
  799. // shortest name
  800. if (chunkA.name.length !== chunkB.name.length) {
  801. chunkA.name =
  802. chunkA.name.length < chunkB.name.length ? chunkA.name : chunkB.name;
  803. } else {
  804. chunkA.name = chunkA.name < chunkB.name ? chunkA.name : chunkB.name;
  805. }
  806. } else if (this.getNumberOfEntryModules(chunkB) > 0) {
  807. // Pick the name of the chunk with the entry module
  808. chunkA.name = chunkB.name;
  809. }
  810. } else if (chunkB.name) {
  811. chunkA.name = chunkB.name;
  812. }
  813. // Merge id name hints
  814. for (const hint of chunkB.idNameHints) {
  815. chunkA.idNameHints.add(hint);
  816. }
  817. // Merge runtime
  818. chunkA.runtime = mergeRuntime(chunkA.runtime, chunkB.runtime);
  819. // getChunkModules is used here to create a clone, because disconnectChunkAndModule modifies
  820. for (const module of this.getChunkModules(chunkB)) {
  821. this.disconnectChunkAndModule(chunkB, module);
  822. this.connectChunkAndModule(chunkA, module);
  823. }
  824. for (const [module, chunkGroup] of Array.from(
  825. this.getChunkEntryModulesWithChunkGroupIterable(chunkB)
  826. )) {
  827. this.disconnectChunkAndEntryModule(chunkB, module);
  828. this.connectChunkAndEntryModule(chunkA, module, chunkGroup);
  829. }
  830. for (const chunkGroup of chunkB.groupsIterable) {
  831. chunkGroup.replaceChunk(chunkB, chunkA);
  832. chunkA.addGroup(chunkGroup);
  833. chunkB.removeGroup(chunkGroup);
  834. }
  835. ChunkGraph.clearChunkGraphForChunk(chunkB);
  836. }
  837. /**
  838. * @param {Chunk} chunk the chunk to upgrade
  839. * @returns {void}
  840. */
  841. upgradeDependentToFullHashModules(chunk) {
  842. const cgc = this._getChunkGraphChunk(chunk);
  843. if (cgc.dependentHashModules === undefined) return;
  844. if (cgc.fullHashModules === undefined) {
  845. cgc.fullHashModules = cgc.dependentHashModules;
  846. } else {
  847. for (const m of cgc.dependentHashModules) {
  848. cgc.fullHashModules.add(m);
  849. }
  850. cgc.dependentHashModules = undefined;
  851. }
  852. }
  853. /**
  854. * @param {Module} module the checked module
  855. * @param {Chunk} chunk the checked chunk
  856. * @returns {boolean} true, if the chunk contains the module as entry
  857. */
  858. isEntryModuleInChunk(module, chunk) {
  859. const cgc = this._getChunkGraphChunk(chunk);
  860. return cgc.entryModules.has(module);
  861. }
  862. /**
  863. * @param {Chunk} chunk the new chunk
  864. * @param {Module} module the entry module
  865. * @param {Entrypoint=} entrypoint the chunk group which must be loaded before the module is executed
  866. * @returns {void}
  867. */
  868. connectChunkAndEntryModule(chunk, module, entrypoint) {
  869. const cgm = this._getChunkGraphModule(module);
  870. const cgc = this._getChunkGraphChunk(chunk);
  871. if (cgm.entryInChunks === undefined) {
  872. cgm.entryInChunks = new Set();
  873. }
  874. cgm.entryInChunks.add(chunk);
  875. cgc.entryModules.set(module, entrypoint);
  876. }
  877. /**
  878. * @param {Chunk} chunk the new chunk
  879. * @param {RuntimeModule} module the runtime module
  880. * @returns {void}
  881. */
  882. connectChunkAndRuntimeModule(chunk, module) {
  883. const cgm = this._getChunkGraphModule(module);
  884. const cgc = this._getChunkGraphChunk(chunk);
  885. if (cgm.runtimeInChunks === undefined) {
  886. cgm.runtimeInChunks = new Set();
  887. }
  888. cgm.runtimeInChunks.add(chunk);
  889. cgc.runtimeModules.add(module);
  890. }
  891. /**
  892. * @param {Chunk} chunk the new chunk
  893. * @param {RuntimeModule} module the module that require a full hash
  894. * @returns {void}
  895. */
  896. addFullHashModuleToChunk(chunk, module) {
  897. const cgc = this._getChunkGraphChunk(chunk);
  898. if (cgc.fullHashModules === undefined) cgc.fullHashModules = new Set();
  899. cgc.fullHashModules.add(module);
  900. }
  901. /**
  902. * @param {Chunk} chunk the new chunk
  903. * @param {RuntimeModule} module the module that require a full hash
  904. * @returns {void}
  905. */
  906. addDependentHashModuleToChunk(chunk, module) {
  907. const cgc = this._getChunkGraphChunk(chunk);
  908. if (cgc.dependentHashModules === undefined)
  909. cgc.dependentHashModules = new Set();
  910. cgc.dependentHashModules.add(module);
  911. }
  912. /**
  913. * @param {Chunk} chunk the new chunk
  914. * @param {Module} module the entry module
  915. * @returns {void}
  916. */
  917. disconnectChunkAndEntryModule(chunk, module) {
  918. const cgm = this._getChunkGraphModule(module);
  919. const cgc = this._getChunkGraphChunk(chunk);
  920. cgm.entryInChunks.delete(chunk);
  921. if (cgm.entryInChunks.size === 0) {
  922. cgm.entryInChunks = undefined;
  923. }
  924. cgc.entryModules.delete(module);
  925. }
  926. /**
  927. * @param {Chunk} chunk the new chunk
  928. * @param {RuntimeModule} module the runtime module
  929. * @returns {void}
  930. */
  931. disconnectChunkAndRuntimeModule(chunk, module) {
  932. const cgm = this._getChunkGraphModule(module);
  933. const cgc = this._getChunkGraphChunk(chunk);
  934. cgm.runtimeInChunks.delete(chunk);
  935. if (cgm.runtimeInChunks.size === 0) {
  936. cgm.runtimeInChunks = undefined;
  937. }
  938. cgc.runtimeModules.delete(module);
  939. }
  940. /**
  941. * @param {Module} module the entry module, it will no longer be entry
  942. * @returns {void}
  943. */
  944. disconnectEntryModule(module) {
  945. const cgm = this._getChunkGraphModule(module);
  946. for (const chunk of cgm.entryInChunks) {
  947. const cgc = this._getChunkGraphChunk(chunk);
  948. cgc.entryModules.delete(module);
  949. }
  950. cgm.entryInChunks = undefined;
  951. }
  952. /**
  953. * @param {Chunk} chunk the chunk, for which all entries will be removed
  954. * @returns {void}
  955. */
  956. disconnectEntries(chunk) {
  957. const cgc = this._getChunkGraphChunk(chunk);
  958. for (const module of cgc.entryModules.keys()) {
  959. const cgm = this._getChunkGraphModule(module);
  960. cgm.entryInChunks.delete(chunk);
  961. if (cgm.entryInChunks.size === 0) {
  962. cgm.entryInChunks = undefined;
  963. }
  964. }
  965. cgc.entryModules.clear();
  966. }
  967. /**
  968. * @param {Chunk} chunk the chunk
  969. * @returns {number} the amount of entry modules in chunk
  970. */
  971. getNumberOfEntryModules(chunk) {
  972. const cgc = this._getChunkGraphChunk(chunk);
  973. return cgc.entryModules.size;
  974. }
  975. /**
  976. * @param {Chunk} chunk the chunk
  977. * @returns {number} the amount of entry modules in chunk
  978. */
  979. getNumberOfRuntimeModules(chunk) {
  980. const cgc = this._getChunkGraphChunk(chunk);
  981. return cgc.runtimeModules.size;
  982. }
  983. /**
  984. * @param {Chunk} chunk the chunk
  985. * @returns {Iterable<Module>} iterable of modules (do not modify)
  986. */
  987. getChunkEntryModulesIterable(chunk) {
  988. const cgc = this._getChunkGraphChunk(chunk);
  989. return cgc.entryModules.keys();
  990. }
  991. /**
  992. * @param {Chunk} chunk the chunk
  993. * @returns {Iterable<Chunk>} iterable of chunks
  994. */
  995. getChunkEntryDependentChunksIterable(chunk) {
  996. /** @type {Set<Chunk>} */
  997. const set = new Set();
  998. for (const chunkGroup of chunk.groupsIterable) {
  999. if (chunkGroup instanceof Entrypoint) {
  1000. const entrypointChunk = chunkGroup.getEntrypointChunk();
  1001. const cgc = this._getChunkGraphChunk(entrypointChunk);
  1002. for (const chunkGroup of cgc.entryModules.values()) {
  1003. for (const c of chunkGroup.chunks) {
  1004. if (c !== chunk && c !== entrypointChunk && !c.hasRuntime()) {
  1005. set.add(c);
  1006. }
  1007. }
  1008. }
  1009. }
  1010. }
  1011. return set;
  1012. }
  1013. /**
  1014. * @param {Chunk} chunk the chunk
  1015. * @returns {boolean} true, when it has dependent chunks
  1016. */
  1017. hasChunkEntryDependentChunks(chunk) {
  1018. const cgc = this._getChunkGraphChunk(chunk);
  1019. for (const chunkGroup of cgc.entryModules.values()) {
  1020. for (const c of chunkGroup.chunks) {
  1021. if (c !== chunk) {
  1022. return true;
  1023. }
  1024. }
  1025. }
  1026. return false;
  1027. }
  1028. /**
  1029. * @param {Chunk} chunk the chunk
  1030. * @returns {Iterable<RuntimeModule>} iterable of modules (do not modify)
  1031. */
  1032. getChunkRuntimeModulesIterable(chunk) {
  1033. const cgc = this._getChunkGraphChunk(chunk);
  1034. return cgc.runtimeModules;
  1035. }
  1036. /**
  1037. * @param {Chunk} chunk the chunk
  1038. * @returns {RuntimeModule[]} array of modules in order of execution
  1039. */
  1040. getChunkRuntimeModulesInOrder(chunk) {
  1041. const cgc = this._getChunkGraphChunk(chunk);
  1042. const array = Array.from(cgc.runtimeModules);
  1043. array.sort(
  1044. concatComparators(
  1045. compareSelect(
  1046. /**
  1047. * @param {RuntimeModule} r runtime module
  1048. * @returns {number=} stage
  1049. */
  1050. r => r.stage,
  1051. compareIds
  1052. ),
  1053. compareModulesByIdentifier
  1054. )
  1055. );
  1056. return array;
  1057. }
  1058. /**
  1059. * @param {Chunk} chunk the chunk
  1060. * @returns {Iterable<RuntimeModule> | undefined} iterable of modules (do not modify)
  1061. */
  1062. getChunkFullHashModulesIterable(chunk) {
  1063. const cgc = this._getChunkGraphChunk(chunk);
  1064. return cgc.fullHashModules;
  1065. }
  1066. /**
  1067. * @param {Chunk} chunk the chunk
  1068. * @returns {ReadonlySet<RuntimeModule> | undefined} set of modules (do not modify)
  1069. */
  1070. getChunkFullHashModulesSet(chunk) {
  1071. const cgc = this._getChunkGraphChunk(chunk);
  1072. return cgc.fullHashModules;
  1073. }
  1074. /**
  1075. * @param {Chunk} chunk the chunk
  1076. * @returns {Iterable<RuntimeModule> | undefined} iterable of modules (do not modify)
  1077. */
  1078. getChunkDependentHashModulesIterable(chunk) {
  1079. const cgc = this._getChunkGraphChunk(chunk);
  1080. return cgc.dependentHashModules;
  1081. }
  1082. /** @typedef {[Module, Entrypoint | undefined]} EntryModuleWithChunkGroup */
  1083. /**
  1084. * @param {Chunk} chunk the chunk
  1085. * @returns {Iterable<EntryModuleWithChunkGroup>} iterable of modules (do not modify)
  1086. */
  1087. getChunkEntryModulesWithChunkGroupIterable(chunk) {
  1088. const cgc = this._getChunkGraphChunk(chunk);
  1089. return cgc.entryModules;
  1090. }
  1091. /**
  1092. * @param {AsyncDependenciesBlock} depBlock the async block
  1093. * @returns {ChunkGroup} the chunk group
  1094. */
  1095. getBlockChunkGroup(depBlock) {
  1096. return this._blockChunkGroups.get(depBlock);
  1097. }
  1098. /**
  1099. * @param {AsyncDependenciesBlock} depBlock the async block
  1100. * @param {ChunkGroup} chunkGroup the chunk group
  1101. * @returns {void}
  1102. */
  1103. connectBlockAndChunkGroup(depBlock, chunkGroup) {
  1104. this._blockChunkGroups.set(depBlock, chunkGroup);
  1105. chunkGroup.addBlock(depBlock);
  1106. }
  1107. /**
  1108. * @param {ChunkGroup} chunkGroup the chunk group
  1109. * @returns {void}
  1110. */
  1111. disconnectChunkGroup(chunkGroup) {
  1112. for (const block of chunkGroup.blocksIterable) {
  1113. this._blockChunkGroups.delete(block);
  1114. }
  1115. // TODO refactor by moving blocks list into ChunkGraph
  1116. chunkGroup._blocks.clear();
  1117. }
  1118. /**
  1119. * @param {Module} module the module
  1120. * @returns {string | number} the id of the module
  1121. */
  1122. getModuleId(module) {
  1123. const cgm = this._getChunkGraphModule(module);
  1124. return cgm.id;
  1125. }
  1126. /**
  1127. * @param {Module} module the module
  1128. * @param {string | number} id the id of the module
  1129. * @returns {void}
  1130. */
  1131. setModuleId(module, id) {
  1132. const cgm = this._getChunkGraphModule(module);
  1133. cgm.id = id;
  1134. }
  1135. /**
  1136. * @param {string} runtime runtime
  1137. * @returns {string | number} the id of the runtime
  1138. */
  1139. getRuntimeId(runtime) {
  1140. return this._runtimeIds.get(runtime);
  1141. }
  1142. /**
  1143. * @param {string} runtime runtime
  1144. * @param {string | number} id the id of the runtime
  1145. * @returns {void}
  1146. */
  1147. setRuntimeId(runtime, id) {
  1148. this._runtimeIds.set(runtime, id);
  1149. }
  1150. /**
  1151. * @template T
  1152. * @param {Module} module the module
  1153. * @param {RuntimeSpecMap<T>} hashes hashes data
  1154. * @param {RuntimeSpec} runtime the runtime
  1155. * @returns {T} hash
  1156. */
  1157. _getModuleHashInfo(module, hashes, runtime) {
  1158. if (!hashes) {
  1159. throw new Error(
  1160. `Module ${module.identifier()} has no hash info for runtime ${runtimeToString(
  1161. runtime
  1162. )} (hashes not set at all)`
  1163. );
  1164. } else if (runtime === undefined) {
  1165. const hashInfoItems = new Set(hashes.values());
  1166. if (hashInfoItems.size !== 1) {
  1167. throw new Error(
  1168. `No unique hash info entry for unspecified runtime for ${module.identifier()} (existing runtimes: ${Array.from(
  1169. hashes.keys(),
  1170. r => runtimeToString(r)
  1171. ).join(", ")}).
  1172. Caller might not support runtime-dependent code generation (opt-out via optimization.usedExports: "global").`
  1173. );
  1174. }
  1175. return first(hashInfoItems);
  1176. } else {
  1177. const hashInfo = hashes.get(runtime);
  1178. if (!hashInfo) {
  1179. throw new Error(
  1180. `Module ${module.identifier()} has no hash info for runtime ${runtimeToString(
  1181. runtime
  1182. )} (available runtimes ${Array.from(
  1183. hashes.keys(),
  1184. runtimeToString
  1185. ).join(", ")})`
  1186. );
  1187. }
  1188. return hashInfo;
  1189. }
  1190. }
  1191. /**
  1192. * @param {Module} module the module
  1193. * @param {RuntimeSpec} runtime the runtime
  1194. * @returns {boolean} true, if the module has hashes for this runtime
  1195. */
  1196. hasModuleHashes(module, runtime) {
  1197. const cgm = this._getChunkGraphModule(module);
  1198. const hashes = cgm.hashes;
  1199. return hashes && hashes.has(runtime);
  1200. }
  1201. /**
  1202. * @param {Module} module the module
  1203. * @param {RuntimeSpec} runtime the runtime
  1204. * @returns {string} hash
  1205. */
  1206. getModuleHash(module, runtime) {
  1207. const cgm = this._getChunkGraphModule(module);
  1208. const hashes = cgm.hashes;
  1209. return this._getModuleHashInfo(module, hashes, runtime).hash;
  1210. }
  1211. /**
  1212. * @param {Module} module the module
  1213. * @param {RuntimeSpec} runtime the runtime
  1214. * @returns {string} hash
  1215. */
  1216. getRenderedModuleHash(module, runtime) {
  1217. const cgm = this._getChunkGraphModule(module);
  1218. const hashes = cgm.hashes;
  1219. return this._getModuleHashInfo(module, hashes, runtime).renderedHash;
  1220. }
  1221. /**
  1222. * @param {Module} module the module
  1223. * @param {RuntimeSpec} runtime the runtime
  1224. * @param {string} hash the full hash
  1225. * @param {string} renderedHash the shortened hash for rendering
  1226. * @returns {void}
  1227. */
  1228. setModuleHashes(module, runtime, hash, renderedHash) {
  1229. const cgm = this._getChunkGraphModule(module);
  1230. if (cgm.hashes === undefined) {
  1231. cgm.hashes = new RuntimeSpecMap();
  1232. }
  1233. cgm.hashes.set(runtime, new ModuleHashInfo(hash, renderedHash));
  1234. }
  1235. /**
  1236. * @param {Module} module the module
  1237. * @param {RuntimeSpec} runtime the runtime
  1238. * @param {Set<string>} items runtime requirements to be added (ownership of this Set is given to ChunkGraph when transferOwnership not false)
  1239. * @param {boolean} transferOwnership true: transfer ownership of the items object, false: items is immutable and shared and won't be modified
  1240. * @returns {void}
  1241. */
  1242. addModuleRuntimeRequirements(
  1243. module,
  1244. runtime,
  1245. items,
  1246. transferOwnership = true
  1247. ) {
  1248. const cgm = this._getChunkGraphModule(module);
  1249. const runtimeRequirementsMap = cgm.runtimeRequirements;
  1250. if (runtimeRequirementsMap === undefined) {
  1251. const map = new RuntimeSpecMap();
  1252. // TODO avoid cloning item and track ownership instead
  1253. map.set(runtime, transferOwnership ? items : new Set(items));
  1254. cgm.runtimeRequirements = map;
  1255. return;
  1256. }
  1257. runtimeRequirementsMap.update(runtime, runtimeRequirements => {
  1258. if (runtimeRequirements === undefined) {
  1259. return transferOwnership ? items : new Set(items);
  1260. } else if (!transferOwnership || runtimeRequirements.size >= items.size) {
  1261. for (const item of items) runtimeRequirements.add(item);
  1262. return runtimeRequirements;
  1263. } else {
  1264. for (const item of runtimeRequirements) items.add(item);
  1265. return items;
  1266. }
  1267. });
  1268. }
  1269. /**
  1270. * @param {Chunk} chunk the chunk
  1271. * @param {Set<string>} items runtime requirements to be added (ownership of this Set is given to ChunkGraph)
  1272. * @returns {void}
  1273. */
  1274. addChunkRuntimeRequirements(chunk, items) {
  1275. const cgc = this._getChunkGraphChunk(chunk);
  1276. const runtimeRequirements = cgc.runtimeRequirements;
  1277. if (runtimeRequirements === undefined) {
  1278. cgc.runtimeRequirements = items;
  1279. } else if (runtimeRequirements.size >= items.size) {
  1280. for (const item of items) runtimeRequirements.add(item);
  1281. } else {
  1282. for (const item of runtimeRequirements) items.add(item);
  1283. cgc.runtimeRequirements = items;
  1284. }
  1285. }
  1286. /**
  1287. * @param {Chunk} chunk the chunk
  1288. * @param {Iterable<string>} items runtime requirements to be added
  1289. * @returns {void}
  1290. */
  1291. addTreeRuntimeRequirements(chunk, items) {
  1292. const cgc = this._getChunkGraphChunk(chunk);
  1293. const runtimeRequirements = cgc.runtimeRequirementsInTree;
  1294. for (const item of items) runtimeRequirements.add(item);
  1295. }
  1296. /**
  1297. * @param {Module} module the module
  1298. * @param {RuntimeSpec} runtime the runtime
  1299. * @returns {ReadonlySet<string>} runtime requirements
  1300. */
  1301. getModuleRuntimeRequirements(module, runtime) {
  1302. const cgm = this._getChunkGraphModule(module);
  1303. const runtimeRequirements =
  1304. cgm.runtimeRequirements && cgm.runtimeRequirements.get(runtime);
  1305. return runtimeRequirements === undefined ? EMPTY_SET : runtimeRequirements;
  1306. }
  1307. /**
  1308. * @param {Chunk} chunk the chunk
  1309. * @returns {ReadonlySet<string>} runtime requirements
  1310. */
  1311. getChunkRuntimeRequirements(chunk) {
  1312. const cgc = this._getChunkGraphChunk(chunk);
  1313. const runtimeRequirements = cgc.runtimeRequirements;
  1314. return runtimeRequirements === undefined ? EMPTY_SET : runtimeRequirements;
  1315. }
  1316. /**
  1317. * @param {Module} module the module
  1318. * @param {RuntimeSpec} runtime the runtime
  1319. * @param {boolean} withConnections include connections
  1320. * @returns {string} hash
  1321. */
  1322. getModuleGraphHash(module, runtime, withConnections = true) {
  1323. const cgm = this._getChunkGraphModule(module);
  1324. return withConnections
  1325. ? this._getModuleGraphHashWithConnections(cgm, module, runtime)
  1326. : this._getModuleGraphHashBigInt(cgm, module, runtime).toString(16);
  1327. }
  1328. /**
  1329. * @param {Module} module the module
  1330. * @param {RuntimeSpec} runtime the runtime
  1331. * @param {boolean} withConnections include connections
  1332. * @returns {bigint} hash
  1333. */
  1334. getModuleGraphHashBigInt(module, runtime, withConnections = true) {
  1335. const cgm = this._getChunkGraphModule(module);
  1336. return withConnections
  1337. ? BigInt(
  1338. `0x${this._getModuleGraphHashWithConnections(cgm, module, runtime)}`
  1339. )
  1340. : this._getModuleGraphHashBigInt(cgm, module, runtime);
  1341. }
  1342. /**
  1343. * @param {ChunkGraphModule} cgm the ChunkGraphModule
  1344. * @param {Module} module the module
  1345. * @param {RuntimeSpec} runtime the runtime
  1346. * @returns {bigint} hash as big int
  1347. */
  1348. _getModuleGraphHashBigInt(cgm, module, runtime) {
  1349. if (cgm.graphHashes === undefined) {
  1350. cgm.graphHashes = new RuntimeSpecMap();
  1351. }
  1352. const graphHash = cgm.graphHashes.provide(runtime, () => {
  1353. const hash = createHash(this._hashFunction);
  1354. hash.update(`${cgm.id}${this.moduleGraph.isAsync(module)}`);
  1355. this.moduleGraph.getExportsInfo(module).updateHash(hash, runtime);
  1356. return BigInt(`0x${/** @type {string} */ (hash.digest("hex"))}`);
  1357. });
  1358. return graphHash;
  1359. }
  1360. /**
  1361. * @param {ChunkGraphModule} cgm the ChunkGraphModule
  1362. * @param {Module} module the module
  1363. * @param {RuntimeSpec} runtime the runtime
  1364. * @returns {string} hash
  1365. */
  1366. _getModuleGraphHashWithConnections(cgm, module, runtime) {
  1367. if (cgm.graphHashesWithConnections === undefined) {
  1368. cgm.graphHashesWithConnections = new RuntimeSpecMap();
  1369. }
  1370. const activeStateToString = state => {
  1371. if (state === false) return "F";
  1372. if (state === true) return "T";
  1373. if (state === ModuleGraphConnection.TRANSITIVE_ONLY) return "O";
  1374. throw new Error("Not implemented active state");
  1375. };
  1376. const strict = module.buildMeta && module.buildMeta.strictHarmonyModule;
  1377. return cgm.graphHashesWithConnections.provide(runtime, () => {
  1378. const graphHash = this._getModuleGraphHashBigInt(
  1379. cgm,
  1380. module,
  1381. runtime
  1382. ).toString(16);
  1383. const connections = this.moduleGraph.getOutgoingConnections(module);
  1384. /** @type {Set<Module>} */
  1385. const activeNamespaceModules = new Set();
  1386. /** @type {Map<string, Module | Set<Module>>} */
  1387. const connectedModules = new Map();
  1388. const processConnection = (connection, stateInfo) => {
  1389. const module = connection.module;
  1390. stateInfo += module.getExportsType(this.moduleGraph, strict);
  1391. // cspell:word Tnamespace
  1392. if (stateInfo === "Tnamespace") activeNamespaceModules.add(module);
  1393. else {
  1394. const oldModule = connectedModules.get(stateInfo);
  1395. if (oldModule === undefined) {
  1396. connectedModules.set(stateInfo, module);
  1397. } else if (oldModule instanceof Set) {
  1398. oldModule.add(module);
  1399. } else if (oldModule !== module) {
  1400. connectedModules.set(stateInfo, new Set([oldModule, module]));
  1401. }
  1402. }
  1403. };
  1404. if (runtime === undefined || typeof runtime === "string") {
  1405. for (const connection of connections) {
  1406. const state = connection.getActiveState(runtime);
  1407. if (state === false) continue;
  1408. processConnection(connection, state === true ? "T" : "O");
  1409. }
  1410. } else {
  1411. // cspell:word Tnamespace
  1412. for (const connection of connections) {
  1413. const states = new Set();
  1414. let stateInfo = "";
  1415. forEachRuntime(
  1416. runtime,
  1417. runtime => {
  1418. const state = connection.getActiveState(runtime);
  1419. states.add(state);
  1420. stateInfo += activeStateToString(state) + runtime;
  1421. },
  1422. true
  1423. );
  1424. if (states.size === 1) {
  1425. const state = first(states);
  1426. if (state === false) continue;
  1427. stateInfo = activeStateToString(state);
  1428. }
  1429. processConnection(connection, stateInfo);
  1430. }
  1431. }
  1432. // cspell:word Tnamespace
  1433. if (activeNamespaceModules.size === 0 && connectedModules.size === 0)
  1434. return graphHash;
  1435. const connectedModulesInOrder =
  1436. connectedModules.size > 1
  1437. ? Array.from(connectedModules).sort(([a], [b]) => (a < b ? -1 : 1))
  1438. : connectedModules;
  1439. const hash = createHash(this._hashFunction);
  1440. const addModuleToHash = module => {
  1441. hash.update(
  1442. this._getModuleGraphHashBigInt(
  1443. this._getChunkGraphModule(module),
  1444. module,
  1445. runtime
  1446. ).toString(16)
  1447. );
  1448. };
  1449. const addModulesToHash = modules => {
  1450. let xor = ZERO_BIG_INT;
  1451. for (const m of modules) {
  1452. xor =
  1453. xor ^
  1454. this._getModuleGraphHashBigInt(
  1455. this._getChunkGraphModule(m),
  1456. m,
  1457. runtime
  1458. );
  1459. }
  1460. hash.update(xor.toString(16));
  1461. };
  1462. if (activeNamespaceModules.size === 1)
  1463. addModuleToHash(activeNamespaceModules.values().next().value);
  1464. else if (activeNamespaceModules.size > 1)
  1465. addModulesToHash(activeNamespaceModules);
  1466. for (const [stateInfo, modules] of connectedModulesInOrder) {
  1467. hash.update(stateInfo);
  1468. if (modules instanceof Set) {
  1469. addModulesToHash(modules);
  1470. } else {
  1471. addModuleToHash(modules);
  1472. }
  1473. }
  1474. hash.update(graphHash);
  1475. return /** @type {string} */ (hash.digest("hex"));
  1476. });
  1477. }
  1478. /**
  1479. * @param {Chunk} chunk the chunk
  1480. * @returns {ReadonlySet<string>} runtime requirements
  1481. */
  1482. getTreeRuntimeRequirements(chunk) {
  1483. const cgc = this._getChunkGraphChunk(chunk);
  1484. return cgc.runtimeRequirementsInTree;
  1485. }
  1486. // TODO remove in webpack 6
  1487. /**
  1488. * @param {Module} module the module
  1489. * @param {string} deprecateMessage message for the deprecation message
  1490. * @param {string} deprecationCode code for the deprecation
  1491. * @returns {ChunkGraph} the chunk graph
  1492. */
  1493. static getChunkGraphForModule(module, deprecateMessage, deprecationCode) {
  1494. const fn = deprecateGetChunkGraphForModuleMap.get(deprecateMessage);
  1495. if (fn) return fn(module);
  1496. const newFn = util.deprecate(
  1497. /**
  1498. * @param {Module} module the module
  1499. * @returns {ChunkGraph} the chunk graph
  1500. */
  1501. module => {
  1502. const chunkGraph = chunkGraphForModuleMap.get(module);
  1503. if (!chunkGraph)
  1504. throw new Error(
  1505. deprecateMessage +
  1506. ": There was no ChunkGraph assigned to the Module for backward-compat (Use the new API)"
  1507. );
  1508. return chunkGraph;
  1509. },
  1510. deprecateMessage + ": Use new ChunkGraph API",
  1511. deprecationCode
  1512. );
  1513. deprecateGetChunkGraphForModuleMap.set(deprecateMessage, newFn);
  1514. return newFn(module);
  1515. }
  1516. // TODO remove in webpack 6
  1517. /**
  1518. * @param {Module} module the module
  1519. * @param {ChunkGraph} chunkGraph the chunk graph
  1520. * @returns {void}
  1521. */
  1522. static setChunkGraphForModule(module, chunkGraph) {
  1523. chunkGraphForModuleMap.set(module, chunkGraph);
  1524. }
  1525. // TODO remove in webpack 6
  1526. /**
  1527. * @param {Module} module the module
  1528. * @returns {void}
  1529. */
  1530. static clearChunkGraphForModule(module) {
  1531. chunkGraphForModuleMap.delete(module);
  1532. }
  1533. // TODO remove in webpack 6
  1534. /**
  1535. * @param {Chunk} chunk the chunk
  1536. * @param {string} deprecateMessage message for the deprecation message
  1537. * @param {string} deprecationCode code for the deprecation
  1538. * @returns {ChunkGraph} the chunk graph
  1539. */
  1540. static getChunkGraphForChunk(chunk, deprecateMessage, deprecationCode) {
  1541. const fn = deprecateGetChunkGraphForChunkMap.get(deprecateMessage);
  1542. if (fn) return fn(chunk);
  1543. const newFn = util.deprecate(
  1544. /**
  1545. * @param {Chunk} chunk the chunk
  1546. * @returns {ChunkGraph} the chunk graph
  1547. */
  1548. chunk => {
  1549. const chunkGraph = chunkGraphForChunkMap.get(chunk);
  1550. if (!chunkGraph)
  1551. throw new Error(
  1552. deprecateMessage +
  1553. "There was no ChunkGraph assigned to the Chunk for backward-compat (Use the new API)"
  1554. );
  1555. return chunkGraph;
  1556. },
  1557. deprecateMessage + ": Use new ChunkGraph API",
  1558. deprecationCode
  1559. );
  1560. deprecateGetChunkGraphForChunkMap.set(deprecateMessage, newFn);
  1561. return newFn(chunk);
  1562. }
  1563. // TODO remove in webpack 6
  1564. /**
  1565. * @param {Chunk} chunk the chunk
  1566. * @param {ChunkGraph} chunkGraph the chunk graph
  1567. * @returns {void}
  1568. */
  1569. static setChunkGraphForChunk(chunk, chunkGraph) {
  1570. chunkGraphForChunkMap.set(chunk, chunkGraph);
  1571. }
  1572. // TODO remove in webpack 6
  1573. /**
  1574. * @param {Chunk} chunk the chunk
  1575. * @returns {void}
  1576. */
  1577. static clearChunkGraphForChunk(chunk) {
  1578. chunkGraphForChunkMap.delete(chunk);
  1579. }
  1580. }
  1581. // TODO remove in webpack 6
  1582. /** @type {WeakMap<Module, ChunkGraph>} */
  1583. const chunkGraphForModuleMap = new WeakMap();
  1584. // TODO remove in webpack 6
  1585. /** @type {WeakMap<Chunk, ChunkGraph>} */
  1586. const chunkGraphForChunkMap = new WeakMap();
  1587. // TODO remove in webpack 6
  1588. /** @type {Map<string, (module: Module) => ChunkGraph>} */
  1589. const deprecateGetChunkGraphForModuleMap = new Map();
  1590. // TODO remove in webpack 6
  1591. /** @type {Map<string, (chunk: Chunk) => ChunkGraph>} */
  1592. const deprecateGetChunkGraphForChunkMap = new Map();
  1593. module.exports = ChunkGraph;