280 lines
10 KiB
Python
280 lines
10 KiB
Python
# topology_api/queries/snapshot_queries.py
|
|
"""Snapshot resolution and data fetching logic."""
|
|
from topology_api.db import read_cursor
|
|
|
|
|
|
def fetch_missions(base_code):
|
|
"""Return missions for a base with their latest recorded event."""
|
|
with read_cursor() as cur:
|
|
cur.execute("""
|
|
SELECT
|
|
m.code,
|
|
m.title,
|
|
m.occurrence_status,
|
|
MAX(me.effective_at) AS last_event_at
|
|
FROM missions m
|
|
JOIN bases b ON b.id = m.base_id
|
|
LEFT JOIN mission_events me ON me.mission_id = m.id
|
|
WHERE b.code = %(base_code)s
|
|
GROUP BY m.id, m.code, m.title, m.occurrence_status
|
|
ORDER BY MIN(me.effective_at) NULLS LAST, m.code
|
|
""", {"base_code": base_code})
|
|
return [
|
|
{
|
|
"code": row["code"],
|
|
"title": row["title"],
|
|
"occurrenceStatus": row["occurrence_status"],
|
|
"lastEventAt": (
|
|
row["last_event_at"].isoformat()
|
|
if row["last_event_at"] is not None
|
|
else None
|
|
),
|
|
}
|
|
for row in cur.fetchall()
|
|
]
|
|
|
|
|
|
def resolve_snapshot_time(requested_mission=None, requested_at=None):
|
|
"""Determine the snapshot timestamp per spec.
|
|
|
|
Returns: (snapshot_at: str | None, anchor_source: str)
|
|
"""
|
|
with read_cursor() as cur:
|
|
if requested_at is not None:
|
|
return requested_at, "explicit_time"
|
|
|
|
if requested_mission is not None:
|
|
cur.execute("""
|
|
SELECT id, occurrence_status
|
|
FROM missions
|
|
WHERE code = %(code)s
|
|
""", {"code": requested_mission})
|
|
mission = cur.fetchone()
|
|
if mission is None:
|
|
return None, "mission_not_found"
|
|
|
|
cur.execute("""
|
|
SELECT effective_at
|
|
FROM mission_events
|
|
WHERE mission_id = %(mid)s
|
|
ORDER BY effective_at DESC, event_order DESC
|
|
LIMIT 1
|
|
""", {"mid": mission["id"]})
|
|
event = cur.fetchone()
|
|
if event is None:
|
|
return None, "mission_has_no_timed_event"
|
|
|
|
return event["effective_at"].isoformat(), "mission_latest_event"
|
|
|
|
# Neither provided: latest event across all occurred missions
|
|
cur.execute("""
|
|
SELECT me.effective_at
|
|
FROM mission_events me
|
|
JOIN missions m ON m.id = me.mission_id
|
|
WHERE m.occurrence_status = 'occurred'
|
|
ORDER BY me.effective_at DESC, me.event_order DESC
|
|
LIMIT 1
|
|
""")
|
|
event = cur.fetchone()
|
|
if event is None:
|
|
return None, "no_events"
|
|
return event["effective_at"].isoformat(), "latest_recorded_state"
|
|
|
|
|
|
def fetch_snapshot(snapshot_at):
|
|
"""Fetch complete base topology at a given point in time.
|
|
|
|
Returns dict with keys: base, components, connections
|
|
"""
|
|
result = {"base": None, "components": [], "connections": []}
|
|
params = {"at": snapshot_at}
|
|
|
|
with read_cursor() as cur:
|
|
# --- base ---
|
|
cur.execute("SELECT code, name FROM bases WHERE code = 'guanghan'")
|
|
base = cur.fetchone()
|
|
if base is None:
|
|
return result
|
|
result["base"] = dict(base)
|
|
|
|
# --- components present at snapshot_at ---
|
|
cur.execute("""
|
|
SELECT
|
|
c.id,
|
|
c.component_key,
|
|
c.component_type,
|
|
cv.display_name,
|
|
cv.summary,
|
|
cv.description,
|
|
cv.length_m,
|
|
cv.width_m,
|
|
cv.height_m,
|
|
cv.diameter_m,
|
|
cv.mass_t,
|
|
cv.detail_url,
|
|
cv.properties
|
|
FROM components c
|
|
JOIN mission_events e_intro
|
|
ON e_intro.id = c.introduced_by_event_id
|
|
LEFT JOIN mission_events e_retire
|
|
ON e_retire.id = c.retired_by_event_id
|
|
LEFT JOIN LATERAL (
|
|
SELECT cv_sub.*
|
|
FROM component_versions cv_sub
|
|
WHERE cv_sub.component_id = c.id
|
|
AND cv_sub.valid_from <= %(at)s::timestamptz
|
|
AND (cv_sub.valid_to IS NULL OR %(at)s::timestamptz < cv_sub.valid_to)
|
|
ORDER BY cv_sub.valid_from DESC
|
|
LIMIT 1
|
|
) cv ON true
|
|
WHERE c.base_id = (SELECT id FROM bases WHERE code = 'guanghan')
|
|
AND e_intro.effective_at <= %(at)s::timestamptz
|
|
AND (c.retired_by_event_id IS NULL
|
|
OR (SELECT effective_at FROM mission_events WHERE id = c.retired_by_event_id) > %(at)s::timestamptz)
|
|
ORDER BY c.component_key
|
|
""", params)
|
|
component_rows = cur.fetchall()
|
|
|
|
component_map = {}
|
|
for row in component_rows:
|
|
comp = {
|
|
"key": row["component_key"],
|
|
"type": row["component_type"],
|
|
"name": row["display_name"],
|
|
"summary": row["summary"],
|
|
"description": row["description"],
|
|
"detailUrl": row["detail_url"],
|
|
"dimensions": {},
|
|
"properties": row["properties"] or {},
|
|
"ports": [],
|
|
"states": {},
|
|
}
|
|
for dim in ["length_m", "width_m", "height_m", "diameter_m"]:
|
|
val = row[dim]
|
|
if val is not None:
|
|
comp["dimensions"][dim.replace("_m", "M")] = float(val)
|
|
if row["mass_t"] is not None:
|
|
comp["dimensions"]["massT"] = float(row["mass_t"])
|
|
result["components"].append(comp)
|
|
component_map[row["id"]] = comp
|
|
|
|
if not component_map:
|
|
return result
|
|
|
|
# --- ports ---
|
|
component_ids = list(component_map.keys())
|
|
cur.execute("""
|
|
SELECT id, component_id, port_key, display_name, direction, interface_type
|
|
FROM ports
|
|
WHERE component_id = ANY(%(ids)s)
|
|
ORDER BY component_id, port_key
|
|
""", {"ids": component_ids})
|
|
port_map = {}
|
|
for row in cur.fetchall():
|
|
port = {
|
|
"key": row["port_key"],
|
|
"displayName": row["display_name"],
|
|
"direction": row["direction"],
|
|
"interfaceType": row["interface_type"],
|
|
}
|
|
cid = row["component_id"]
|
|
if cid in component_map:
|
|
component_map[cid]["ports"].append(port)
|
|
port_map[row["id"]] = {
|
|
"component_key": component_map.get(cid, {}).get("key"),
|
|
**port,
|
|
}
|
|
|
|
# --- states ---
|
|
cur.execute("""
|
|
SELECT component_id, state_kind, state_value, details
|
|
FROM component_states
|
|
WHERE component_id = ANY(%(ids)s)
|
|
AND valid_from <= %(at)s::timestamptz
|
|
AND (valid_to IS NULL OR %(at)s::timestamptz < valid_to)
|
|
ORDER BY component_id, state_kind
|
|
""", {"ids": component_ids, "at": snapshot_at})
|
|
for row in cur.fetchall():
|
|
comp = component_map.get(row["component_id"])
|
|
if comp:
|
|
comp["states"][row["state_kind"]] = row["state_value"]
|
|
if row["details"]:
|
|
comp["states"][row["state_kind"] + "Details"] = row["details"]
|
|
|
|
# --- connections ---
|
|
cur.execute("""
|
|
SELECT
|
|
tc.connection_type,
|
|
tc.properties,
|
|
pa.component_id AS comp_a_id,
|
|
pa.port_key AS port_a_key,
|
|
pb.component_id AS comp_b_id,
|
|
pb.port_key AS port_b_key
|
|
FROM topology_connections tc
|
|
JOIN ports pa ON pa.id = tc.port_a_id
|
|
JOIN ports pb ON pb.id = tc.port_b_id
|
|
WHERE tc.base_id = (SELECT id FROM bases WHERE code = 'guanghan')
|
|
AND tc.valid_from <= %(at)s::timestamptz
|
|
AND (tc.valid_to IS NULL OR %(at)s::timestamptz < tc.valid_to)
|
|
AND pa.component_id = ANY(%(ids)s)
|
|
AND pb.component_id = ANY(%(ids)s)
|
|
ORDER BY tc.connection_type, pa.port_key
|
|
""", {"ids": component_ids, "at": snapshot_at})
|
|
for row in cur.fetchall():
|
|
comp_a = component_map.get(row["comp_a_id"])
|
|
comp_b = component_map.get(row["comp_b_id"])
|
|
if comp_a and comp_b:
|
|
result["connections"].append({
|
|
"type": row["connection_type"],
|
|
"fromPort": f"{comp_a['key']}.{row['port_a_key']}",
|
|
"toPort": f"{comp_b['key']}.{row['port_b_key']}",
|
|
"properties": row["properties"],
|
|
})
|
|
|
|
return result
|
|
|
|
|
|
def fetch_layout():
|
|
"""Fetch the default diagram layout with node positions."""
|
|
with read_cursor() as cur:
|
|
cur.execute("""
|
|
SELECT
|
|
dl.layout_key,
|
|
dl.name AS layout_name,
|
|
dl.canvas_width,
|
|
dl.canvas_height,
|
|
dn.node_key,
|
|
dn.component_id,
|
|
c.component_key,
|
|
dn.x, dn.y, dn.width, dn.height,
|
|
dn.style_key, dn.label_override, dn.z_index
|
|
FROM diagram_layouts dl
|
|
JOIN diagram_nodes dn ON dn.layout_id = dl.id
|
|
LEFT JOIN components c ON c.id = dn.component_id
|
|
WHERE dl.base_id = (SELECT id FROM bases WHERE code = 'guanghan')
|
|
AND dl.is_default = true
|
|
ORDER BY dn.z_index, dn.node_key
|
|
""")
|
|
nodes = []
|
|
layout_info = None
|
|
for row in cur.fetchall():
|
|
if layout_info is None:
|
|
layout_info = {
|
|
"key": row["layout_key"],
|
|
"name": row["layout_name"],
|
|
"canvasWidth": float(row["canvas_width"]),
|
|
"canvasHeight": float(row["canvas_height"]),
|
|
}
|
|
nodes.append({
|
|
"nodeKey": row["node_key"],
|
|
"componentKey": row["component_key"],
|
|
"x": float(row["x"]),
|
|
"y": float(row["y"]),
|
|
"width": float(row["width"]),
|
|
"height": float(row["height"]),
|
|
"styleKey": row["style_key"],
|
|
"labelOverride": row["label_override"],
|
|
"zIndex": row["z_index"],
|
|
})
|
|
return {"layout": layout_info, "nodes": nodes} if layout_info else None
|