annotate_blastware_binary(raw) → a gap-free tiling of labelled Spans (header / STRT / per-channel sample records / footer / unknown) for a hex viewer to paint. Every byte is covered; anything the decoder can't account for is a first-class `unknown` span, so undecoded regions stand out. Composes the existing waveform_codec.walk_records over the body between the STRT record and the 26-byte footer. On the cracking fixtures this already surfaces a ~1700-byte undecoded trailing region (stream-end marker + serial + …) per file — a candidate home for stored spectral/FFT data. TDD: tests assert the spans tile the whole file, STRT is located, the geo sample records are labelled, and the footer is last. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01YDXjZCr4RqT2U3QvMDhgzf
76 lines
2.8 KiB
Python
76 lines
2.8 KiB
Python
"""Structural annotation of a Series-3 Blastware waveform binary.
|
|
|
|
Pure, no I/O: takes the raw file bytes and returns a flat, gap-free tiling of
|
|
labelled :class:`Span` regions for a hex viewer to paint. Every byte is
|
|
covered — anything the decoder can't account for becomes an ``unknown`` span,
|
|
so undecoded regions (e.g. a stored spectral/FFT block, if one exists) stand
|
|
out instead of hiding.
|
|
|
|
File layout (see ``blastware_file.py``): ``[header][21B STRT][body][26B footer]``.
|
|
The body is the record chain walked by :func:`waveform_codec.walk_records`.
|
|
"""
|
|
from __future__ import annotations
|
|
|
|
from dataclasses import dataclass
|
|
from typing import List
|
|
|
|
from .waveform_codec import walk_records
|
|
|
|
_STRT_LEN = 21
|
|
_FOOTER_LEN = 26
|
|
|
|
|
|
@dataclass
|
|
class Span:
|
|
start: int # inclusive byte offset
|
|
end: int # exclusive byte offset
|
|
label: str # human-readable description
|
|
kind: str # 'header' | 'strt' | 'sample' | 'footer' | 'unknown'
|
|
|
|
|
|
def _tile(known: List[Span], total: int) -> List[Span]:
|
|
"""Sort *known* spans and fill every gap with an ``unknown`` span, so the
|
|
result is a contiguous, non-overlapping tiling of ``[0, total)``. Overlaps
|
|
are resolved by clamping to the running position (first writer wins)."""
|
|
out: List[Span] = []
|
|
pos = 0
|
|
for s in sorted(known, key=lambda x: (x.start, x.end)):
|
|
if s.end <= pos:
|
|
continue # fully behind — dropped overlap
|
|
start = max(s.start, pos)
|
|
if start > pos:
|
|
out.append(Span(pos, start, "unknown", "unknown"))
|
|
out.append(s if start == s.start else Span(start, s.end, s.label, s.kind))
|
|
pos = s.end
|
|
if pos < total:
|
|
out.append(Span(pos, total, "unknown", "unknown"))
|
|
return out
|
|
|
|
|
|
def annotate_blastware_binary(raw: bytes) -> List[Span]:
|
|
"""Annotate a Series-3 waveform binary into a gap-free list of spans."""
|
|
total = len(raw)
|
|
strt_pos = raw.find(b"STRT")
|
|
if strt_pos < 0:
|
|
return [Span(0, total, "unrecognized — no STRT record", "unknown")]
|
|
|
|
known: List[Span] = []
|
|
if strt_pos > 0:
|
|
known.append(Span(0, strt_pos, "File header", "header"))
|
|
known.append(Span(strt_pos, strt_pos + _STRT_LEN, "STRT record", "strt"))
|
|
|
|
body_start = strt_pos + _STRT_LEN
|
|
footer_start = total - _FOOTER_LEN
|
|
if footer_start >= body_start:
|
|
known.append(Span(footer_start, total, "File footer", "footer"))
|
|
else:
|
|
footer_start = total # file too short for a footer
|
|
|
|
body = raw[body_start:footer_start]
|
|
for rec in walk_records(body):
|
|
hi, lo = rec["mode"]
|
|
label = f"{rec['channel']} record (seg {rec['segment_index']}, mode {hi:02x} {lo:02x})"
|
|
known.append(Span(body_start + rec["offset"], body_start + rec["end"], label, "sample"))
|
|
|
|
return _tile(known, total)
|