-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcli.py
296 lines (258 loc) · 8.5 KB
/
cli.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
"""This module defines the CLI logic of `mypy-upgrade`."""
# remove when dropping Python 3.7-3.9 support
from __future__ import annotations
import argparse
import logging
import pathlib
import shutil
import sys
import textwrap
from collections.abc import Generator, Iterable
from contextlib import contextmanager
from io import TextIOWrapper
from typing import Any, NamedTuple, TextIO
from mypy_upgrade.parsing import MypyError
if sys.version_info < (3, 8):
from typing_extensions import Literal
else:
from typing import Literal
from mypy_upgrade.__about__ import __version__
from mypy_upgrade.logging import ColouredFormatter
from mypy_upgrade.silence import MypyUpgradeResult, silence_errors_in_report
logger = logging.getLogger()
TEXT_WIDTH = min(79, shutil.get_terminal_size(fallback=(79, 0)).columns)
class Options(NamedTuple):
modules: list[str]
packages: list[str]
report: str | TextIOWrapper
description_style: Literal["full", "none"]
dry_run: bool
fix_me: str
verbosity: int
summarize: bool
colours: bool
version: bool
files: list[str]
codes_to_silence: list[str] | None
@contextmanager
def _open(
file: str | TextIO | TextIOWrapper, **kwargs: Any
) -> Generator[TextIO, None, None]:
if isinstance(file, (TextIOWrapper, TextIO)):
resource = file
else:
resource = pathlib.Path(file).open(**kwargs) # noqa: SIM115
try:
yield resource
finally:
resource.close()
def _process_options(*args: list[str]) -> Options:
parser = argparse.ArgumentParser(
prog="mypy-upgrade",
usage="%(prog)s [-h] [-v] [-V] [more options; see below]\n"
" [-m MODULE] [-p PACKAGE] [-r REPORT] "
"[-s ERROR_CODE] "
"[files ...]",
description="""
Place in-line comments into files to silence mypy errors.
""",
epilog="""
Examples
--------
# Pyre-like invocation
mypy --strict -p package | mypy-upgrade
# Use saved report file
mypy --strict -p package > mypy_report.txt
mypy-upgrade --report mypy_report.txt
# Only silence errors in package/module
mypy --strict -p package > mypy_report.txt
mypy-upgrade -p package.subpackage -m package.module --report mypy_report.txt
# Only silence errors in file/directory
mypy --strict -p package > mypy_report.txt
mypy-upgrade --report mypy_report.txt package/module.py package/
# Only silence "arg-type" errors
mypy --strict -p package > mypy_report.txt
mypy-upgrade --report mypy_report.txt --silence-error arg-type
""",
formatter_class=argparse.RawDescriptionHelpFormatter,
)
parser.add_argument(
"-V",
"--version",
default=False,
action="version",
version=f"%(prog)s {__version__}",
help="Show program's version number and exit.",
)
parser.add_argument(
"--dry-run",
action="store_true",
default=False,
help="Don't actually silence anything, just print what would be.",
)
printing_group = parser.add_argument_group(
title="Printing",
description="Control what information is printed and how.",
)
verbosity = printing_group.add_mutually_exclusive_group()
verbosity.add_argument(
"-v",
"--verbose",
action="count",
default=0,
help=(
"Control the verbosity. "
"0=Print warnings and messages for each unsilenced error. "
"1=Also print messages for each silenced error. "
"2=Used for debugging. Defaults to 0."
),
dest="verbosity",
)
verbosity.add_argument(
"-q",
"--quiet",
"--suppress-warnings",
action="store_const",
const=-1,
dest="verbosity",
help="Suppress all warnings. Disabled by default.",
)
printing_group.add_argument(
"-S",
"--summarize",
action="store_true",
default=False,
help="Print a summary after running. If the verbosity is greater than "
"zero, a detailed summary will also be printed. Disabled by default.",
)
printing_group.add_argument(
"-c",
"--colours",
action="store_true",
default=False,
help="Enable coloured output. Disabled by default.",
)
comment_group = parser.add_argument_group(
title="Comment Formatting",
description="Format how error suppression comments are placed.",
)
comment_group.add_argument(
"-d",
"--description-style",
default="none",
choices=["full", "none"],
help="""
Specify the style in which mypy error descriptions are expressed in the
error suppression comment. Defaults to "none".
""",
)
comment_group.add_argument(
"--fix-me",
default="FIX ME",
type=lambda x: x.rstrip(),
help="""
Specify a custom 'Fix Me' message to be placed after the error
suppression comment. Pass " " to omit a 'Fix Me' message altogether.
Defaults to "FIX ME".
""",
)
filter_group = parser.add_argument_group(
title="Error Filtering",
description="Specify which errors will be silenced.",
)
filter_group.add_argument(
"-r",
"--report",
default=sys.stdin,
help="""
The path to a text file containing a mypy type checking report. If not
specified, input is read from standard input.
""",
)
filter_group.add_argument(
"-m",
"--module",
default=[],
dest="modules",
metavar="MODULE",
action="append",
help="Silence errors from the provided (importable) module. "
"This flag may be repeated multiple times.",
)
filter_group.add_argument(
"-p",
"--package",
default=[],
dest="packages",
metavar="PACKAGE",
action="append",
help="Silence errors from the provided (importable) package. "
"This flag may be repeated multiple times.",
)
filter_group.add_argument(
"-s",
"--silence-error",
action="append",
dest="codes_to_silence",
help="Silence mypy errors by error code. This flag may be repeated "
"multiple times.",
metavar="ERROR_CODE",
)
filter_group.add_argument(
"files",
default=[],
nargs="*",
help="Silence errors from the provided files/directories.",
)
return Options(**vars(parser.parse_args(*args)))
def _print_header(header: str) -> None:
print(f" {header} ".center(TEXT_WIDTH, "-")) # noqa: T201
def _fill(text: str) -> str:
return textwrap.fill(text, width=TEXT_WIDTH)
def _detailed_summarize(header: str, errors: Iterable[MypyError]) -> None:
_print_header(header=header)
for error in errors:
print(str(error)) # noqa: T201
def summarize_results(*, results: MypyUpgradeResult, verbosity: int) -> None:
"""Print the results contained in a `MypyUpgradeResult` object.
Args:
results: a `MypyUpgradeResult` object.
verbosity: an integer specifying the verbosity of the summary.
"""
_print_header("SUMMARY")
print(_fill(f"{results!s}\n")) # noqa: T201
if verbosity > 0:
_detailed_summarize(header="SILENCED", errors=results.silenced)
_detailed_summarize(
header="FAILED TO SILENCE", errors=results.failures
)
_detailed_summarize(header="IGNORED", errors=results.ignored)
def _configure_printing(*, verbosity: int, colours: bool) -> None:
level = 30 - (verbosity * 10)
logger.setLevel(level)
ch = logging.StreamHandler(sys.stdout)
ch.setLevel(level)
fmt = "%(message)s"
formatter = ColouredFormatter(fmt) if colours else logging.Formatter(fmt)
ch.setFormatter(formatter)
logger.addHandler(ch)
def main() -> None:
"""An interface to `mypy-upgrade` from the command-line."""
options = _process_options()
_configure_printing(
verbosity=options.verbosity,
colours=options.colours,
)
with _open(file=options.report, mode="r", encoding="utf-8") as report:
results = silence_errors_in_report(
report=report,
packages=options.packages,
modules=options.modules,
files=options.files,
codes_to_silence=options.codes_to_silence,
description_style=options.description_style,
fix_me=options.fix_me,
dry_run=options.dry_run,
)
if options.summarize:
summarize_results(results=results, verbosity=options.verbosity)