per-doc Relations 在大量 cross-doc 引用前是不够的:PCB 的 PAD_NET 复合
id [PAD_NET, comp, pin, pad] 里的 pad 实际是 FOOTPRINT 文档里的 pad
实例;SCH_PAGE 的 COMPONENT.partId 指向某个 SYMBOL 文档的 PART.id。
ProjectRelations 在 per-doc Relations 之上做项目级聚合,把这些跨文档
引用拼起来。
Probe 阶段(ESP-VoCat)发现的映射规则(已写入 docstring):
1. SCH_PAGE COMPONENT.partId === PART.id in some SYMBOL doc
- 命名两种风格:'pid<hex>' (anonymous/系统 part) + '<name>.<n>' (具
名 SKU),但都直接相等 PART.id,**不**是不同 namespace
- 同一 PART.id 可能出现在多个 SYMBOL 文档里(库快照),
parts_by_id 保留全部,consumer 通常取第一个
2. PCB COMPONENT.id → FOOTPRINT 文档 UUID via 单独 ATTR op:
ATTR(parentId=<comp>, key="Footprint", value=<fp_doc_uuid>)
COMPONENT.attrs 子 dict 只有内务字段(Unique ID / Channel ID / ...),
**不**含 footprint 引用。这跟 schematic 的 partId 在 COMPONENT 上的
做法不一样,是 EPRO2 流的一处不对称
3. PCB PAD_NET[comp,pin,pad] 里的 pad 是 FOOTPRINT 文档内部的 pad id;
解析链: comp → ATTR Footprint → FOOTPRINT relations.pads[pad]
API:
ProjectRelations.build(project) — 单遍构建
resolve_symbol_docs(sch_uuid, comp_id) → [SYMBOL doc uuids]
resolve_footprint_doc(pcb_uuid, comp_id) → FOOTPRINT doc uuid | None
pad_in_footprint(fp_uuid, pad_id) → PAD payload | None
resolve_pcb_pad_net(pcb_uuid, comp, pin, pad) → {footprint, pad} | None
attrs_for_pcb_component(pcb_uuid, comp_id) → {key: value} 折叠
CLI 加 --project-relations,跑 ESP-VoCat:
documents 278
distinct_parts 87
duplicated_parts 9
pcb_components_with_footprint 206
pcb_components_unresolved_footprint 0
sch_components_with_partid 572
sch_components_unresolved_part 0
PCB 样本验证:comp=e0 → fp=1069352d81c6 Designator='U8',
PAD_NET pin=1 pad=e7 net=GND 跨文档解到坐标 (-37.4,-45.24)。
测试:6 个新单测覆盖 partId→symbol、comp→footprint、PAD_NET 跨文档、
attrs 折叠、unresolved 计数。parser + relations + project_relations
共 21/21 通过。
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
186 lines
7.7 KiB
Python
186 lines
7.7 KiB
Python
"""Project-level relations: aggregate per-document Relations to resolve
|
|
cross-document references that are unresolvable in isolation.
|
|
|
|
Empirical mapping rules (probed on ESP-VoCat, 2026-04-28):
|
|
|
|
SCH_PAGE COMPONENT.partId = PART.id in some SYMBOL doc.
|
|
- "pid<hex>" → anonymous/system parts (frame, page border, ...)
|
|
- "<name>.<n>"→ named parts with SKU (e.g. "CL05A105KA5NQNC.1", "电阻.1")
|
|
- Same PART.id may appear in multiple SYMBOL docs (lib snapshots).
|
|
|
|
PCB COMPONENT.id → FOOTPRINT doc UUID via a separate ATTR op:
|
|
ATTR(parentId=<comp_id>, key="Footprint", value=<footprint_doc_uuid>).
|
|
The COMPONENT.attrs sub-dict carries unrelated bookkeeping
|
|
(Unique ID, Channel ID, ...), NOT the footprint reference.
|
|
|
|
PCB PAD_NET id ["PAD_NET", <comp>, <pin>, <pad>]:
|
|
The <pad> string is the id of a PAD object **inside the FOOTPRINT doc**
|
|
that the PCB COMPONENT instantiates. To resolve the pad geometry, walk
|
|
component → footprint → footprint.pads[<pad>].
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
from collections import defaultdict
|
|
from dataclasses import dataclass, field
|
|
|
|
from .relations import Relations
|
|
from .replay import Document, Project
|
|
|
|
|
|
@dataclass
|
|
class ProjectRelations:
|
|
"""Project-wide cross-document index. Built once from a replayed Project."""
|
|
|
|
project: Project
|
|
|
|
# Per-doc relations cache (lazy / one-shot at build time).
|
|
per_doc: dict[str, Relations] = field(default_factory=dict)
|
|
|
|
# docType partitions (doc_uuid lists, in iteration order)
|
|
docs_by_type: dict[str, list[str]] = field(default_factory=lambda: defaultdict(list))
|
|
|
|
# PART.id → SYMBOL doc uuids that contain this part definition.
|
|
# Multiple SYMBOL docs can share the same PART.id (lib snapshots) — we
|
|
# keep them all; consumers usually pick the first.
|
|
parts_by_id: dict[str, list[str]] = field(default_factory=lambda: defaultdict(list))
|
|
|
|
# (pcb_doc_uuid, component_id) → FOOTPRINT doc uuid.
|
|
# Resolved via ATTR(parent=comp, key="Footprint", value=fp_uuid).
|
|
component_to_footprint: dict[tuple[str, str], str] = field(default_factory=dict)
|
|
|
|
# (sch_doc_uuid, component_id) → COMPONENT.partId (raw partId string,
|
|
# which is also a PART.id key into parts_by_id).
|
|
component_to_partid: dict[tuple[str, str], str] = field(default_factory=dict)
|
|
|
|
# Diagnostics
|
|
components_with_unresolved_footprint: int = 0
|
|
components_with_unresolved_part: int = 0
|
|
|
|
# ----------------------------------------------------------------------
|
|
|
|
@classmethod
|
|
def build(cls, project: Project) -> "ProjectRelations":
|
|
pr = cls(project=project)
|
|
|
|
# 1. per-doc Relations + docType partition
|
|
for doc_uuid, doc in project.documents.items():
|
|
pr.per_doc[doc_uuid] = Relations.build(doc)
|
|
pr.docs_by_type[doc.doc_type or "?"].append(doc_uuid)
|
|
|
|
# 2. parts_by_id from SYMBOL docs (and FOOTPRINT, for completeness —
|
|
# FOOTPRINTs don't have PART containers per probe, but defensive)
|
|
for sym_uuid in pr.docs_by_type.get("SYMBOL", []) + pr.docs_by_type.get("FOOTPRINT", []):
|
|
for part_id in pr.per_doc[sym_uuid].parts:
|
|
pr.parts_by_id[part_id].append(sym_uuid)
|
|
|
|
# 3. PCB components → FOOTPRINT doc (via separate ATTR op key="Footprint")
|
|
footprint_doc_set = set(pr.docs_by_type.get("FOOTPRINT", []))
|
|
for pcb_uuid in pr.docs_by_type.get("PCB", []):
|
|
doc = project.documents[pcb_uuid]
|
|
for oid, payload in doc.objects.items():
|
|
if payload.get("_type") != "ATTR":
|
|
continue
|
|
if payload.get("key") != "Footprint":
|
|
continue
|
|
parent = payload.get("parentId")
|
|
if not parent:
|
|
continue
|
|
parent_obj = doc.objects.get(parent)
|
|
if not parent_obj or parent_obj.get("_type") != "COMPONENT":
|
|
continue
|
|
fp_uuid = payload.get("value")
|
|
if fp_uuid in footprint_doc_set:
|
|
pr.component_to_footprint[(pcb_uuid, parent)] = fp_uuid
|
|
|
|
# Count unresolved PCB components (those that have NO Footprint ATTR
|
|
# mapping or whose value isn't a FOOTPRINT doc).
|
|
for cid in pr.per_doc[pcb_uuid].components:
|
|
if (pcb_uuid, cid) not in pr.component_to_footprint:
|
|
pr.components_with_unresolved_footprint += 1
|
|
|
|
# 4. SCH_PAGE components → partId (and its SYMBOL doc resolution)
|
|
for sch_uuid in pr.docs_by_type.get("SCH_PAGE", []):
|
|
doc = project.documents[sch_uuid]
|
|
for cid, comp in pr.per_doc[sch_uuid].components.items():
|
|
pid = comp.get("partId")
|
|
if not pid:
|
|
continue
|
|
pr.component_to_partid[(sch_uuid, cid)] = str(pid)
|
|
if str(pid) not in pr.parts_by_id:
|
|
pr.components_with_unresolved_part += 1
|
|
|
|
return pr
|
|
|
|
# Accessor helpers -----------------------------------------------------
|
|
|
|
def resolve_footprint_doc(self, pcb_doc_uuid: str, component_id: str) -> str | None:
|
|
"""PCB component → its FOOTPRINT doc uuid (if mapped via ATTR key=Footprint)."""
|
|
return self.component_to_footprint.get((pcb_doc_uuid, component_id))
|
|
|
|
def resolve_symbol_docs(self, sch_doc_uuid: str, component_id: str) -> list[str]:
|
|
"""SCH_PAGE component → SYMBOL doc(s) hosting its PART. May return [] for unresolved.
|
|
|
|
Multiple SYMBOL docs can host the same PART.id; downstream usually
|
|
picks the first (they're expected to be identical lib snapshots).
|
|
"""
|
|
pid = self.component_to_partid.get((sch_doc_uuid, component_id))
|
|
if not pid:
|
|
return []
|
|
return list(self.parts_by_id.get(pid, ()))
|
|
|
|
def pad_in_footprint(self, footprint_doc_uuid: str, pad_id: str) -> dict | None:
|
|
"""Look up a PAD payload inside a FOOTPRINT doc by its local id."""
|
|
rel = self.per_doc.get(footprint_doc_uuid)
|
|
if not rel:
|
|
return None
|
|
return rel.pads.get(pad_id)
|
|
|
|
def resolve_pcb_pad_net(
|
|
self,
|
|
pcb_doc_uuid: str,
|
|
comp_id: str,
|
|
pin: str,
|
|
pad_id: str,
|
|
) -> dict | None:
|
|
"""Resolve a PCB PAD_NET composite → footprint pad payload (cross-doc).
|
|
|
|
Returns ``{"footprint": <fp_uuid>, "pad": <pad payload>}`` or None if
|
|
the chain breaks.
|
|
"""
|
|
fp_uuid = self.resolve_footprint_doc(pcb_doc_uuid, comp_id)
|
|
if not fp_uuid:
|
|
return None
|
|
pad = self.pad_in_footprint(fp_uuid, pad_id)
|
|
if not pad:
|
|
return None
|
|
return {"footprint": fp_uuid, "pad": pad}
|
|
|
|
def attrs_for_pcb_component(
|
|
self,
|
|
pcb_doc_uuid: str,
|
|
comp_id: str,
|
|
) -> dict[str, object]:
|
|
"""Collapse all ATTR ops on a PCB component into ``{key: value}``.
|
|
|
|
Includes the Footprint UUID, Designator, Value, Symbol, etc.
|
|
"""
|
|
rel = self.per_doc.get(pcb_doc_uuid)
|
|
if not rel:
|
|
return {}
|
|
return rel.attrs_dict(comp_id)
|
|
|
|
def summary(self) -> dict[str, int]:
|
|
return {
|
|
"documents": len(self.project.documents),
|
|
"doc_types": len(self.docs_by_type),
|
|
"distinct_parts": len(self.parts_by_id),
|
|
"duplicated_parts": sum(
|
|
1 for uuids in self.parts_by_id.values() if len(uuids) > 1
|
|
),
|
|
"pcb_components_with_footprint": len(self.component_to_footprint),
|
|
"pcb_components_unresolved_footprint": self.components_with_unresolved_footprint,
|
|
"sch_components_with_partid": len(self.component_to_partid),
|
|
"sch_components_unresolved_part": self.components_with_unresolved_part,
|
|
}
|