WXL
3 天以前 3bd962a6d7f61239c020e2dbbeb7341e5b842dd1
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
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Tobias Koppers @sokra
*/
 
"use strict";
 
const { RawSource } = require("webpack-sources");
const AsyncDependenciesBlock = require("../AsyncDependenciesBlock");
const Dependency = require("../Dependency");
const Module = require("../Module");
const ModuleFactory = require("../ModuleFactory");
const { JAVASCRIPT_TYPES } = require("../ModuleSourceTypeConstants");
const { JAVASCRIPT_TYPE } = require("../ModuleSourceTypeConstants");
const {
    WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY
} = require("../ModuleTypeConstants");
const RuntimeGlobals = require("../RuntimeGlobals");
const Template = require("../Template");
const CommonJsRequireDependency = require("../dependencies/CommonJsRequireDependency");
const { registerNotSerializable } = require("../util/serialization");
 
/** @typedef {import("../config/defaults").WebpackOptionsNormalizedWithDefaults} WebpackOptions */
/** @typedef {import("../Compilation")} Compilation */
/** @typedef {import("../Compiler")} Compiler */
/** @typedef {import("../Dependency").UpdateHashContext} UpdateHashContext */
/** @typedef {import("../Module").BuildCallback} BuildCallback */
/** @typedef {import("../Module").BuildMeta} BuildMeta */
/** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */
/** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */
/** @typedef {import("../Module").LibIdentOptions} LibIdentOptions */
/** @typedef {import("../Module").LibIdent} LibIdent */
/** @typedef {import("../Module").NeedBuildCallback} NeedBuildCallback */
/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */
/** @typedef {import("../Module").SourceTypes} SourceTypes */
/** @typedef {import("../Module").Sources} Sources */
/** @typedef {import("../Module").RuntimeRequirements} RuntimeRequirements */
/** @typedef {import("../ModuleFactory").ModuleFactoryCallback} ModuleFactoryCallback */
/** @typedef {import("../ModuleFactory").ModuleFactoryCreateData} ModuleFactoryCreateData */
/** @typedef {import("../RequestShortener")} RequestShortener */
/** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */
/** @typedef {import("../dependencies/HarmonyImportDependency")} HarmonyImportDependency */
/** @typedef {import("../util/Hash")} Hash */
/** @typedef {import("../util/fs").InputFileSystem} InputFileSystem */
 
/** @typedef {{ client: string, data: string, active: boolean }} ModuleResult */
 
/**
 * Defines the backend api type used by this module.
 * @typedef {object} BackendApi
 * @property {(callback: (err?: (Error | null)) => void) => void} dispose
 * @property {(module: Module) => ModuleResult} module
 */
 
const HMR_DEPENDENCY_TYPES = new Set([
    "import.meta.webpackHot.accept",
    "import.meta.webpackHot.decline",
    "module.hot.accept",
    "module.hot.decline"
]);
 
/**
 * Checks true, if the module should be selected.
 * @param {Options["test"]} test test option
 * @param {Module} module the module
 * @returns {boolean | null | string} true, if the module should be selected
 */
const checkTest = (test, module) => {
    if (test === undefined) return true;
    if (typeof test === "function") {
        return test(module);
    }
    if (typeof test === "string") {
        const name = module.nameForCondition();
        return name && name.startsWith(test);
    }
    if (test instanceof RegExp) {
        const name = module.nameForCondition();
        return name && test.test(name);
    }
    return false;
};
 
class LazyCompilationDependency extends Dependency {
    /**
     * Creates an instance of LazyCompilationDependency.
     * @param {LazyCompilationProxyModule} proxyModule proxy module
     */
    constructor(proxyModule) {
        super();
        this.proxyModule = proxyModule;
    }
 
    get category() {
        return "esm";
    }
 
    get type() {
        return "lazy import()";
    }
 
    /**
     * Returns an identifier to merge equal requests.
     * @returns {string | null} an identifier to merge equal requests
     */
    getResourceIdentifier() {
        return this.proxyModule.originalModule.identifier();
    }
}
 
registerNotSerializable(LazyCompilationDependency);
 
class LazyCompilationProxyModule extends Module {
    /**
     * Creates an instance of LazyCompilationProxyModule.
     * @param {string} context context
     * @param {Module} originalModule an original module
     * @param {string} request request
     * @param {ModuleResult["client"]} client client
     * @param {ModuleResult["data"]} data data
     * @param {ModuleResult["active"]} active true when active, otherwise false
     */
    constructor(context, originalModule, request, client, data, active) {
        super(
            WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY,
            context,
            originalModule.layer
        );
        this.originalModule = originalModule;
        this.request = request;
        this.client = client;
        this.data = data;
        this.active = active;
    }
 
    /**
     * Returns the unique identifier used to reference this module.
     * @returns {string} a unique identifier of the module
     */
    identifier() {
        return `${WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY}|${this.originalModule.identifier()}`;
    }
 
    /**
     * Returns a human-readable identifier for this module.
     * @param {RequestShortener} requestShortener the request shortener
     * @returns {string} a user readable identifier of the module
     */
    readableIdentifier(requestShortener) {
        return `${WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY} ${this.originalModule.readableIdentifier(
            requestShortener
        )}`;
    }
 
    /**
     * Assuming this module is in the cache. Update the (cached) module with
     * the fresh module from the factory. Usually updates internal references
     * and properties.
     * @param {Module} module fresh module
     * @returns {void}
     */
    updateCacheModule(module) {
        super.updateCacheModule(module);
        const m = /** @type {LazyCompilationProxyModule} */ (module);
        this.originalModule = m.originalModule;
        this.request = m.request;
        this.client = m.client;
        this.data = m.data;
        this.active = m.active;
    }
 
    /**
     * Gets the library identifier.
     * @param {LibIdentOptions} options options
     * @returns {LibIdent | null} an identifier for library inclusion
     */
    libIdent(options) {
        return `${this.originalModule.libIdent(
            options
        )}!${WEBPACK_MODULE_TYPE_LAZY_COMPILATION_PROXY}`;
    }
 
    /**
     * Checks whether the module needs to be rebuilt for the current build state.
     * @param {NeedBuildContext} context context info
     * @param {NeedBuildCallback} callback callback function, returns true, if the module needs a rebuild
     * @returns {void}
     */
    needBuild(context, callback) {
        callback(null, !this.buildInfo || this.buildInfo.active !== this.active);
    }
 
    /**
     * Builds the module using the provided compilation context.
     * @param {WebpackOptions} options webpack options
     * @param {Compilation} compilation the compilation
     * @param {ResolverWithOptions} resolver the resolver
     * @param {InputFileSystem} fs the file system
     * @param {BuildCallback} callback callback function
     * @returns {void}
     */
    build(options, compilation, resolver, fs, callback) {
        this.buildInfo = {
            active: this.active
        };
        /** @type {BuildMeta} */
        this.buildMeta = {};
        this.clearDependenciesAndBlocks();
        const dep = new CommonJsRequireDependency(this.client);
        this.addDependency(dep);
        if (this.active) {
            const dep = new LazyCompilationDependency(this);
            const block = new AsyncDependenciesBlock({});
            block.addDependency(dep);
            this.addBlock(block);
        }
        callback();
    }
 
    /**
     * Returns the source types this module can generate.
     * @returns {SourceTypes} types available (do not mutate)
     */
    getSourceTypes() {
        return JAVASCRIPT_TYPES;
    }
 
    /**
     * Returns the estimated size for the requested source type.
     * @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 200;
    }
 
    /**
     * Generates code and runtime requirements for this module.
     * @param {CodeGenerationContext} context context for code generation
     * @returns {CodeGenerationResult} result
     */
    codeGeneration({ runtimeTemplate, chunkGraph, moduleGraph }) {
        /** @type {Sources} */
        const sources = new Map();
        /** @type {RuntimeRequirements} */
        const runtimeRequirements = new Set();
        runtimeRequirements.add(RuntimeGlobals.module);
        const clientDep = /** @type {CommonJsRequireDependency} */ (
            this.dependencies[0]
        );
        const clientModule = moduleGraph.getModule(clientDep);
        const block = this.blocks[0];
        const client = Template.asString([
            `var client = ${runtimeTemplate.moduleExports({
                module: clientModule,
                chunkGraph,
                request: clientDep.userRequest,
                runtimeRequirements
            })}`,
            `var data = ${JSON.stringify(this.data)};`
        ]);
        const keepActive = Template.asString([
            `var dispose = client.keepAlive({ data: data, active: ${JSON.stringify(
                Boolean(block)
            )}, module: module, onError: onError });`
        ]);
        /** @type {string} */
        let source;
        if (block) {
            const dep = block.dependencies[0];
            const module = /** @type {Module} */ (moduleGraph.getModule(dep));
            source = Template.asString([
                client,
                `module.exports = ${runtimeTemplate.moduleNamespacePromise({
                    chunkGraph,
                    block,
                    module,
                    request: this.request,
                    dependency: dep,
                    strict: false, // TODO this should be inherited from the original module
                    message: "import()",
                    runtimeRequirements
                })};`,
                "if (module.hot) {",
                Template.indent([
                    "module.hot.accept();",
                    `module.hot.accept(${JSON.stringify(
                        chunkGraph.getModuleId(module)
                    )}, function() { module.hot.invalidate(); });`,
                    "module.hot.dispose(function(data) { delete data.resolveSelf; dispose(data); });",
                    "if (module.hot.data && module.hot.data.resolveSelf) module.hot.data.resolveSelf(module.exports);"
                ]),
                "}",
                "function onError() { /* ignore */ }",
                keepActive
            ]);
        } else {
            source = Template.asString([
                client,
                "var resolveSelf, onError;",
                "module.exports = new Promise(function(resolve, reject) { resolveSelf = resolve; onError = reject; });",
                "if (module.hot) {",
                Template.indent([
                    "module.hot.accept();",
                    "if (module.hot.data && module.hot.data.resolveSelf) module.hot.data.resolveSelf(module.exports);",
                    "module.hot.dispose(function(data) { data.resolveSelf = resolveSelf; dispose(data); });"
                ]),
                "}",
                keepActive
            ]);
        }
        sources.set(JAVASCRIPT_TYPE, new RawSource(source));
        return {
            sources,
            runtimeRequirements
        };
    }
 
    /**
     * Updates the hash with the data contributed by this instance.
     * @param {Hash} hash the hash used to track dependencies
     * @param {UpdateHashContext} context context
     * @returns {void}
     */
    updateHash(hash, context) {
        super.updateHash(hash, context);
        hash.update(this.active ? "active" : "");
        hash.update(JSON.stringify(this.data));
    }
}
 
registerNotSerializable(LazyCompilationProxyModule);
 
class LazyCompilationDependencyFactory extends ModuleFactory {
    constructor() {
        super();
    }
 
    /**
     * Processes the provided data.
     * @param {ModuleFactoryCreateData} data data object
     * @param {ModuleFactoryCallback} callback callback
     * @returns {void}
     */
    create(data, callback) {
        const dependency =
            /** @type {LazyCompilationDependency} */
            (data.dependencies[0]);
        callback(null, {
            module: dependency.proxyModule.originalModule
        });
    }
}
 
/**
 * Defines the backend handler callback.
 * @callback BackendHandler
 * @param {Compiler} compiler compiler
 * @param {(err: Error | null, backendApi?: BackendApi) => void} callback callback
 * @returns {void}
 */
 
/**
 * Defines the promise backend handler callback.
 * @callback PromiseBackendHandler
 * @param {Compiler} compiler compiler
 * @returns {Promise<BackendApi>} backend
 */
 
/** @typedef {BackendHandler | PromiseBackendHandler} BackEnd */
 
/** @typedef {(module: Module) => boolean} TestFn */
 
/**
 * Defines the options type used by this module.
 * @typedef {object} Options options
 * @property {BackEnd} backend the backend
 * @property {boolean=} entries
 * @property {boolean=} imports
 * @property {RegExp | string | TestFn=} test additional filter for lazy compiled entrypoint modules
 */
 
const PLUGIN_NAME = "LazyCompilationPlugin";
 
class LazyCompilationPlugin {
    /**
     * Creates an instance of LazyCompilationPlugin.
     * @param {Options} options options
     */
    constructor({ backend, entries, imports, test }) {
        this.backend = backend;
        this.entries = entries;
        this.imports = imports;
        this.test = test;
    }
 
    /**
     * Applies the plugin by registering its hooks on the compiler.
     * @param {Compiler} compiler the compiler instance
     * @returns {void}
     */
    apply(compiler) {
        /** @type {BackendApi} */
        let backend;
        compiler.hooks.beforeCompile.tapAsync(PLUGIN_NAME, (params, callback) => {
            if (backend !== undefined) return callback();
            const promise = this.backend(compiler, (err, result) => {
                if (err) return callback(err);
                backend = /** @type {BackendApi} */ (result);
                callback();
            });
            if (promise && promise.then) {
                promise.then((b) => {
                    backend = b;
                    callback();
                }, callback);
            }
        });
        compiler.hooks.thisCompilation.tap(
            PLUGIN_NAME,
            (compilation, { normalModuleFactory }) => {
                normalModuleFactory.hooks.module.tap(
                    PLUGIN_NAME,
                    (module, createData, resolveData) => {
                        if (
                            resolveData.dependencies.every((dep) =>
                                HMR_DEPENDENCY_TYPES.has(dep.type)
                            )
                        ) {
                            // for HMR only resolving, try to determine if the HMR accept/decline refers to
                            // an import() or not
                            const hmrDep = resolveData.dependencies[0];
                            const originModule =
                                /** @type {Module} */
                                (compilation.moduleGraph.getParentModule(hmrDep));
                            const isReferringToDynamicImport = originModule.blocks.some(
                                (block) =>
                                    block.dependencies.some(
                                        (dep) =>
                                            dep.type === "import()" &&
                                            /** @type {HarmonyImportDependency} */ (dep).request ===
                                                hmrDep.request
                                    )
                            );
                            if (!isReferringToDynamicImport) return module;
                        } else if (
                            !resolveData.dependencies.every(
                                (dep) =>
                                    HMR_DEPENDENCY_TYPES.has(dep.type) ||
                                    (this.imports &&
                                        (dep.type === "import()" ||
                                            dep.type === "import() context element")) ||
                                    (this.entries && dep.type === "entry")
                            )
                        ) {
                            return module;
                        }
                        if (
                            /webpack[/\\]hot[/\\]|webpack-dev-server[/\\]client|webpack-hot-middleware[/\\]client/.test(
                                resolveData.request
                            ) ||
                            !checkTest(this.test, module)
                        ) {
                            return module;
                        }
                        const moduleInfo = backend.module(module);
                        if (!moduleInfo) return module;
                        const { client, data, active } = moduleInfo;
 
                        return new LazyCompilationProxyModule(
                            compiler.context,
                            module,
                            resolveData.request,
                            client,
                            data,
                            active
                        );
                    }
                );
                compilation.dependencyFactories.set(
                    LazyCompilationDependency,
                    new LazyCompilationDependencyFactory()
                );
            }
        );
        compiler.hooks.shutdown.tapAsync(PLUGIN_NAME, (callback) => {
            backend.dispose(callback);
        });
    }
}
 
module.exports = LazyCompilationPlugin;