107 lines
4.3 KiB
JavaScript
107 lines
4.3 KiB
JavaScript
#!/usr/bin/env node
|
|
import { createHash } from "node:crypto";
|
|
import { spawnSync } from "node:child_process";
|
|
import { cp, mkdir, mkdtemp, readFile, rm, writeFile } from "node:fs/promises";
|
|
import { tmpdir } from "node:os";
|
|
import { dirname, join, resolve } from "node:path";
|
|
import { fileURLToPath } from "node:url";
|
|
|
|
const scriptDir = dirname(fileURLToPath(import.meta.url));
|
|
const sourceRoot = resolve(scriptDir, "../..");
|
|
const artifactDir = resolve(
|
|
process.env.NODEDC_DEPLOY_ARTIFACT_DIR
|
|
|| resolve(scriptDir, "../deploy-artifacts"),
|
|
);
|
|
const [
|
|
patchId = "device-control-core-migration-replay-checkpoint-recovery-20260822-046",
|
|
...extra
|
|
] = process.argv.slice(2);
|
|
if (extra.length || !/^[A-Za-z0-9._-]{1,96}$/.test(patchId)) {
|
|
throw new Error(
|
|
"usage: build-device-control-core-migration-replay-checkpoint-recovery-artifact.mjs [patch-id]",
|
|
);
|
|
}
|
|
|
|
const entries = [
|
|
"services/device-control-core/migrations/014_device_registry_profile_commands.sql",
|
|
"deployment/device-control-core-migration-replay-checkpoint-recovery-v2.json",
|
|
];
|
|
const stage = await mkdtemp(join(tmpdir(), "nodedc-control-core-replay-checkpoint-"));
|
|
const payload = join(stage, "payload");
|
|
const target = resolve(artifactDir, `nodedc-device-plane-${patchId}.tgz`);
|
|
|
|
try {
|
|
const descriptor = JSON.parse(await readFile(resolve(sourceRoot, entries[1]), "utf8"));
|
|
const targetBytes = await readFile(resolve(sourceRoot, entries[0]));
|
|
const targetSha256 = createHash("sha256").update(targetBytes).digest("hex");
|
|
if (
|
|
descriptor.schemaVersion
|
|
!== "nodedc.device-plane.device-control-core-migration-replay-checkpoint-recovery.v2"
|
|
|| descriptor.mode !== "terminal-044-replay-checkpoint-forward-repair"
|
|
|| descriptor.failedRecovery?.patchId
|
|
!== "device-control-core-migration-replay-recovery-20260822-044"
|
|
|| descriptor.failedRecovery?.artifactSha256
|
|
!== "b893d8c90f98943797d32f486d6477d58a3be69eb1291e28c4a4bbd2e96774b7"
|
|
|| descriptor.failedRecovery?.startedApply !== false
|
|
|| descriptor.sourceTarget.path !== entries[0]
|
|
|| descriptor.sourceTarget.sha256 !== targetSha256
|
|
|| descriptor.databaseRowMutation !== "none"
|
|
|| descriptor.runtimeAction !== "build+recreate-device-control-core-only"
|
|
) {
|
|
throw new Error(
|
|
"device_control_core_migration_replay_checkpoint_recovery_descriptor_mismatch",
|
|
);
|
|
}
|
|
|
|
for (const entry of entries) {
|
|
await mkdir(dirname(join(payload, entry)), { recursive: true });
|
|
await cp(resolve(sourceRoot, entry), join(payload, entry), { force: true });
|
|
}
|
|
await writeFile(
|
|
join(stage, "manifest.env"),
|
|
`id=${patchId}\ncomponent=device-plane\ntype=app-overlay\n`,
|
|
"utf8",
|
|
);
|
|
await writeFile(join(stage, "files.txt"), `${entries.join("\n")}\n`, "utf8");
|
|
await mkdir(artifactDir, { recursive: true });
|
|
const tar = spawnSync(
|
|
"python3",
|
|
["-c", canonicalTarScript(), target, stage],
|
|
{ encoding: "utf8", maxBuffer: 16 * 1024 * 1024 },
|
|
);
|
|
if (tar.status !== 0) throw new Error(`tar_failed:${tar.stderr || tar.stdout}`);
|
|
const sha256 = createHash("sha256")
|
|
.update(await readFile(target))
|
|
.digest("hex");
|
|
console.log(JSON.stringify({
|
|
ok: true,
|
|
patchId,
|
|
component: "device-plane",
|
|
artifact: target,
|
|
sha256,
|
|
entries,
|
|
build: ["nodedc/device-control-core:local"],
|
|
services: ["device-control-core"],
|
|
transition: descriptor.mode,
|
|
databaseRowMutation: descriptor.databaseRowMutation,
|
|
runtimeAction: descriptor.runtimeAction,
|
|
}, null, 2));
|
|
} finally {
|
|
await rm(stage, { recursive: true, force: true });
|
|
}
|
|
|
|
function canonicalTarScript() {
|
|
return [
|
|
"import gzip,io,pathlib,sys,tarfile",
|
|
"root=pathlib.Path(sys.argv[2])",
|
|
"with open(sys.argv[1],'wb') as out:",
|
|
" with gzip.GzipFile(filename='',mode='wb',fileobj=out,compresslevel=9,mtime=0) as gz:",
|
|
" with tarfile.open(fileobj=gz,mode='w',format=tarfile.PAX_FORMAT) as tar:",
|
|
" for top in ('manifest.env','files.txt','payload'):",
|
|
" p=root/top; paths=[p]+(sorted(p.rglob('*')) if p.is_dir() else [])",
|
|
" for x in paths:",
|
|
" info=tar.gettarinfo(str(x),arcname=x.relative_to(root).as_posix()); info.uid=info.gid=0; info.uname=info.gname='root'; info.mtime=0; info.mode=0o755 if info.isdir() else 0o644",
|
|
" with (open(x,'rb') if info.isfile() else io.BytesIO()) as src: tar.addfile(info,src if info.isfile() else None)",
|
|
].join("\n");
|
|
}
|