webpack/lib/NodeStuffPlugin.js

257 lines
7.3 KiB
JavaScript
Raw Normal View History

/*
MIT License http://www.opensource.org/licenses/mit-license.php
Author Tobias Koppers @sokra
*/
2018-07-30 23:08:51 +08:00
2017-02-22 23:34:10 +08:00
"use strict";
const NodeStuffInWebError = require("./NodeStuffInWebError");
const RuntimeGlobals = require("./RuntimeGlobals");
const CachedConstDependency = require("./dependencies/CachedConstDependency");
const ConstDependency = require("./dependencies/ConstDependency");
2021-11-30 18:57:32 +08:00
const ExternalModuleDependency = require("./dependencies/ExternalModuleDependency");
2018-07-03 16:24:29 +08:00
const {
evaluateToString,
2019-05-22 19:36:26 +08:00
expressionIsUnsupported
} = require("./javascript/JavascriptParserHelpers");
const { relative } = require("./util/fs");
const { parseResource } = require("./util/identifier");
2018-07-27 21:57:03 +08:00
/** @typedef {import("webpack-sources").ReplaceSource} ReplaceSource */
2021-09-15 03:38:42 +08:00
/** @typedef {import("../declarations/WebpackOptions").NodeOptions} NodeOptions */
2018-11-03 04:05:46 +08:00
/** @typedef {import("./Compiler")} Compiler */
2018-07-27 21:57:03 +08:00
/** @typedef {import("./Dependency")} Dependency */
/** @typedef {import("./DependencyTemplates")} DependencyTemplates */
/** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */
2015-07-13 06:20:09 +08:00
2021-11-30 18:57:32 +08:00
const fileURLToPathTag = Symbol("fileURLToPath");
2017-02-22 23:34:10 +08:00
class NodeStuffPlugin {
/**
* @param {NodeOptions} options options
*/
2017-02-22 23:34:10 +08:00
constructor(options) {
this.options = options;
}
2015-07-13 06:20:09 +08:00
2018-11-03 04:05:46 +08:00
/**
* Apply the plugin
* @param {Compiler} compiler the compiler instance
* @returns {void}
*/
2017-02-22 23:34:10 +08:00
apply(compiler) {
const options = this.options;
2018-02-25 09:00:20 +08:00
compiler.hooks.compilation.tap(
"NodeStuffPlugin",
(compilation, { normalModuleFactory }) => {
2021-09-15 02:23:41 +08:00
compilation.dependencyTemplates.set(
2021-11-30 18:57:32 +08:00
ExternalModuleDependency,
new ExternalModuleDependency.Template()
2021-09-15 02:23:41 +08:00
);
2018-02-25 09:00:20 +08:00
const handler = (parser, parserOptions) => {
if (parserOptions.node === false) return;
2017-02-22 23:34:10 +08:00
2018-02-25 09:00:20 +08:00
let localOptions = options;
if (parserOptions.node) {
localOptions = { ...localOptions, ...parserOptions.node };
}
if (localOptions.global !== false) {
const withWarning = localOptions.global === "warn";
parser.hooks.expression
.for("global")
.tap("NodeStuffPlugin", expr => {
const dep = new ConstDependency(
RuntimeGlobals.global,
expr.range,
[RuntimeGlobals.global]
);
dep.loc = expr.loc;
parser.state.module.addPresentationalDependency(dep);
// TODO webpack 6 remove
if (withWarning) {
parser.state.module.addWarning(
new NodeStuffInWebError(
dep.loc,
"global",
"The global namespace object is Node.js feature and doesn't present in browser."
)
);
}
});
2022-02-22 18:37:58 +08:00
parser.hooks.rename.for("global").tap("NodeStuffPlugin", expr => {
const dep = new ConstDependency(
RuntimeGlobals.global,
expr.range,
[RuntimeGlobals.global]
);
dep.loc = expr.loc;
parser.state.module.addPresentationalDependency(dep);
return false;
});
}
2021-11-30 18:57:32 +08:00
const setModuleConstant = (expressionName, fn, warning) => {
parser.hooks.expression
.for(expressionName)
.tap("NodeStuffPlugin", expr => {
const dep = new CachedConstDependency(
JSON.stringify(fn(parser.state.module)),
expr.range,
expressionName
);
dep.loc = expr.loc;
parser.state.module.addPresentationalDependency(dep);
// TODO webpack 6 remove
if (warning) {
parser.state.module.addWarning(
new NodeStuffInWebError(dep.loc, expressionName, warning)
);
2021-11-30 18:57:32 +08:00
}
return true;
});
};
let moduleInCache;
let functionNameCached;
const setUrlModuleConstant = (expressionName, fn) => {
parser.hooks.expression
.for(expressionName)
.tap("NodeStuffPlugin", expr => {
if (moduleInCache !== parser.state.current) {
moduleInCache = parser.state.current;
if (parser.isVariableDefined("fileURLToPath")) {
for (let i = 0; i < 30; i++) {
const name = `fileURLToPath${i}`;
if (!parser.isVariableDefined(name)) {
functionNameCached = name;
break;
}
}
} else {
functionNameCached = "fileURLToPath";
2021-09-15 02:23:41 +08:00
}
2021-11-30 18:57:32 +08:00
parser.tagVariable(functionNameCached, fileURLToPathTag, {});
}
2021-09-15 02:23:41 +08:00
2021-11-30 18:57:32 +08:00
const dep = new ExternalModuleDependency(
"url",
[{ name: "fileURLToPath", value: functionNameCached }],
fn(functionNameCached),
expr.range,
expressionName
);
dep.loc = expr.loc;
parser.state.module.addPresentationalDependency(dep);
2021-09-15 02:23:41 +08:00
2021-11-30 18:57:32 +08:00
return true;
});
};
2021-11-30 18:57:32 +08:00
const setConstant = (expressionName, value, warning) =>
setModuleConstant(expressionName, () => value, warning);
2018-02-25 09:00:20 +08:00
const context = compiler.context;
if (localOptions.__filename) {
switch (localOptions.__filename) {
case "mock":
2021-11-30 18:57:32 +08:00
setConstant("__filename", "/index.js");
break;
case "warn-mock":
2021-11-30 18:57:32 +08:00
setConstant(
"__filename",
"/index.js",
"The __filename is Node.js feature and doesn't present in browser."
);
break;
case "node-module":
2021-11-30 18:57:32 +08:00
setUrlModuleConstant(
2021-09-14 21:53:51 +08:00
"__filename",
2021-11-30 18:57:32 +08:00
functionName => `${functionName}(import.meta.url)`
2021-09-14 21:53:51 +08:00
);
break;
case true:
2021-11-30 18:57:32 +08:00
setModuleConstant("__filename", module =>
relative(compiler.inputFileSystem, context, module.resource)
);
break;
}
parser.hooks.evaluateIdentifier
.for("__filename")
.tap("NodeStuffPlugin", expr => {
if (!parser.state.module) return;
const resource = parseResource(parser.state.module.resource);
return evaluateToString(resource.path)(expr);
});
2018-02-25 09:00:20 +08:00
}
if (localOptions.__dirname) {
switch (localOptions.__dirname) {
case "mock":
2021-11-30 18:57:32 +08:00
setConstant("__dirname", "/");
break;
case "warn-mock":
2021-11-30 18:57:32 +08:00
setConstant(
"__dirname",
"/",
"The __dirname is Node.js feature and doesn't present in browser."
);
break;
case "node-module":
2021-11-30 18:57:32 +08:00
setUrlModuleConstant(
2021-09-15 02:48:55 +08:00
"__dirname",
2021-11-30 18:57:32 +08:00
functionName => `${functionName}(import.meta.url + "/..")`
);
break;
case true:
2021-11-30 18:57:32 +08:00
setModuleConstant("__dirname", module =>
relative(compiler.inputFileSystem, context, module.context)
);
break;
}
parser.hooks.evaluateIdentifier
.for("__dirname")
.tap("NodeStuffPlugin", expr => {
if (!parser.state.module) return;
2019-05-20 20:46:31 +08:00
return evaluateToString(parser.state.module.context)(expr);
});
2018-02-25 09:00:20 +08:00
}
parser.hooks.expression
.for("require.extensions")
.tap(
"NodeStuffPlugin",
2018-07-03 16:24:29 +08:00
expressionIsUnsupported(
2018-02-25 09:00:20 +08:00
parser,
"require.extensions is not supported by webpack. Use a loader instead."
)
);
2021-11-30 18:57:32 +08:00
if (
localOptions.__dirname === "node-module" ||
localOptions.__filename === "node-module"
)
parser.hooks.finish.tap(
"NodeStuffPlugin",
() => (moduleInCache = undefined)
);
2017-11-08 18:32:05 +08:00
};
2018-02-25 09:00:20 +08:00
normalModuleFactory.hooks.parser
.for("javascript/auto")
.tap("NodeStuffPlugin", handler);
normalModuleFactory.hooks.parser
.for("javascript/dynamic")
.tap("NodeStuffPlugin", handler);
}
);
2017-02-22 23:34:10 +08:00
}
}
2018-07-27 21:57:03 +08:00
2017-02-22 23:34:10 +08:00
module.exports = NodeStuffPlugin;