177 lines
6.4 KiB
Python
177 lines
6.4 KiB
Python
"""Shared utilities for tool sub-modules."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
from typing import Any
|
|
|
|
from ..graph import GraphStore
|
|
from ..incremental import find_project_root, get_db_path
|
|
|
|
|
|
def _error_response(
|
|
message: str, status: str = "error", **extra: Any,
|
|
) -> dict[str, Any]:
|
|
"""Build a standardised error response dict."""
|
|
return {"status": status, "error": message, "summary": message, **extra}
|
|
|
|
# Common JS/TS builtin method names filtered from callers_of results.
|
|
# "Who calls .map()?" returns hundreds of hits and is never useful.
|
|
# These are kept in the graph (callees_of still shows them) but excluded
|
|
# when doing reverse call tracing to reduce noise.
|
|
_BUILTIN_CALL_NAMES: set[str] = {
|
|
"map", "filter", "reduce", "reduceRight", "forEach", "find", "findIndex",
|
|
"some", "every", "includes", "indexOf", "lastIndexOf",
|
|
"push", "pop", "shift", "unshift", "splice", "slice",
|
|
"concat", "join", "flat", "flatMap", "sort", "reverse", "fill",
|
|
"keys", "values", "entries", "from", "isArray", "of", "at",
|
|
"trim", "trimStart", "trimEnd", "split", "replace", "replaceAll",
|
|
"match", "matchAll", "search", "substring", "substr",
|
|
"toLowerCase", "toUpperCase", "startsWith", "endsWith",
|
|
"padStart", "padEnd", "repeat", "charAt", "charCodeAt",
|
|
"assign", "freeze", "defineProperty", "getOwnPropertyNames",
|
|
"hasOwnProperty", "create", "is", "fromEntries",
|
|
"log", "warn", "error", "info", "debug", "trace", "dir", "table",
|
|
"time", "timeEnd", "assert", "clear", "count",
|
|
"then", "catch", "finally", "resolve", "reject", "all", "allSettled", "race", "any",
|
|
"parse", "stringify",
|
|
"floor", "ceil", "round", "random", "max", "min", "abs", "pow", "sqrt",
|
|
"addEventListener", "removeEventListener", "querySelector", "querySelectorAll",
|
|
"getElementById", "createElement", "appendChild", "removeChild",
|
|
"setAttribute", "getAttribute", "preventDefault", "stopPropagation",
|
|
"setTimeout", "clearTimeout", "setInterval", "clearInterval",
|
|
"toString", "valueOf", "toJSON", "toISOString",
|
|
"getTime", "getFullYear", "now",
|
|
"isNaN", "parseInt", "parseFloat", "toFixed",
|
|
"encodeURIComponent", "decodeURIComponent",
|
|
"call", "apply", "bind", "next",
|
|
"emit", "on", "off", "once",
|
|
"pipe", "write", "read", "end", "close", "destroy",
|
|
"send", "status", "json", "redirect",
|
|
"set", "get", "delete", "has",
|
|
"findUnique", "findFirst", "findMany", "createMany",
|
|
"update", "updateMany", "deleteMany", "upsert",
|
|
"aggregate", "groupBy", "transaction",
|
|
"describe", "it", "test", "expect", "beforeEach", "afterEach",
|
|
"beforeAll", "afterAll", "mock", "spyOn",
|
|
"require", "fetch",
|
|
}
|
|
|
|
|
|
def _validate_repo_root(path: "Path | str") -> Path:
|
|
"""Validate that a path is a plausible project root.
|
|
|
|
Ensures the path is an existing directory that contains a ``.git``,
|
|
``.svn``, or ``.code-review-graph`` directory, preventing arbitrary
|
|
file-system traversal via the ``repo_root`` parameter.
|
|
"""
|
|
resolved = Path(path).resolve()
|
|
if not resolved.is_dir():
|
|
raise ValueError(
|
|
f"repo_root is not an existing directory: {resolved}"
|
|
)
|
|
has_vcs = (
|
|
(resolved / ".git").exists()
|
|
or (resolved / ".svn").exists()
|
|
or (resolved / ".code-review-graph").exists()
|
|
)
|
|
if not has_vcs:
|
|
raise ValueError(
|
|
f"repo_root does not look like a project root "
|
|
f"(no .git, .svn, or .code-review-graph directory found): "
|
|
f"{resolved}"
|
|
)
|
|
return resolved
|
|
|
|
|
|
def _resolve_root(repo_root: str | None = None) -> Path:
|
|
"""Resolve and validate the repository root without opening a store."""
|
|
return _validate_repo_root(Path(repo_root)) if repo_root else find_project_root()
|
|
|
|
|
|
def _get_store(repo_root: str | None = None) -> tuple[GraphStore, Path]:
|
|
"""Resolve repo root and open the graph store.
|
|
|
|
Callers own the returned store and must close it (try/finally or
|
|
context manager) to avoid leaking SQLite file descriptors.
|
|
"""
|
|
root = _resolve_root(repo_root)
|
|
db_path = get_db_path(root)
|
|
return GraphStore(db_path), root
|
|
|
|
|
|
def _resolve_graph_file_paths(
|
|
store: GraphStore, root: Path, file_paths: list[str],
|
|
) -> list[str]:
|
|
"""Resolve user-facing file paths to the paths stored in the graph.
|
|
|
|
Graphs may contain absolute paths, repo-relative paths, or cwd-relative
|
|
paths depending on how they were built. Tool inputs are usually relative to
|
|
repo root, so exact matching alone can miss existing graph nodes.
|
|
"""
|
|
resolved: list[str] = []
|
|
seen: set[str] = set()
|
|
|
|
def add(path: str) -> None:
|
|
if path not in seen:
|
|
resolved.append(path)
|
|
seen.add(path)
|
|
|
|
for file_path in file_paths:
|
|
raw = file_path.replace("\\", "/")
|
|
candidates = [raw]
|
|
path = Path(file_path)
|
|
if path.is_absolute():
|
|
try:
|
|
candidates.append(str(path.resolve().relative_to(root)).replace("\\", "/"))
|
|
except ValueError:
|
|
pass
|
|
else:
|
|
candidates.append(str(root / path))
|
|
|
|
for candidate in candidates:
|
|
if store.get_nodes_by_file(candidate):
|
|
add(candidate)
|
|
|
|
suffixes = []
|
|
for candidate in candidates:
|
|
normalized = candidate.replace("\\", "/")
|
|
if normalized not in suffixes:
|
|
suffixes.append(normalized)
|
|
|
|
for suffix in suffixes:
|
|
for matched_path in store.get_files_matching(suffix):
|
|
add(matched_path)
|
|
|
|
return resolved
|
|
|
|
|
|
def compact_response(
|
|
summary: str,
|
|
key_entities: list[str] | None = None,
|
|
risk: str = "unknown",
|
|
communities: list[str] | None = None,
|
|
flows_affected: list[str] | None = None,
|
|
next_tool_suggestions: list[str] | None = None,
|
|
data: dict[str, Any] | None = None,
|
|
detail_level: str = "minimal",
|
|
) -> dict[str, Any]:
|
|
"""Standard compact response format for token efficiency."""
|
|
resp: dict[str, Any] = {
|
|
"status": "ok",
|
|
"summary": summary,
|
|
}
|
|
if key_entities:
|
|
resp["key_entities"] = key_entities[:10]
|
|
if risk != "unknown":
|
|
resp["risk"] = risk
|
|
if communities:
|
|
resp["communities"] = communities[:5]
|
|
if flows_affected:
|
|
resp["flows_affected"] = flows_affected[:5]
|
|
if next_tool_suggestions:
|
|
resp["next_tool_suggestions"] = next_tool_suggestions[:3]
|
|
if detail_level != "minimal" and data:
|
|
resp["data"] = data
|
|
return resp
|