element-desktop/scripts/hak/index.ts

158 lines
5.5 KiB
TypeScript
Raw Permalink Normal View History

/*
2024-09-06 16:56:18 +00:00
Copyright 2024 New Vector Ltd.
Copyright 2020, 2021 The Matrix.org Foundation C.I.C.
2024-09-06 16:56:18 +00:00
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only
Please see LICENSE files in the repository root for full details.
*/
2022-12-15 11:00:58 +00:00
import path from "path";
2022-12-15 11:00:58 +00:00
import HakEnv from "./hakEnv";
import { TargetId } from "./target";
import { DependencyInfo } from "./dep";
2022-12-15 11:00:58 +00:00
const GENERALCOMMANDS = ["target"];
// These can only be run on specific modules
const MODULECOMMANDS = ["check", "fetch", "link", "build", "copy", "clean"];
// Shortcuts for multiple commands at once (useful for building universal binaries
// because you can run the fetch/fetchDeps/build for each arch and then copy/link once)
const METACOMMANDS: Record<string, string[]> = {
fetchandbuild: ["check", "fetch", "build"],
2022-12-15 11:00:58 +00:00
copyandlink: ["copy", "link"],
};
// Scripts valid in a hak.json 'scripts' section
const HAKSCRIPTS = ["check", "fetch", "build"];
async function main(): Promise<void> {
2024-06-19 09:20:17 +00:00
const prefix = path.join(__dirname, "..", "..");
let packageJson;
try {
packageJson = require(path.join(prefix, "package.json"));
} catch (e) {
console.error("Can't find a package.json!");
process.exit(1);
}
const targetIds: TargetId[] = [];
// Apply `--target <target>` option if specified
// Can be specified multiple times for the copy command to bundle
// multiple archs into a single universal output module)
2022-12-15 11:00:58 +00:00
for (;;) {
// eslint-disable-line no-constant-condition
const targetIndex = process.argv.indexOf("--target");
if (targetIndex === -1) break;
2022-12-15 11:00:58 +00:00
if (targetIndex + 1 >= process.argv.length) {
console.error("--target option specified without a target");
process.exit(1);
}
// Extract target ID and remove from args
targetIds.push(process.argv.splice(targetIndex, 2)[1] as TargetId);
}
2022-12-15 11:00:58 +00:00
const hakEnvs = targetIds.map((tid) => new HakEnv(prefix, tid));
if (hakEnvs.length == 0) hakEnvs.push(new HakEnv(prefix, null));
for (const h of hakEnvs) {
await h.init();
}
const hakEnv = hakEnvs[0];
const deps: Record<string, DependencyInfo> = {};
const hakDepsCfg = packageJson.hakDependencies || {};
for (const dep of Object.keys(hakDepsCfg)) {
2022-12-15 11:00:58 +00:00
const hakJsonPath = path.join(prefix, "hak", dep, "hak.json");
let hakJson: Record<string, any>;
try {
hakJson = await require(hakJsonPath);
} catch (e) {
console.error("No hak.json found for " + dep + ".");
console.log("Expecting " + hakJsonPath);
process.exit(1);
}
deps[dep] = {
name: dep,
version: hakDepsCfg[dep],
cfg: hakJson,
2022-12-15 11:00:58 +00:00
moduleHakDir: path.join(prefix, "hak", dep),
2020-02-15 16:52:41 +00:00
moduleDotHakDir: path.join(hakEnv.dotHakDir, dep),
moduleTargetDotHakDir: path.join(hakEnv.dotHakDir, dep, hakEnv.getTargetId()),
2022-12-15 11:00:58 +00:00
moduleBuildDir: path.join(hakEnv.dotHakDir, dep, hakEnv.getTargetId(), "build"),
moduleBuildDirs: hakEnvs.map((h) => path.join(h.dotHakDir, dep, h.getTargetId(), "build")),
moduleOutDir: path.join(hakEnv.dotHakDir, "hakModules", dep),
nodeModuleBinDir: path.join(hakEnv.dotHakDir, dep, hakEnv.getTargetId(), "build", "node_modules", ".bin"),
depPrefix: path.join(hakEnv.dotHakDir, dep, hakEnv.getTargetId(), "opt"),
scripts: {},
};
for (const s of HAKSCRIPTS) {
if (hakJson.scripts && hakJson.scripts[s]) {
2022-12-15 11:00:58 +00:00
const scriptModule = await import(path.join(prefix, "hak", dep, hakJson.scripts[s]));
if (scriptModule.__esModule) {
deps[dep].scripts[s] = scriptModule.default;
} else {
deps[dep].scripts[s] = scriptModule;
}
}
}
}
let cmds: string[];
if (process.argv.length < 3) {
cmds = ["check", "fetch", "build", "copy", "link"];
} else if (METACOMMANDS[process.argv[2]]) {
cmds = METACOMMANDS[process.argv[2]];
2020-02-17 20:10:58 +00:00
} else {
cmds = [process.argv[2]];
}
2022-12-15 11:00:58 +00:00
if (hakEnvs.length > 1 && cmds.some((c) => !["copy", "link"].includes(c))) {
// We allow link here too for convenience because it's completely arch independent
console.error("Multiple targets only supported with the copy command");
return;
}
2020-02-17 20:10:58 +00:00
let modules = process.argv.slice(3);
if (modules.length === 0) modules = Object.keys(deps);
2020-02-17 20:10:58 +00:00
for (const cmd of cmds) {
if (GENERALCOMMANDS.includes(cmd)) {
2022-12-15 11:00:58 +00:00
if (cmd === "target") {
2020-02-17 20:10:58 +00:00
console.log(hakEnv.getNodeTriple());
}
return;
}
2020-02-17 20:10:58 +00:00
if (!MODULECOMMANDS.includes(cmd)) {
console.error("Unknown command: " + cmd);
console.log("Commands I know about:");
for (const cmd of MODULECOMMANDS) {
console.log("\t" + cmd);
}
process.exit(1);
}
2022-12-15 11:00:58 +00:00
const cmdFunc = (await import("./" + cmd)).default;
2020-02-17 20:10:58 +00:00
for (const mod of modules) {
const depInfo = deps[mod];
if (depInfo === undefined) {
2022-12-15 11:00:58 +00:00
console.log("Module " + mod + " not found - is it in hakDependencies " + "in your package.json?");
2020-02-17 20:10:58 +00:00
process.exit(1);
}
console.log("hak " + cmd + ": " + mod);
await cmdFunc(hakEnv, depInfo);
}
}
}
2022-12-15 11:00:58 +00:00
main().catch((err) => {
console.error(err);
process.exit(1);
});