4b6817381b
CI (OpenClaw E2E) / openclaw test (push) Has been cancelled
CI / coverage-report (push) Has been cancelled
CI / test-kubernetes (push) Has been cancelled
CI / should-run-thorough (push) Has been cancelled
CI / test-thorough (cloudwatch-demo) (push) Has been cancelled
CI / test-thorough (flink-ecs) (push) Has been cancelled
CI / test-thorough (upstream-lambda) (push) Has been cancelled
CI / test-thorough (prefect-ecs-fargate) (push) Has been cancelled
Release / build-binaries (zip, opensre.exe, onefile, windows-latest, windows-x64) (push) Has been cancelled
Benchmark image — build + push to ECR (any adapter) / build + push (push) Has been cancelled
CI / quality (ubuntu-latest) (push) Has been cancelled
CI / test (tools-runtime) (push) Has been cancelled
CI / test (e2e-general) (push) Has been cancelled
CI / test (cli-runtime) (push) Has been cancelled
CI / test (e2e-provider-and-openclaw) (push) Has been cancelled
CI / test (integrations-and-misc) (push) Has been cancelled
Release / verify (push) Has been cancelled
Release / build-python-dist (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-15-intel, darwin-x64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, macos-latest, darwin-arm64) (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04, linux-x64) (push) Has been cancelled
Release / publish-release (push) Has been cancelled
Release / publish-main-release (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-checks (no-LLM) (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Interactive Shell Live (PR + post-merge) / turn-live shard ${{ matrix.shard_index }} (push) Has been cancelled
Release / prepare (push) Has been cancelled
Release / build-binaries (tar.gz, opensre, onedir, ubuntu-22.04-arm, linux-arm64) (push) Has been cancelled
Synthetic Deterministic Tests / Synthetic offline (deterministic) (push) Has been cancelled
67 lines
2.5 KiB
Python
67 lines
2.5 KiB
Python
"""CLI rendering for structured OpenSRE errors.
|
|
|
|
The frontend-agnostic error contract lives in :mod:`platform.common.errors`.
|
|
This module adds the CLI presentation layer: a ``click.ClickException``
|
|
subclass whose :meth:`show` renders a clean, traceback-free panel via
|
|
:func:`render_error`. CLI code raises this subclass so Click's error path
|
|
renders it; non-CLI code (tools, integrations) raises the platform base, and
|
|
:mod:`cli.__main__` renders that. Catch ``platform.common.errors.OpenSREError``
|
|
to handle both.
|
|
|
|
render_error()
|
|
--------------
|
|
Catches any exception and displays a clean, terminal-safe error panel without
|
|
ever surfacing a raw Python traceback. Format:
|
|
|
|
✗ ExceptionType ← ERROR
|
|
message text ← TEXT
|
|
path/to/file.py:42 in fn_name ← DIM
|
|
Run opensre doctor to diagnose ← SECONDARY hint
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import sys
|
|
import typing as t
|
|
|
|
import click
|
|
from rich.console import Console
|
|
|
|
from platform.common.errors import OpenSREError as _OpenSREError
|
|
from platform.terminal.errors import render_error
|
|
|
|
|
|
# ClickException.message is Final in newer Click; the platform base owns ``message``.
|
|
class OpenSREError(_OpenSREError, click.ClickException): # type: ignore[misc]
|
|
"""A CLI error that renders with an optional suggestion and docs URL."""
|
|
|
|
def __init__(
|
|
self,
|
|
message: str,
|
|
*,
|
|
suggestion: str | None = None,
|
|
docs_url: str | None = None,
|
|
exit_code: int = 1,
|
|
) -> None:
|
|
# Click 8.2+ marks ``message`` final on ``ClickException``; initialize
|
|
# through Click and set the platform fields without reassigning ``message``.
|
|
click.ClickException.__init__(self, message)
|
|
self.suggestion = suggestion
|
|
self.docs_url = docs_url
|
|
self.exit_code = exit_code
|
|
|
|
def format_message(self) -> str:
|
|
return _OpenSREError.format_message(self)
|
|
|
|
def show(self, file: t.IO[t.Any] | None = None) -> None:
|
|
_file = file if file is not None else sys.stderr
|
|
console = Console(stderr=(_file is sys.stderr), highlight=False)
|
|
# Prefer the structured suggestion over the generic doctor hint.
|
|
custom_hint: str | None = None
|
|
if self.suggestion:
|
|
parts = [self.suggestion]
|
|
if self.docs_url:
|
|
parts.append(f"Docs: {self.docs_url}")
|
|
custom_hint = " ".join(parts)
|
|
render_error(self, console=console, hint=custom_hint)
|