engine.py (16342B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 | #!/usr/bin/env python3 """ Interactive TUI for XIIRegexBuilder ===================================================================== Connects to the FPGA over a serial port (115200-8N1), lets the user type input strings, and displays a live colour-coded table showing which of the N regex patterns were matched by the most recent string. Usage ───── python engine.py [--port PORT] [--baud BAUD] [--regexes FILE] --port Serial port (default: auto-detect first USB-Serial) --baud Baud rate (default: 115200) --regexes Path to inputs/regexes.txt for label display (optional but strongly recommended - falls back to "Regex 0", "Regex 1", …) Protocol ──────── Send : "<string>\n" Receive: "MATCH=<bits> BYTES=<8hexdigits> HITS=<4hex,…>\r\n" Send : "?\n" → receive current counter snapshot (no NFA change) Controls ──────── Enter - send current input to FPGA Ctrl-C / q - quit Ctrl-L - clear input line ? - query current counters without sending a string """ import argparse import sys import threading import time import re as _re import msvcrt try: import serial import serial.tools.list_ports except ImportError: print("ERROR: pyserial not found. Run 'pip install pyserial'") sys.exit(1) try: from rich import box from rich.console import Console from rich.console import Group from rich.live import Live from rich.panel import Panel from rich.table import Table from rich.text import Text except ImportError: print("ERROR: rich not found. Run 'pip install rich'") sys.exit(1) # ───────────────────────────────────────────────────────────────────────────── BANNER = r""" ██╗ ██╗██╗██╗██████╗ ███████╗ ██████╗ ███████╗██╗ ██╗██████╗ ██╗ ██╗██╗██╗ ██████╗ ███████╗██████╗ ╚██╗██╔╝██║██║██╔══██╗██╔════╝██╔════╝ ██╔════╝╚██╗██╔╝██╔══██╗██║ ██║██║██║ ██╔══██╗██╔════╝██╔══██╗ ╚███╔╝ ██║██║██████╔╝█████╗ ██║ ███╗█████╗ ╚███╔╝ ██████╔╝██║ ██║██║██║ ██║ ██║█████╗ ██████╔╝ ██╔██╗ ██║██║██╔══██╗██╔══╝ ██║ ██║██╔══╝ ██╔██╗ ██╔══██╗██║ ██║██║██║ ██║ ██║██╔══╝ ██╔══██╗ ██╔╝ ██╗██║██║██║ ██║███████╗╚██████╔╝███████╗██╔╝ ██╗██████╔╝╚██████╔╝██║███████╗██████╔╝███████╗██║ ██║ ╚═╝ ╚═╝╚═╝╚═╝╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚══════╝╚═╝ ╚═╝╚═════╝ ╚═════╝ ╚═╝╚══════╝╚═════╝ ╚══════╝╚═╝ ╚═╝ """ RESPONSE_RE = _re.compile( r"MATCH=([01]+)\s+BYTES=([0-9A-Fa-f]+)\s+HITS=([0-9A-Fa-f,]+)" ) # ───────────────────────────────────────────────────────────────────────────── def load_regexes(path: str) -> list[str]: """Parse regexes.txt - skip blank lines and comments.""" patterns = [] try: with open(path) as f: for line in f: stripped = line.strip() if stripped and not stripped.startswith("#"): patterns.append(stripped) except FileNotFoundError: pass return patterns def auto_detect_port() -> str | None: """Return the first USB-Serial port found, or None.""" for p in serial.tools.list_ports.comports(): desc = p.description.lower() if "usb" in desc or "uart" in desc or "serial" in desc or "ftdi" in desc: return p.device # Fallback: first available port ports = list(serial.tools.list_ports.comports()) return ports[0].device if ports else None # ───────────────────────────────────────────────────────────────────────────── class MatchState: """Shared state between the UART reader thread and the TUI renderer.""" def __init__(self, num_regex: int): self.lock = threading.Lock() self.num_regex = num_regex self.match_bits: list[int] = [0] * num_regex self.byte_count: int = 0 self.hit_counts: list[int] = [0] * num_regex self.last_string: str = "" self.last_response_raw: str = "" self.status_msg: str = "Waiting for first result…" self.connected: bool = False def update_from_response(self, raw: str, sent_string: str) -> bool: m = RESPONSE_RE.search(raw) if not m: return False bits_str, bytes_hex, hits_str = m.group(1), m.group(2), m.group(3) bits_str = bits_str.zfill(self.num_regex) match_bits = [int(b) for b in bits_str] # index 0 = MSB # Reverse so index 0 = regex 0 (LSB of the hardware bitmask) match_bits_ordered = list(reversed(match_bits)) hit_list = [int(h, 16) for h in hits_str.split(",")] while len(hit_list) < self.num_regex: hit_list.append(0) with self.lock: self.match_bits = match_bits_ordered[: self.num_regex] self.byte_count = int(bytes_hex, 16) self.hit_counts = hit_list[: self.num_regex] self.last_string = sent_string self.last_response_raw = raw.strip() self.status_msg = "OK" return True # ───────────────────────────────────────────────────────────────────────────── def reader_thread( ser: serial.Serial, state: MatchState, pending: list, pending_lock: threading.Lock ) -> None: """Background thread: read lines from FPGA and update state.""" buf = "" while True: try: chunk = ser.read(256).decode("ascii", errors="replace") buf += chunk while "\n" in buf: line, buf = buf.split("\n", 1) line = line.strip() if not line: continue # Retrieve the string we sent (if any) with pending_lock: sent = pending.pop(0) if pending else "" state.update_from_response(line, sent) except serial.SerialException: with state.lock: state.status_msg = "Serial error - disconnected" state.connected = False break except Exception: pass # ───────────────────────────────────────────────────────────────────────────── def build_match_table(state: MatchState, patterns: list[str]) -> Table: """Build the live Rich table showing match results.""" table = Table( title="[bold cyan]Regex Match Results[/bold cyan]", box=box.ROUNDED, expand=True, show_lines=True, ) with state.lock: bits = state.match_bits[:] hits = state.hit_counts[:] n = state.num_regex num_cols = 2 if n > 8 else 1 rows_per_col = (n + num_cols - 1) // num_cols for _ in range(num_cols): table.add_column("#", style="dim", width=4, justify="right") table.add_column("Pattern", style="white", min_width=20) table.add_column("MATCH", justify="center", width=8) table.add_column("Hits", justify="right", width=8) for row_idx in range(rows_per_col): row_data = [] for col_idx in range(num_cols): i = col_idx * rows_per_col + row_idx if i < n: label = patterns[i] if i < len(patterns) else f"Regex {i}" if len(label) > 30: label = label[:27] + "..." matched = bool(bits[i]) if i < len(bits) else False hit_cnt = hits[i] if i < len(hits) else 0 if matched: match_cell = Text("● MATCH", style="bold green") else: match_cell = Text("○ - ", style="dim red") row_data.extend( [ str(i), f"[italic]{label}[/italic]", match_cell, f"[yellow]{hit_cnt}[/yellow]", ] ) else: row_data.extend(["", "", "", ""]) table.add_row(*row_data) return table def build_stats_panel(state: MatchState) -> Panel: with state.lock: bc = state.byte_count last_s = state.last_string or "(none)" raw = state.last_response_raw or "- " status = state.status_msg conn = state.connected conn_label = ( "[bold green]● CONNECTED[/bold green]" if conn else "[bold red]● DISCONNECTED[/bold red]" ) text = ( f"{conn_label}\n" f"[bold]Last string :[/bold] [cyan]{last_s}[/cyan]\n" f"[bold]Total bytes :[/bold] {bc:,}\n" f"[bold]Status :[/bold] {status}\n" f"[bold]Raw response:[/bold] [dim]{raw}[/dim]" ) return Panel(text, title="[bold]Statistics[/bold]", border_style="blue") # ───────────────────────────────────────────────────────────────────────────── def run_tui(port: str, baud: int, patterns: list[str]) -> None: console = Console() num_regex = max(len(patterns), 1) state = MatchState(num_regex) # Open serial port try: ser = serial.Serial(port, baud, timeout=0.05) state.connected = True except serial.SerialException as e: console.print(f"[red]Cannot open {port}: {e}[/red]") sys.exit(1) pending: list[str] = [] pending_lock = threading.Lock() t = threading.Thread( target=reader_thread, args=(ser, state, pending, pending_lock), daemon=True ) t.start() input_buffer = "" def render_tui(): # Build layout elements table = build_match_table(state, patterns) stats = build_stats_panel(state) input_panel = Panel( f"[bold yellow]Enter string:[/bold yellow] [cyan]{input_buffer}[/cyan][blink]█[/blink]\n" f"[dim]Enter:send, Esc/F10:quit, F1/Ctrl-R:query, Ctrl-U:clear[/dim]", title="[bold]Interaction[/bold]", border_style="yellow", ) return Group(table, stats, input_panel) console.print(BANNER, style="bold cyan") console.print(f"[green]Connected to [bold]{port}[/bold] @ {baud} baud[/green]\n") # MAIN INTERACTIVE LOOP with Live(render_tui(), console=console, refresh_per_second=10) as live: while True: live.update(render_tui()) if msvcrt.kbhit(): char = msvcrt.getch() # Handle extended keys (F-keys, arrows, etc) if char in (b"\x00", b"\xe0"): char = char + msvcrt.getch() # 1. Quit Commands if char in ( b"\x1b", b"\x11", b"\x18", b"\x00D", ): # Esc, Ctrl-Q, Ctrl-X, F10 break elif char == b"\x03": # Ctrl-C raise KeyboardInterrupt # 2. Query Commands elif char in (b"\x13", b"\x12", b"\x00;"): # Ctrl-S, Ctrl-R, F1 # Hotkey for counter query try: ser.write(b"?") ser.flush() with state.lock: state.status_msg = "Sent Query (?)" except serial.SerialException as exc: with state.lock: state.status_msg = f"Write error: {exc}" continue # 3. Input Commands elif char == b"\r": # Enter if not input_buffer: continue # Handle explicit "?" in the input buffer if input_buffer == "?": try: ser.write(b"?") ser.flush() with state.lock: state.status_msg = "Sent Query (?)" except serial.SerialException as exc: with state.lock: state.status_msg = f"Write error: {exc}" input_buffer = "" continue # Send normally to FPGA with newline payload = input_buffer + "\n" try: with pending_lock: pending.append(input_buffer) ser.write(payload.encode("ascii")) ser.flush() except serial.SerialException as exc: with state.lock: state.status_msg = f"Write error: {exc}" input_buffer = "" elif char == b"\x08": # Backspace input_buffer = input_buffer[:-1] elif char in (b"\x0c", b"\x15"): # Ctrl-L, Ctrl-U (Clear Buffer) input_buffer = "" # 4. Printable Input elif len(char) == 1: try: decoded = char.decode("ascii") if decoded.isprintable(): input_buffer += decoded except UnicodeDecodeError: pass time.sleep(0.01) ser.close() console.print("\n[bold cyan]Bye![/bold cyan]") # ───────────────────────────────────────────────────────────────────────────── def main() -> None: parser = argparse.ArgumentParser(description="Interactive TUI for XIIRegexBuilder") parser.add_argument( "--port", default=None, help="Serial port (default: auto-detect)" ) parser.add_argument( "--baud", type=int, default=115200, help="Baud rate (default: 115200)" ) parser.add_argument( "--regexes", default="inputs/regexes.txt", help="Path to regexes.txt for pattern labels", ) args = parser.parse_args() patterns = load_regexes(args.regexes) port = args.port if port is None: port = auto_detect_port() if port is None: print("ERROR: No serial port found. Pass --port explicitly.") sys.exit(1) print(f"Auto-detected port: {port}") run_tui(port, args.baud, patterns) if __name__ == "__main__": main() |