2014-03-02 03:07:42 +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-06 22:23:29 +08:00
|
|
|
"use strict";
|
|
|
|
|
2018-03-22 19:05:58 +08:00
|
|
|
const { OriginalSource, RawSource } = require("webpack-sources");
|
2018-07-30 23:08:51 +08:00
|
|
|
const Module = require("./Module");
|
2017-01-06 22:23:29 +08:00
|
|
|
|
2018-07-30 23:08:51 +08:00
|
|
|
/** @typedef {import("webpack-sources").Source} Source */
|
2018-08-23 23:07:23 +08:00
|
|
|
/** @typedef {import("./ChunkGraph")} ChunkGraph */
|
2018-07-25 18:12:17 +08:00
|
|
|
/** @typedef {import("./Compilation")} Compilation */
|
|
|
|
/** @typedef {import("./DependencyTemplates")} DependencyTemplates */
|
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 */
|
2018-07-25 18:12:17 +08:00
|
|
|
/** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */
|
2018-09-12 00:47:55 +08:00
|
|
|
/** @typedef {import("./WebpackError")} WebpackError */
|
2018-07-30 23:08:51 +08:00
|
|
|
/** @typedef {import("./util/createHash").Hash} Hash */
|
2018-07-23 23:25:38 +08:00
|
|
|
|
2017-01-06 22:23:29 +08:00
|
|
|
module.exports = class RawModule extends Module {
|
|
|
|
constructor(source, identifier, readableIdentifier) {
|
2018-01-31 04:40:44 +08:00
|
|
|
super("javascript/dynamic", null);
|
2017-01-06 22:23:29 +08:00
|
|
|
this.sourceStr = source;
|
|
|
|
this.identifierStr = identifier || this.sourceStr;
|
|
|
|
this.readableIdentifierStr = readableIdentifier || this.identifierStr;
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
|
|
|
* @returns {string} a unique identifier of the module
|
|
|
|
*/
|
2017-01-06 22:23:29 +08:00
|
|
|
identifier() {
|
|
|
|
return this.identifierStr;
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
|
|
|
* @returns {number} the estimated size of the module
|
|
|
|
*/
|
2017-01-06 22:23:29 +08:00
|
|
|
size() {
|
|
|
|
return this.sourceStr.length;
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
|
|
|
* @param {RequestShortener} requestShortener the request shortener
|
|
|
|
* @returns {string} a user readable identifier of the module
|
|
|
|
*/
|
2017-01-06 22:23:29 +08:00
|
|
|
readableIdentifier(requestShortener) {
|
|
|
|
return requestShortener.shorten(this.readableIdentifierStr);
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:38:34 +08:00
|
|
|
/**
|
|
|
|
* @param {TODO} fileTimestamps timestamps of files
|
|
|
|
* @param {TODO} contextTimestamps timestamps of directories
|
|
|
|
* @returns {boolean} true, if the module needs a rebuild
|
|
|
|
*/
|
2018-09-12 00:47:55 +08:00
|
|
|
needBuild(fileTimestamps, contextTimestamps) {
|
|
|
|
return !this.buildMeta;
|
2017-01-06 22:23:29 +08:00
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
|
|
|
* @param {TODO} options TODO
|
|
|
|
* @param {Compilation} compilation the compilation
|
|
|
|
* @param {TODO} resolver TODO
|
|
|
|
* @param {TODO} fs the file system
|
2018-09-12 00:47:55 +08:00
|
|
|
* @param {function(WebpackError=): void} callback callback function
|
2018-07-25 18:12:17 +08:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
build(options, compilation, resolver, fs, callback) {
|
2017-12-06 19:09:17 +08:00
|
|
|
this.buildMeta = {};
|
|
|
|
this.buildInfo = {
|
|
|
|
cacheable: true
|
|
|
|
};
|
2017-01-06 22:23:29 +08:00
|
|
|
callback();
|
|
|
|
}
|
|
|
|
|
2018-07-25 18:12:17 +08:00
|
|
|
/**
|
2018-07-18 00:57:03 +08:00
|
|
|
* @param {SourceContext} sourceContext source context
|
2018-07-25 18:12:17 +08:00
|
|
|
* @returns {Source} generated source
|
|
|
|
*/
|
2018-07-18 00:57:03 +08:00
|
|
|
source(sourceContext) {
|
2018-05-29 20:50:40 +08:00
|
|
|
if (this.useSourceMap) {
|
2017-01-06 22:23:29 +08:00
|
|
|
return new OriginalSource(this.sourceStr, this.identifier());
|
2018-05-29 20:50:40 +08:00
|
|
|
} else {
|
|
|
|
return new RawSource(this.sourceStr);
|
|
|
|
}
|
2017-01-06 22:23:29 +08:00
|
|
|
}
|
|
|
|
|
2018-07-23 23:25:38 +08:00
|
|
|
/**
|
|
|
|
* @param {Hash} hash the hash used to track dependencies
|
2018-08-23 23:07:23 +08:00
|
|
|
* @param {ChunkGraph} chunkGraph the chunk graph
|
2018-07-23 23:25:38 +08:00
|
|
|
* @returns {void}
|
|
|
|
*/
|
2018-08-23 23:07:23 +08:00
|
|
|
updateHash(hash, chunkGraph) {
|
2017-06-19 01:25:03 +08:00
|
|
|
hash.update(this.sourceStr);
|
2018-08-23 23:07:23 +08:00
|
|
|
super.updateHash(hash, chunkGraph);
|
2017-06-19 01:25:03 +08:00
|
|
|
}
|
2017-01-11 17:51:58 +08:00
|
|
|
};
|