webpack/lib/DllModule.js

118 lines
3.2 KiB
JavaScript
Raw Normal View History

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
*/
"use strict";
const { RawSource } = require("webpack-sources");
const Module = require("./Module");
2018-11-17 01:18:44 +08:00
const RuntimeGlobals = require("./RuntimeGlobals");
2018-07-30 23:08:51 +08:00
/** @typedef {import("webpack-sources").Source} Source */
/** @typedef {import("./ChunkGraph")} ChunkGraph */
/** @typedef {import("./Compilation")} Compilation */
/** @typedef {import("./DependencyTemplates")} DependencyTemplates */
/** @typedef {import("./Module").CodeGenerationContext} CodeGenerationContext */
/** @typedef {import("./Module").CodeGenerationResult} CodeGenerationResult */
2018-09-26 15:14:44 +08:00
/** @typedef {import("./Module").NeedBuildContext} NeedBuildContext */
/** @typedef {import("./Module").SourceContext} SourceContext */
2018-07-30 23:08:51 +08:00
/** @typedef {import("./RequestShortener")} RequestShortener */
/** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */
/** @typedef {import("./WebpackError")} WebpackError */
2019-07-17 22:02:33 +08:00
/** @typedef {import("./util/Hash")} Hash */
const TYPES = new Set(["javascript"]);
class DllModule extends Module {
constructor(context, dependencies, name) {
2018-01-31 04:40:44 +08:00
super("javascript/dynamic", context);
// Info from Factory
this.dependencies = dependencies;
this.name = name;
}
/**
* @returns {Set<string>} types availiable (do not mutate)
*/
getSourceTypes() {
return TYPES;
}
/**
* @returns {string} a unique identifier of the module
*/
identifier() {
return `dll ${this.name}`;
}
/**
* @param {RequestShortener} requestShortener the request shortener
* @returns {string} a user readable identifier of the module
*/
readableIdentifier(requestShortener) {
return `dll ${this.name}`;
}
/**
* @param {TODO} options TODO
* @param {Compilation} compilation the compilation
* @param {TODO} resolver TODO
* @param {TODO} fs the file system
* @param {function(WebpackError=): void} callback callback function
* @returns {void}
*/
build(options, compilation, resolver, fs, callback) {
this.buildMeta = {};
this.buildInfo = {};
return callback();
}
/**
* @param {CodeGenerationContext} context context for code generation
* @returns {CodeGenerationResult} result
*/
codeGeneration(context) {
const sources = new Map();
sources.set(
"javascript",
new RawSource("module.exports = __webpack_require__;")
);
return {
sources,
runtimeRequirements: [RuntimeGlobals.require, RuntimeGlobals.module]
};
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
* @param {function(WebpackError=, boolean=): void} callback callback function, returns true, if the module needs a rebuild
* @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);
}
/**
* @param {string=} type the source type for which the size should be estimated
* @returns {number} the estimated size of the module (must be non-zero)
*/
size(type) {
return 12;
}
/**
* @param {Hash} hash the hash used to track dependencies
* @param {ChunkGraph} chunkGraph the chunk graph
* @returns {void}
*/
updateHash(hash, chunkGraph) {
hash.update("dll module");
hash.update(this.name || "");
super.updateHash(hash, chunkGraph);
}
2015-05-17 00:27:59 +08:00
}
module.exports = DllModule;