generated from aboutcode-org/skeleton
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathresolve_cli.py
282 lines (258 loc) · 8.13 KB
/
resolve_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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (c) nexB Inc. and others. All rights reserved.
# ScanCode is a trademark of nexB Inc.
# SPDX-License-Identifier: Apache-2.0
# See http://www.apache.org/licenses/LICENSE-2.0 for the license text.
# See https://github.com/nexB/python-inspector for support or download.
# See https://aboutcode.org for more information about nexB OSS projects.
#
from typing import Dict
import click
from python_inspector import utils_pypi
from python_inspector.api import resolve_dependencies as resolver_api
from python_inspector.cli_utils import FileOptionType
from python_inspector.utils import write_output_in_file
TRACE = False
__version__ = "0.9.7"
DEFAULT_PYTHON_VERSION = "38"
PYPI_SIMPLE_URL = "https://pypi.org/simple"
def print_version(ctx, param, value):
if not value or ctx.resilient_parsing:
return
click.echo(f"Python-inspector version: {__version__}")
ctx.exit()
@click.command()
@click.pass_context
@click.option(
"-r",
"--requirement",
"requirement_files",
type=click.Path(exists=True, readable=True, path_type=str, dir_okay=False),
metavar="REQUIREMENT-FILE",
multiple=True,
required=False,
help="Path to pip requirements file listing thirdparty packages. "
"This option can be used multiple times.",
)
@click.option(
"-s",
"--setup-py",
"setup_py_file",
type=click.Path(exists=True, readable=True, path_type=str, dir_okay=False),
metavar="SETUP-PY-FILE",
required=False,
help="Path to setuptools setup.py file listing dependencies and metadata. "
"This option can be used multiple times.",
)
@click.option(
"--spec",
"--specifier",
"specifiers",
type=str,
metavar="SPECIFIER",
multiple=True,
required=False,
help="Package specifier such as django==1.2.3. This option can be used multiple times.",
)
@click.option(
"-p",
"--python-version",
"python_version",
type=click.Choice(utils_pypi.valid_python_versions),
metavar="PYVER",
show_default=True,
required=True,
help="Python version to use for dependency resolution.",
)
@click.option(
"-o",
"--operating-system",
"operating_system",
type=click.Choice(utils_pypi.PLATFORMS_BY_OS),
metavar="OS",
show_default=True,
required=True,
help="OS to use for dependency resolution.",
)
@click.option(
"--index-url",
"index_urls",
type=str,
metavar="INDEX",
show_default=True,
default=tuple([PYPI_SIMPLE_URL]),
multiple=True,
help="PyPI simple index URL(s) to use in order of preference. "
"This option can be used multiple times.",
)
@click.option(
"--json",
"json_output",
type=FileOptionType(mode="w", encoding="utf-8", lazy=True),
required=False,
metavar="FILE",
help="Write output as pretty-printed JSON to FILE. "
"Use the special '-' file name to print results on screen/stdout.",
)
@click.option(
"--json-pdt",
"pdt_output",
type=FileOptionType(mode="w", encoding="utf-8", lazy=True),
required=False,
metavar="FILE",
help="Write output as pretty-printed JSON to FILE as a tree in the style of pipdeptree. "
"Use the special '-' file name to print results on screen/stdout.",
)
@click.option(
"-n",
"--netrc",
"netrc_file",
type=click.Path(exists=True, readable=True, path_type=str, dir_okay=False),
metavar="NETRC-FILE",
hidden=True,
required=False,
help="Netrc file to use for authentication. ",
)
@click.option(
"--max-rounds",
"max_rounds",
hidden=True,
type=int,
default=200000,
help="Increase the max rounds whenever the resolution is too deep",
)
@click.option(
"--use-cached-index",
is_flag=True,
hidden=True,
help="Use cached on-disk PyPI simple package indexes and do not refetch if present.",
)
@click.option(
"--use-pypi-json-api",
is_flag=True,
help="Use PyPI JSON API to fetch dependency data. Faster but not always correct. "
"--index-url are ignored when this option is active.",
)
@click.option(
"--analyze-setup-py-insecurely",
is_flag=True,
help="Enable collection of requirements in setup.py that compute these"
" dynamically. This is an insecure operation as it can run arbitrary code.",
)
@click.option(
"--prefer-source",
is_flag=True,
help="Prefer source distributions over binary distributions"
" if no source distribution is available then binary distributions are used",
)
@click.option(
"--verbose",
is_flag=True,
hidden=True,
help="Enable debug output.",
)
@click.option(
"-V",
"--version",
is_flag=True,
is_eager=True,
expose_value=False,
callback=print_version,
help="Show the version and exit.",
)
@click.help_option("-h", "--help")
def resolve_dependencies(
ctx,
requirement_files,
setup_py_file,
specifiers,
python_version,
operating_system,
index_urls,
json_output,
pdt_output,
netrc_file,
max_rounds,
use_cached_index=False,
use_pypi_json_api=False,
analyze_setup_py_insecurely=False,
prefer_source=False,
verbose=TRACE,
):
"""
Resolve the dependencies for the package requirements listed in one or
more REQUIREMENT-FILE file, one or more SPECIFIER and one setuptools
SETUP-PY-FILE file and save the results as JSON to FILE.
Resolve the dependencies for the requested ``--python-version`` PYVER and
``--operating_system`` OS combination.
Download from the provided PyPI simple --index-url INDEX(s) URLs defaulting
to PyPI.org.
Provide source distributions over binary distributions with the --prefer-source
option. If no source distribution is available then binary distributions are used.
Error and progress are printed to stderr.
For example, display the results of resolving the dependencies for flask==2.1.2
on screen::
python-inspector --spec "flask==2.1.2" --json -
"""
if not (json_output or pdt_output):
click.secho("No output file specified. Use --json or --json-pdt.", err=True)
ctx.exit(1)
if json_output and pdt_output:
click.secho("Only one of --json or --json-pdt can be used.", err=True)
ctx.exit(1)
options = [f"--requirement {rf}" for rf in requirement_files]
options += [f"--specifier {sp}" for sp in specifiers]
options += [f"--index-url {iu}" for iu in index_urls]
options += [f"--python-version {python_version}"]
options += [f"--operating-system {operating_system}"]
options += ["--json <file>"]
notice = (
"Dependency tree generated with python-inspector.\n"
"python-inspector is a free software tool from nexB Inc. and others.\n"
"Visit https://github.com/nexB/python-inspector/ for support and download."
)
headers = dict(
tool_name="python-inspector",
tool_homepageurl="https://github.com/nexB/python-inspector",
tool_version=__version__,
options=options,
notice=notice,
warnings=[],
errors=[],
)
try:
resolution_result: Dict = resolver_api(
requirement_files=requirement_files,
setup_py_file=setup_py_file,
specifiers=specifiers,
python_version=python_version,
operating_system=operating_system,
index_urls=index_urls,
pdt_output=pdt_output,
netrc_file=netrc_file,
max_rounds=max_rounds,
use_cached_index=use_cached_index,
use_pypi_json_api=use_pypi_json_api,
verbose=verbose,
analyze_setup_py_insecurely=analyze_setup_py_insecurely,
printer=click.secho,
prefer_source=prefer_source,
)
output = dict(
headers=headers,
files=resolution_result.files,
packages=resolution_result.packages,
resolved_dependencies_graph=resolution_result.resolution,
)
write_output_in_file(
output=output,
location=json_output or pdt_output,
)
except Exception as exc:
import traceback
click.secho(traceback.format_exc(), err=True)
ctx.exit(1)
if __name__ == "__main__":
resolve_dependencies()