Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Binary require support #85

Merged
merged 1 commit into from
Dec 3, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ jobs:
- run:
name: Installing dependencies
command: yarn install
- run:
name: Build unit test binary
command: yarn build-test-binary
# - run:
# name: Linting
# command: yarn lint
- run:
name: Integration tests
name: Unit & integration tests
command: yarn test
- run:
name: Coverage
Expand Down
10 changes: 10 additions & 0 deletions dist/ncc/loaders/readme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# About this directory

This directory will contain:

- `node-loader.js` the ncc loader for supporting Node binary requires
- `relocate-loader.js` the ncc loader for handling CommonJS asset and reference relocations

These are generated by the `build` step defined in `../../../package.json`.

These files are published to npm.
7 changes: 6 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,11 @@
},
"scripts": {
"build": "node scripts/build",
"build-test-binary": "cd test/binary && node-gyp rebuild && cp build/Release/hello.node ../integration/hello.node",
"codecov": "codecov",
"test": "npm run build && jest",
"test-coverage": "jest --coverage --globals \"{\\\"coverage\\\":true}\" && codecov",
"prepublish": "npm test"
"prepublish": "in-publish && npm test || not-in-publish"
},
"devDependencies": {
"@azure/cosmos": "^2.0.5",
Expand Down Expand Up @@ -42,12 +43,14 @@
"got": "^9.3.2",
"graphql": "^14.0.2",
"hot-shots": "^5.9.2",
"in-publish": "^2.0.0",
"ioredis": "^4.2.0",
"isomorphic-unfetch": "^3.0.0",
"jest": "^23.6.0",
"jimp": "^0.5.6",
"koa": "^2.6.2",
"leveldown": "^4.0.1",
"loader-utils": "^1.1.0",
"magic-string": "^0.25.1",
"mailgun": "^0.5.0",
"mariadb": "^2.0.1-beta",
Expand All @@ -56,6 +59,8 @@
"mongoose": "^5.3.12",
"mysql": "^2.16.0",
"node-pre-gyp": "^0.12.0",
"node-gyp": "^3.8.0",
"node-native-loader": "^1.1.1",
"passport": "^0.4.0",
"passport-google-oauth": "^1.0.0",
"path-platform": "^0.11.15",
Expand Down
13 changes: 8 additions & 5 deletions scripts/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,24 @@ async function main() {
// to bundle it. even if we did want watching and a bigger
// bundle, webpack (and therefore ncc) cannot currently bundle
// chokidar, which is quite convenient
externals: ["chokidar", "./asset-relocator.js"]
externals: ["chokidar", "./relocate-loader.js"]
});

const { code: assetRelocator, assets: assetRelocatorAssets } = await ncc(__dirname + "/../src/asset-relocator");

const { code: relocateLoader, assets: relocateLoaderAssets } = await ncc(__dirname + "/../src/loaders/relocate-loader");
const { code: nodeLoader, assets: nodeLoaderAssets } = await ncc(__dirname + "/../src/loaders/node-loader");
const { code: sourcemapSupport, assets: sourcemapAssets } = await ncc(require.resolve("source-map-support/register"));

if (Object.keys(cliAssets).length || Object.keys(indexAssets).length || Object.keys(assetRelocatorAssets).length || Object.keys(sourcemapAssets).length) {
if (Object.keys(cliAssets).length || Object.keys(indexAssets).length ||
Object.keys(relocateLoaderAssets).length || Object.keys(nodeLoaderAssets).length ||
Object.keys(sourcemapAssets).length) {
console.error('Assets emitted by core build, these need to be written into the dist directory');
}

writeFileSync(__dirname + "/../dist/ncc/cli.js", cli);
writeFileSync(__dirname + "/../dist/ncc/index.js", index);
writeFileSync(__dirname + "/../dist/ncc/asset-relocator.js", assetRelocator);
writeFileSync(__dirname + "/../dist/ncc/sourcemap-register.js", sourcemapSupport);
writeFileSync(__dirname + "/../dist/ncc/loaders/relocate-loader.js", relocateLoader);
writeFileSync(__dirname + "/../dist/ncc/loaders/node-loader.js", nodeLoader);

// copy webpack buildin
await copy(
Expand Down
17 changes: 14 additions & 3 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ WebpackParser.parse = function (source, opts = {}) {
});
}

const SUPPORTED_EXTENSIONS = [".js", ".mjs", ".json"];
const SUPPORTED_EXTENSIONS = [".js", ".mjs", ".json", ".node"];

function resolveModule(context, request, callback, forcedExternals = []) {
const resolveOptions = {
Expand Down Expand Up @@ -46,6 +46,7 @@ function resolveModule(context, request, callback, forcedExternals = []) {

module.exports = async (entry, { externals = [], minify = true, sourceMap = false, filename = "index.js" } = {}) => {
const mfs = new MemoryFS();
const assetNames = Object.create(null);
const compiler = webpack({
entry,
optimization: {
Expand Down Expand Up @@ -75,8 +76,18 @@ module.exports = async (entry, { externals = [], minify = true, sourceMap = fals
parser: { amd: false }
},
{
test: /\.(js|mjs)/,
use: [{ loader: __dirname + "/asset-relocator.js" }]
test: /\.(js|mjs)$/,
use: [{
loader: __dirname + "/loaders/relocate-loader.js",
options: { assetNames }
}]
},
{
test: /\.node$/,
use: [{
loader: __dirname + "/loaders/node-loader.js",
options: { assetNames }
}]
}
]
},
Expand Down
16 changes: 16 additions & 0 deletions src/loaders/node-loader.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
const { getOptions } = require('loader-utils');
const getUniqueAssetName = require('../utils/dedupe-names');

module.exports = function (content) {
if (this.cacheable)
this.cacheable();

const id = this.resourcePath;
const options = getOptions(this);

const name = getUniqueAssetName(id, options.assetNames);
this.emitFile(name, content);

return 'module.exports = __non_webpack_require__("./' + name + '")';
};
module.exports.raw = true;
18 changes: 8 additions & 10 deletions src/asset-relocator.js → src/loaders/relocate-loader.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ const { attachScopes } = require('rollup-pluginutils');
const evaluate = require('static-eval');
const acorn = require('acorn');
const bindings = require('bindings');
const getUniqueAssetName = require('../utils/dedupe-names');
const { getOptions } = require('loader-utils');

// binary support for inlining logic from - node-pre-gyp/lib/pre-binding.js
function isPregypId (id) {
Expand Down Expand Up @@ -55,20 +57,16 @@ module.exports = function (code) {
if (id.endsWith('.json') || !code.match(relocateRegEx))
return this.callback(null, code);

const assetNames = Object.create(null);
const options = getOptions(this);
const emitAsset = (assetPath) => {
// JS assets to support require(assetPath) and not fs-based handling
// NB package.json is ambiguous here...
if (assetPath.endsWith('.js') || assetPath.endsWith('.mjs'))
return;

const name = getUniqueAssetName(assetPath, options.assetNames);

// console.log('Emitting ' + assetPath + ' for module ' + id);
const basename = path.basename(assetPath);
const ext = path.extname(basename);
let name = basename, i = 0;
while (name in assetNames && assetNames[name] !== assetPath)
name = basename.substr(0, basename.length - ext.length) + ++i + ext;
assetNames[name] = assetPath;

this.emitFile(name, fs.readFileSync(assetPath));
return "__dirname + '/" + JSON.stringify(name).slice(1, -1) + "'";
Expand Down Expand Up @@ -225,9 +223,9 @@ module.exports = function (code) {
// __dirname, __filename, binary only currently as well as require('bindings')(...)
// Can add require.resolve, import.meta.url, even path-like environment variables
if (node.type === 'Identifier' && isExpressionReference(node, parent)) {
if ((node.name === '__dirname' ||
node.name === '__filename' ||
node.name === pregypId || node.name === bindingsId) && !shadowDepths[node.name]) {
if (!shadowDepths[node.name] &&
(node.name === '__dirname' || node.name === '__filename' ||
node.name === pregypId || node.name === bindingsId)) {
staticChildValue = computeStaticValue(node, false);
// if it computes, then we start backtracking
if (staticChildValue) {
Expand Down
11 changes: 11 additions & 0 deletions src/utils/dedupe-names.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const path = require("path");

module.exports = function (assetPath, assetNames) {
const basename = path.basename(assetPath);
const ext = path.extname(basename);
let name = basename, i = 0;
while (name in assetNames && assetNames[name] !== assetPath)
name = basename.substr(0, basename.length - ext.length) + ++i + ext;
assetNames[name] = assetPath;
return name;
};
11 changes: 11 additions & 0 deletions test/binary/binding.gyp
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"targets": [
{
"target_name": "hello",
"sources": [ "hello.cc" ],
"include_dirs": [
"<!(node -e \"require('nan')\")"
]
}
]
}
26 changes: 26 additions & 0 deletions test/binary/hello.cc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
// hello.cc
#include <node.h>

namespace demo {

using v8::FunctionCallbackInfo;
using v8::Isolate;
using v8::Local;
using v8::NewStringType;
using v8::Object;
using v8::String;
using v8::Value;

void Method(const FunctionCallbackInfo<Value>& args) {
Isolate* isolate = args.GetIsolate();
args.GetReturnValue().Set(String::NewFromUtf8(
isolate, "world", NewStringType::kNormal).ToLocalChecked());
}

void Initialize(Local<Object> exports) {
NODE_SET_METHOD(exports, "hello", Method);
}

NODE_MODULE(NODE_GYP_MODULE_NAME, Initialize)

} // namespace demo
4 changes: 2 additions & 2 deletions test/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ for (const integrationTest of fs.readdirSync(__dirname + "/integration")) {
mkdirp.sync(dirname(assetPath));
fs.writeFileSync(assetPath, assets[asset]);
}
(__dirname => {
((__dirname, require) => {
try {
eval(`${code}\n//# sourceURL=${integrationTest}`);
}
Expand All @@ -83,7 +83,7 @@ for (const integrationTest of fs.readdirSync(__dirname + "/integration")) {
fs.writeFileSync(__dirname + "/index.js", code);
throw e;
}
})(__dirname + "/tmp");
})(__dirname + "/tmp", id => require(id.startsWith('./') ? './tmp/' + id.substr(2) : id));
if ("function" !== typeof module.exports) {
throw new Error(
`Integration test "${integrationTest}" evaluation failed. It does not export a function`
Expand Down
6 changes: 6 additions & 0 deletions test/integration/binary-require.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const binary = require('./hello.node');
const assert = require('assert');

module.exports = () => {
assert.equal(binary.hello(), 'world');
};