webpack/lib/NodeStuffPlugin.js

196 lines
5.6 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";
2017-02-22 23:34:10 +08:00
const path = require("path");
2018-07-03 16:24:29 +08:00
const {
addParsedVariableToModule,
evaluateToIdentifier,
evaluateToString,
expressionIsUnsupported,
toConstantDependency,
toConstantDependencyWithWebpackRequire
} = require("./JavascriptParserHelpers");
2017-02-22 23:34:10 +08:00
const NullFactory = require("./NullFactory");
2018-07-30 23:08:51 +08:00
const ConstDependency = require("./dependencies/ConstDependency");
2015-07-13 06:20:09 +08:00
2017-02-22 23:34:10 +08:00
class NodeStuffPlugin {
constructor(options) {
this.options = options;
}
2015-07-13 06:20:09 +08:00
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 }) => {
compilation.dependencyFactories.set(ConstDependency, new NullFactory());
compilation.dependencyTemplates.set(
ConstDependency,
new ConstDependency.Template()
);
2015-07-13 06:20:09 +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) {
2018-02-25 09:00:20 +08:00
localOptions = Object.assign({}, localOptions, parserOptions.node);
}
2018-02-25 09:00:20 +08:00
const setConstant = (expressionName, value) => {
parser.hooks.expression
.for(expressionName)
.tap("NodeStuffPlugin", () => {
parser.state.current.addVariable(
expressionName,
JSON.stringify(value)
);
return true;
});
};
2017-02-22 23:34:10 +08:00
2018-02-25 09:00:20 +08:00
const setModuleConstant = (expressionName, fn) => {
parser.hooks.expression
.for(expressionName)
.tap("NodeStuffPlugin", () => {
parser.state.current.addVariable(
expressionName,
JSON.stringify(fn(parser.state.module))
);
return true;
});
};
const context = compiler.context;
if (localOptions.__filename === "mock") {
setConstant("__filename", "/index.js");
} else if (localOptions.__filename) {
setModuleConstant("__filename", module =>
path.relative(context, module.resource)
);
}
parser.hooks.evaluateIdentifier
.for("__filename")
.tap("NodeStuffPlugin", expr => {
if (!parser.state.module) return;
const resource = parser.state.module.resource;
const i = resource.indexOf("?");
2018-07-03 16:24:29 +08:00
return evaluateToString(i < 0 ? resource : resource.substr(0, i))(
expr
);
2018-02-25 09:00:20 +08:00
});
if (localOptions.__dirname === "mock") {
setConstant("__dirname", "/");
} else if (localOptions.__dirname) {
setModuleConstant("__dirname", module =>
path.relative(context, module.context)
);
}
parser.hooks.evaluateIdentifier
.for("__dirname")
.tap("NodeStuffPlugin", expr => {
if (!parser.state.module) return;
2018-07-03 16:24:29 +08:00
return evaluateToString(parser.state.module.context)(expr);
2018-02-25 09:00:20 +08:00
});
parser.hooks.expression
.for("require.main")
.tap(
"NodeStuffPlugin",
2018-07-03 16:24:29 +08:00
toConstantDependencyWithWebpackRequire(
2018-02-25 09:00:20 +08:00
parser,
"__webpack_require__.c[__webpack_require__.s]"
)
);
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."
)
);
parser.hooks.expression
.for("require.main.require")
.tap(
"NodeStuffPlugin",
2018-07-23 18:19:16 +08:00
expressionIsUnsupported(
parser,
"require.main.require is not supported by webpack."
)
);
parser.hooks.expression
.for("module.parent.require")
.tap(
"NodeStuffPlugin",
2018-07-23 18:19:16 +08:00
expressionIsUnsupported(
parser,
"module.parent.require is not supported by webpack."
)
);
2018-02-25 09:00:20 +08:00
parser.hooks.expression
.for("module.loaded")
.tap("NodeStuffPlugin", expr => {
parser.state.module.buildMeta.moduleConcatenationBailout =
"module.loaded";
2018-07-03 16:24:29 +08:00
return toConstantDependency(parser, "module.l")(expr);
2018-02-25 09:00:20 +08:00
});
parser.hooks.expression
.for("module.id")
.tap("NodeStuffPlugin", expr => {
parser.state.module.buildMeta.moduleConcatenationBailout =
"module.id";
2018-07-03 16:24:29 +08:00
return toConstantDependency(parser, "module.i")(expr);
2018-02-25 09:00:20 +08:00
});
parser.hooks.expression
.for("module.exports")
.tap("NodeStuffPlugin", () => {
const module = parser.state.module;
const isHarmony =
module.buildMeta && module.buildMeta.exportsType;
if (!isHarmony) return true;
});
parser.hooks.evaluateIdentifier
.for("module.hot")
2018-07-03 16:24:29 +08:00
.tap("NodeStuffPlugin", evaluateToIdentifier("module.hot", false));
2018-02-25 09:00:20 +08:00
parser.hooks.expression.for("module").tap("NodeStuffPlugin", () => {
const module = parser.state.module;
const isHarmony = module.buildMeta && module.buildMeta.exportsType;
let moduleJsPath = path.join(
__dirname,
"..",
"buildin",
isHarmony ? "harmony-module.js" : "module.js"
);
if (module.context) {
moduleJsPath = path.relative(
parser.state.module.context,
moduleJsPath
);
if (!/^[A-Z]:/i.test(moduleJsPath)) {
moduleJsPath = `./${moduleJsPath.replace(/\\/g, "/")}`;
}
}
2018-07-03 16:24:29 +08:00
return addParsedVariableToModule(
2018-02-25 09:00:20 +08:00
parser,
"module",
`require(${JSON.stringify(moduleJsPath)})(module)`
);
2017-02-22 23:34:10 +08:00
});
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
}
}
module.exports = NodeStuffPlugin;