| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396 |
- /**
- * Project-scoped configuration: a committed `codegraph.json` at the project
- * root that a team shares through version control.
- *
- * Today it carries one thing — `extensions`, an opt-in map from a custom file
- * extension to one of CodeGraph's supported languages. The built-in
- * extension → language table (`EXTENSION_MAP` in `extraction/grammars.ts`) is
- * otherwise hardcoded, so a codebase that uses a non-standard extension for a
- * supported language (e.g. `.dota_lua` for Lua) sees those files silently
- * skipped. This lets the project map them once, in a version-controlled file:
- *
- * {
- * "extensions": {
- * ".dota_lua": "lua",
- * ".tpl": "php"
- * }
- * }
- *
- * User mappings merge on TOP of the built-ins and win on conflict, so a project
- * can also re-point a built-in extension (e.g. force `.h` → `cpp`). Absent or
- * malformed config is the zero-config default — no overrides, no error. Invalid
- * individual entries are warned-and-skipped (never fatal): an unparseable
- * project file must not break indexing.
- */
- import * as fs from 'fs';
- import * as path from 'path';
- import { Language } from './types';
- import { isLanguageSupported } from './extraction/grammars';
- import { logWarn } from './errors';
- /** Filename of the project-scoped config, resolved relative to the project root. */
- export const PROJECT_CONFIG_FILENAME = 'codegraph.json';
- export interface ProjectConfig {
- /** Map of custom file extension (`.foo`) to a supported language id. */
- extensions?: Record<string, string>;
- /**
- * Gitignore-style patterns naming gitignored directories whose embedded git
- * repositories should be indexed anyway — the explicit opt-in to override
- * `.gitignore` for nested-repo discovery (#622, #699). Absent/empty (the
- * default) means `.gitignore` is fully respected: gitignored embedded repos
- * are never discovered or indexed (#970, #976).
- */
- includeIgnored?: string[];
- /**
- * Gitignore-style patterns for paths to keep OUT of the index — even when
- * they are git-TRACKED, which `.gitignore` cannot do (#999). The escape hatch
- * for a committed vendor/theme/SDK directory (e.g. a checked-in Metronic theme
- * under `static/`) that bloats the graph and slows indexing but isn't really
- * your code. Matched against project-root-relative paths, so a directory like
- * `"static/"`, a double-star vendor glob, or `"assets/theme"` all work.
- * Absent/empty (the default) excludes nothing beyond the built-in defaults
- * and your `.gitignore`.
- */
- exclude?: string[];
- /**
- * Gitignore-style patterns for first-party source to force INTO the index even
- * when `.gitignore` would drop it — the general whitelist `includeIgnored`
- * never was (that one only revives *embedded git repos* inside ignored dirs).
- * The case this exists for: a project under a second VCS (SVN, Perforce, …)
- * deliberately `.gitignore`s its own real source so it never lands in Git, yet
- * that source must still be indexed. Matched against project-root-relative
- * paths, so `"Tools/"`, a recursive `"Tools/**"` glob, or `"Local/typescript"`
- * all work.
- * Built-in default-ignored dirs (`node_modules`, `dist`, …), `.git`, and
- * CodeGraph's own data dir are never resurfaced; an explicit `exclude` still
- * wins. Absent/empty (the default) forces nothing in.
- */
- include?: string[];
- }
- /** Parsed, validated view of a project's `codegraph.json`. */
- interface ParsedConfig {
- extensions: Record<string, Language>;
- includeIgnored: string[];
- exclude: string[];
- include: string[];
- }
- interface CacheEntry {
- mtimeMs: number;
- config: ParsedConfig;
- }
- /**
- * Cache keyed by project root. The loader is called once per indexing/scan/sync
- * operation (and per watch event), so the mtime guard keeps repeat calls to one
- * `stat` while a single `codegraph.json` is in force. Keying by root keeps two
- * projects in the same process (the daemon / multi-project MCP server) isolated.
- */
- const cache = new Map<string, CacheEntry>();
- /** Shared frozen empties so the no-config path allocates nothing. */
- const EMPTY_EXTENSIONS: Record<string, Language> = Object.freeze({});
- const EMPTY_CONFIG: ParsedConfig = Object.freeze({
- extensions: EMPTY_EXTENSIONS,
- includeIgnored: Object.freeze([]) as unknown as string[],
- exclude: Object.freeze([]) as unknown as string[],
- include: Object.freeze([]) as unknown as string[],
- });
- /**
- * Normalize a user-provided extension key to the `.ext` lowercase form used by
- * the built-in map. Returns null for keys that can never match a real file
- * extension (so the caller warns and skips):
- * - empty / just "."
- * - multi-part (".d.ts") — language detection keys off the FINAL extension
- * only (`lastIndexOf('.')`), so a multi-dot key would never be consulted.
- * - anything containing a path separator.
- */
- function normalizeExtKey(raw: string): string | null {
- if (typeof raw !== 'string') return null;
- let ext = raw.trim().toLowerCase();
- if (!ext) return null;
- if (!ext.startsWith('.')) ext = '.' + ext;
- const body = ext.slice(1);
- if (!body) return null;
- if (body.includes('.') || body.includes('/') || body.includes('\\')) return null;
- return ext;
- }
- /**
- * Read + JSON-parse a `codegraph.json` once and return its validated view.
- * Every failure mode degrades to the zero-config default — a missing file, bad
- * JSON, or a typo'd value never throws.
- */
- function parseConfig(file: string): ParsedConfig {
- let raw: string;
- try {
- raw = fs.readFileSync(file, 'utf-8');
- } catch {
- return EMPTY_CONFIG;
- }
- let parsed: unknown;
- try {
- parsed = JSON.parse(raw);
- } catch (err) {
- logWarn(`Ignoring ${PROJECT_CONFIG_FILENAME}: not valid JSON`, {
- file,
- error: err instanceof Error ? err.message : String(err),
- });
- return EMPTY_CONFIG;
- }
- if (!parsed || typeof parsed !== 'object') return EMPTY_CONFIG;
- const extensions = extractExtensions(parsed, file);
- const includeIgnored = extractIncludeIgnored(parsed, file);
- const exclude = extractExclude(parsed, file);
- const include = extractInclude(parsed, file);
- if (
- extensions === EMPTY_EXTENSIONS &&
- includeIgnored.length === 0 &&
- exclude.length === 0 &&
- include.length === 0
- ) {
- return EMPTY_CONFIG;
- }
- return { extensions, includeIgnored, exclude, include };
- }
- /**
- * Validate the `extensions` map. Every failure mode degrades to "no overrides
- * from this entry" — a bad value or a typo'd language never throws.
- */
- function extractExtensions(parsed: object, file: string): Record<string, Language> {
- const exts = (parsed as ProjectConfig).extensions;
- if (!exts || typeof exts !== 'object' || Array.isArray(exts)) return EMPTY_EXTENSIONS;
- const out: Record<string, Language> = {};
- for (const [rawKey, rawVal] of Object.entries(exts)) {
- const key = normalizeExtKey(rawKey);
- if (!key) {
- logWarn(`Ignoring extension mapping in ${PROJECT_CONFIG_FILENAME}: "${rawKey}" is not a valid file extension`, { file });
- continue;
- }
- if (typeof rawVal !== 'string' || !isLanguageSupported(rawVal as Language)) {
- logWarn(`Ignoring extension "${rawKey}" in ${PROJECT_CONFIG_FILENAME}: "${String(rawVal)}" is not a supported language`, { file });
- continue;
- }
- out[key] = rawVal as Language;
- }
- return Object.keys(out).length > 0 ? out : EMPTY_EXTENSIONS;
- }
- /**
- * Validate the `includeIgnored` patterns: an array of non-empty gitignore-style
- * strings. A non-array value or a non-string/blank entry warns-and-skips; never
- * throws. Patterns are kept verbatim (trimmed) so they match exactly as a
- * `.gitignore` line would.
- */
- function extractIncludeIgnored(parsed: object, file: string): string[] {
- const raw = (parsed as ProjectConfig).includeIgnored;
- if (raw === undefined) return [];
- if (!Array.isArray(raw)) {
- logWarn(`Ignoring "includeIgnored" in ${PROJECT_CONFIG_FILENAME}: must be an array of gitignore-style patterns`, { file });
- return [];
- }
- const out: string[] = [];
- for (const entry of raw) {
- if (typeof entry !== 'string' || !entry.trim()) {
- logWarn(`Ignoring an "includeIgnored" entry in ${PROJECT_CONFIG_FILENAME}: every pattern must be a non-empty string`, { file });
- continue;
- }
- out.push(entry.trim());
- }
- return out;
- }
- /**
- * Validate the `exclude` patterns: an array of non-empty gitignore-style
- * strings naming paths to keep out of the index even when git-tracked (#999). A
- * non-array value or a non-string/blank entry warns-and-skips; never throws.
- * Patterns are kept verbatim (trimmed) so they match exactly as a `.gitignore`
- * line would, against project-root-relative paths.
- */
- function extractExclude(parsed: object, file: string): string[] {
- const raw = (parsed as ProjectConfig).exclude;
- if (raw === undefined) return [];
- if (!Array.isArray(raw)) {
- logWarn(`Ignoring "exclude" in ${PROJECT_CONFIG_FILENAME}: must be an array of gitignore-style patterns`, { file });
- return [];
- }
- const out: string[] = [];
- for (const entry of raw) {
- if (typeof entry !== 'string' || !entry.trim()) {
- logWarn(`Ignoring an "exclude" entry in ${PROJECT_CONFIG_FILENAME}: every pattern must be a non-empty string`, { file });
- continue;
- }
- out.push(entry.trim());
- }
- return out;
- }
- /**
- * Validate the `include` patterns: an array of non-empty gitignore-style strings
- * naming first-party source to force INTO the index despite `.gitignore` — the
- * whitelist for SVN/Perforce-only source a project gitignores out of Git (the
- * general case `includeIgnored` never covered). A non-array value or a
- * non-string/blank entry warns-and-skips; never throws. Patterns are kept
- * verbatim (trimmed) so they match exactly as a `.gitignore` line would, against
- * project-root-relative paths.
- */
- function extractInclude(parsed: object, file: string): string[] {
- const raw = (parsed as ProjectConfig).include;
- if (raw === undefined) return [];
- if (!Array.isArray(raw)) {
- logWarn(`Ignoring "include" in ${PROJECT_CONFIG_FILENAME}: must be an array of gitignore-style patterns`, { file });
- return [];
- }
- const out: string[] = [];
- for (const entry of raw) {
- if (typeof entry !== 'string' || !entry.trim()) {
- logWarn(`Ignoring an "include" entry in ${PROJECT_CONFIG_FILENAME}: every pattern must be a non-empty string`, { file });
- continue;
- }
- out.push(entry.trim());
- }
- return out;
- }
- /**
- * Load the parsed `codegraph.json` for a project, mtime-cached. A missing or
- * malformed file yields the zero-config default. One `stat` (and at most one
- * read/parse) while a single config file is in force, shared across every field.
- */
- function loadParsedConfig(rootDir: string): ParsedConfig {
- const file = path.join(rootDir, PROJECT_CONFIG_FILENAME);
- let mtimeMs: number;
- try {
- mtimeMs = fs.statSync(file).mtimeMs;
- } catch {
- // No config file — drop any stale cache entry and return the default.
- cache.delete(rootDir);
- return EMPTY_CONFIG;
- }
- const entry = cache.get(rootDir);
- if (entry && entry.mtimeMs === mtimeMs) return entry.config;
- const config = parseConfig(file);
- cache.set(rootDir, { mtimeMs, config });
- return config;
- }
- /**
- * Load the validated extension overrides for a project, mtime-cached.
- *
- * Returns a map of `.ext` → supported language id. The result merges on top of
- * the built-in extension map at the point of use (see `detectLanguage` /
- * `isSourceFile`), with these user mappings taking precedence. Returns an empty
- * map when there is no `codegraph.json` (the zero-config default).
- */
- export function loadExtensionOverrides(rootDir: string): Record<string, Language> {
- return loadParsedConfig(rootDir).extensions;
- }
- /**
- * Load the validated `includeIgnored` patterns for a project, mtime-cached.
- *
- * These name gitignored directories whose embedded git repositories should be
- * indexed despite `.gitignore` (#622, #699). An empty result — the zero-config
- * default — means `.gitignore` is fully respected: gitignored embedded repos
- * are never discovered or indexed (#970, #976).
- */
- export function loadIncludeIgnoredPatterns(rootDir: string): string[] {
- return loadParsedConfig(rootDir).includeIgnored;
- }
- /**
- * Load the validated `exclude` patterns for a project, mtime-cached.
- *
- * These name paths to keep OUT of the index even when git-tracked — the escape
- * hatch for a committed vendor/theme/SDK directory `.gitignore` can't drop
- * (#999). An empty result — the zero-config default — excludes nothing beyond
- * the built-in defaults and the project's `.gitignore`.
- */
- export function loadExcludePatterns(rootDir: string): string[] {
- return loadParsedConfig(rootDir).exclude;
- }
- /**
- * Load the validated `include` patterns for a project, mtime-cached.
- *
- * These name first-party source to force INTO the index even when `.gitignore`
- * would drop it — the whitelist for SVN/Perforce-only source a project
- * gitignores out of Git. An empty result — the zero-config default — forces
- * nothing in. Built-in default-ignored dirs, `.git`, and CodeGraph's data dir
- * are never resurfaced, and an explicit `exclude` still wins.
- */
- export function loadIncludePatterns(rootDir: string): string[] {
- return loadParsedConfig(rootDir).include;
- }
- /** Test/maintenance hook: forget cached config (e.g. after rewriting it in a test). */
- export function clearProjectConfigCache(): void {
- cache.clear();
- }
- /**
- * Add gitignore-style patterns to a project's `codegraph.json` `includeIgnored`
- * list, creating the file if absent and preserving every other key. Used by the
- * CLI to opt a "super-repo of gitignored child repos" (#1156) into the index on
- * the user's say-so. Returns the count of patterns actually ADDED (ones already
- * present are skipped, so a re-run is idempotent).
- *
- * A plain-JSON round-trip: a `codegraph.json` carrying comments (not valid JSON)
- * already fails to load with a warning, so rather than silently clobber such a
- * file this throws when an existing config won't parse — the caller falls back
- * to printing the manual snippet. Invalidates the config cache so a subsequent
- * index in the same process sees the new patterns.
- */
- export function addIncludeIgnoredPatterns(rootDir: string, patterns: string[]): number {
- const file = path.join(rootDir, PROJECT_CONFIG_FILENAME);
- let config: Record<string, unknown> = {};
- let raw: string | null = null;
- try {
- raw = fs.readFileSync(file, 'utf-8');
- } catch {
- raw = null; // missing file — create a fresh one below
- }
- if (raw !== null) {
- let parsed: unknown;
- try {
- parsed = JSON.parse(raw);
- } catch {
- throw new Error(`${PROJECT_CONFIG_FILENAME} is not valid JSON — fix it by hand, then re-run.`);
- }
- if (parsed && typeof parsed === 'object' && !Array.isArray(parsed)) {
- config = parsed as Record<string, unknown>;
- }
- }
- const existing = Array.isArray(config.includeIgnored)
- ? (config.includeIgnored as unknown[]).filter((p): p is string => typeof p === 'string')
- : [];
- const merged = [...existing];
- const seen = new Set(existing);
- let added = 0;
- for (const p of patterns) {
- if (seen.has(p)) continue;
- seen.add(p);
- merged.push(p);
- added++;
- }
- config.includeIgnored = merged;
- fs.writeFileSync(file, JSON.stringify(config, null, 2) + '\n');
- clearProjectConfigCache();
- return added;
- }
|