File size: 6,360 Bytes
d328630 | 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 | from __future__ import annotations
import sys
import threading
from contextlib import contextmanager
from datetime import datetime
from pathlib import Path
from typing import Iterator, TextIO
_DEBUG_ARG = "--debug-deepy"
DEBUG_DEEPY_ENABLED = False
DEBUG_DEEPY_LOG_PATH: Path | None = None
_BOOTSTRAPPED = False
_STREAMS_WRAPPED = False
_DEBUG_TARGET_DIR: Path | None = None
_LOG_STREAM: TextIO | None = None
_LOG_LOCK = threading.RLock()
_THREAD_STATE = threading.local()
_EXTERNAL_CAPTURE_DEPTH = 0
_START_NOTICE_EMITTED = False
class _SelectiveTeeTextStream:
def __init__(self, wrapped: TextIO):
self._wrapped = wrapped
self.encoding = getattr(wrapped, "encoding", None)
self.errors = getattr(wrapped, "errors", None)
def write(self, data):
written = self._wrapped.write(data)
_maybe_write_log(data)
return written
def writelines(self, lines):
for line in list(lines or []):
self.write(line)
def flush(self):
self._wrapped.flush()
log_stream = _LOG_STREAM
if log_stream is not None:
log_stream.flush()
def isatty(self):
return bool(getattr(self._wrapped, "isatty", lambda: False)())
def fileno(self):
return self._wrapped.fileno()
def __getattr__(self, name):
return getattr(self._wrapped, name)
def _find_debug_arg(argv: list[str]) -> str | None:
debug_dir = None
i = 1
while i < len(argv):
arg = str(argv[i])
if arg == _DEBUG_ARG:
if i + 1 >= len(argv):
raise SystemExit(f"{_DEBUG_ARG} requires a folder path.")
debug_dir = str(argv[i + 1])
i += 2
continue
if arg.startswith(f"{_DEBUG_ARG}="):
debug_dir = arg.split("=", 1)[1]
if not debug_dir:
raise SystemExit(f"{_DEBUG_ARG} requires a folder path.")
i += 1
return debug_dir
def _force_verbose_level(argv: list[str], level: str = "2") -> list[str]:
rewritten = [argv[0]]
verbose_seen = False
i = 1
while i < len(argv):
arg = str(argv[i])
if arg == "--verbose":
verbose_seen = True
rewritten.extend(["--verbose", level])
has_value = i + 1 < len(argv) and not str(argv[i + 1]).startswith("-")
i += 2 if has_value else 1
continue
if arg.startswith("--verbose="):
verbose_seen = True
rewritten.append(f"--verbose={level}")
i += 1
continue
rewritten.append(arg)
i += 1
if not verbose_seen:
rewritten.extend(["--verbose", level])
return rewritten
def _resolve_debug_dir(raw_dir: str) -> Path:
path = Path.cwd() if raw_dir == "." else Path(raw_dir).expanduser()
if not path.is_absolute():
path = Path.cwd() / path
path = path.resolve(strict=False)
if path.exists() and not path.is_dir():
raise SystemExit(f"{_DEBUG_ARG} path must be a folder: {path}")
path.mkdir(parents=True, exist_ok=True)
return path
def _unwrap_stream(stream: TextIO) -> TextIO:
return getattr(stream, "_wrapped", stream)
def _install_stream_tee() -> None:
global _STREAMS_WRAPPED
if _STREAMS_WRAPPED:
return
sys.stdout = _SelectiveTeeTextStream(sys.stdout)
sys.stderr = _SelectiveTeeTextStream(sys.stderr)
_STREAMS_WRAPPED = True
def _is_deepy_capture_active() -> bool:
return int(getattr(_THREAD_STATE, "deepy_log_depth", 0) or 0) > 0
def _should_log_current_write() -> bool:
return _LOG_STREAM is not None and (_EXTERNAL_CAPTURE_DEPTH > 0 or _is_deepy_capture_active())
def _maybe_write_log(data: str | None) -> None:
if not data or not _should_log_current_write():
return
with _LOG_LOCK:
if _LOG_STREAM is None:
return
_LOG_STREAM.write(data)
def _emit_start_notice() -> None:
global _START_NOTICE_EMITTED
if _START_NOTICE_EMITTED or _LOG_STREAM is None or DEBUG_DEEPY_LOG_PATH is None:
return
notice = f"[DeepyDebug] Verbose level forced to 2. Logging to {DEBUG_DEEPY_LOG_PATH}\n"
with _LOG_LOCK:
_unwrap_stream(sys.stdout).write(notice)
_unwrap_stream(sys.stdout).flush()
if _LOG_STREAM is not None:
_LOG_STREAM.write(notice)
_LOG_STREAM.flush()
_START_NOTICE_EMITTED = True
def bootstrap_deepy_debug() -> None:
global _BOOTSTRAPPED, _DEBUG_TARGET_DIR
if _BOOTSTRAPPED:
return
_BOOTSTRAPPED = True
debug_dir = _find_debug_arg(list(sys.argv))
if debug_dir is None:
return
sys.argv = _force_verbose_level(list(sys.argv))
_DEBUG_TARGET_DIR = _resolve_debug_dir(debug_dir)
_install_stream_tee()
def ensure_deepy_debug_started() -> bool:
global DEBUG_DEEPY_ENABLED, DEBUG_DEEPY_LOG_PATH, _LOG_STREAM
if _DEBUG_TARGET_DIR is None:
return False
if _LOG_STREAM is not None:
return True
with _LOG_LOCK:
if _LOG_STREAM is None:
stamp = datetime.now().strftime("%Y%m%d_%H%M%S")
DEBUG_DEEPY_LOG_PATH = _DEBUG_TARGET_DIR / f"debug_deepy_{stamp}.log"
_LOG_STREAM = DEBUG_DEEPY_LOG_PATH.open("a", encoding="utf-8", buffering=1)
DEBUG_DEEPY_ENABLED = True
_emit_start_notice()
return True
@contextmanager
def deepy_log_scope(*, start_if_needed: bool = False) -> Iterator[None]:
enabled = ensure_deepy_debug_started() if start_if_needed else _LOG_STREAM is not None
if not enabled:
yield
return
depth = int(getattr(_THREAD_STATE, "deepy_log_depth", 0) or 0)
_THREAD_STATE.deepy_log_depth = depth + 1
try:
yield
finally:
if depth <= 0:
if hasattr(_THREAD_STATE, "deepy_log_depth"):
delattr(_THREAD_STATE, "deepy_log_depth")
else:
_THREAD_STATE.deepy_log_depth = depth
def deepy_print(*args, **kwargs) -> None:
with deepy_log_scope():
print(*args, **kwargs)
@contextmanager
def capture_external_logs() -> Iterator[None]:
global _EXTERNAL_CAPTURE_DEPTH
if not ensure_deepy_debug_started():
yield
return
_EXTERNAL_CAPTURE_DEPTH += 1
try:
yield
finally:
_EXTERNAL_CAPTURE_DEPTH = max(0, _EXTERNAL_CAPTURE_DEPTH - 1)
|