mirror of
https://github.com/callstack/agent-device.git
synced 2026-09-14 20:06:34 +08:00
7a2d48d160
* perf: bundle runtime dependencies and report full install size * refactor: remove unused size report breakdowns
419 lines
13 KiB
JavaScript
419 lines
13 KiB
JavaScript
#!/usr/bin/env node
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import { execFileSync } from 'node:child_process';
|
|
import { performance } from 'node:perf_hooks';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { gzipSync } from 'node:zlib';
|
|
import { formatBytes, formatDiff, formatMaybeBytes } from './size-report-format.mjs';
|
|
import { collectNpmPack } from './size-report-package.mjs';
|
|
import { measureCleanInstalledPackage } from './size-report-install.mjs';
|
|
import { preparePublishAssets } from './prepare-publish-assets.mjs';
|
|
|
|
const COMMENT_MARKER = '<!-- agent-device-size-report -->';
|
|
const GITHUB_REQUEST_ATTEMPTS = 4;
|
|
// Overridable so the regression tests do not sleep through real backoff.
|
|
const GITHUB_RETRY_BASE_MS = Number(process.env.SIZE_REPORT_RETRY_BASE_MS ?? 1000);
|
|
class TransientGitHubError extends Error {}
|
|
const VALUE_ARGS = new Map([
|
|
['--cwd', 'cwd'],
|
|
['--json', 'json'],
|
|
['--markdown', 'markdown'],
|
|
['--compare', 'compare'],
|
|
['--post-comment', 'postComment'],
|
|
['--pr', 'pr'],
|
|
['--startup-runs', 'startupRuns'],
|
|
]);
|
|
|
|
const STARTUP_BENCHMARKS = [
|
|
{ name: 'CLI --version', args: ['--version'] },
|
|
{ name: 'CLI --help', args: ['--help'] },
|
|
];
|
|
|
|
if (isMainModule()) {
|
|
await run();
|
|
}
|
|
|
|
async function run() {
|
|
const args = parseArgs(process.argv.slice(2));
|
|
const cwd = path.resolve(args.cwd ?? process.cwd());
|
|
|
|
if (args.postComment) {
|
|
await postGitHubCommentBestEffort(args.postComment, args.pr);
|
|
return;
|
|
}
|
|
|
|
const report = collectReport(cwd, {
|
|
startupRuns: parseNonNegativeInteger(args.startupRuns ?? '0', '--startup-runs'),
|
|
});
|
|
const baseReport = args.compare ? JSON.parse(fs.readFileSync(args.compare, 'utf8')) : null;
|
|
|
|
if (args.json) {
|
|
writeFile(args.json, `${JSON.stringify(report, null, 2)}\n`);
|
|
}
|
|
|
|
const markdown = formatMarkdown(report, baseReport);
|
|
|
|
if (args.markdown) {
|
|
writeFile(args.markdown, markdown);
|
|
} else {
|
|
process.stdout.write(markdown);
|
|
}
|
|
}
|
|
|
|
function isMainModule() {
|
|
return process.argv[1] && path.resolve(process.argv[1]) === fileURLToPath(import.meta.url);
|
|
}
|
|
|
|
function parseArgs(argv) {
|
|
const parsed = {};
|
|
for (let index = 0; index < argv.length; index += 1) {
|
|
const arg = argv[index];
|
|
if (assignValueArg(parsed, arg, argv, index)) index += 1;
|
|
else if (isHelpArg(arg)) printHelpAndExit();
|
|
else throw new Error(`Unknown argument: ${arg}`);
|
|
}
|
|
return parsed;
|
|
}
|
|
|
|
function assignValueArg(parsed, arg, argv, index) {
|
|
const key = VALUE_ARGS.get(arg);
|
|
if (!key) return false;
|
|
parsed[key] = readValue(argv, index + 1, arg);
|
|
return true;
|
|
}
|
|
|
|
function isHelpArg(arg) {
|
|
return arg === '--help' || arg === '-h';
|
|
}
|
|
|
|
function printHelpAndExit() {
|
|
process.stdout.write(`Usage: node scripts/size-report.mjs [options]
|
|
|
|
Options:
|
|
--cwd <path> Project root to measure. Defaults to cwd.
|
|
--json <path> Write the raw size report JSON.
|
|
--markdown <path> Write the markdown report.
|
|
--compare <path> Compare against a previously written JSON report.
|
|
--startup-runs <count> Measure startup medians for side-effect-free CLI commands.
|
|
--post-comment <path> Post or update the markdown report on the current PR.
|
|
--pr <number> Pull request number for --post-comment.
|
|
`);
|
|
process.exit(0);
|
|
}
|
|
|
|
function readValue(argv, index, flag) {
|
|
const value = argv[index];
|
|
if (!value || value.startsWith('--')) {
|
|
throw new Error(`${flag} requires a value`);
|
|
}
|
|
return value;
|
|
}
|
|
|
|
function parseNonNegativeInteger(value, flag) {
|
|
const parsed = Number(value);
|
|
if (!Number.isInteger(parsed) || parsed < 0) {
|
|
throw new Error(`${flag} must be a non-negative integer`);
|
|
}
|
|
return parsed;
|
|
}
|
|
|
|
function collectReport(root, options) {
|
|
const packageJson = JSON.parse(fs.readFileSync(path.join(root, 'package.json'), 'utf8'));
|
|
const jsFiles = walk(path.join(root, 'dist', 'src')).filter((file) => file.endsWith('.js'));
|
|
if (jsFiles.length === 0) {
|
|
throw new Error('No dist/src JavaScript files found. Run `pnpm build` before measuring size.');
|
|
}
|
|
preparePublishAssets({ root });
|
|
|
|
const bundled = { files: jsFiles.length, rawBytes: 0, gzipBytes: 0 };
|
|
for (const file of jsFiles) {
|
|
const buffer = fs.readFileSync(file);
|
|
bundled.rawBytes += buffer.byteLength;
|
|
bundled.gzipBytes += gzipSync(buffer, { level: 9 }).byteLength;
|
|
}
|
|
|
|
const npmPackWithArchive = collectNpmPack(root);
|
|
const { tarballPath, ...npmPack } = npmPackWithArchive;
|
|
const cleanInstalled = measureCleanInstalledPackage(tarballPath, packageJson.name);
|
|
|
|
return {
|
|
packageName: packageJson.name,
|
|
version: packageJson.version,
|
|
generatedAt: new Date().toISOString(),
|
|
bundled,
|
|
npmPack,
|
|
cleanInstalled,
|
|
...(options.startupRuns > 0
|
|
? { startup: collectStartupBenchmarks(root, options.startupRuns) }
|
|
: {}),
|
|
};
|
|
}
|
|
|
|
function collectStartupBenchmarks(root, runs) {
|
|
return {
|
|
runs,
|
|
benchmarks: STARTUP_BENCHMARKS.map((benchmark) =>
|
|
measureStartupBenchmark(root, benchmark, runs),
|
|
),
|
|
};
|
|
}
|
|
|
|
function measureStartupBenchmark(root, benchmark, runs) {
|
|
const samplesMs = [];
|
|
runStartupCommand(root, benchmark.args);
|
|
for (let index = 0; index < runs; index += 1) {
|
|
const start = performance.now();
|
|
runStartupCommand(root, benchmark.args);
|
|
samplesMs.push(performance.now() - start);
|
|
}
|
|
const sortedSamples = [...samplesMs].sort((left, right) => left - right);
|
|
return {
|
|
name: benchmark.name,
|
|
command: `agent-device ${benchmark.args.join(' ')}`,
|
|
medianMs: median(sortedSamples),
|
|
minMs: sortedSamples[0],
|
|
maxMs: sortedSamples.at(-1),
|
|
samplesMs,
|
|
};
|
|
}
|
|
|
|
function runStartupCommand(root, args) {
|
|
execFileSync(process.execPath, ['bin/agent-device.mjs', ...args], {
|
|
cwd: root,
|
|
stdio: 'ignore',
|
|
timeout: 5_000,
|
|
});
|
|
}
|
|
|
|
function median(sortedValues) {
|
|
const midpoint = Math.floor(sortedValues.length / 2);
|
|
return sortedValues.length % 2 === 0
|
|
? (sortedValues[midpoint - 1] + sortedValues[midpoint]) / 2
|
|
: sortedValues[midpoint];
|
|
}
|
|
|
|
function walk(root) {
|
|
if (!fs.existsSync(root)) return [];
|
|
const entries = fs.readdirSync(root, { withFileTypes: true });
|
|
return entries.flatMap((entry) => {
|
|
const entryPath = path.join(root, entry.name);
|
|
return entry.isDirectory() ? walk(entryPath) : [entryPath];
|
|
});
|
|
}
|
|
|
|
function formatMarkdown(report, baseReport) {
|
|
const rows = [
|
|
metricRow(
|
|
'Installed (including dependencies)',
|
|
baseReport?.cleanInstalled?.totalBytes,
|
|
report.cleanInstalled.totalBytes,
|
|
),
|
|
metricRow(
|
|
'Package (unpacked)',
|
|
baseReport?.npmPack.unpackedBytes,
|
|
report.npmPack.unpackedBytes,
|
|
),
|
|
metricRow('Package (download)', baseReport?.npmPack.tarballBytes, report.npmPack.tarballBytes),
|
|
];
|
|
return `${COMMENT_MARKER}
|
|
## Size Report
|
|
|
|
| Metric | Base | Current | Diff |
|
|
|---|---:|---:|---:|
|
|
${rows.join('\n')}
|
|
|
|
${formatStartupBenchmarks(report.startup, baseReport?.startup)}`;
|
|
}
|
|
|
|
function metricRow(label, base, current) {
|
|
return `| ${label} | ${formatMaybeBytes(base)} | ${formatBytes(current)} | ${formatDiff(base, current)} |`;
|
|
}
|
|
|
|
function formatStartupBenchmarks(startup, baseStartup) {
|
|
if (!startup) return '';
|
|
const baseByName = new Map(
|
|
(baseStartup?.benchmarks ?? []).map((benchmark) => [benchmark.name, benchmark]),
|
|
);
|
|
const rows = startup.benchmarks.map((benchmark) => {
|
|
const base = baseByName.get(benchmark.name);
|
|
return `| ${benchmark.name} | ${formatMaybeMs(base?.medianMs)} | ${formatMs(benchmark.medianMs)} | ${formatMsDiff(base?.medianMs, benchmark.medianMs)} |`;
|
|
});
|
|
return `Startup median (${startup.runs} runs, lower is better):
|
|
|
|
| Scenario | Base | Current | Diff |
|
|
|---|---:|---:|---:|
|
|
${rows.join('\n')}
|
|
|
|
`;
|
|
}
|
|
|
|
function formatMaybeMs(value) {
|
|
return typeof value === 'number' ? formatMs(value) : '-';
|
|
}
|
|
|
|
function formatMsDiff(base, current) {
|
|
if (typeof base !== 'number') return '-';
|
|
const diff = current - base;
|
|
if (diff === 0) return '0 ms';
|
|
const sign = diff > 0 ? '+' : '-';
|
|
return `${sign}${formatMs(Math.abs(diff))}`;
|
|
}
|
|
|
|
function formatMs(value) {
|
|
return value < 1000 ? `${value.toFixed(1)} ms` : `${(value / 1000).toFixed(2)} s`;
|
|
}
|
|
|
|
function writeFile(filePath, contents) {
|
|
fs.mkdirSync(path.dirname(path.resolve(filePath)), { recursive: true });
|
|
fs.writeFileSync(filePath, contents);
|
|
}
|
|
|
|
// The PR comment is a convenience surface: the same markdown is already in the
|
|
// job summary. A GitHub outage (5xx / 429 / network error) must not fail the
|
|
// job, but a real misconfiguration (bad token, missing permissions) still does.
|
|
async function postGitHubCommentBestEffort(markdownPath, explicitPrNumber) {
|
|
try {
|
|
await postGitHubComment(markdownPath, explicitPrNumber);
|
|
} catch (error) {
|
|
if (!(error instanceof TransientGitHubError)) throw error;
|
|
const message = `Skipping PR size comment after transient GitHub failure: ${error.message}`;
|
|
process.stdout.write(`::warning::${message}\n`);
|
|
appendStepSummary(`> ⚠️ ${message} The size report above is authoritative.\n`);
|
|
}
|
|
}
|
|
|
|
function appendStepSummary(text) {
|
|
const summaryPath = process.env.GITHUB_STEP_SUMMARY;
|
|
if (summaryPath) fs.appendFileSync(summaryPath, text);
|
|
}
|
|
|
|
async function postGitHubComment(markdownPath, explicitPrNumber) {
|
|
const config = readGitHubCommentConfig(explicitPrNumber);
|
|
const body = fs.readFileSync(markdownPath, 'utf8');
|
|
const commentsUrl = buildCommentsUrl(config.repository, config.prNumber);
|
|
await retryTransient(() => syncGitHubComment(commentsUrl, config.headers, body));
|
|
}
|
|
|
|
// Every attempt re-lists before writing: a create whose response was lost
|
|
// (network error / 5xx) may still have landed server-side, and re-listing turns
|
|
// that into an update of the existing marker comment instead of a duplicate.
|
|
async function syncGitHubComment(commentsUrl, headers, body) {
|
|
const comments = await listGitHubComments(commentsUrl, headers);
|
|
const existing = comments.find((comment) => comment.body?.includes(COMMENT_MARKER));
|
|
await writeGitHubComment(commentsUrl, headers, body, existing?.url);
|
|
}
|
|
|
|
function readGitHubCommentConfig(explicitPrNumber) {
|
|
const token = process.env.GITHUB_TOKEN;
|
|
const repository = process.env.GITHUB_REPOSITORY;
|
|
const prNumber = explicitPrNumber ?? process.env.GITHUB_PR_NUMBER;
|
|
assertGitHubCommentConfig(token, repository, prNumber);
|
|
return {
|
|
repository,
|
|
prNumber,
|
|
headers: buildGitHubHeaders(token),
|
|
};
|
|
}
|
|
|
|
function assertGitHubCommentConfig(token, repository, prNumber) {
|
|
for (const value of [token, repository, prNumber]) {
|
|
if (!value) {
|
|
throw new Error(
|
|
'GITHUB_TOKEN, GITHUB_REPOSITORY, and PR number are required to post a comment.',
|
|
);
|
|
}
|
|
}
|
|
}
|
|
|
|
function buildGitHubHeaders(token) {
|
|
return {
|
|
accept: 'application/vnd.github+json',
|
|
authorization: `Bearer ${token}`,
|
|
'content-type': 'application/json',
|
|
'x-github-api-version': '2022-11-28',
|
|
};
|
|
}
|
|
|
|
function buildCommentsUrl(repository, prNumber) {
|
|
const [owner, repo] = repository.split('/');
|
|
return `https://api.github.com/repos/${owner}/${repo}/issues/${prNumber}/comments`;
|
|
}
|
|
|
|
async function listGitHubComments(commentsUrl, headers) {
|
|
const response = await githubRequest(
|
|
`${commentsUrl}?per_page=100`,
|
|
{ headers },
|
|
'list PR comments',
|
|
);
|
|
return await response.json();
|
|
}
|
|
|
|
async function writeGitHubComment(commentsUrl, headers, body, existingUrl) {
|
|
const target = commentWriteTarget(commentsUrl, existingUrl);
|
|
await githubRequest(
|
|
target.url,
|
|
{ method: target.method, headers, body: JSON.stringify({ body }) },
|
|
`${target.action} PR comment`,
|
|
);
|
|
}
|
|
|
|
function commentWriteTarget(commentsUrl, existingUrl) {
|
|
if (existingUrl) {
|
|
return { url: existingUrl, method: 'PATCH', action: 'update' };
|
|
}
|
|
return { url: commentsUrl, method: 'POST', action: 'create' };
|
|
}
|
|
|
|
// Re-runs `operation` with exponential backoff while it throws
|
|
// TransientGitHubError; any other error (a non-transient HTTP status, i.e. a
|
|
// configuration problem) propagates immediately and fails the job.
|
|
async function retryTransient(operation) {
|
|
for (let attempt = 1; ; attempt += 1) {
|
|
try {
|
|
return await operation();
|
|
} catch (error) {
|
|
await backoffOrRethrow(error, attempt);
|
|
}
|
|
}
|
|
}
|
|
|
|
async function backoffOrRethrow(error, attempt) {
|
|
if (!(error instanceof TransientGitHubError)) throw error;
|
|
if (attempt >= GITHUB_REQUEST_ATTEMPTS) {
|
|
throw new TransientGitHubError(`${error.message} after ${attempt} attempts`);
|
|
}
|
|
const delayMs = GITHUB_RETRY_BASE_MS * 2 ** (attempt - 1);
|
|
process.stderr.write(`${error.message} (retrying in ${delayMs}ms)\n`);
|
|
await new Promise((resolve) => setTimeout(resolve, delayMs));
|
|
}
|
|
|
|
// One attempt: network errors and 5xx / 429 throw TransientGitHubError;
|
|
// any other non-OK status throws a plain (fatal) Error.
|
|
async function githubRequest(url, init, action) {
|
|
const response = await fetchOrTransient(url, init, action);
|
|
if (response.ok) return response;
|
|
throw await githubStatusError(response, action);
|
|
}
|
|
|
|
async function fetchOrTransient(url, init, action) {
|
|
try {
|
|
return await fetch(url, init);
|
|
} catch (error) {
|
|
throw new TransientGitHubError(`Failed to ${action}: ${error?.message ?? error}`);
|
|
}
|
|
}
|
|
|
|
async function githubStatusError(response, action) {
|
|
const failure = `Failed to ${action}: ${response.status} ${await response.text()}`;
|
|
return isTransientGitHubStatus(response.status)
|
|
? new TransientGitHubError(failure)
|
|
: new Error(failure);
|
|
}
|
|
|
|
function isTransientGitHubStatus(status) {
|
|
return status === 429 || status >= 500;
|
|
}
|
|
|
|
export { formatMarkdown };
|