-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathconsole.py
300 lines (241 loc) · 8.6 KB
/
console.py
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
"""Contains the code to format output on the command line."""
from __future__ import annotations
import functools
import inspect
import os
import sys
from contextlib import suppress
from pathlib import Path
from typing import Any
from typing import Callable
from typing import Iterable
from typing import Literal
from typing import Sequence
from typing import TYPE_CHECKING
from _pytask.node_protocols import PNode
from _pytask.node_protocols import PPathNode
from _pytask.node_protocols import PTaskWithPath
from _pytask.path import shorten_path
from rich.console import Console
from rich.console import RenderableType
from rich.padding import Padding
from rich.panel import Panel
from rich.segment import Segment
from rich.style import Style
from rich.table import Table
from rich.text import Text
from rich.theme import Theme
from rich.tree import Tree
if TYPE_CHECKING:
from _pytask.node_protocols import PTask
from enum import Enum
from _pytask.outcomes import CollectionOutcome
from _pytask.outcomes import TaskOutcome
__all__ = [
"console",
"create_summary_panel",
"create_url_style_for_path",
"create_url_style_for_task",
"format_strings_as_flat_tree",
"format_task_name",
"get_file",
"render_to_string",
"unify_styles",
]
IS_WINDOWS_TERMINAL = "WT_SESSION" in os.environ
_IS_WINDOWS = sys.platform == "win32"
_IS_LEGACY_WINDOWS = _IS_WINDOWS and not IS_WINDOWS_TERMINAL
_COLOR_SYSTEM: Literal["auto"] | None = None if _IS_LEGACY_WINDOWS else "auto"
_HORIZONTAL_PADDING = (0, 1, 0, 1)
_SKIPPED_PATHS = [Path(__file__).parent.joinpath("debugging.py")]
"""List[Path]: List of paths to skip when tracing down the path to the source of a task
function.
"""
ARROW_DOWN_ICON = "|" if _IS_LEGACY_WINDOWS else "⬇"
FILE_ICON = "" if _IS_LEGACY_WINDOWS else "📄 "
PYTHON_ICON = "" if _IS_LEGACY_WINDOWS else "🐍 "
TASK_ICON = "" if _IS_LEGACY_WINDOWS else "📝 "
_EDITOR_URL_SCHEMES: dict[str, str] = {
"no_link": "",
"file": "file:///{path}",
"vscode": "vscode://file/{path}:{line_number}",
"pycharm": "pycharm://open?file={path}&line={line_number}",
}
theme = Theme(
{
# Statuses
"failed": "#BF2D2D",
"failed.textonly": "#f2f2f2 on #BF2D2D",
"neutral": "",
"skipped": "#F4C041",
"skipped.textonly": "#0c0c0c on #F4C041",
"success": "#137C39",
"success.textonly": "#f2f2f2 on #137C39",
"warning": "#F4C041",
# Help page.
"command": "bold #137C39",
"option": "bold #F4C041",
"switch": "bold #D54523",
"metavar": "bold #FFFF00",
}
)
console: Console = Console(theme=theme, color_system=_COLOR_SYSTEM)
def render_to_string(
renderable: RenderableType,
console: Console,
*,
strip_styles: bool = False,
) -> str:
"""Render text with rich to string including ANSI codes, etc..
This function allows to render text with is not automatically printed with rich. For
example, render warnings with colors or text in exceptions.
"""
buffer = console.render(renderable)
if strip_styles:
buffer = Segment.strip_styles(buffer)
return console._render_buffer(buffer)
def format_task_name(task: PTask, editor_url_scheme: str) -> Text:
"""Format a task id."""
if task.function is None:
url_style = Style()
else:
url_style = create_url_style_for_task(task.function, editor_url_scheme)
if isinstance(task, PTaskWithPath):
path, task_name = task.name.split("::")
return Text.assemble(
Text(path + "::", style="dim"), Text(task_name, style=url_style)
)
return Text(task.name, style=url_style)
def format_node_name(node: PNode, paths: Sequence[Path] = ()) -> Text:
"""Format the name of a node."""
if isinstance(node, PPathNode):
if node.name != node.path.as_posix():
return Text(node.name)
name = shorten_path(node.path, paths)
return Text(name)
if "::" in node.name:
with suppress(Exception):
path, rest = node.name.split("::", maxsplit=1)
reduced_name = shorten_path(Path(path), paths)
return Text(f"{reduced_name}::{rest}")
return Text(node.name)
def format_strings_as_flat_tree(
strings: Iterable[str], title: str = "", icon: str = ""
) -> str:
"""Format list of strings as flat tree."""
tree = Tree(title)
for name in strings:
tree.add(Text.assemble(icon, name))
return render_to_string(tree, console=console)
def create_url_style_for_task(
task_function: Callable[..., Any], edtior_url_scheme: str
) -> Style:
"""Create the style to add a link to a task id."""
url_scheme = _EDITOR_URL_SCHEMES.get(edtior_url_scheme, edtior_url_scheme)
if not url_scheme:
return Style()
try:
info = {
"path": get_file(task_function),
"line_number": _get_source_lines(task_function),
}
except (OSError, TypeError):
style = Style()
else:
style = Style(link=url_scheme.format(**info))
return style
def create_url_style_for_path(path: Path, edtior_url_scheme: str) -> Style:
"""Create the style to add a link to a task id."""
url_scheme = _EDITOR_URL_SCHEMES.get(edtior_url_scheme, edtior_url_scheme)
return (
Style()
if not url_scheme
else Style(link=url_scheme.format(path=path, line_number="1"))
)
def get_file( # noqa: PLR0911
function: Callable[..., Any], skipped_paths: list[Path] | None = None
) -> Path | None:
"""Get path to module where the function is defined.
When the ``pdb`` or ``trace`` mode is activated, every task function is wrapped with
a decorator which we need to skip to get to the underlying task function. Thus, the
special case.
Raises
------
TypeError
If the object is a builtin module, class, or function.
"""
if skipped_paths is None:
skipped_paths = _SKIPPED_PATHS
if isinstance(function, functools.partial):
return get_file(function.func)
if hasattr(function, "__wrapped__"):
source_file = inspect.getsourcefile(function)
if source_file and Path(source_file) in skipped_paths:
return get_file(function.__wrapped__)
source_file = inspect.getsourcefile(function)
if source_file:
if "<stdin>" in source_file:
return None
if "<string>" in source_file:
try:
return Path(function.__globals__["__file__"]).absolute().resolve()
except KeyError:
return None
return Path(source_file).absolute().resolve()
return None
def _get_source_lines(function: Callable[..., Any]) -> int:
"""Get the source line number of the function."""
if isinstance(function, functools.partial):
return _get_source_lines(function.func)
if hasattr(function, "__wrapped__"):
return _get_source_lines(function.__wrapped__)
return inspect.getsourcelines(function)[1]
def unify_styles(*styles: str | Style) -> Style:
"""Unify styles."""
parsed_styles = []
for style in styles:
if isinstance(style, str) and style in theme.styles:
parsed_styles.append(theme.styles[style])
elif isinstance(style, str):
parsed_styles.append(Style.parse(style))
else:
parsed_styles.append(style)
return Style.combine(parsed_styles)
def create_summary_panel(
counts: dict[Enum, int],
outcome_enum: type[CollectionOutcome | TaskOutcome],
description_total: str,
) -> Panel:
"""Create a summary panel."""
n_total = sum(counts.values())
grid = Table.grid("", "", "")
grid.add_row(
Padding(str(n_total), pad=_HORIZONTAL_PADDING),
Padding(description_total, pad=_HORIZONTAL_PADDING),
Padding("", pad=_HORIZONTAL_PADDING),
style="#f2f2f2",
)
for outcome, value in counts.items():
if value:
percentage = f"({100 * value / n_total:.1f}%)"
grid.add_row(
Padding(str(value), pad=_HORIZONTAL_PADDING),
Padding(
outcome.description, # type: ignore[attr-defined]
pad=_HORIZONTAL_PADDING,
),
Padding(
percentage,
pad=_HORIZONTAL_PADDING,
),
style=outcome.style_textonly, # type: ignore[attr-defined]
)
return Panel(
grid,
title="[bold #f2f2f2]Summary[/]",
expand=False,
style="none",
border_style=outcome_enum.FAIL.style
if counts[outcome_enum.FAIL]
else outcome_enum.SUCCESS.style,
)