WXL
4 天以前 2cc85c64f1c64a2dbaeae276a3e2ca8420de76b7
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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Yuta Hiroto @hiroppy
*/
 
"use strict";
 
const {
    ASSET_MODULE_TYPE,
    ASSET_MODULE_TYPE_BYTES,
    ASSET_MODULE_TYPE_INLINE,
    ASSET_MODULE_TYPE_RESOURCE,
    ASSET_MODULE_TYPE_SOURCE
} = require("../ModuleTypeConstants");
const { compareModulesByFullName } = require("../util/comparators");
const memoize = require("../util/memoize");
 
/** @typedef {import("webpack-sources").Source} Source */
/** @typedef {import("schema-utils").Schema} Schema */
/** @typedef {import("../../declarations/WebpackOptions").AssetGeneratorDataUrl} AssetGeneratorDataUrl */
/** @typedef {import("../../declarations/WebpackOptions").AssetModuleOutputPath} AssetModuleOutputPath */
/** @typedef {import("../../declarations/WebpackOptions").RawPublicPath} RawPublicPath */
/** @typedef {import("../../declarations/WebpackOptions").FilenameTemplate} FilenameTemplate */
/** @typedef {import("../Compilation").AssetInfo} AssetInfo */
/** @typedef {import("../Compiler")} Compiler */
/** @typedef {import("../Module").BuildInfo} BuildInfo */
/** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */
/** @typedef {import("../NormalModule")} NormalModule */
/** @typedef {import("../NormalModule").NormalModuleCreateData} NormalModuleCreateData */
 
/**
 * Returns definition.
 * @param {string} name name of definitions
 * @returns {Schema} definition
 */
const getSchema = (name) => {
    const { definitions } = require("../../schemas/WebpackOptions.json");
 
    return {
        definitions,
        oneOf: [{ $ref: `#/definitions/${name}` }]
    };
};
 
const generatorValidationOptions = {
    name: "Asset Modules Plugin",
    baseDataPath: "generator"
};
 
const getAssetGenerator = memoize(() => require("./AssetGenerator"));
const getAssetParser = memoize(() => require("./AssetParser"));
const getAssetSourceParser = memoize(() => require("./AssetSourceParser"));
const getAssetBytesParser = memoize(() => require("./AssetBytesParser"));
const getAssetSourceGenerator = memoize(() =>
    require("./AssetSourceGenerator")
);
const getAssetBytesGenerator = memoize(() => require("./AssetBytesGenerator"));
const getNormalModule = memoize(() => require("../NormalModule"));
 
const type = ASSET_MODULE_TYPE;
const PLUGIN_NAME = "AssetModulesPlugin";
 
/**
 * Represents the asset modules plugin runtime component.
 * @typedef {object} AssetModulesPluginOptions
 * @property {boolean=} sideEffectFree
 */
 
class AssetModulesPlugin {
    /**
     * Creates an instance of AssetModulesPlugin.
     * @param {AssetModulesPluginOptions} options options
     */
    constructor(options) {
        this.options = options;
    }
 
    /**
     * Applies the plugin by registering its hooks on the compiler.
     * @param {Compiler} compiler the compiler instance
     * @returns {void}
     */
    apply(compiler) {
        compiler.hooks.compilation.tap(
            PLUGIN_NAME,
            (compilation, { normalModuleFactory }) => {
                const NormalModule = getNormalModule();
                for (const type of [
                    ASSET_MODULE_TYPE,
                    ASSET_MODULE_TYPE_BYTES,
                    ASSET_MODULE_TYPE_INLINE,
                    ASSET_MODULE_TYPE_RESOURCE,
                    ASSET_MODULE_TYPE_SOURCE
                ]) {
                    normalModuleFactory.hooks.createModuleClass
                        .for(type)
                        .tap(PLUGIN_NAME, (createData, _resolveData) => {
                            // TODO create the module via new AssetModule with its own properties
                            const module = new NormalModule(
                                /** @type {NormalModuleCreateData} */
                                (createData)
                            );
                            if (this.options.sideEffectFree) {
                                module.factoryMeta = { sideEffectFree: true };
                            }
 
                            return module;
                        });
                }
 
                normalModuleFactory.hooks.createParser
                    .for(ASSET_MODULE_TYPE)
                    .tap(PLUGIN_NAME, (parserOptions) => {
                        compiler.validate(
                            () => getSchema("AssetParserOptions"),
                            parserOptions,
                            {
                                name: "Asset Modules Plugin",
                                baseDataPath: "parser"
                            },
                            (options) =>
                                require("../../schemas/plugins/asset/AssetParserOptions.check")(
                                    options
                                )
                        );
 
                        let dataUrlCondition = parserOptions.dataUrlCondition;
                        if (!dataUrlCondition || typeof dataUrlCondition === "object") {
                            dataUrlCondition = {
                                maxSize: 8096,
                                ...dataUrlCondition
                            };
                        }
 
                        const AssetParser = getAssetParser();
 
                        return new AssetParser(dataUrlCondition);
                    });
                normalModuleFactory.hooks.createParser
                    .for(ASSET_MODULE_TYPE_INLINE)
                    .tap(PLUGIN_NAME, (_parserOptions) => {
                        const AssetParser = getAssetParser();
 
                        return new AssetParser(true);
                    });
                normalModuleFactory.hooks.createParser
                    .for(ASSET_MODULE_TYPE_RESOURCE)
                    .tap(PLUGIN_NAME, (_parserOptions) => {
                        const AssetParser = getAssetParser();
 
                        return new AssetParser(false);
                    });
                normalModuleFactory.hooks.createParser
                    .for(ASSET_MODULE_TYPE_SOURCE)
                    .tap(PLUGIN_NAME, (_parserOptions) => {
                        const AssetSourceParser = getAssetSourceParser();
 
                        return new AssetSourceParser();
                    });
                normalModuleFactory.hooks.createParser
                    .for(ASSET_MODULE_TYPE_BYTES)
                    .tap(PLUGIN_NAME, (_parserOptions) => {
                        const AssetBytesParser = getAssetBytesParser();
 
                        return new AssetBytesParser();
                    });
 
                for (const type of [
                    ASSET_MODULE_TYPE,
                    ASSET_MODULE_TYPE_INLINE,
                    ASSET_MODULE_TYPE_RESOURCE
                ]) {
                    normalModuleFactory.hooks.createGenerator
                        .for(type)
                        .tap(PLUGIN_NAME, (generatorOptions) => {
                            switch (type) {
                                case ASSET_MODULE_TYPE: {
                                    compiler.validate(
                                        () => getSchema("AssetGeneratorOptions"),
                                        generatorOptions,
                                        generatorValidationOptions,
                                        (options) =>
                                            require("../../schemas/plugins/asset/AssetGeneratorOptions.check")(
                                                options
                                            )
                                    );
                                    break;
                                }
                                case ASSET_MODULE_TYPE_RESOURCE: {
                                    compiler.validate(
                                        () => getSchema("AssetResourceGeneratorOptions"),
                                        generatorOptions,
                                        generatorValidationOptions,
                                        (options) =>
                                            require("../../schemas/plugins/asset/AssetResourceGeneratorOptions.check")(
                                                options
                                            )
                                    );
                                    break;
                                }
                                case ASSET_MODULE_TYPE_INLINE: {
                                    compiler.validate(
                                        () => getSchema("AssetInlineGeneratorOptions"),
                                        generatorOptions,
                                        generatorValidationOptions,
                                        (options) =>
                                            require("../../schemas/plugins/asset/AssetInlineGeneratorOptions.check")(
                                                options
                                            )
                                    );
                                    break;
                                }
                            }
 
                            /** @type {undefined | AssetGeneratorDataUrl} */
                            let dataUrl;
                            if (type !== ASSET_MODULE_TYPE_RESOURCE) {
                                dataUrl = generatorOptions.dataUrl;
                                if (!dataUrl || typeof dataUrl === "object") {
                                    dataUrl = {
                                        encoding: undefined,
                                        mimetype: undefined,
                                        ...dataUrl
                                    };
                                }
                            }
 
                            /** @type {undefined | FilenameTemplate} */
                            let filename;
                            /** @type {undefined | RawPublicPath} */
                            let publicPath;
                            /** @type {undefined | AssetModuleOutputPath} */
                            let outputPath;
                            if (type !== ASSET_MODULE_TYPE_INLINE) {
                                filename = generatorOptions.filename;
                                publicPath = generatorOptions.publicPath;
                                outputPath = generatorOptions.outputPath;
                            }
 
                            const AssetGenerator = getAssetGenerator();
 
                            return new AssetGenerator(
                                compilation.moduleGraph,
                                dataUrl,
                                filename,
                                publicPath,
                                outputPath,
                                generatorOptions.emit !== false
                            );
                        });
                }
                normalModuleFactory.hooks.createGenerator
                    .for(ASSET_MODULE_TYPE_SOURCE)
                    .tap(PLUGIN_NAME, () => {
                        const AssetSourceGenerator = getAssetSourceGenerator();
 
                        return new AssetSourceGenerator(compilation.moduleGraph);
                    });
 
                normalModuleFactory.hooks.createGenerator
                    .for(ASSET_MODULE_TYPE_BYTES)
                    .tap(PLUGIN_NAME, () => {
                        const AssetBytesGenerator = getAssetBytesGenerator();
 
                        return new AssetBytesGenerator(compilation.moduleGraph);
                    });
 
                compilation.hooks.renderManifest.tap(PLUGIN_NAME, (result, options) => {
                    const { chunkGraph } = compilation;
                    const { chunk, codeGenerationResults, runtimeTemplate } = options;
 
                    const modules = chunkGraph.getOrderedChunkModulesIterableBySourceType(
                        chunk,
                        ASSET_MODULE_TYPE,
                        compareModulesByFullName(compilation.compiler)
                    );
                    if (modules) {
                        for (const module of modules) {
                            try {
                                const codeGenResult = codeGenerationResults.get(
                                    module,
                                    chunk.runtime
                                );
                                const buildInfo = /** @type {BuildInfo} */ (module.buildInfo);
                                const data =
                                    /** @type {NonNullable<CodeGenerationResult["data"]>} */
                                    (codeGenResult.data);
                                const errored = module.getNumberOfErrors() > 0;
 
                                /** @type {string} */
                                let entryFilename;
                                /** @type {AssetInfo} */
                                let entryInfo;
                                /** @type {string} */
                                let entryHash;
 
                                if (errored) {
                                    const erroredModule = /** @type {NormalModule} */ (module);
                                    const AssetGenerator = getAssetGenerator();
                                    const [fullContentHash, contentHash] =
                                        AssetGenerator.getFullContentHash(
                                            erroredModule,
                                            runtimeTemplate
                                        );
                                    const { filename, assetInfo } =
                                        AssetGenerator.getFilenameWithInfo(
                                            erroredModule,
                                            {
                                                filename:
                                                    erroredModule.generatorOptions &&
                                                    erroredModule.generatorOptions.filename,
                                                outputPath:
                                                    erroredModule.generatorOptions &&
                                                    erroredModule.generatorOptions.outputPath
                                            },
                                            {
                                                runtime: chunk.runtime,
                                                runtimeTemplate,
                                                chunkGraph
                                            },
                                            contentHash
                                        );
                                    entryFilename = filename;
                                    entryInfo = assetInfo;
                                    entryHash = fullContentHash;
                                } else {
                                    entryFilename =
                                        /** @type {string} */
                                        (buildInfo.filename || data.get("filename"));
                                    entryInfo =
                                        /** @type {AssetInfo} */
                                        (buildInfo.assetInfo || data.get("assetInfo"));
                                    entryHash =
                                        /** @type {string} */
                                        (buildInfo.fullContentHash || data.get("fullContentHash"));
                                }
 
                                result.push({
                                    render: () =>
                                        /** @type {Source} */ (codeGenResult.sources.get(type)),
                                    filename: entryFilename,
                                    info: entryInfo,
                                    auxiliary: true,
                                    identifier: `assetModule${chunkGraph.getModuleId(module)}`,
                                    hash: entryHash
                                });
                            } catch (err) {
                                /** @type {Error} */ (err).message +=
                                    `\nduring rendering of asset ${module.identifier()}`;
                                throw err;
                            }
                        }
                    }
 
                    return result;
                });
 
                compilation.hooks.prepareModuleExecution.tap(
                    PLUGIN_NAME,
                    (options, context) => {
                        const { codeGenerationResult } = options;
                        const source = codeGenerationResult.sources.get(ASSET_MODULE_TYPE);
                        if (source === undefined) return;
                        const data =
                            /** @type {NonNullable<CodeGenerationResult["data"]>} */
                            (codeGenerationResult.data);
                        context.assets.set(
                            /** @type {string} */
                            (data.get("filename")),
                            {
                                source,
                                info: data.get("assetInfo")
                            }
                        );
                    }
                );
            }
        );
    }
}
 
module.exports = AssetModulesPlugin;