| import asyncio |
| import json |
| import os |
| import platform |
| import signal |
| import tempfile |
| from asyncio.subprocess import Process |
| from datetime import datetime |
| from uuid import UUID, uuid4 |
|
|
| import psutil |
| from kimina_client import ( |
| Command, |
| CommandResponse, |
| Diagnostics, |
| Error, |
| Infotree, |
| ReplResponse, |
| Snippet, |
| ) |
| from loguru import logger |
| from rich.syntax import Syntax |
|
|
| from .db import db |
| from .errors import LeanError, ReplError |
| from .logger import console |
| from .models import ReplStatus |
| from .prisma_client import prisma |
| from .settings import Environment, settings |
| from .utils import is_blank |
|
|
| log_lock = asyncio.Lock() |
|
|
|
|
| async def log_snippet(uuid: UUID, snippet_id: str, code: str) -> None: |
| if settings.environment == Environment.prod: |
| header = f"[{uuid.hex[:8]}] Running snippet {snippet_id}:" |
| async with log_lock: |
| logger.info(header) |
| |
| logger.info(f"Code snippet:\n{code or '<empty>'}") |
| else: |
| header = f"\\[{uuid.hex[:8]}] Running snippet [bold magenta]{snippet_id}[/bold magenta]:" |
| syntax = Syntax( |
| code or "<empty>", |
| "lean", |
| theme="monokai", |
| line_numbers=False, |
| word_wrap=True, |
| ) |
|
|
| async with log_lock: |
| logger.info(header) |
| if console: |
| console.print(syntax) |
|
|
|
|
| class Repl: |
| def __init__( |
| self, |
| uuid: UUID, |
| created_at: datetime, |
| header: str = "", |
| *, |
| max_repl_mem: int, |
| max_repl_uses: int, |
| ) -> None: |
| self.uuid = uuid |
| self.header = header |
| self.use_count = 0 |
| self.created_at = created_at |
| self.last_check_at = created_at |
|
|
| |
| self.header_cmd_response: ReplResponse | None = None |
|
|
| self.proc: Process | None = None |
| self.error_file = tempfile.TemporaryFile("w+") |
| self.max_memory_bytes = max_repl_mem * 1024 * 1024 |
| self.max_repl_uses = max_repl_uses |
|
|
| self._loop: asyncio.AbstractEventLoop | None = None |
|
|
| |
| self.cpu_per_exec: dict[int, float] = {} |
| self.mem_per_exec: dict[int, int] = {} |
|
|
| |
| self._cpu_max: float = 0.0 |
| self._mem_max: int = 0 |
|
|
| self._ps_proc: psutil.Process | None = None |
| self._cpu_task: asyncio.Task[None] | None = None |
| self._mem_task: asyncio.Task[None] | None = None |
|
|
| @classmethod |
| async def create(cls, header: str, max_repl_uses: int, max_repl_mem: int) -> "Repl": |
| if db.connected: |
| record = await prisma.repl.create( |
| data={ |
| "header": header, |
| "max_repl_uses": max_repl_uses, |
| "max_repl_mem": max_repl_mem, |
| } |
| ) |
| return cls( |
| uuid=UUID(record.uuid), |
| created_at=record.created_at, |
| header=record.header, |
| max_repl_uses=record.max_repl_uses, |
| max_repl_mem=record.max_repl_mem, |
| ) |
| return cls( |
| uuid=uuid4(), |
| created_at=datetime.now(), |
| header=header, |
| max_repl_uses=max_repl_uses, |
| max_repl_mem=max_repl_mem, |
| ) |
|
|
| @property |
| def exhausted(self) -> bool: |
| if self.max_repl_uses < 0: |
| return False |
| if self.header and not is_blank(self.header): |
| |
| return self.use_count >= self.max_repl_uses + 1 |
| return self.use_count >= self.max_repl_uses |
|
|
| async def start(self) -> None: |
| |
| self._loop = asyncio.get_running_loop() |
|
|
| def _preexec() -> None: |
| import resource |
|
|
| |
| if platform.system() != "Darwin": |
| resource.setrlimit( |
| resource.RLIMIT_AS, (self.max_memory_bytes, self.max_memory_bytes) |
| ) |
|
|
| |
| |
| |
|
|
| os.setsid() |
|
|
| self.proc = await asyncio.create_subprocess_exec( |
| "lake", |
| "env", |
| settings.repl_path, |
| cwd=settings.project_dir, |
| env=os.environ, |
| stdin=asyncio.subprocess.PIPE, |
| stdout=asyncio.subprocess.PIPE, |
| stderr=asyncio.subprocess.PIPE, |
| preexec_fn=_preexec, |
| ) |
|
|
| self._ps_proc = psutil.Process(self.proc.pid) |
| now = self._loop.time() |
| self._last_check = now |
| self._last_cpu_time = self._sum_cpu_times(self._ps_proc) |
|
|
| self._cpu_max = 0.0 |
| self._mem_max = 0 |
| self._cpu_task = self._loop.create_task(self._cpu_monitor()) |
| self._mem_task = self._loop.create_task(self._mem_monitor()) |
|
|
| logger.info(f"\\[{self.uuid.hex[:8]}] Started") |
|
|
| @staticmethod |
| def _sum_cpu_times(proc: psutil.Process) -> float: |
| total = proc.cpu_times().user + proc.cpu_times().system |
| for c in proc.children(recursive=True): |
| t = c.cpu_times() |
| total += t.user + t.system |
| return float(total) |
|
|
| async def _cpu_monitor(self) -> None: |
| while self.is_running and self._ps_proc and self._loop: |
| await asyncio.sleep(1) |
| now = self._loop.time() |
|
|
| cur_cpu = self._sum_cpu_times(self._ps_proc) |
| delta_cpu = cur_cpu - self._last_cpu_time |
| delta_t = now - self._last_check |
| usage_pct = (delta_cpu / delta_t) * 100 |
| self._cpu_max = max(self._cpu_max, usage_pct) |
| self._last_cpu_time = cur_cpu |
| self._last_check = now |
|
|
| async def _mem_monitor(self) -> None: |
| while self.is_running and self._ps_proc: |
| await asyncio.sleep(1) |
| total = self._ps_proc.memory_info().rss |
| for child in self._ps_proc.children(recursive=True): |
| total += child.memory_info().rss |
| self._mem_max = max(self._mem_max, total) |
|
|
| @property |
| def is_running(self) -> bool: |
| if not self.proc: |
| return False |
| return self.proc.returncode is None |
|
|
| async def send_timeout( |
| self, |
| snippet: Snippet, |
| timeout: float, |
| is_header: bool = False, |
| infotree: Infotree | None = None, |
| ) -> ReplResponse: |
| cmd_response = None |
| elapsed_time = ( |
| 0.0 |
| ) |
| diagnostics = Diagnostics(repl_uuid=str(self.uuid)) |
|
|
| try: |
| cmd_response, elapsed_time, diagnostics = await asyncio.wait_for( |
| self.send(snippet, is_header=is_header, infotree=infotree), |
| timeout=timeout, |
| ) |
| except TimeoutError as e: |
| logger.error( |
| "\\[{}] Lean REPL command timed out in {} seconds", |
| self.uuid.hex[:8], |
| timeout, |
| ) |
| raise e |
| except LeanError as e: |
| logger.exception("Lean REPL error: %s", e) |
| raise e |
| except ReplError as e: |
| logger.exception("REPL error: %s", e) |
| raise e |
|
|
| return ReplResponse( |
| id=snippet.id, |
| response=cmd_response, |
| time=elapsed_time, |
| diagnostics=diagnostics if len(diagnostics) > 0 else None, |
| ) |
|
|
| async def send( |
| self, |
| snippet: Snippet, |
| is_header: bool = False, |
| infotree: Infotree | None = None, |
| ) -> tuple[CommandResponse | Error, float, Diagnostics]: |
| await log_snippet(self.uuid, snippet.id, snippet.code) |
|
|
| self._cpu_max = 0.0 |
| self._mem_max = 0 |
|
|
| if not self.proc or self.proc.returncode is not None: |
| logger.error("REPL process not started or shut down") |
| raise ReplError("REPL process not started or shut down") |
|
|
| loop = self._loop or asyncio.get_running_loop() |
|
|
| if self.proc.stdin is None: |
| raise ReplError("stdin pipe not initialized") |
| if self.proc.stdout is None: |
| raise ReplError("stdout pipe not initialized") |
|
|
| input: Command = {"cmd": snippet.code} |
|
|
| if self.use_count != 0 and not is_header: |
| input["env"] = 0 |
| input["gc"] = True |
|
|
| if infotree: |
| input["infotree"] = infotree |
|
|
| payload = (json.dumps(input, ensure_ascii=False) + "\n\n").encode("utf-8") |
|
|
| start = loop.time() |
| logger.debug("Sending payload to REPL") |
|
|
| try: |
| self.proc.stdin.write(payload) |
| await self.proc.stdin.drain() |
| except BrokenPipeError: |
| logger.error("Broken pipe while writing to REPL stdin") |
| raise LeanError("Lean process broken pipe") |
| except Exception as e: |
| logger.error("Failed to write to REPL stdin: %s", e) |
| raise LeanError("Failed to write to REPL stdin") |
|
|
| logger.debug("Reading response from REPL stdout") |
| raw = await self._read_response() |
| elapsed = loop.time() - start |
|
|
| logger.debug("Raw response from REPL: %r", raw) |
| try: |
| resp: CommandResponse | Error = json.loads(raw) |
| except json.JSONDecodeError: |
| logger.error("JSON decode error: %r", raw) |
| raise ReplError("JSON decode error") |
|
|
| self.error_file.seek(0) |
| err = self.error_file.read().strip() |
| self.error_file.seek(0) |
| self.error_file.truncate(0) |
| if err: |
| logger.error("Stderr: %s", err) |
| raise LeanError(err) |
|
|
| elapsed_time = round(elapsed, 6) |
| diagnostics: Diagnostics = { |
| "repl_uuid": str(self.uuid), |
| "cpu_max": self._cpu_max, |
| "memory_max": self._mem_max, |
| } |
|
|
| self.cpu_per_exec[self.use_count] = self._cpu_max |
| self.mem_per_exec[self.use_count] = self._mem_max |
|
|
| self.use_count += 1 |
| return resp, elapsed_time, diagnostics |
|
|
| async def _read_response(self) -> bytes: |
| if not self.proc or self.proc.stdout is None: |
| logger.error("REPL process not started or stdout pipe not initialized") |
| raise ReplError("REPL process not started or stdout pipe not initialized") |
|
|
| lines: list[bytes] = [] |
| try: |
| while True: |
| chunk = await self.proc.stdout.readline() |
| |
| if not chunk or not chunk.strip(): |
| break |
| lines.append(chunk) |
| except Exception as e: |
| logger.error("Failed to read from REPL stdout: %s", e) |
| raise LeanError("Failed to read from REPL stdout") |
| return b"".join(lines) |
|
|
| async def close(self) -> None: |
| if self.proc: |
| self.last_check_at = datetime.now() |
| assert self.proc.stdin is not None, "stdin pipe not initialized" |
| self.proc.stdin.close() |
| os.killpg(os.getpgid(self.proc.pid), signal.SIGKILL) |
| await self.proc.wait() |
| if self._cpu_task: |
| self._cpu_task.cancel() |
| if self._mem_task: |
| self._mem_task.cancel() |
|
|
| if db.connected: |
| await prisma.repl.update( |
| where={"uuid": str(self.uuid)}, |
| data={"status": ReplStatus.STOPPED}, |
| ) |
|
|
|
|
| async def close_verbose(repl: Repl) -> None: |
| uuid = repl.uuid |
| logger.info(f"Closing REPL {uuid.hex[:8]}") |
| await repl.close() |
| del repl |
| logger.info(f"Closed REPL {uuid.hex[:8]}") |
|
|