mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-13 04:45:19 +00:00
53 lines
1.8 KiB
TypeScript
53 lines
1.8 KiB
TypeScript
import { Repo } from "@sourcebot/db";
|
|
import { createLogger } from "@sourcebot/logger";
|
|
import { exec } from "child_process";
|
|
import { INDEX_CACHE_DIR } from "./constants.js";
|
|
import { Settings } from "./types.js";
|
|
import { getRepoPath, getShardPrefix } from "./utils.js";
|
|
|
|
const logger = createLogger('zoekt');
|
|
|
|
export const indexGitRepository = async (repo: Repo, settings: Settings, revisions: string[], signal?: AbortSignal) => {
|
|
const { path: repoPath } = getRepoPath(repo);
|
|
const shardPrefix = getShardPrefix(repo.orgId, repo.id);
|
|
|
|
const command = [
|
|
'zoekt-git-index',
|
|
'-allow_missing_branches',
|
|
`-index ${INDEX_CACHE_DIR}`,
|
|
`-max_trigram_count ${settings.maxTrigramCount}`,
|
|
`-file_limit ${settings.maxFileSize}`,
|
|
`-branches "${revisions.join(',')}"`,
|
|
`-tenant_id ${repo.orgId}`,
|
|
`-repo_id ${repo.id}`,
|
|
`-shard_prefix ${shardPrefix}`,
|
|
repoPath
|
|
].join(' ');
|
|
|
|
return new Promise<{ stdout: string, stderr: string }>((resolve, reject) => {
|
|
exec(command, { signal }, (error, stdout, stderr) => {
|
|
if (error) {
|
|
reject(error);
|
|
return;
|
|
}
|
|
|
|
if (stdout) {
|
|
stdout.split('\n').filter(line => line.trim()).forEach(line => {
|
|
logger.info(line);
|
|
});
|
|
}
|
|
if (stderr) {
|
|
stderr.split('\n').filter(line => line.trim()).forEach(line => {
|
|
// TODO: logging as regular info here and not error because non error logs are being
|
|
// streamed in stderr and incorrectly being logged as errors at a high level
|
|
logger.info(line);
|
|
});
|
|
}
|
|
|
|
resolve({
|
|
stdout,
|
|
stderr
|
|
});
|
|
})
|
|
});
|
|
}
|