webpack/lib/RawModule.js

143 lines
3.8 KiB
JavaScript
Raw Normal View History

/*
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 { OriginalSource, RawSource } = require("webpack-sources");
2018-07-30 23:08:51 +08:00
const Module = require("./Module");
const makeSerializable = require("./util/makeSerializable");
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 */
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 RawModule extends Module {
constructor(source, identifier, readableIdentifier) {
2018-01-31 04:40:44 +08:00
super("javascript/dynamic", null);
2018-11-07 21:03:25 +08:00
/** @type {string} */
this.sourceStr = source;
2018-11-07 21:03:25 +08:00
/** @type {string} */
this.identifierStr = identifier || this.sourceStr;
2018-11-07 21:03:25 +08:00
/** @type {string} */
this.readableIdentifierStr = readableIdentifier || this.identifierStr;
}
/**
* @returns {Set<string>} types availiable (do not mutate)
*/
getSourceTypes() {
return TYPES;
}
/**
* @returns {string} a unique identifier of the module
*/
identifier() {
return this.identifierStr;
}
/**
* @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 Math.max(1, this.sourceStr.length);
}
/**
* @param {RequestShortener} requestShortener the request shortener
* @returns {string} a user readable identifier of the module
*/
readableIdentifier(requestShortener) {
return requestShortener.shorten(this.readableIdentifierStr);
}
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 {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 = {
cacheable: true
};
callback();
}
/**
* @param {CodeGenerationContext} context context for code generation
* @returns {CodeGenerationResult} result
*/
codeGeneration(context) {
const sources = new Map();
if (this.useSourceMap) {
sources.set(
"javascript",
new OriginalSource(this.sourceStr, this.identifier())
);
} else {
sources.set("javascript", new RawSource(this.sourceStr));
}
return { sources, runtimeRequirements: null };
}
/**
* @param {Hash} hash the hash used to track dependencies
* @param {ChunkGraph} chunkGraph the chunk graph
* @returns {void}
*/
updateHash(hash, chunkGraph) {
hash.update(this.sourceStr);
super.updateHash(hash, chunkGraph);
}
serialize(context) {
const { write } = context;
write(this.sourceStr);
write(this.identifierStr);
write(this.readableIdentifierStr);
super.serialize(context);
}
deserialize(context) {
const { read } = context;
this.sourceStr = read();
this.identifierStr = read();
this.readableIdentifierStr = read();
super.deserialize(context);
}
}
makeSerializable(RawModule, "webpack/lib/RawModule");
module.exports = RawModule;