bazarr/libs/werkzeug/debug/console.py

220 lines
5.9 KiB
Python
Raw Normal View History

from __future__ import annotations
2019-12-03 05:46:54 +08:00
import code
import sys
import typing as t
2022-11-08 02:06:49 +08:00
from contextvars import ContextVar
2019-12-03 05:46:54 +08:00
from types import CodeType
2022-11-08 02:06:49 +08:00
from markupsafe import escape
2019-12-03 05:46:54 +08:00
from .repr import debug_repr
from .repr import dump
from .repr import helper
_stream: ContextVar[HTMLStringO] = ContextVar("werkzeug.debug.console.stream")
2022-11-08 02:06:49 +08:00
_ipy: ContextVar = ContextVar("werkzeug.debug.console.ipy")
2019-12-03 05:46:54 +08:00
class HTMLStringO:
2019-12-03 05:46:54 +08:00
"""A StringO version that HTML escapes on write."""
def __init__(self) -> None:
self._buffer: list[str] = []
2019-12-03 05:46:54 +08:00
def isatty(self) -> bool:
2019-12-03 05:46:54 +08:00
return False
def close(self) -> None:
2019-12-03 05:46:54 +08:00
pass
def flush(self) -> None:
2019-12-03 05:46:54 +08:00
pass
def seek(self, n: int, mode: int = 0) -> None:
2019-12-03 05:46:54 +08:00
pass
def readline(self) -> str:
2019-12-03 05:46:54 +08:00
if len(self._buffer) == 0:
return ""
ret = self._buffer[0]
del self._buffer[0]
return ret
def reset(self) -> str:
2019-12-03 05:46:54 +08:00
val = "".join(self._buffer)
del self._buffer[:]
return val
def _write(self, x: str) -> None:
2019-12-03 05:46:54 +08:00
self._buffer.append(x)
def write(self, x: str) -> None:
2019-12-03 05:46:54 +08:00
self._write(escape(x))
def writelines(self, x: t.Iterable[str]) -> None:
2019-12-03 05:46:54 +08:00
self._write(escape("".join(x)))
class ThreadedStream:
2019-12-03 05:46:54 +08:00
"""Thread-local wrapper for sys.stdout for the interactive console."""
@staticmethod
def push() -> None:
2019-12-03 05:46:54 +08:00
if not isinstance(sys.stdout, ThreadedStream):
sys.stdout = t.cast(t.TextIO, ThreadedStream())
2022-11-08 02:06:49 +08:00
_stream.set(HTMLStringO())
2019-12-03 05:46:54 +08:00
@staticmethod
def fetch() -> str:
2019-12-03 05:46:54 +08:00
try:
2022-11-08 02:06:49 +08:00
stream = _stream.get()
except LookupError:
2019-12-03 05:46:54 +08:00
return ""
2022-11-08 02:06:49 +08:00
return stream.reset()
2019-12-03 05:46:54 +08:00
@staticmethod
def displayhook(obj: object) -> None:
2019-12-03 05:46:54 +08:00
try:
2022-11-08 02:06:49 +08:00
stream = _stream.get()
except LookupError:
return _displayhook(obj) # type: ignore
2022-11-08 02:06:49 +08:00
2019-12-03 05:46:54 +08:00
# stream._write bypasses escaping as debug_repr is
# already generating HTML for us.
if obj is not None:
2022-11-08 02:06:49 +08:00
_ipy.get().locals["_"] = obj
2019-12-03 05:46:54 +08:00
stream._write(debug_repr(obj))
def __setattr__(self, name: str, value: t.Any) -> None:
raise AttributeError(f"read only attribute {name}")
2019-12-03 05:46:54 +08:00
def __dir__(self) -> list[str]:
2019-12-03 05:46:54 +08:00
return dir(sys.__stdout__)
def __getattribute__(self, name: str) -> t.Any:
2019-12-03 05:46:54 +08:00
try:
2022-11-08 02:06:49 +08:00
stream = _stream.get()
except LookupError:
stream = sys.__stdout__ # type: ignore[assignment]
2019-12-03 05:46:54 +08:00
return getattr(stream, name)
def __repr__(self) -> str:
2019-12-03 05:46:54 +08:00
return repr(sys.__stdout__)
# add the threaded stream as display hook
_displayhook = sys.displayhook
sys.displayhook = ThreadedStream.displayhook
class _ConsoleLoader:
def __init__(self) -> None:
self._storage: dict[int, str] = {}
2019-12-03 05:46:54 +08:00
def register(self, code: CodeType, source: str) -> None:
2019-12-03 05:46:54 +08:00
self._storage[id(code)] = source
# register code objects of wrapped functions too.
for var in code.co_consts:
if isinstance(var, CodeType):
self._storage[id(var)] = source
def get_source_by_code(self, code: CodeType) -> str | None:
2019-12-03 05:46:54 +08:00
try:
return self._storage[id(code)]
except KeyError:
return None
2019-12-03 05:46:54 +08:00
class _InteractiveConsole(code.InteractiveInterpreter):
locals: dict[str, t.Any]
def __init__(self, globals: dict[str, t.Any], locals: dict[str, t.Any]) -> None:
self.loader = _ConsoleLoader()
locals = {
**globals,
**locals,
"dump": dump,
"help": helper,
"__loader__": self.loader,
}
super().__init__(locals)
original_compile = self.compile
def compile(source: str, filename: str, symbol: str) -> CodeType | None:
code = original_compile(source, filename, symbol)
2022-11-08 02:06:49 +08:00
if code is not None:
self.loader.register(code, source)
return code
2022-11-08 02:06:49 +08:00
self.compile = compile # type: ignore[assignment]
2019-12-03 05:46:54 +08:00
self.more = False
self.buffer: list[str] = []
2019-12-03 05:46:54 +08:00
def runsource(self, source: str, **kwargs: t.Any) -> str: # type: ignore
source = f"{source.rstrip()}\n"
2019-12-03 05:46:54 +08:00
ThreadedStream.push()
prompt = "... " if self.more else ">>> "
try:
source_to_eval = "".join(self.buffer + [source])
if super().runsource(source_to_eval, "<debugger>", "single"):
2019-12-03 05:46:54 +08:00
self.more = True
self.buffer.append(source)
else:
self.more = False
del self.buffer[:]
finally:
output = ThreadedStream.fetch()
2022-11-08 02:06:49 +08:00
return f"{prompt}{escape(source)}{output}"
2019-12-03 05:46:54 +08:00
def runcode(self, code: CodeType) -> None:
2019-12-03 05:46:54 +08:00
try:
exec(code, self.locals)
2019-12-03 05:46:54 +08:00
except Exception:
self.showtraceback()
def showtraceback(self) -> None:
2022-11-08 02:06:49 +08:00
from .tbtools import DebugTraceback
2019-12-03 05:46:54 +08:00
2022-11-08 02:06:49 +08:00
exc = t.cast(BaseException, sys.exc_info()[1])
te = DebugTraceback(exc, skip=1)
sys.stdout._write(te.render_traceback_html()) # type: ignore
2019-12-03 05:46:54 +08:00
def showsyntaxerror(self, filename: str | None = None) -> None:
2022-11-08 02:06:49 +08:00
from .tbtools import DebugTraceback
2019-12-03 05:46:54 +08:00
2022-11-08 02:06:49 +08:00
exc = t.cast(BaseException, sys.exc_info()[1])
te = DebugTraceback(exc, skip=4)
sys.stdout._write(te.render_traceback_html()) # type: ignore
2019-12-03 05:46:54 +08:00
def write(self, data: str) -> None:
2019-12-03 05:46:54 +08:00
sys.stdout.write(data)
class Console:
2019-12-03 05:46:54 +08:00
"""An interactive console."""
def __init__(
self,
globals: dict[str, t.Any] | None = None,
locals: dict[str, t.Any] | None = None,
) -> None:
2019-12-03 05:46:54 +08:00
if locals is None:
locals = {}
if globals is None:
globals = {}
self._ipy = _InteractiveConsole(globals, locals)
def eval(self, code: str) -> str:
2022-11-08 02:06:49 +08:00
_ipy.set(self._ipy)
2019-12-03 05:46:54 +08:00
old_sys_stdout = sys.stdout
try:
return self._ipy.runsource(code)
finally:
sys.stdout = old_sys_stdout