12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175 |
- "use strict";
- const util = require("util");
- const ChunkGraph = require("./ChunkGraph");
- const DependenciesBlock = require("./DependenciesBlock");
- const ModuleGraph = require("./ModuleGraph");
- const RuntimeGlobals = require("./RuntimeGlobals");
- const { first } = require("./util/SetHelpers");
- const { compareChunksById } = require("./util/comparators");
- const makeSerializable = require("./util/makeSerializable");
- const EMPTY_RESOLVE_OPTIONS = {};
- let debugId = 1000;
- const DEFAULT_TYPES_UNKNOWN = new Set(["unknown"]);
- const DEFAULT_TYPES_JS = new Set(["javascript"]);
- const deprecatedNeedRebuild = util.deprecate(
-
- (module, context) => {
- return module.needRebuild(
- context.fileSystemInfo.getDeprecatedFileTimestamps(),
- context.fileSystemInfo.getDeprecatedContextTimestamps()
- );
- },
- "Module.needRebuild is deprecated in favor of Module.needBuild",
- "DEP_WEBPACK_MODULE_NEED_REBUILD"
- );
- class Module extends DependenciesBlock {
-
- constructor(type, context = null, layer = null) {
- super();
-
- this.type = type;
-
- this.context = context;
-
- this.layer = layer;
-
- this.needId = true;
-
-
- this.debugId = debugId++;
-
-
- this.resolveOptions = EMPTY_RESOLVE_OPTIONS;
-
- this.factoryMeta = undefined;
-
-
-
- this.useSourceMap = false;
-
- this.useSimpleSourceMap = false;
-
-
- this._warnings = undefined;
-
- this._errors = undefined;
-
- this.buildMeta = undefined;
-
- this.buildInfo = undefined;
-
- this.presentationalDependencies = undefined;
-
- this.codeGenerationDependencies = undefined;
- }
-
-
- get id() {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.id",
- "DEP_WEBPACK_MODULE_ID"
- ).getModuleId(this);
- }
- set id(value) {
- if (value === "") {
- this.needId = false;
- return;
- }
- ChunkGraph.getChunkGraphForModule(
- this,
- "Module.id",
- "DEP_WEBPACK_MODULE_ID"
- ).setModuleId(this, value);
- }
-
- get hash() {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.hash",
- "DEP_WEBPACK_MODULE_HASH"
- ).getModuleHash(this, undefined);
- }
-
- get renderedHash() {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.renderedHash",
- "DEP_WEBPACK_MODULE_RENDERED_HASH"
- ).getRenderedModuleHash(this, undefined);
- }
- get profile() {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.profile",
- "DEP_WEBPACK_MODULE_PROFILE"
- ).getProfile(this);
- }
- set profile(value) {
- ModuleGraph.getModuleGraphForModule(
- this,
- "Module.profile",
- "DEP_WEBPACK_MODULE_PROFILE"
- ).setProfile(this, value);
- }
-
- get index() {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.index",
- "DEP_WEBPACK_MODULE_INDEX"
- ).getPreOrderIndex(this);
- }
-
- set index(value) {
- ModuleGraph.getModuleGraphForModule(
- this,
- "Module.index",
- "DEP_WEBPACK_MODULE_INDEX"
- ).setPreOrderIndex(this, value);
- }
-
- get index2() {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.index2",
- "DEP_WEBPACK_MODULE_INDEX2"
- ).getPostOrderIndex(this);
- }
-
- set index2(value) {
- ModuleGraph.getModuleGraphForModule(
- this,
- "Module.index2",
- "DEP_WEBPACK_MODULE_INDEX2"
- ).setPostOrderIndex(this, value);
- }
-
- get depth() {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.depth",
- "DEP_WEBPACK_MODULE_DEPTH"
- ).getDepth(this);
- }
-
- set depth(value) {
- ModuleGraph.getModuleGraphForModule(
- this,
- "Module.depth",
- "DEP_WEBPACK_MODULE_DEPTH"
- ).setDepth(this, value);
- }
-
- get issuer() {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.issuer",
- "DEP_WEBPACK_MODULE_ISSUER"
- ).getIssuer(this);
- }
-
- set issuer(value) {
- ModuleGraph.getModuleGraphForModule(
- this,
- "Module.issuer",
- "DEP_WEBPACK_MODULE_ISSUER"
- ).setIssuer(this, value);
- }
- get usedExports() {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.usedExports",
- "DEP_WEBPACK_MODULE_USED_EXPORTS"
- ).getUsedExports(this, undefined);
- }
-
- get optimizationBailout() {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.optimizationBailout",
- "DEP_WEBPACK_MODULE_OPTIMIZATION_BAILOUT"
- ).getOptimizationBailout(this);
- }
- get optional() {
- return this.isOptional(
- ModuleGraph.getModuleGraphForModule(
- this,
- "Module.optional",
- "DEP_WEBPACK_MODULE_OPTIONAL"
- )
- );
- }
-
- addChunk(chunk) {
- const chunkGraph = ChunkGraph.getChunkGraphForModule(
- this,
- "Module.addChunk",
- "DEP_WEBPACK_MODULE_ADD_CHUNK"
- );
- if (chunkGraph.isModuleInChunk(this, chunk)) return false;
- chunkGraph.connectChunkAndModule(chunk, this);
- return true;
- }
-
- removeChunk(chunk) {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.removeChunk",
- "DEP_WEBPACK_MODULE_REMOVE_CHUNK"
- ).disconnectChunkAndModule(chunk, this);
- }
-
- isInChunk(chunk) {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.isInChunk",
- "DEP_WEBPACK_MODULE_IS_IN_CHUNK"
- ).isModuleInChunk(this, chunk);
- }
- isEntryModule() {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.isEntryModule",
- "DEP_WEBPACK_MODULE_IS_ENTRY_MODULE"
- ).isEntryModule(this);
- }
- getChunks() {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.getChunks",
- "DEP_WEBPACK_MODULE_GET_CHUNKS"
- ).getModuleChunks(this);
- }
- getNumberOfChunks() {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.getNumberOfChunks",
- "DEP_WEBPACK_MODULE_GET_NUMBER_OF_CHUNKS"
- ).getNumberOfModuleChunks(this);
- }
- get chunksIterable() {
- return ChunkGraph.getChunkGraphForModule(
- this,
- "Module.chunksIterable",
- "DEP_WEBPACK_MODULE_CHUNKS_ITERABLE"
- ).getOrderedModuleChunksIterable(this, compareChunksById);
- }
-
- isProvided(exportName) {
- return ModuleGraph.getModuleGraphForModule(
- this,
- "Module.usedExports",
- "DEP_WEBPACK_MODULE_USED_EXPORTS"
- ).isExportProvided(this, exportName);
- }
-
-
- get exportsArgument() {
- return (this.buildInfo && this.buildInfo.exportsArgument) || "exports";
- }
-
- get moduleArgument() {
- return (this.buildInfo && this.buildInfo.moduleArgument) || "module";
- }
-
- getExportsType(moduleGraph, strict) {
- switch (this.buildMeta && this.buildMeta.exportsType) {
- case "flagged":
- return strict ? "default-with-named" : "namespace";
- case "namespace":
- return "namespace";
- case "default":
- switch ( (this.buildMeta).defaultObject) {
- case "redirect":
- return "default-with-named";
- case "redirect-warn":
- return strict ? "default-only" : "default-with-named";
- default:
- return "default-only";
- }
- case "dynamic": {
- if (strict) return "default-with-named";
-
- const handleDefault = () => {
- switch ( (this.buildMeta).defaultObject) {
- case "redirect":
- case "redirect-warn":
- return "default-with-named";
- default:
- return "default-only";
- }
- };
- const exportInfo = moduleGraph.getReadOnlyExportInfo(
- this,
- "__esModule"
- );
- if (exportInfo.provided === false) {
- return handleDefault();
- }
- const target = exportInfo.getTarget(moduleGraph);
- if (
- !target ||
- !target.export ||
- target.export.length !== 1 ||
- target.export[0] !== "__esModule"
- ) {
- return "dynamic";
- }
- switch (
- target.module.buildMeta &&
- target.module.buildMeta.exportsType
- ) {
- case "flagged":
- case "namespace":
- return "namespace";
- case "default":
- return handleDefault();
- default:
- return "dynamic";
- }
- }
- default:
- return strict ? "default-with-named" : "dynamic";
- }
- }
-
- addPresentationalDependency(presentationalDependency) {
- if (this.presentationalDependencies === undefined) {
- this.presentationalDependencies = [];
- }
- this.presentationalDependencies.push(presentationalDependency);
- }
-
- addCodeGenerationDependency(codeGenerationDependency) {
- if (this.codeGenerationDependencies === undefined) {
- this.codeGenerationDependencies = [];
- }
- this.codeGenerationDependencies.push(codeGenerationDependency);
- }
-
- clearDependenciesAndBlocks() {
- if (this.presentationalDependencies !== undefined) {
- this.presentationalDependencies.length = 0;
- }
- if (this.codeGenerationDependencies !== undefined) {
- this.codeGenerationDependencies.length = 0;
- }
- super.clearDependenciesAndBlocks();
- }
-
- addWarning(warning) {
- if (this._warnings === undefined) {
- this._warnings = [];
- }
- this._warnings.push(warning);
- }
-
- getWarnings() {
- return this._warnings;
- }
-
- getNumberOfWarnings() {
- return this._warnings !== undefined ? this._warnings.length : 0;
- }
-
- addError(error) {
- if (this._errors === undefined) {
- this._errors = [];
- }
- this._errors.push(error);
- }
-
- getErrors() {
- return this._errors;
- }
-
- getNumberOfErrors() {
- return this._errors !== undefined ? this._errors.length : 0;
- }
-
- clearWarningsAndErrors() {
- if (this._warnings !== undefined) {
- this._warnings.length = 0;
- }
- if (this._errors !== undefined) {
- this._errors.length = 0;
- }
- }
-
- isOptional(moduleGraph) {
- let hasConnections = false;
- for (const r of moduleGraph.getIncomingConnections(this)) {
- if (
- !r.dependency ||
- !r.dependency.optional ||
- !r.isTargetActive(undefined)
- ) {
- return false;
- }
- hasConnections = true;
- }
- return hasConnections;
- }
-
- isAccessibleInChunk(chunkGraph, chunk, ignoreChunk) {
-
- for (const chunkGroup of chunk.groupsIterable) {
- if (!this.isAccessibleInChunkGroup(chunkGraph, chunkGroup)) return false;
- }
- return true;
- }
-
- isAccessibleInChunkGroup(chunkGraph, chunkGroup, ignoreChunk) {
- const queue = new Set([chunkGroup]);
-
- queueFor: for (const cg of queue) {
-
-
- for (const chunk of cg.chunks) {
- if (chunk !== ignoreChunk && chunkGraph.isModuleInChunk(this, chunk))
- continue queueFor;
- }
-
- if (chunkGroup.isInitial()) return false;
-
- for (const parent of chunkGroup.parentsIterable) queue.add(parent);
- }
-
- return true;
- }
-
- hasReasonForChunk(chunk, moduleGraph, chunkGraph) {
-
- for (const [
- fromModule,
- connections
- ] of moduleGraph.getIncomingConnectionsByOriginModule(this)) {
- if (!connections.some(c => c.isTargetActive(chunk.runtime))) continue;
- for (const originChunk of chunkGraph.getModuleChunksIterable(
- (fromModule)
- )) {
-
- if (!this.isAccessibleInChunk(chunkGraph, originChunk, chunk))
- return true;
- }
- }
- return false;
- }
-
- hasReasons(moduleGraph, runtime) {
- for (const c of moduleGraph.getIncomingConnections(this)) {
- if (c.isTargetActive(runtime)) return true;
- }
- return false;
- }
-
- toString() {
- return `Module[${this.debugId}: ${this.identifier()}]`;
- }
-
- needBuild(context, callback) {
- callback(
- null,
- !this.buildMeta ||
- this.needRebuild === Module.prototype.needRebuild ||
- deprecatedNeedRebuild(this, context)
- );
- }
-
- needRebuild(fileTimestamps, contextTimestamps) {
- return true;
- }
-
- updateHash(
- hash,
- context = {
- chunkGraph: ChunkGraph.getChunkGraphForModule(
- this,
- "Module.updateHash",
- "DEP_WEBPACK_MODULE_UPDATE_HASH"
- ),
- runtime: undefined
- }
- ) {
- const { chunkGraph, runtime } = context;
- hash.update(chunkGraph.getModuleGraphHash(this, runtime));
- if (this.presentationalDependencies !== undefined) {
- for (const dep of this.presentationalDependencies) {
- dep.updateHash(hash, context);
- }
- }
- super.updateHash(hash, context);
- }
-
- invalidateBuild() {
-
- }
-
-
- identifier() {
- const AbstractMethodError = require("./AbstractMethodError");
- throw new AbstractMethodError();
- }
-
-
- readableIdentifier(requestShortener) {
- const AbstractMethodError = require("./AbstractMethodError");
- throw new AbstractMethodError();
- }
-
-
- build(options, compilation, resolver, fs, callback) {
- const AbstractMethodError = require("./AbstractMethodError");
- throw new AbstractMethodError();
- }
-
- getSourceTypes() {
-
- if (this.source === Module.prototype.source) {
- return DEFAULT_TYPES_UNKNOWN;
- } else {
- return DEFAULT_TYPES_JS;
- }
- }
-
- source(dependencyTemplates, runtimeTemplate, type = "javascript") {
- if (this.codeGeneration === Module.prototype.codeGeneration) {
- const AbstractMethodError = require("./AbstractMethodError");
- throw new AbstractMethodError();
- }
- const chunkGraph = ChunkGraph.getChunkGraphForModule(
- this,
- "Module.source() is deprecated. Use Compilation.codeGenerationResults.getSource(module, runtime, type) instead",
- "DEP_WEBPACK_MODULE_SOURCE"
- );
-
- const codeGenContext = {
- dependencyTemplates,
- runtimeTemplate,
- moduleGraph: chunkGraph.moduleGraph,
- chunkGraph,
- runtime: undefined,
- codeGenerationResults: undefined
- };
- const sources = this.codeGeneration(codeGenContext).sources;
- return type ? sources.get(type) : sources.get(first(this.getSourceTypes()));
- }
-
-
- size(type) {
- const AbstractMethodError = require("./AbstractMethodError");
- throw new AbstractMethodError();
- }
-
- libIdent(options) {
- return null;
- }
-
- nameForCondition() {
- return null;
- }
-
- getConcatenationBailoutReason(context) {
- return `Module Concatenation is not implemented for ${this.constructor.name}`;
- }
-
- getSideEffectsConnectionState(moduleGraph) {
- return true;
- }
-
- codeGeneration(context) {
-
- const sources = new Map();
- for (const type of this.getSourceTypes()) {
- if (type !== "unknown") {
- sources.set(
- type,
- this.source(
- context.dependencyTemplates,
- context.runtimeTemplate,
- type
- )
- );
- }
- }
- return {
- sources,
- runtimeRequirements: new Set([
- RuntimeGlobals.module,
- RuntimeGlobals.exports,
- RuntimeGlobals.require
- ])
- };
- }
-
- chunkCondition(chunk, compilation) {
- return true;
- }
- hasChunkCondition() {
- return this.chunkCondition !== Module.prototype.chunkCondition;
- }
-
- updateCacheModule(module) {
- this.type = module.type;
- this.layer = module.layer;
- this.context = module.context;
- this.factoryMeta = module.factoryMeta;
- this.resolveOptions = module.resolveOptions;
- }
-
- getUnsafeCacheData() {
- return {
- factoryMeta: this.factoryMeta,
- resolveOptions: this.resolveOptions
- };
- }
-
- _restoreFromUnsafeCache(unsafeCacheData, normalModuleFactory) {
- this.factoryMeta = unsafeCacheData.factoryMeta;
- this.resolveOptions = unsafeCacheData.resolveOptions;
- }
-
- cleanupForCache() {
- this.factoryMeta = undefined;
- this.resolveOptions = undefined;
- }
-
- originalSource() {
- return null;
- }
-
- addCacheDependencies(
- fileDependencies,
- contextDependencies,
- missingDependencies,
- buildDependencies
- ) {}
-
- serialize(context) {
- const { write } = context;
- write(this.type);
- write(this.layer);
- write(this.context);
- write(this.resolveOptions);
- write(this.factoryMeta);
- write(this.useSourceMap);
- write(this.useSimpleSourceMap);
- write(
- this._warnings !== undefined && this._warnings.length === 0
- ? undefined
- : this._warnings
- );
- write(
- this._errors !== undefined && this._errors.length === 0
- ? undefined
- : this._errors
- );
- write(this.buildMeta);
- write(this.buildInfo);
- write(this.presentationalDependencies);
- write(this.codeGenerationDependencies);
- super.serialize(context);
- }
-
- deserialize(context) {
- const { read } = context;
- this.type = read();
- this.layer = read();
- this.context = read();
- this.resolveOptions = read();
- this.factoryMeta = read();
- this.useSourceMap = read();
- this.useSimpleSourceMap = read();
- this._warnings = read();
- this._errors = read();
- this.buildMeta = read();
- this.buildInfo = read();
- this.presentationalDependencies = read();
- this.codeGenerationDependencies = read();
- super.deserialize(context);
- }
- }
- makeSerializable(Module, "webpack/lib/Module");
- Object.defineProperty(Module.prototype, "hasEqualsChunks", {
- get() {
- throw new Error(
- "Module.hasEqualsChunks was renamed (use hasEqualChunks instead)"
- );
- }
- });
- Object.defineProperty(Module.prototype, "isUsed", {
- get() {
- throw new Error(
- "Module.isUsed was renamed (use getUsedName, isExportUsed or isModuleUsed instead)"
- );
- }
- });
- Object.defineProperty(Module.prototype, "errors", {
- get: util.deprecate(
-
- function () {
- if (this._errors === undefined) {
- this._errors = [];
- }
- return this._errors;
- },
- "Module.errors was removed (use getErrors instead)",
- "DEP_WEBPACK_MODULE_ERRORS"
- )
- });
- Object.defineProperty(Module.prototype, "warnings", {
- get: util.deprecate(
-
- function () {
- if (this._warnings === undefined) {
- this._warnings = [];
- }
- return this._warnings;
- },
- "Module.warnings was removed (use getWarnings instead)",
- "DEP_WEBPACK_MODULE_WARNINGS"
- )
- });
- Object.defineProperty(Module.prototype, "used", {
- get() {
- throw new Error(
- "Module.used was refactored (use ModuleGraph.getUsedExports instead)"
- );
- },
- set(value) {
- throw new Error(
- "Module.used was refactored (use ModuleGraph.setUsedExports instead)"
- );
- }
- });
- module.exports = Module;
|