Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 36 additions & 5 deletions graphify/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,32 @@ def build_from_json(extraction: dict, *, directed: bool = False, root: str | Pat
# fragment (e.g. an incremental update whose fragment references a symbol in a
# file that was NOT re-extracted) still resolves to the migrated node instead
# of dangling. Only fills gaps — never overrides a real node id.
#
# The old-stem form drops the extension and (for the file node itself) every
# directory but the immediate parent, so it collapses easily: "ping.h" and
# "ping.php" in different directories both alias to bare "ping". Collecting
# every candidate for an alias BEFORE committing any of them — and only
# committing when exactly one candidate claims it — keeps this a precise
# re-keying aid instead of a silent cross-file (and cross-language) merge.
# Without this, a dangling edge to a bare, deliberately-unscoped fallback id
# (e.g. the C/C++ extractor's last-resort target for an #include it couldn't
# resolve to a real path) could ride this alias onto whichever unrelated
# same-stem file happened to be inserted first into ``node_set`` — a Python
# set, so "first" is hash-order, not anything meaningful.
#
# A file node's OWN id is not always a clean ``new_stem`` prefix: when a
# same-directory ``.h``/``.cpp`` pair collides on their shared pre-extension
# id, _disambiguate_colliding_node_ids salts both apart into ids like
# ``tools_aolserver_utility_h_tools_aolserver_utility`` — which no longer
# string-prefixes cleanly for the suffix math below. Detecting "this IS the
# file node" by label (every file node's label is its own basename,
# regardless of id mangling) instead of by id shape keeps a salted file node
# in the alias competition, so a genuine collision (a C header AND an
# unrelated same-named PHP script) is still caught as ambiguous instead of
# the header silently dropping out of the race and leaving the PHP file as
# the lone (wrong) "unambiguous" winner.
from graphify.extractors.base import _file_stem as _fs
_alias_candidates: dict[str, set[str]] = {}
for nid in node_set:
attrs = G.nodes[nid]
sf = attrs.get("source_file")
Expand All @@ -517,15 +542,21 @@ def build_from_json(extraction: dict, *, directed: bool = False, root: str | Pat
if rel.is_absolute():
continue
new_stem = make_id(_fs(rel))
suffix = ""
if _normalize_id(nid).startswith(new_stem):
suffix = _normalize_id(nid)[len(new_stem):] # leading "_entity" or ""
if str(attrs.get("label", "")) == rel.name:
suffix = "" # this node IS the file, whatever its (possibly salted) id
else:
suffix = ""
if _normalize_id(nid).startswith(new_stem):
suffix = _normalize_id(nid)[len(new_stem):] # leading "_entity" or ""
for old_stem in _old_file_stems(rel):
if old_stem == new_stem:
continue
alias = old_stem + suffix
norm_to_id.setdefault(_normalize_id(alias), nid)
norm_to_id.setdefault(alias, nid)
_alias_candidates.setdefault(_normalize_id(alias), set()).add(nid)
_alias_candidates.setdefault(alias, set()).add(nid)
for alias_key, candidates in _alias_candidates.items():
if len(candidates) == 1:
norm_to_id.setdefault(alias_key, next(iter(candidates)))
# Iterate edges in a deterministic order. The graph is undirected and stores
# direction in _src/_tgt; when two edges collapse onto the same node pair the
# last write wins, so an unstable iteration order flips _src/_tgt run-to-run
Expand Down
93 changes: 93 additions & 0 deletions tests/test_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -505,6 +505,99 @@ def test_build_relativizes_absolute_source_file(tmp_path):
assert sf == "src/main.py"


def test_build_from_json_ambiguous_old_stem_alias_stays_dangling(tmp_path):
"""The #1504 old-stem alias (e.g. "ping.h" -> bare "ping") is meant to let a
stale-id edge from an un-re-extracted fragment still find its own file after
a rekey. But the old-stem form drops the extension and most of the path, so
two unrelated real files easily collapse onto the same bare alias (a C header
and a PHP script both named "ping", in different directories). A dangling
edge produced by an unrelated third file's own unscoped fallback id (e.g. the
C/C++ extractor's last-resort target for an #include it couldn't resolve to
a real path) must not silently ride that alias onto an arbitrary one of them
— it should stay dangling and get dropped, same as any other unresolvable
edge, rather than wire two unrelated files/languages together by accident."""
root = tmp_path / "repo"
root.mkdir()
extraction = {
"nodes": [
# Ids given in their canonical (post-extract.py, extension-stripped)
# form, matching what a real graphify update run would already have
# produced before build_from_json assembles the final graph.
{"id": "dev_monitoring_ping", "label": "ping.h", "file_type": "code",
"source_file": "Dev/monitoring/ping.h"},
{"id": "www_pages_api_ping", "label": "ping.php", "file_type": "code",
"source_file": "www/pages/api/ping.php"},
{"id": "dev_poker_server", "label": "server.cpp", "file_type": "code",
"source_file": "Dev/poker/server.cpp"},
],
"edges": [
# The unscoped, deliberately-unresolved fallback edge a C/C++ #include
# resolver leaves behind when it can't find the header on disk.
{"source": "dev_poker_server", "target": "ping", "relation": "imports",
"confidence": "EXTRACTED", "source_file": "Dev/poker/server.cpp"},
],
}
G = build_from_json(extraction, root=root)
assert not G.has_edge("dev_poker_server", "dev_monitoring_ping")
assert not G.has_edge("dev_poker_server", "www_pages_api_ping")


def test_build_from_json_ambiguous_alias_detected_despite_header_impl_salting(tmp_path):
"""A same-directory .h/.cpp pair collides on their shared pre-extension id
and gets salted apart into ids like "tools_aolserver_utility_h_..." — no
longer a clean new_stem prefix. The ambiguity check must still recognize
the salted header as a legitimate claimant for the bare old-stem alias (by
label, not id shape), so a real collision with an unrelated same-named PHP
file is still caught instead of the header silently dropping out of the
race and leaving the PHP file as the lone "unambiguous" winner (this
reproduced against the real depot: Tools/aolserver/utility.h and .cpp,
salted apart, let wwwapi.masque.com/pages/utility.php win the bare
"utility" alias uncontested)."""
root = tmp_path / "repo"
root.mkdir()
extraction = {
"nodes": [
{"id": "tools_aolserver_utility_h_tools_aolserver_utility", "label": "utility.h",
"file_type": "code", "source_file": "Tools/aolserver/utility.h"},
{"id": "tools_aolserver_utility_cpp_tools_aolserver_utility", "label": "utility.cpp",
"file_type": "code", "source_file": "Tools/aolserver/utility.cpp"},
{"id": "wwwapi_masque_com_pages_utility", "label": "utility.php",
"file_type": "code", "source_file": "wwwapi.masque.com/pages/utility.php"},
{"id": "dev_poker_server", "label": "server.cpp", "file_type": "code",
"source_file": "Dev/poker/server.cpp"},
],
"edges": [
{"source": "dev_poker_server", "target": "utility", "relation": "imports",
"confidence": "EXTRACTED", "source_file": "Dev/poker/server.cpp"},
],
}
G = build_from_json(extraction, root=root)
assert not G.has_edge("dev_poker_server", "wwwapi_masque_com_pages_utility")
assert not G.has_edge("dev_poker_server", "tools_aolserver_utility_h_tools_aolserver_utility")


def test_build_from_json_unambiguous_old_stem_alias_still_resolves(tmp_path):
"""Companion to the ambiguous case above: when exactly one real file claims
an old-stem alias, a dangling edge to that bare alias should still resolve
to it — the #1504 migration-compat behavior this index exists for."""
root = tmp_path / "repo"
root.mkdir()
extraction = {
"nodes": [
{"id": "dev_monitoring_utility", "label": "utility.h", "file_type": "code",
"source_file": "Dev/monitoring/utility.h"},
{"id": "dev_poker_server", "label": "server.cpp", "file_type": "code",
"source_file": "Dev/poker/server.cpp"},
],
"edges": [
{"source": "dev_poker_server", "target": "utility", "relation": "imports",
"confidence": "EXTRACTED", "source_file": "Dev/poker/server.cpp"},
],
}
G = build_from_json(extraction, root=root)
assert G.has_edge("dev_poker_server", "dev_monitoring_utility")


def test_build_from_json_relative_source_file_unchanged(tmp_path):
"""Already-relative source_file paths must not be modified."""
extraction = {
Expand Down