webpack/lib/RuntimeModule.js

159 lines
4.0 KiB
JavaScript
Raw Normal View History

2018-11-06 02:03:12 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
"use strict";
const OriginalSource = require("webpack-sources").OriginalSource;
const Module = require("./Module");
/** @typedef {import("webpack-sources").Source} Source */
/** @typedef {import("./Chunk")} Chunk */
/** @typedef {import("./ChunkGraph")} ChunkGraph */
/** @typedef {import("./Compilation")} Compilation */
/** @typedef {import("./Module").LibIdentOptions} LibIdentOptions */
2018-11-06 02:03:12 +08:00
/** @typedef {import("./Module").NeedBuildContext} NeedBuildContext */
/** @typedef {import("./Module").SourceContext} SourceContext */
/** @typedef {import("./RequestShortener")} RequestShortener */
/** @typedef {import("./WebpackError")} WebpackError */
2019-07-17 22:02:33 +08:00
/** @typedef {import("./util/Hash")} Hash */
2018-11-06 02:03:12 +08:00
/** @typedef {SourceContext} GenerateContext */
const TYPES = new Set(["runtime"]);
2018-11-06 02:03:12 +08:00
class RuntimeModule extends Module {
2018-12-18 05:05:08 +08:00
/**
* @param {string} name a readable name
* @param {number=} stage an optional stage
*/
constructor(name, stage = 0) {
2018-11-06 02:03:12 +08:00
super("runtime");
this.name = name;
this.stage = stage;
2018-11-06 02:03:12 +08:00
this.buildMeta = {};
this.buildInfo = {};
/** @type {Compilation} */
this.compilation = undefined;
/** @type {Chunk} */
this.chunk = undefined;
2018-12-18 05:05:08 +08:00
/** @type {string} */
this._cachedGeneratedCode = undefined;
2018-11-06 02:03:12 +08:00
}
/**
* @param {Compilation} compilation the compilation
* @param {Chunk} chunk the chunk
* @returns {void}
*/
attach(compilation, chunk) {
this.compilation = compilation;
this.chunk = chunk;
}
2018-11-06 02:03:12 +08:00
/**
* @returns {string} a unique identifier of the module
*/
identifier() {
2018-11-23 17:02:47 +08:00
return `webpack/runtime/${this.name}`;
2018-11-06 02:03:12 +08:00
}
/**
* @param {RequestShortener} requestShortener the request shortener
* @returns {string} a user readable identifier of the module
*/
readableIdentifier(requestShortener) {
2018-11-23 17:02:47 +08:00
return `webpack/runtime/${this.name}`;
2018-11-06 02:03:12 +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}
*/
needBuild(context, callback) {
return callback(null, false);
}
/**
* @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) {
// do nothing
// should not be called as runtime modules are added later to the compilation
callback();
}
/**
* @param {Hash} hash the hash used to track dependencies
* @param {ChunkGraph} chunkGraph the chunk graph
* @returns {void}
*/
updateHash(hash, chunkGraph) {
// Do not use getGeneratedCode here, because i. e. compilation hash is not
// ready at this point. We will cache it later instead.
try {
hash.update(this.generate());
} catch (err) {
hash.update(err.message);
}
2018-11-06 02:03:12 +08:00
super.updateHash(hash, chunkGraph);
}
/**
* @returns {Set<string>} types availiable (do not mutate)
*/
getSourceTypes() {
return TYPES;
}
2018-11-06 02:03:12 +08:00
/**
* @param {SourceContext} sourceContext source context
* @returns {Source} generated source
*/
source(sourceContext) {
const generatedCode = this.getGeneratedCode();
if (!generatedCode) return null;
return new OriginalSource(generatedCode, this.identifier());
2018-11-06 02:03:12 +08:00
}
/**
* @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)
2018-11-06 02:03:12 +08:00
*/
size(type) {
if (this._cachedGeneratedCode) {
return this._cachedGeneratedCode.length;
}
return 0;
2018-11-06 02:03:12 +08:00
}
/**
* @abstract
* @returns {string} runtime code
*/
generate() {
2018-11-06 02:03:12 +08:00
throw new Error(
`RuntimeModule: generate() must be overriden in subclass ${this.name}`
);
}
/**
* @returns {string} runtime code
*/
getGeneratedCode() {
2018-12-18 05:05:08 +08:00
if (this._cachedGeneratedCode) {
return this._cachedGeneratedCode;
}
return (this._cachedGeneratedCode = this.generate());
}
2018-11-06 02:03:12 +08:00
}
module.exports = RuntimeModule;