123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221 |
- "use strict";
- const util = require("util");
- const ChunkGraph = require("./ChunkGraph");
- const DependenciesBlock = require("./DependenciesBlock");
- const ModuleGraph = require("./ModuleGraph");
- const { JS_TYPES } = require("./ModuleSourceTypesConstants");
- 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 deprecatedNeedRebuild = util.deprecate(
-
- (module, context) =>
- 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.hot = 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;
- }
- return JS_TYPES;
- }
-
- 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.hot);
- 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.hot = 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;
|