*Add support for node-gyp-build-optional-packages
*refactor to have loadNativeModuleTemp require loady *Allow cjs files *Add detection for "loadNAPI__default" *Crawl the package tree to find package.json if needed *Add heuristic for building moduleName for node-gyp-build
This commit is contained in:
parent
366ffe1ac9
commit
0a73d099f5
64
src/index.ts
64
src/index.ts
|
@ -4,12 +4,16 @@ import MagicString from "magic-string";
|
||||||
import loady from "loady";
|
import loady from "loady";
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
import nodeGybBuild from "node-gyp-build";
|
import nodeGybBuild from "node-gyp-build";
|
||||||
|
// @ts-ignore
|
||||||
|
import nodeGybBuildOptional from "node-gyp-build-optional-packages";
|
||||||
import fs from "fs";
|
import fs from "fs";
|
||||||
import type { PluginContext } from "rollup";
|
import type { PluginContext } from "rollup";
|
||||||
import type { Plugin } from "vite";
|
import type { Plugin } from "vite";
|
||||||
import path from "path";
|
import path from "path";
|
||||||
|
|
||||||
const loaderFunction = `function loadNativeModuleTemp(module, data) {
|
const loaderFunction = `
|
||||||
|
function loadNativeModuleTemp (module, data) {
|
||||||
|
const loady = require("loady");
|
||||||
const tempDir = require("os").tmpdir();
|
const tempDir = require("os").tmpdir();
|
||||||
const fs = require("fs");
|
const fs = require("fs");
|
||||||
const path = require("path");
|
const path = require("path");
|
||||||
|
@ -24,6 +28,8 @@ const loaderFunction = `function loadNativeModuleTemp(module, data) {
|
||||||
process.pkg = undefined;
|
process.pkg = undefined;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
loady(module, loadPath);
|
||||||
|
|
||||||
return loadPath;
|
return loadPath;
|
||||||
}`;
|
}`;
|
||||||
|
|
||||||
|
@ -34,7 +40,7 @@ export default function bundleNativeModulesPlugin() {
|
||||||
return {
|
return {
|
||||||
name: "bundle-native-modules",
|
name: "bundle-native-modules",
|
||||||
transform(src, id, ast: any) {
|
transform(src, id, ast: any) {
|
||||||
if (!/\.(js)$/.test(id)) {
|
if (!/\.(c?js)$/.test(id)) {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
const magicString = new MagicString(src);
|
const magicString = new MagicString(src);
|
||||||
|
@ -93,7 +99,7 @@ export default function bundleNativeModulesPlugin() {
|
||||||
magicString.overwrite(
|
magicString.overwrite(
|
||||||
match.node.start,
|
match.node.start,
|
||||||
match.node.end,
|
match.node.end,
|
||||||
`require('loady')('${match.match.aName}', loadNativeModuleTemp('${match.match.aName}', '${moduleB64}'))`
|
`loadNativeModuleTemp('${match.match.aName}', '${moduleB64}')`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -103,6 +109,7 @@ export default function bundleNativeModulesPlugin() {
|
||||||
for (const matchString of [
|
for (const matchString of [
|
||||||
"require('node-gyp-build')(__any)",
|
"require('node-gyp-build')(__any)",
|
||||||
"loadNAPI(__any)",
|
"loadNAPI(__any)",
|
||||||
|
"loadNAPI__default[__any](__any)",
|
||||||
]) {
|
]) {
|
||||||
const findNodeBuildGyp = astMatcher(matchString);
|
const findNodeBuildGyp = astMatcher(matchString);
|
||||||
const nodeBuildGypMatches = findNodeBuildGyp(ast);
|
const nodeBuildGypMatches = findNodeBuildGyp(ast);
|
||||||
|
@ -110,19 +117,60 @@ export default function bundleNativeModulesPlugin() {
|
||||||
if (nodeBuildGypMatches?.length) {
|
if (nodeBuildGypMatches?.length) {
|
||||||
for (const match of nodeBuildGypMatches) {
|
for (const match of nodeBuildGypMatches) {
|
||||||
if (markEdited(match.node, edits)) {
|
if (markEdited(match.node, edits)) {
|
||||||
const modulePath = nodeGybBuild.path(path.dirname(id));
|
let modulePath;
|
||||||
const moduleName = modulePath
|
|
||||||
|
try {
|
||||||
|
modulePath = nodeGybBuild.path(path.dirname(id));
|
||||||
|
} catch {}
|
||||||
|
|
||||||
|
if (!modulePath) {
|
||||||
|
try {
|
||||||
|
modulePath = nodeGybBuildOptional.path(path.dirname(id));
|
||||||
|
} catch {}
|
||||||
|
let parentDir = path.dirname(id);
|
||||||
|
do {
|
||||||
|
parentDir = path.dirname(parentDir);
|
||||||
|
} while (
|
||||||
|
!fs.existsSync(path.join(parentDir, "package.json")) &&
|
||||||
|
parentDir !== "/"
|
||||||
|
);
|
||||||
|
|
||||||
|
try {
|
||||||
|
modulePath = nodeGybBuildOptional.path(parentDir);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!modulePath) {
|
||||||
|
throw new Error(`Could not process native module for ${id}`);
|
||||||
|
}
|
||||||
|
|
||||||
|
let moduleName = "";
|
||||||
|
|
||||||
|
for (const part of modulePath
|
||||||
.split("node_modules")
|
.split("node_modules")
|
||||||
.pop()
|
.pop()
|
||||||
.split("/")
|
.split("/")
|
||||||
.slice(1)
|
.slice(1)) {
|
||||||
.shift();
|
if (part.includes(".node")) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (part === "prebuilds") {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
moduleName += part;
|
||||||
|
|
||||||
|
if (part.includes("@")) {
|
||||||
|
moduleName += "_";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
const moduleFile = fs.readFileSync(modulePath);
|
const moduleFile = fs.readFileSync(modulePath);
|
||||||
const moduleB64 = moduleFile.toString("base64");
|
const moduleB64 = moduleFile.toString("base64");
|
||||||
magicString.overwrite(
|
magicString.overwrite(
|
||||||
match.node.start,
|
match.node.start,
|
||||||
match.node.end,
|
match.node.end,
|
||||||
`require('loady')('${moduleName}', loadNativeModuleTemp('${moduleName}', '${moduleB64}'))`
|
`loadNativeModuleTemp('${moduleName}', '${moduleB64}')`
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue