2016-09-14 18:04:42 +08:00
|
|
|
/*
|
|
|
|
MIT License http://www.opensource.org/licenses/mit-license.php
|
|
|
|
Author Tobias Koppers @sokra
|
|
|
|
*/
|
2018-07-30 23:08:51 +08:00
|
|
|
|
2017-01-11 17:51:58 +08:00
|
|
|
"use strict";
|
2018-04-12 16:08:25 +08:00
|
|
|
|
2018-09-06 22:59:11 +08:00
|
|
|
const { find } = require("../util/SetHelpers");
|
2018-08-14 17:18:22 +08:00
|
|
|
const {
|
2018-09-04 15:04:05 +08:00
|
|
|
compareModulesByPreOrderIndexOrIdentifier,
|
|
|
|
compareModulesByPostOrderIndexOrIdentifier
|
2018-08-14 17:18:22 +08:00
|
|
|
} = require("../util/comparators");
|
2018-04-12 16:08:25 +08:00
|
|
|
|
2018-08-14 17:18:22 +08:00
|
|
|
/** @typedef {import("../Compiler")} Compiler */
|
2018-04-12 16:08:25 +08:00
|
|
|
|
2023-05-27 01:21:35 +08:00
|
|
|
/**
|
2024-06-11 21:09:50 +08:00
|
|
|
* @typedef {object} ChunkModuleIdRangePluginOptions
|
2023-05-27 01:21:35 +08:00
|
|
|
* @property {string} name the chunk name
|
|
|
|
* @property {("index" | "index2" | "preOrderIndex" | "postOrderIndex")=} order order
|
|
|
|
* @property {number=} start start id
|
|
|
|
* @property {number=} end end id
|
|
|
|
*/
|
|
|
|
|
2017-01-04 23:13:05 +08:00
|
|
|
class ChunkModuleIdRangePlugin {
|
2023-05-27 01:21:35 +08:00
|
|
|
/**
|
|
|
|
* @param {ChunkModuleIdRangePluginOptions} options options object
|
|
|
|
*/
|
2017-01-04 23:13:05 +08:00
|
|
|
constructor(options) {
|
|
|
|
this.options = options;
|
|
|
|
}
|
2018-04-12 16:08:25 +08:00
|
|
|
|
2018-08-14 17:18:22 +08:00
|
|
|
/**
|
2020-04-23 16:48:36 +08:00
|
|
|
* Apply the plugin
|
|
|
|
* @param {Compiler} compiler the compiler instance
|
2018-08-14 17:18:22 +08:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2017-01-04 23:13:05 +08:00
|
|
|
apply(compiler) {
|
2017-02-05 07:38:56 +08:00
|
|
|
const options = this.options;
|
2018-02-25 09:00:20 +08:00
|
|
|
compiler.hooks.compilation.tap("ChunkModuleIdRangePlugin", compilation => {
|
2018-08-16 22:11:20 +08:00
|
|
|
const moduleGraph = compilation.moduleGraph;
|
2018-02-25 09:00:20 +08:00
|
|
|
compilation.hooks.moduleIds.tap("ChunkModuleIdRangePlugin", modules => {
|
2018-08-14 17:18:22 +08:00
|
|
|
const chunkGraph = compilation.chunkGraph;
|
2018-09-06 22:59:11 +08:00
|
|
|
const chunk = find(
|
|
|
|
compilation.chunks,
|
2018-04-04 17:26:53 +08:00
|
|
|
chunk => chunk.name === options.name
|
|
|
|
);
|
2018-04-12 16:08:25 +08:00
|
|
|
if (!chunk) {
|
2018-02-25 09:00:20 +08:00
|
|
|
throw new Error(
|
2019-06-09 17:23:42 +08:00
|
|
|
`ChunkModuleIdRangePlugin: Chunk with name '${options.name}"' was not found`
|
2018-02-25 09:00:20 +08:00
|
|
|
);
|
2018-04-12 16:08:25 +08:00
|
|
|
}
|
|
|
|
|
2017-01-04 23:13:05 +08:00
|
|
|
let chunkModules;
|
2018-02-25 09:00:20 +08:00
|
|
|
if (options.order) {
|
2018-08-14 17:18:22 +08:00
|
|
|
let cmpFn;
|
2018-02-25 09:00:20 +08:00
|
|
|
switch (options.order) {
|
2017-01-04 23:13:05 +08:00
|
|
|
case "index":
|
2018-09-04 15:04:05 +08:00
|
|
|
case "preOrderIndex":
|
|
|
|
cmpFn = compareModulesByPreOrderIndexOrIdentifier(moduleGraph);
|
2017-01-04 23:13:05 +08:00
|
|
|
break;
|
|
|
|
case "index2":
|
2018-09-04 15:04:05 +08:00
|
|
|
case "postOrderIndex":
|
|
|
|
cmpFn = compareModulesByPostOrderIndexOrIdentifier(moduleGraph);
|
2017-01-04 23:13:05 +08:00
|
|
|
break;
|
|
|
|
default:
|
2018-02-25 09:00:20 +08:00
|
|
|
throw new Error(
|
|
|
|
"ChunkModuleIdRangePlugin: unexpected value of order"
|
|
|
|
);
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
2018-08-14 17:18:22 +08:00
|
|
|
chunkModules = chunkGraph.getOrderedChunkModules(chunk, cmpFn);
|
2017-01-04 23:13:05 +08:00
|
|
|
} else {
|
2018-09-05 22:12:48 +08:00
|
|
|
chunkModules = Array.from(modules)
|
2024-07-31 11:31:11 +08:00
|
|
|
.filter(m => chunkGraph.isModuleInChunk(m, chunk))
|
2018-09-04 15:04:05 +08:00
|
|
|
.sort(compareModulesByPreOrderIndexOrIdentifier(moduleGraph));
|
2016-09-14 18:04:42 +08:00
|
|
|
}
|
2017-02-05 08:35:41 +08:00
|
|
|
|
2018-04-12 16:08:25 +08:00
|
|
|
let currentId = options.start || 0;
|
2018-02-25 09:00:20 +08:00
|
|
|
for (let i = 0; i < chunkModules.length; i++) {
|
2017-02-05 07:38:56 +08:00
|
|
|
const m = chunkModules[i];
|
2019-09-26 21:51:40 +08:00
|
|
|
if (m.needId && chunkGraph.getModuleId(m) === null) {
|
2018-08-28 17:56:48 +08:00
|
|
|
chunkGraph.setModuleId(m, currentId++);
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
2018-02-25 09:00:20 +08:00
|
|
|
if (options.end && currentId > options.end) break;
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
|
|
|
});
|
2016-09-14 18:04:42 +08:00
|
|
|
});
|
2017-01-04 23:13:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = ChunkModuleIdRangePlugin;
|