175 lines
6.6 KiB
TypeScript
175 lines
6.6 KiB
TypeScript
/**
|
|
* Native addon loader.
|
|
*
|
|
* Locates and loads the compiled Rust N-API addon (`.node` file).
|
|
* Resolution order:
|
|
* 1. @singularity-forge/engine-{platform} npm optional dependency (production install)
|
|
* 2. rust-engine/addon/forge_engine.{platform}.node (local release build)
|
|
* 3. rust-engine/addon/forge_engine.dev.node (local debug build)
|
|
*/
|
|
|
|
import * as path from "node:path";
|
|
|
|
// __dirname and require are available in both execution contexts:
|
|
// - CJS (production build via tsc): provided natively by Node
|
|
// - ESM (CI test loader): injected by the dist-redirect.mjs preamble
|
|
const _dirname = __dirname;
|
|
const _require = require;
|
|
|
|
const addonDir = path.resolve(_dirname, "..", "..", "..", "rust-engine", "addon");
|
|
const platformTag = `${process.platform}-${process.arch}`;
|
|
|
|
/** Map Node.js platform/arch to the npm package suffix */
|
|
const platformPackageMap: Record<string, string> = {
|
|
"darwin-arm64": "darwin-arm64",
|
|
"darwin-x64": "darwin-x64",
|
|
"linux-x64": "linux-x64-gnu",
|
|
"linux-arm64": "linux-arm64-gnu",
|
|
"win32-x64": "win32-x64-msvc",
|
|
};
|
|
|
|
let _loadedSuccessfully = false;
|
|
|
|
function loadNative(): Record<string, unknown> {
|
|
const errors: string[] = [];
|
|
|
|
// 1. Try the platform-specific npm optional dependency
|
|
const packageSuffix = platformPackageMap[platformTag];
|
|
if (packageSuffix) {
|
|
try {
|
|
_loadedSuccessfully = true; return _require(`@singularity-forge/engine-${packageSuffix}`) as Record<string, unknown>;
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
errors.push(`@singularity-forge/engine-${packageSuffix}: ${message}`);
|
|
}
|
|
}
|
|
|
|
// 2. Try local release build (rust-engine/addon/forge_engine.{platform}.node)
|
|
const releasePath = path.join(addonDir, `forge_engine.${platformTag}.node`);
|
|
try {
|
|
_loadedSuccessfully = true; return _require(releasePath) as Record<string, unknown>;
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
errors.push(`${releasePath}: ${message}`);
|
|
}
|
|
|
|
// 3. Try local dev build (rust-engine/addon/forge_engine.dev.node)
|
|
const devPath = path.join(addonDir, "forge_engine.dev.node");
|
|
try {
|
|
_loadedSuccessfully = true; return _require(devPath) as Record<string, unknown>;
|
|
} catch (err) {
|
|
const message = err instanceof Error ? err.message : String(err);
|
|
errors.push(`${devPath}: ${message}`);
|
|
}
|
|
|
|
const details = errors.map((e) => ` - ${e}`).join("\n");
|
|
const supportedPlatforms = Object.keys(platformPackageMap);
|
|
|
|
// Graceful fallback: on unsupported platforms (e.g., win32-arm64), return a
|
|
// proxy that throws on individual function calls rather than crashing the
|
|
// entire import chain at startup (#1223). Consumers with JS fallbacks
|
|
// (parseRoadmap, parsePlan, fuzzyFind, etc.) catch these and degrade gracefully.
|
|
process.stderr.write(
|
|
`[forge] Native addon not available for ${platformTag}. Falling back to JS implementations (slower).\n` +
|
|
` Supported native platforms: ${supportedPlatforms.join(", ")}\n`,
|
|
);
|
|
return new Proxy({} as Record<string, unknown>, {
|
|
get(_target, prop) {
|
|
return (..._args: unknown[]) => {
|
|
throw new Error(`Native function '${String(prop)}' is not available on ${platformTag}`);
|
|
};
|
|
},
|
|
});
|
|
}
|
|
|
|
export const native = loadNative() as {
|
|
search: (content: Buffer | Uint8Array, options: unknown) => unknown;
|
|
grep: (options: unknown) => unknown;
|
|
killTree: (pid: number, signal: number) => number;
|
|
listDescendants: (pid: number) => number[];
|
|
processGroupId: (pid: number) => number | null;
|
|
killProcessGroup: (pgid: number, signal: number) => boolean;
|
|
glob: (
|
|
options: unknown,
|
|
onMatch?: ((match: unknown) => void) | undefined | null,
|
|
) => Promise<unknown>;
|
|
invalidateFsScanCache: (path?: string) => void;
|
|
highlightCode: (code: string, lang: string | null, colors: unknown) => unknown;
|
|
supportsLanguage: (lang: string) => unknown;
|
|
getSupportedLanguages: () => unknown;
|
|
copyToClipboard: (text: string) => void;
|
|
readTextFromClipboard: () => string | null;
|
|
readImageFromClipboard: () => Promise<unknown>;
|
|
astGrep: (options: unknown) => unknown;
|
|
astEdit: (options: unknown) => unknown;
|
|
htmlToMarkdown: (html: string, options: unknown) => unknown;
|
|
wrapTextWithAnsi: (text: string, width: number, tabWidth?: number) => string[];
|
|
truncateToWidth: (
|
|
text: string,
|
|
maxWidth: number,
|
|
ellipsisKind: number,
|
|
pad: boolean,
|
|
tabWidth?: number,
|
|
) => string;
|
|
sliceWithWidth: (
|
|
line: string,
|
|
startCol: number,
|
|
length: number,
|
|
strict: boolean,
|
|
tabWidth?: number,
|
|
) => unknown;
|
|
extractSegments: (
|
|
line: string,
|
|
beforeEnd: number,
|
|
afterStart: number,
|
|
afterLen: number,
|
|
strictAfter: boolean,
|
|
tabWidth?: number,
|
|
) => unknown;
|
|
sanitizeText: (text: string) => string;
|
|
visibleWidth: (text: string, tabWidth?: number) => number;
|
|
fuzzyFind: (options: unknown) => unknown;
|
|
normalizeForFuzzyMatch: (text: string) => string;
|
|
fuzzyFindText: (content: string, oldText: string) => unknown;
|
|
generateDiff: (oldContent: string, newContent: string, contextLines?: number) => unknown;
|
|
applyEdits: (filePath: string, edits: unknown[], options?: unknown) => unknown;
|
|
applyWorkspaceEdit: (documentEdits: unknown[], options?: unknown) => unknown;
|
|
replaceSymbol: (
|
|
filePath: string,
|
|
symbolName: string,
|
|
newBody: string,
|
|
options?: unknown,
|
|
) => unknown;
|
|
insertAroundSymbol: (
|
|
filePath: string,
|
|
symbolName: string,
|
|
position: string,
|
|
code: string,
|
|
options?: unknown,
|
|
) => unknown;
|
|
watchTree: (
|
|
root: string,
|
|
options: unknown,
|
|
onEvents: (events: unknown[]) => void,
|
|
) => number;
|
|
stopWatch: (handle: number) => boolean;
|
|
NativeImage: unknown;
|
|
ttsrCompileRules: (rules: unknown[]) => number;
|
|
ttsrCheckBuffer: (handle: number, buffer: string) => string[];
|
|
ttsrFreeRules: (handle: number) => void;
|
|
processStreamChunk: (chunk: Buffer, state?: unknown) => unknown;
|
|
stripAnsiNative: (text: string) => string;
|
|
sanitizeBinaryOutputNative: (text: string) => string;
|
|
parseFrontmatter: (content: string) => unknown;
|
|
extractSection: (content: string, heading: string, level?: number) => unknown;
|
|
extractAllSections: (content: string, level?: number) => string;
|
|
batchParseSfFiles: (directory: string) => unknown;
|
|
parseRoadmapFile: (content: string) => unknown;
|
|
truncateTail: (text: string, maxBytes: number) => unknown;
|
|
truncateHead: (text: string, maxBytes: number) => unknown;
|
|
truncateOutput: (text: string, maxBytes: number, mode?: string) => unknown;
|
|
parseJson: (text: string) => unknown;
|
|
parsePartialJson: (text: string) => unknown;
|
|
parseStreamingJson: (text: string) => unknown;
|
|
xxHash32: (input: string, seed: number) => number;
|
|
};
|