webpack/lib/asset/AssetSourceGenerator.js

167 lines
4.4 KiB
JavaScript
Raw Normal View History

2019-11-26 21:05:07 +08:00
/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Sergey Melyukov @smelukov
*/
"use strict";
const { RawSource } = require("webpack-sources");
2022-03-11 21:34:17 +08:00
const ConcatenationScope = require("../ConcatenationScope");
2019-11-26 21:05:07 +08:00
const Generator = require("../Generator");
2024-11-01 04:19:07 +08:00
const {
CSS_URL_TYPES,
2025-07-03 17:06:45 +08:00
JS_AND_CSS_URL_TYPES,
2024-11-01 04:19:07 +08:00
JS_TYPES,
2025-07-03 17:06:45 +08:00
NO_TYPES
2024-11-01 04:19:07 +08:00
} = require("../ModuleSourceTypesConstants");
2019-11-26 21:05:07 +08:00
const RuntimeGlobals = require("../RuntimeGlobals");
/** @typedef {import("webpack-sources").Source} Source */
/** @typedef {import("../Generator").GenerateContext} GenerateContext */
2022-03-11 21:34:17 +08:00
/** @typedef {import("../Module").ConcatenationBailoutReasonContext} ConcatenationBailoutReasonContext */
2024-11-01 04:19:07 +08:00
/** @typedef {import("../Module").SourceTypes} SourceTypes */
2024-10-12 20:22:36 +08:00
/** @typedef {import("../ModuleGraph")} ModuleGraph */
2024-10-12 22:04:12 +08:00
/** @typedef {import("../NormalModule")} NormalModule */
2019-11-26 21:05:07 +08:00
class AssetSourceGenerator extends Generator {
2024-10-12 20:22:36 +08:00
/**
* @param {ModuleGraph} moduleGraph the module graph
*/
constructor(moduleGraph) {
super();
this._moduleGraph = moduleGraph;
}
2019-11-26 21:05:07 +08:00
/**
* @param {NormalModule} module module for which the code should be generated
* @param {GenerateContext} generateContext context for generate
2024-10-24 04:30:31 +08:00
* @returns {Source | null} generated code
2019-11-26 21:05:07 +08:00
*/
2022-03-11 21:34:17 +08:00
generate(
module,
2024-10-12 20:22:36 +08:00
{ type, concatenationScope, getData, runtimeTemplate, runtimeRequirements }
2022-03-11 21:34:17 +08:00
) {
2019-11-26 21:05:07 +08:00
const originalSource = module.originalSource();
2024-10-16 22:42:26 +08:00
const data = getData ? getData() : undefined;
2019-11-26 21:05:07 +08:00
2024-10-12 20:22:36 +08:00
switch (type) {
case "javascript": {
if (!originalSource) {
return new RawSource("");
}
2024-10-12 22:04:12 +08:00
const content = originalSource.source();
const encodedSource =
typeof content === "string" ? content : content.toString("utf8");
2019-11-26 21:05:07 +08:00
2024-10-12 20:22:36 +08:00
let sourceContent;
if (concatenationScope) {
concatenationScope.registerNamespaceExport(
ConcatenationScope.NAMESPACE_OBJECT_EXPORT
);
sourceContent = `${runtimeTemplate.supportsConst() ? "const" : "var"} ${
ConcatenationScope.NAMESPACE_OBJECT_EXPORT
} = ${JSON.stringify(encodedSource)};`;
} else {
runtimeRequirements.add(RuntimeGlobals.module);
sourceContent = `${RuntimeGlobals.module}.exports = ${JSON.stringify(
encodedSource
)};`;
}
return new RawSource(sourceContent);
}
case "css-url": {
if (!originalSource) {
2024-10-16 22:42:26 +08:00
return null;
2024-10-12 20:22:36 +08:00
}
2024-10-12 22:04:12 +08:00
const content = originalSource.source();
const encodedSource =
typeof content === "string" ? content : content.toString("utf8");
2024-10-12 20:22:36 +08:00
if (data) {
data.set("url", { [type]: encodedSource });
}
2024-10-24 04:30:31 +08:00
return null;
2024-10-12 20:22:36 +08:00
}
2024-10-24 04:30:31 +08:00
default:
return null;
2022-03-11 21:34:17 +08:00
}
}
/**
* @param {Error} error the error
* @param {NormalModule} module module for which the code should be generated
* @param {GenerateContext} generateContext context for generate
* @returns {Source | null} generated code
*/
generateError(error, module, generateContext) {
switch (generateContext.type) {
case "javascript": {
return new RawSource(
`throw new Error(${JSON.stringify(error.message)});`
);
}
default:
return null;
}
}
2022-03-11 21:34:17 +08:00
/**
* @param {NormalModule} module module for which the bailout reason should be determined
* @param {ConcatenationBailoutReasonContext} context context
* @returns {string | undefined} reason why this module can't be concatenated, undefined when it can be concatenated
*/
getConcatenationBailoutReason(module, context) {
return undefined;
2019-11-26 21:05:07 +08:00
}
/**
* @param {NormalModule} module fresh module
2024-11-01 04:19:07 +08:00
* @returns {SourceTypes} available types (do not mutate)
2019-11-26 21:05:07 +08:00
*/
getTypes(module) {
/** @type {Set<string>} */
2024-10-12 20:22:36 +08:00
const sourceTypes = new Set();
const connections = this._moduleGraph.getIncomingConnections(module);
for (const connection of connections) {
if (!connection.originModule) {
continue;
}
sourceTypes.add(connection.originModule.type.split("/")[0]);
}
if (sourceTypes.size > 0) {
if (sourceTypes.has("javascript") && sourceTypes.has("css")) {
return JS_AND_CSS_URL_TYPES;
} else if (sourceTypes.has("css")) {
return CSS_URL_TYPES;
}
2024-10-12 20:22:36 +08:00
return JS_TYPES;
}
return NO_TYPES;
2019-11-26 21:05:07 +08:00
}
/**
* @param {NormalModule} module the module
* @param {string=} type source type
* @returns {number} estimate size of the module
*/
2019-11-27 04:24:41 +08:00
getSize(module, type) {
2019-11-26 21:05:07 +08:00
const originalSource = module.originalSource();
if (!originalSource) {
return 0;
}
// Example: m.exports="abcd"
return originalSource.size() + 12;
}
}
module.exports = AssetSourceGenerator;