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
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
/*
    MIT License http://www.opensource.org/licenses/mit-license.php
    Author Ivan Kopeykin @vankop
*/
 
"use strict";
 
const { pathToFileURL } = require("url");
const { SyncBailHook } = require("tapable");
const Compilation = require("../Compilation");
const DefinePlugin = require("../DefinePlugin");
const {
    JAVASCRIPT_MODULE_TYPE_AUTO,
    JAVASCRIPT_MODULE_TYPE_ESM
} = require("../ModuleTypeConstants");
const RuntimeGlobals = require("../RuntimeGlobals");
const Template = require("../Template");
const BasicEvaluatedExpression = require("../javascript/BasicEvaluatedExpression");
const {
    evaluateToIdentifier,
    evaluateToNumber,
    evaluateToString,
    toConstantDependency
} = require("../javascript/JavascriptParserHelpers");
const { propertyAccess } = require("../util/property");
const ConstDependency = require("./ConstDependency");
const ModuleInitFragmentDependency = require("./ModuleInitFragmentDependency");
 
/** @typedef {import("estree").MemberExpression} MemberExpression */
/** @typedef {import("estree").Identifier} Identifier */
/** @typedef {import("../../declarations/WebpackOptions").JavascriptParserOptions} JavascriptParserOptions */
/** @typedef {import("../Compiler")} Compiler */
/** @typedef {import("../Dependency").DependencyLocation} DependencyLocation */
/** @typedef {import("../NormalModule")} NormalModule */
/** @typedef {import("../javascript/JavascriptParser")} Parser */
/** @typedef {import("../javascript/JavascriptParser").Range} Range */
/** @typedef {import("../javascript/JavascriptParser").Members} Members */
/** @typedef {import("../javascript/JavascriptParser").DestructuringAssignmentProperty} DestructuringAssignmentProperty */
/** @typedef {import("./ConstDependency").RawRuntimeRequirements} RawRuntimeRequirements */
 
const PLUGIN_NAME = "ImportMetaPlugin";
 
/** @type {WeakMap<Compilation, { stringify: string, env: Record<string, string> }>} */
const compilationMetaEnvMap = new WeakMap();
 
/**
 * Collect import.meta.env definitions from DefinePlugin and build JSON string
 * @param {Compilation} compilation the compilation
 * @returns {{ stringify: string, env: Record<string, string> }} env object as JSON string
 */
const collectImportMetaEnvDefinitions = (compilation) => {
    const cached = compilationMetaEnvMap.get(compilation);
    if (cached) {
        return cached;
    }
 
    const definePluginHooks = DefinePlugin.getCompilationHooks(compilation);
    const definitions = definePluginHooks.definitions.call({});
    /** @type {Record<string, string>} */
    const env = {};
    /** @type {string[]} */
    const pairs = [];
    for (const key of Object.keys(definitions)) {
        if (key.startsWith("import.meta.env.")) {
            const envKey = key.slice("import.meta.env.".length);
            const value = definitions[key];
            pairs.push(`${JSON.stringify(envKey)}:${value}`);
            env[envKey] = /** @type {string} */ (value);
        }
    }
    const result = { stringify: `{${pairs.join(",")}}`, env };
    compilationMetaEnvMap.set(compilation, result);
    return result;
};
 
/**
 * Defines the import meta plugin hooks type used by this module.
 * @typedef {object} ImportMetaPluginHooks
 * @property {SyncBailHook<[DestructuringAssignmentProperty], string | void>} propertyInDestructuring
 */
 
/** @type {WeakMap<Compilation, ImportMetaPluginHooks>} */
const compilationHooksMap = new WeakMap();
 
class ImportMetaPlugin {
    /**
     * Returns the attached hooks.
     * @param {Compilation} compilation the compilation
     * @returns {ImportMetaPluginHooks} the attached hooks
     */
    static getCompilationHooks(compilation) {
        if (!(compilation instanceof Compilation)) {
            throw new TypeError(
                "The 'compilation' argument must be an instance of Compilation"
            );
        }
        let hooks = compilationHooksMap.get(compilation);
        if (hooks === undefined) {
            hooks = {
                propertyInDestructuring: new SyncBailHook(["property"])
            };
            compilationHooksMap.set(compilation, hooks);
        }
        return hooks;
    }
 
    /**
     * Applies the plugin by registering its hooks on the compiler.
     * @param {Compiler} compiler compiler
     */
    apply(compiler) {
        compiler.hooks.compilation.tap(
            PLUGIN_NAME,
            (compilation, { normalModuleFactory }) => {
                const hooks = ImportMetaPlugin.getCompilationHooks(compilation);
 
                compilation.dependencyTemplates.set(
                    ModuleInitFragmentDependency,
                    new ModuleInitFragmentDependency.Template()
                );
 
                /**
                 * Returns file url.
                 * @param {NormalModule} module module
                 * @returns {string} file url
                 */
                const getUrl = (module) => pathToFileURL(module.resource).toString();
                /**
                 * Processes the provided parser.
                 * @param {Parser} parser parser parser
                 * @param {JavascriptParserOptions} parserOptions parserOptions
                 * @returns {void}
                 */
                const parserHandler = (parser, { importMeta }) => {
                    if (importMeta === false) {
                        const { importMetaName } = compilation.outputOptions;
                        if (importMetaName === "import.meta") return;
 
                        parser.hooks.expression
                            .for("import.meta")
                            .tap(PLUGIN_NAME, (metaProperty) => {
                                const dep = new ConstDependency(
                                    /** @type {string} */ (importMetaName),
                                    /** @type {Range} */ (metaProperty.range)
                                );
                                dep.loc = /** @type {DependencyLocation} */ (metaProperty.loc);
                                parser.state.module.addPresentationalDependency(dep);
                                return true;
                            });
                        return;
                    }
 
                    // import.meta direct
                    const webpackVersion = Number.parseInt(
                        require("../../package.json").version,
                        10
                    );
                    const importMetaUrl = () =>
                        JSON.stringify(getUrl(parser.state.module));
                    const importMetaWebpackVersion = () => JSON.stringify(webpackVersion);
                    /**
                     * Import meta unknown property.
                     * @param {Members} members members
                     * @returns {string} error message
                     */
                    const importMetaUnknownProperty = (members) => {
                        if (importMeta === "preserve-unknown") {
                            return `import.meta${propertyAccess(members, 0)}`;
                        }
                        return `${Template.toNormalComment(
                            `unsupported import.meta.${members.join(".")}`
                        )} undefined${propertyAccess(members, 1)}`;
                    };
 
                    parser.hooks.typeof
                        .for("import.meta")
                        .tap(
                            PLUGIN_NAME,
                            toConstantDependency(parser, JSON.stringify("object"))
                        );
                    parser.hooks.collectDestructuringAssignmentProperties.tap(
                        PLUGIN_NAME,
                        (expr) => {
                            if (expr.type === "MetaProperty") return true;
                        }
                    );
                    parser.hooks.expression
                        .for("import.meta")
                        .tap(PLUGIN_NAME, (metaProperty) => {
                            /** @type {RawRuntimeRequirements} */
                            const runtimeRequirements = [];
                            const moduleArgument = parser.state.module.moduleArgument;
 
                            const referencedPropertiesInDestructuring =
                                parser.destructuringAssignmentPropertiesFor(metaProperty);
                            if (!referencedPropertiesInDestructuring) {
                                const varName = "__webpack_import_meta__";
                                const { stringify: envStringify } =
                                    collectImportMetaEnvDefinitions(compilation);
                                const knownProps =
                                    `{url: ${importMetaUrl()}, ` +
                                    `webpack: ${importMetaWebpackVersion()}, ` +
                                    `main: ${RuntimeGlobals.moduleCache}[${RuntimeGlobals.entryModuleId}] === ${moduleArgument}, ` +
                                    `env: ${envStringify}}`;
                                const initCode =
                                    importMeta === "preserve-unknown"
                                        ? `var ${varName} = Object.assign(import.meta, ${knownProps});\n`
                                        : `var ${varName} = ${knownProps};\n`;
                                const initDep = new ModuleInitFragmentDependency(
                                    initCode,
                                    [
                                        RuntimeGlobals.moduleCache,
                                        RuntimeGlobals.entryModuleId,
                                        RuntimeGlobals.module
                                    ],
                                    varName
                                );
                                initDep.loc = /** @type {DependencyLocation} */ (
                                    metaProperty.loc
                                );
                                parser.state.module.addPresentationalDependency(initDep);
                                const dep = new ConstDependency(
                                    varName,
                                    /** @type {Range} */ (metaProperty.range),
                                    runtimeRequirements
                                );
                                dep.loc = /** @type {DependencyLocation} */ (metaProperty.loc);
                                parser.state.module.addPresentationalDependency(dep);
                                return true;
                            }
 
                            let str = "";
                            for (const prop of referencedPropertiesInDestructuring) {
                                const value = hooks.propertyInDestructuring.call(prop);
 
                                if (value) {
                                    str += value;
                                    continue;
                                }
 
                                switch (prop.id) {
                                    case "url":
                                        str += `url: ${importMetaUrl()},`;
                                        break;
                                    case "webpack":
                                        str += `webpack: ${importMetaWebpackVersion()},`;
                                        break;
                                    case "main":
                                        str += `main: ${RuntimeGlobals.moduleCache}[${RuntimeGlobals.entryModuleId}] === ${moduleArgument},`;
                                        runtimeRequirements.push(
                                            RuntimeGlobals.moduleCache,
                                            RuntimeGlobals.entryModuleId,
                                            RuntimeGlobals.module
                                        );
                                        break;
                                    case "env":
                                        str += `env: ${collectImportMetaEnvDefinitions(compilation).stringify},`;
                                        break;
                                    default:
                                        str += `[${JSON.stringify(
                                            prop.id
                                        )}]: ${importMetaUnknownProperty([prop.id])},`;
                                        break;
                                }
                            }
                            const dep = new ConstDependency(
                                `({${str}})`,
                                /** @type {Range} */ (metaProperty.range),
                                runtimeRequirements
                            );
                            dep.loc = /** @type {DependencyLocation} */ (metaProperty.loc);
                            parser.state.module.addPresentationalDependency(dep);
                            return true;
                        });
                    parser.hooks.evaluateTypeof
                        .for("import.meta")
                        .tap(PLUGIN_NAME, evaluateToString("object"));
                    parser.hooks.evaluateIdentifier.for("import.meta").tap(
                        PLUGIN_NAME,
                        evaluateToIdentifier("import.meta", "import.meta", () => [], true)
                    );
 
                    // import.meta.url
                    parser.hooks.typeof
                        .for("import.meta.url")
                        .tap(
                            PLUGIN_NAME,
                            toConstantDependency(parser, JSON.stringify("string"))
                        );
                    parser.hooks.expression
                        .for("import.meta.url")
                        .tap(PLUGIN_NAME, (expr) => {
                            const dep = new ConstDependency(
                                importMetaUrl(),
                                /** @type {Range} */ (expr.range)
                            );
                            dep.loc = /** @type {DependencyLocation} */ (expr.loc);
                            parser.state.module.addPresentationalDependency(dep);
                            return true;
                        });
                    parser.hooks.evaluateTypeof
                        .for("import.meta.url")
                        .tap(PLUGIN_NAME, evaluateToString("string"));
                    parser.hooks.evaluateIdentifier
                        .for("import.meta.url")
                        .tap(PLUGIN_NAME, (expr) =>
                            new BasicEvaluatedExpression()
                                .setString(getUrl(parser.state.module))
                                .setRange(/** @type {Range} */ (expr.range))
                        );
 
                    // import.meta.webpack
                    parser.hooks.expression
                        .for("import.meta.webpack")
                        .tap(
                            PLUGIN_NAME,
                            toConstantDependency(parser, importMetaWebpackVersion())
                        );
                    parser.hooks.typeof
                        .for("import.meta.webpack")
                        .tap(
                            PLUGIN_NAME,
                            toConstantDependency(parser, JSON.stringify("number"))
                        );
                    parser.hooks.evaluateTypeof
                        .for("import.meta.webpack")
                        .tap(PLUGIN_NAME, evaluateToString("number"));
                    parser.hooks.evaluateIdentifier
                        .for("import.meta.webpack")
                        .tap(PLUGIN_NAME, evaluateToNumber(webpackVersion));
 
                    parser.hooks.expression
                        .for("import.meta.main")
                        .tap(
                            PLUGIN_NAME,
                            toConstantDependency(
                                parser,
                                `${RuntimeGlobals.moduleCache}[${RuntimeGlobals.entryModuleId}] === ${RuntimeGlobals.module}`,
                                [
                                    RuntimeGlobals.moduleCache,
                                    RuntimeGlobals.entryModuleId,
                                    RuntimeGlobals.module
                                ]
                            )
                        );
                    parser.hooks.typeof
                        .for("import.meta.main")
                        .tap(
                            PLUGIN_NAME,
                            toConstantDependency(parser, JSON.stringify("boolean"))
                        );
                    parser.hooks.evaluateTypeof
                        .for("import.meta.main")
                        .tap(PLUGIN_NAME, evaluateToString("boolean"));
 
                    // import.meta.env
                    parser.hooks.typeof
                        .for("import.meta.env")
                        .tap(
                            PLUGIN_NAME,
                            toConstantDependency(parser, JSON.stringify("object"))
                        );
                    parser.hooks.expressionMemberChain
                        .for("import.meta")
                        .tap(PLUGIN_NAME, (expr, members) => {
                            if (members[0] === "env" && members[1]) {
                                const name = members[1];
                                const { env } = collectImportMetaEnvDefinitions(compilation);
                                if (!Object.prototype.hasOwnProperty.call(env, name)) {
                                    const dep = new ConstDependency(
                                        "undefined",
                                        /** @type {Range} */ (expr.range)
                                    );
                                    dep.loc = /** @type {DependencyLocation} */ (expr.loc);
                                    parser.state.module.addPresentationalDependency(dep);
                                    return true;
                                }
                            }
                        });
                    parser.hooks.expression
                        .for("import.meta.env")
                        .tap(PLUGIN_NAME, (expr) => {
                            const { stringify } =
                                collectImportMetaEnvDefinitions(compilation);
 
                            const dep = new ConstDependency(
                                stringify,
                                /** @type {Range} */ (expr.range)
                            );
                            dep.loc = /** @type {DependencyLocation} */ (expr.loc);
                            parser.state.module.addPresentationalDependency(dep);
                            return true;
                        });
                    parser.hooks.evaluateTypeof
                        .for("import.meta.env")
                        .tap(PLUGIN_NAME, evaluateToString("object"));
                    parser.hooks.evaluateIdentifier
                        .for("import.meta.env")
                        .tap(PLUGIN_NAME, (expr) =>
                            new BasicEvaluatedExpression()
                                .setTruthy()
                                .setSideEffects(false)
                                .setRange(/** @type {Range} */ (expr.range))
                        );
 
                    // Unknown properties
                    parser.hooks.unhandledExpressionMemberChain
                        .for("import.meta")
                        .tap(PLUGIN_NAME, (expr, members) => {
                            // unknown import.meta properties should be determined at runtime
                            if (importMeta === "preserve-unknown") {
                                return true;
                            }
 
                            // keep import.meta.env unknown property
                            // don't evaluate import.meta.env.UNKNOWN_PROPERTY -> undefined.UNKNOWN_PROPERTY
                            // `dirname` and `filename` logic in NodeStuffPlugin
                            if (
                                members[0] === "env" ||
                                members[0] === "dirname" ||
                                members[0] === "filename"
                            ) {
                                return true;
                            }
                            const dep = new ConstDependency(
                                importMetaUnknownProperty(members),
                                /** @type {Range} */ (expr.range)
                            );
                            dep.loc = /** @type {DependencyLocation} */ (expr.loc);
                            parser.state.module.addPresentationalDependency(dep);
                            return true;
                        });
 
                    parser.hooks.evaluate
                        .for("MemberExpression")
                        .tap(PLUGIN_NAME, (expression) => {
                            const expr = /** @type {MemberExpression} */ (expression);
                            if (
                                expr.object.type === "MetaProperty" &&
                                expr.object.meta.name === "import" &&
                                expr.object.property.name === "meta" &&
                                expr.property.type ===
                                    (expr.computed ? "Literal" : "Identifier")
                            ) {
                                return new BasicEvaluatedExpression()
                                    .setUndefined()
                                    .setRange(/** @type {Range} */ (expr.range));
                            }
                        });
                };
 
                normalModuleFactory.hooks.parser
                    .for(JAVASCRIPT_MODULE_TYPE_AUTO)
                    .tap(PLUGIN_NAME, parserHandler);
                normalModuleFactory.hooks.parser
                    .for(JAVASCRIPT_MODULE_TYPE_ESM)
                    .tap(PLUGIN_NAME, parserHandler);
            }
        );
    }
}
 
module.exports = ImportMetaPlugin;