xwt
2025-07-04 b76e716ff4656191d73eba398e9eb39ee975e13b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Sergey Melyukov @smelukov
*/
 
"use strict";
 
const { RawSource } = require("webpack-sources");
const ConcatenationScope = require("../ConcatenationScope");
const Generator = require("../Generator");
const {
    NO_TYPES,
    CSS_URL_TYPES,
    JS_TYPES,
    JS_AND_CSS_URL_TYPES
} = require("../ModuleSourceTypesConstants");
const RuntimeGlobals = require("../RuntimeGlobals");
 
/** @typedef {import("webpack-sources").Source} Source */
/** @typedef {import("../Generator").GenerateContext} GenerateContext */
/** @typedef {import("../Module").ConcatenationBailoutReasonContext} ConcatenationBailoutReasonContext */
/** @typedef {import("../Module").SourceTypes} SourceTypes */
/** @typedef {import("../ModuleGraph")} ModuleGraph */
/** @typedef {import("../NormalModule")} NormalModule */
 
class AssetSourceGenerator extends Generator {
    /**
     * @param {ModuleGraph} moduleGraph the module graph
     */
    constructor(moduleGraph) {
        super();
 
        this._moduleGraph = moduleGraph;
    }
 
    /**
     * @param {NormalModule} module module for which the code should be generated
     * @param {GenerateContext} generateContext context for generate
     * @returns {Source | null} generated code
     */
    generate(
        module,
        { type, concatenationScope, getData, runtimeTemplate, runtimeRequirements }
    ) {
        const originalSource = module.originalSource();
        const data = getData ? getData() : undefined;
 
        switch (type) {
            case "javascript": {
                if (!originalSource) {
                    return new RawSource("");
                }
 
                const content = originalSource.source();
                const encodedSource =
                    typeof content === "string" ? content : content.toString("utf-8");
 
                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) {
                    return null;
                }
 
                const content = originalSource.source();
                const encodedSource =
                    typeof content === "string" ? content : content.toString("utf-8");
 
                if (data) {
                    data.set("url", { [type]: encodedSource });
                }
                return null;
            }
            default:
                return null;
        }
    }
 
    /**
     * @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;
        }
    }
 
    /**
     * @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;
    }
 
    /**
     * @param {NormalModule} module fresh module
     * @returns {SourceTypes} available types (do not mutate)
     */
    getTypes(module) {
        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.has("javascript") && sourceTypes.has("css")) {
            return JS_AND_CSS_URL_TYPES;
        } else if (sourceTypes.has("javascript")) {
            return JS_TYPES;
        } else if (sourceTypes.has("css")) {
            return CSS_URL_TYPES;
        }
 
        return NO_TYPES;
    }
 
    /**
     * @param {NormalModule} module the module
     * @param {string=} type source type
     * @returns {number} estimate size of the module
     */
    getSize(module, type) {
        const originalSource = module.originalSource();
 
        if (!originalSource) {
            return 0;
        }
 
        // Example: m.exports="abcd"
        return originalSource.size() + 12;
    }
}
 
module.exports = AssetSourceGenerator;