ppak10's picture
Adds rerun and reformatted parquet files.
8cdbe7c
Raw
History Blame
1.71 kB
"""Shared paths and helpers for the extract scripts.
The raw data lives in the recorder repo, which contains this dataset as a
submodule (`datasets/Inova-Mk1-Telemetry`). This dataset has no local source
files; every extract script reads from `EXPORTS_DIR` and writes to `DATA_DIR`.
"""
import json
from pathlib import Path
ROOT = Path(__file__).parent.parent
DATA_DIR = ROOT / "data"
# Recorder-repo location. The Telemetry dataset has no local source/ tree;
# its raw inputs are the flat exports written by
# `Agentic-Additive-Manufacturing-Process-Optimization/scripts/export.py`.
# This repo is a submodule at `datasets/Inova-Mk1-Telemetry` inside the
# recorder repo → two climbs from ROOT reach the recorder root.
AGENTIC_ROOT = ROOT.parent.parent
EXPORTS_DIR = AGENTIC_ROOT / "data" / "exports"
def iter_jsonl(path: Path):
"""Stream a JSONL file row-by-row. Skips blank lines."""
with path.open(encoding="utf-8") as f:
for line in f:
line = line.strip()
if not line:
continue
yield json.loads(line)
def load_build_to_profile_name() -> dict[int, str]:
"""Read upstream events.jsonl, return {build_id: printProfileName}.
Uses the `build_start` event's `payload.printProfileName` field. Builds
that never logged a build_start event (the recorder joined mid-run) are
omitted from the map.
"""
events_path = EXPORTS_DIR / "events.jsonl"
out: dict[int, str] = {}
for ev in iter_jsonl(events_path):
if ev.get("kind") != "build_start":
continue
name = (ev.get("payload") or {}).get("printProfileName")
if name:
out[ev["build_id"]] = name
return out