2015-05-17 00:27:59 +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-05 14:03:19 +08:00
|
|
|
"use strict";
|
|
|
|
|
2018-03-22 19:05:58 +08:00
|
|
|
const { RawSource } = require("webpack-sources");
|
2017-01-05 14:03:19 +08:00
|
|
|
const Module = require("./Module");
|
2024-11-01 04:19:07 +08:00
|
|
|
const { JS_TYPES } = require("./ModuleSourceTypesConstants");
|
2023-04-01 01:56:32 +08:00
|
|
|
const { JAVASCRIPT_MODULE_TYPE_DYNAMIC } = require("./ModuleTypeConstants");
|
2018-11-17 01:18:44 +08:00
|
|
|
const RuntimeGlobals = require("./RuntimeGlobals");
|
2020-05-14 02:35:06 +08:00
|
|
|
const makeSerializable = require("./util/makeSerializable");
|
2017-01-05 14:03:19 +08:00
|
|
|
|
2018-07-30 23:08:51 +08:00
|
|
|
/** @typedef {import("webpack-sources").Source} Source */
|
2020-02-17 17:27:46 +08:00
|
|
|
/** @typedef {import("../declarations/WebpackOptions").WebpackOptionsNormalized} WebpackOptions */
|
2018-08-23 23:07:23 +08:00
|
|
|
/** @typedef {import("./ChunkGraph")} ChunkGraph */
|
2018-07-25 18:12:17 +08:00
|
|
|
/** @typedef {import("./Compilation")} Compilation */
|
2023-06-04 01:52:25 +08:00
|
|
|
/** @typedef {import("./Dependency")} Dependency */
|
2020-07-28 00:09:48 +08:00
|
|
|
/** @typedef {import("./Dependency").UpdateHashContext} UpdateHashContext */
|
2018-07-25 18:12:17 +08:00
|
|
|
/** @typedef {import("./DependencyTemplates")} DependencyTemplates */
|
2024-11-01 04:19:07 +08:00
|
|
|
/** @typedef {import("./Generator").SourceTypes} SourceTypes */
|
2025-03-12 09:56:14 +08:00
|
|
|
/** @typedef {import("./Module").BuildCallback} BuildCallback */
|
2019-10-09 04:29:46 +08:00
|
|
|
/** @typedef {import("./Module").CodeGenerationContext} CodeGenerationContext */
|
|
|
|
/** @typedef {import("./Module").CodeGenerationResult} CodeGenerationResult */
|
2025-03-12 09:56:14 +08:00
|
|
|
/** @typedef {import("./Module").NeedBuildCallback} NeedBuildCallback */
|
2018-09-26 15:14:44 +08:00
|
|
|
/** @typedef {import("./Module").NeedBuildContext} NeedBuildContext */
|
2018-07-18 00:57:03 +08:00
|
|
|
/** @typedef {import("./Module").SourceContext} SourceContext */
|
2018-07-30 23:08:51 +08:00
|
|
|
/** @typedef {import("./RequestShortener")} RequestShortener */
|
2019-11-11 22:25:03 +08:00
|
|
|
/** @typedef {import("./ResolverFactory").ResolverWithOptions} ResolverWithOptions */
|
2018-07-25 18:12:17 +08:00
|
|
|
/** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */
|
2018-09-12 00:47:55 +08:00
|
|
|
/** @typedef {import("./WebpackError")} WebpackError */
|
2023-04-12 02:57:43 +08:00
|
|
|
/** @typedef {import("./serialization/ObjectMiddleware").ObjectDeserializerContext} ObjectDeserializerContext */
|
|
|
|
/** @typedef {import("./serialization/ObjectMiddleware").ObjectSerializerContext} ObjectSerializerContext */
|
2019-07-17 22:02:33 +08:00
|
|
|
/** @typedef {import("./util/Hash")} Hash */
|
2019-11-11 22:25:03 +08:00
|
|
|
/** @typedef {import("./util/fs").InputFileSystem} InputFileSystem */
|
2018-07-21 00:17:51 +08:00
|
|
|
|
2020-01-29 17:28:33 +08:00
|
|
|
const RUNTIME_REQUIREMENTS = new Set([
|
|
|
|
RuntimeGlobals.require,
|
|
|
|
RuntimeGlobals.module
|
|
|
|
]);
|
2019-09-26 21:51:40 +08:00
|
|
|
|
2017-01-05 14:03:19 +08:00
|
|
|
class DllModule extends Module {
|
2023-06-04 01:52:25 +08:00
|
|
|
/**
|
|
|
|
* @param {string} context context path
|
|
|
|
* @param {Dependency[]} dependencies dependencies
|
|
|
|
* @param {string} name name
|
|
|
|
*/
|
2018-08-23 22:54:02 +08:00
|
|
|
constructor(context, dependencies, name) {
|
2023-04-01 01:56:32 +08:00
|
|
|
super(JAVASCRIPT_MODULE_TYPE_DYNAMIC, context);
|
2017-11-06 20:02:35 +08:00
|
|
|
|
|
|
|
// Info from Factory
|
2024-02-22 22:20:17 +08:00
|
|
|
/** @type {Dependency[]} */
|
2017-01-05 14:03:19 +08:00
|
|
|
this.dependencies = dependencies;
|
|
|
|
this.name = name;
|
|
|
|
}
|
|
|
|
|
2019-09-26 21:51:40 +08:00
|
|
|
/**
|
2024-02-17 01:39:12 +08:00
|
|
|
* @returns {SourceTypes} types available (do not mutate)
|
2019-09-26 21:51:40 +08:00
|
|
|
*/
|
|
|
|
getSourceTypes() {
|
2024-11-01 04:19:07 +08:00
|
|
|
return JS_TYPES;
|
2019-09-26 21:51:40 +08:00
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
|
|
|
* @returns {string} a unique identifier of the module
|
|
|
|
*/
|
2017-01-05 14:03:19 +08:00
|
|
|
identifier() {
|
|
|
|
return `dll ${this.name}`;
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
|
|
|
* @param {RequestShortener} requestShortener the request shortener
|
|
|
|
* @returns {string} a user readable identifier of the module
|
|
|
|
*/
|
|
|
|
readableIdentifier(requestShortener) {
|
2017-01-05 14:03:19 +08:00
|
|
|
return `dll ${this.name}`;
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
2019-11-11 22:25:03 +08:00
|
|
|
* @param {WebpackOptions} options webpack options
|
2018-07-25 18:12:17 +08:00
|
|
|
* @param {Compilation} compilation the compilation
|
2019-11-11 22:25:03 +08:00
|
|
|
* @param {ResolverWithOptions} resolver the resolver
|
|
|
|
* @param {InputFileSystem} fs the file system
|
2025-03-12 09:56:14 +08:00
|
|
|
* @param {BuildCallback} callback callback function
|
2018-07-25 18:12:17 +08:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2017-01-05 14:03:19 +08:00
|
|
|
build(options, compilation, resolver, fs, callback) {
|
2017-12-06 19:09:17 +08:00
|
|
|
this.buildMeta = {};
|
|
|
|
this.buildInfo = {};
|
2017-01-05 14:03:19 +08:00
|
|
|
return callback();
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
2019-10-09 04:29:46 +08:00
|
|
|
* @param {CodeGenerationContext} context context for code generation
|
|
|
|
* @returns {CodeGenerationResult} result
|
2018-07-25 18:12:17 +08:00
|
|
|
*/
|
2019-10-09 04:29:46 +08:00
|
|
|
codeGeneration(context) {
|
|
|
|
const sources = new Map();
|
|
|
|
sources.set(
|
|
|
|
"javascript",
|
2023-05-20 00:00:54 +08:00
|
|
|
new RawSource(`module.exports = ${RuntimeGlobals.require};`)
|
2019-10-09 04:29:46 +08:00
|
|
|
);
|
|
|
|
return {
|
|
|
|
sources,
|
2020-01-29 17:28:33 +08:00
|
|
|
runtimeRequirements: RUNTIME_REQUIREMENTS
|
2019-10-09 04:29:46 +08:00
|
|
|
};
|
2018-11-17 01:18:44 +08:00
|
|
|
}
|
|
|
|
|
2018-07-25 18:38:34 +08:00
|
|
|
/**
|
2018-09-26 15:14:44 +08:00
|
|
|
* @param {NeedBuildContext} context context info
|
2025-03-12 09:56:14 +08:00
|
|
|
* @param {NeedBuildCallback} callback callback function, returns true, if the module needs a rebuild
|
2018-09-26 15:14:44 +08:00
|
|
|
* @returns {void}
|
2018-07-25 18:38:34 +08:00
|
|
|
*/
|
2018-09-26 15:14:44 +08:00
|
|
|
needBuild(context, callback) {
|
|
|
|
return callback(null, !this.buildMeta);
|
2017-01-05 14:03:19 +08:00
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
2018-12-04 18:23:40 +08:00
|
|
|
* @param {string=} type the source type for which the size should be estimated
|
2019-05-13 18:29:29 +08:00
|
|
|
* @returns {number} the estimated size of the module (must be non-zero)
|
2018-07-25 18:12:17 +08:00
|
|
|
*/
|
2018-12-04 18:23:40 +08:00
|
|
|
size(type) {
|
2017-01-05 14:03:19 +08:00
|
|
|
return 12;
|
|
|
|
}
|
|
|
|
|
2018-07-21 00:17:51 +08:00
|
|
|
/**
|
|
|
|
* @param {Hash} hash the hash used to track dependencies
|
2020-07-28 00:09:48 +08:00
|
|
|
* @param {UpdateHashContext} context context
|
2018-07-21 00:17:51 +08:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2020-07-28 00:09:48 +08:00
|
|
|
updateHash(hash, context) {
|
2021-10-04 15:29:09 +08:00
|
|
|
hash.update(`dll module${this.name || ""}`);
|
2020-07-28 00:09:48 +08:00
|
|
|
super.updateHash(hash, context);
|
2017-01-05 14:03:19 +08:00
|
|
|
}
|
2020-05-14 02:35:06 +08:00
|
|
|
|
2023-04-12 02:57:43 +08:00
|
|
|
/**
|
|
|
|
* @param {ObjectSerializerContext} context context
|
|
|
|
*/
|
2020-05-14 02:35:06 +08:00
|
|
|
serialize(context) {
|
2020-06-02 16:21:27 +08:00
|
|
|
context.write(this.name);
|
2020-05-14 02:35:06 +08:00
|
|
|
super.serialize(context);
|
|
|
|
}
|
|
|
|
|
2023-04-12 02:57:43 +08:00
|
|
|
/**
|
|
|
|
* @param {ObjectDeserializerContext} context context
|
|
|
|
*/
|
2020-05-14 02:35:06 +08:00
|
|
|
deserialize(context) {
|
2020-06-02 16:21:27 +08:00
|
|
|
this.name = context.read();
|
2020-05-14 02:35:06 +08:00
|
|
|
super.deserialize(context);
|
|
|
|
}
|
2020-06-02 16:21:27 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Assuming this module is in the cache. Update the (cached) module with
|
|
|
|
* the fresh module from the factory. Usually updates internal references
|
|
|
|
* and properties.
|
|
|
|
* @param {Module} module fresh module
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
updateCacheModule(module) {
|
|
|
|
super.updateCacheModule(module);
|
|
|
|
this.dependencies = module.dependencies;
|
|
|
|
}
|
2021-03-15 17:29:51 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Assuming this module is in the cache. Remove internal references to allow freeing some memory.
|
|
|
|
*/
|
|
|
|
cleanupForCache() {
|
|
|
|
super.cleanupForCache();
|
2024-10-24 11:02:20 +08:00
|
|
|
this.dependencies = /** @type {EXPECTED_ANY} */ (undefined);
|
2021-03-15 17:29:51 +08:00
|
|
|
}
|
2015-05-17 00:27:59 +08:00
|
|
|
}
|
|
|
|
|
2020-05-14 02:35:06 +08:00
|
|
|
makeSerializable(DllModule, "webpack/lib/DllModule");
|
|
|
|
|
2017-01-05 14:03:19 +08:00
|
|
|
module.exports = DllModule;
|