forked from bazel-contrib/rules_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpy_runtime_rule.bzl
More file actions
477 lines (416 loc) · 18.3 KB
/
Copy pathpy_runtime_rule.bzl
File metadata and controls
477 lines (416 loc) · 18.3 KB
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
# Copyright 2022 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Implementation of py_runtime rule."""
load("@bazel_skylib//lib:dicts.bzl", "dicts")
load("@bazel_skylib//lib:paths.bzl", "paths")
load("@bazel_skylib//rules:common_settings.bzl", "BuildSettingInfo")
load(":common_labels.bzl", "labels")
load(":flags.bzl", "FreeThreadedFlag")
load(":py_internal.bzl", "py_internal")
load(":py_runtime_info.bzl", "DEFAULT_STUB_SHEBANG", "PyRuntimeInfo")
load(":reexports.bzl", "BuiltinPyRuntimeInfo")
load(":version.bzl", "version")
_py_builtins = py_internal
def coverage_tool_missing_message(*, coverage_enabled, coverage_tool, label):
"""Build the warning for a selected runtime that cannot produce coverage.
Kept separate from the rule implementation so the decision is unit testable
without having to capture analysis-phase output.
Args:
coverage_enabled: {type}`bool` whether the build is collecting coverage.
coverage_tool: {type}`File | None` the runtime's coverage entry point.
label: {type}`Label` the `py_runtime` being analyzed.
Returns:
{type}`str | None` the message to print, or `None` when no warning is
warranted.
"""
if not coverage_enabled or coverage_tool:
return None
return """
======================================================================
WARNING: Python runtime {label} has no coverage_tool.
`bazel coverage` will produce empty lcov data for py_test targets that
resolve to this runtime.
For rules_python's hermetic toolchains, enable the bundled coverage.py:
python.toolchain(configure_coverage_tool = True) # bzlmod
python_register_toolchains(register_coverage_tool = True) # WORKSPACE
A bundled wheel must exist for this interpreter's version and platform;
python/private/coverage_deps.bzl lists what ships with rules_python.
Otherwise, set py_runtime.coverage_tool directly. See
https://rules-python.readthedocs.io/en/latest/coverage.html
======================================================================
""".format(label = label)
def _py_runtime_impl(ctx):
interpreter_path = ctx.attr.interpreter_path or None # Convert empty string to None
interpreter = ctx.attr.interpreter
if (interpreter_path and interpreter) or (not interpreter_path and not interpreter):
fail("exactly one of the 'interpreter' or 'interpreter_path' attributes must be specified")
runtime_files = depset(transitive = [
t[DefaultInfo].files
for t in ctx.attr.files
])
runfiles = ctx.runfiles()
hermetic = bool(interpreter)
interpreter_files_to_run = None
if not hermetic:
if runtime_files:
fail("if 'interpreter_path' is given then 'files' must be empty")
if not paths.is_absolute(interpreter_path):
fail("interpreter_path must be an absolute path")
else:
interpreter_di = interpreter[DefaultInfo]
interpreter_file = None
if _is_singleton_depset(interpreter_di.files):
interpreter_file = interpreter_di.files.to_list()[0]
is_executable_source_file = (
interpreter_file and
interpreter_file.is_source and
interpreter_di.files_to_run and
interpreter_di.files_to_run.executable == interpreter_file
)
if is_executable_source_file:
# Source files Bazel treats as executable, e.g. direct file labels
# and filegroups: preserve historical runtime-file expansion, but
# do not expose a FilesToRunProvider.
interpreter = interpreter_file
runfiles = runfiles.merge(interpreter_di.default_runfiles)
runtime_files = depset(transitive = [
interpreter_di.files,
interpreter_di.default_runfiles.files,
runtime_files,
])
elif interpreter_di.files_to_run and interpreter_di.files_to_run.executable:
# Executable rule target: use the executable and preserve the full
# FilesToRunProvider so action consumers can stage its runfiles.
interpreter = interpreter_di.files_to_run.executable
interpreter_files_to_run = interpreter_di.files_to_run
runfiles = runfiles.merge(interpreter_di.default_runfiles)
runtime_files = depset(transitive = [
interpreter_di.files,
interpreter_di.default_runfiles.files,
runtime_files,
])
elif interpreter_file:
# Non-executable rule with exactly one output: preserve the
# historical file-only interpreter behavior.
interpreter = interpreter_file
else:
fail("interpreter must be an executable target or must produce exactly one file.")
if ctx.attr.coverage_tool:
coverage_di = ctx.attr.coverage_tool[DefaultInfo]
if _is_singleton_depset(coverage_di.files):
coverage_tool = coverage_di.files.to_list()[0]
elif coverage_di.files_to_run and coverage_di.files_to_run.executable:
coverage_tool = coverage_di.files_to_run.executable
else:
fail("coverage_tool must be an executable target or must produce exactly one file.")
coverage_files = depset(transitive = [
coverage_di.files,
coverage_di.default_runfiles.files,
])
else:
coverage_tool = None
coverage_files = None
# Reported here rather than where the toolchains are registered: this rule is
# analyzed once per configuration, and only for the runtime that toolchain
# resolution actually selected, so the empty-lcov outcome is real rather than
# hypothetical. See https://github.com/bazel-contrib/rules_python/issues/3950.
coverage_warning = coverage_tool_missing_message(
coverage_enabled = ctx.configuration.coverage_enabled,
coverage_tool = coverage_tool,
label = ctx.label,
)
if coverage_warning:
# buildifier: disable=print
print(coverage_warning)
python_version = ctx.attr.python_version
interpreter_version_info = ctx.attr.interpreter_version_info
if not interpreter_version_info:
python_version_flag = ctx.attr._python_version_flag[BuildSettingInfo].value
if python_version_flag:
interpreter_version_info = _interpreter_version_info_from_version_str(python_version_flag)
if python_version == "PY2":
fail("Using Python 2 is not supported and disabled; see " +
"https://github.com/bazelbuild/bazel/issues/15684")
pyc_tag = ctx.attr.pyc_tag
if not pyc_tag and (ctx.attr.implementation_name and
interpreter_version_info.get("major") and
interpreter_version_info.get("minor")):
pyc_tag = "{}-{}{}".format(
ctx.attr.implementation_name,
interpreter_version_info["major"],
interpreter_version_info["minor"],
)
abi_flags = ctx.attr.abi_flags
if abi_flags == "<AUTO>":
abi_flags = ""
if ctx.attr._py_freethreaded_flag[BuildSettingInfo].value == FreeThreadedFlag.YES:
abi_flags += "t"
# Args common to both BuiltinPyRuntimeInfo and PyRuntimeInfo
py_runtime_info_kwargs = dict(
interpreter_path = interpreter_path or None,
interpreter = interpreter,
files = runtime_files if hermetic else None,
coverage_tool = coverage_tool,
coverage_files = coverage_files,
python_version = python_version,
stub_shebang = ctx.attr.stub_shebang,
bootstrap_template = ctx.file.bootstrap_template,
)
builtin_py_runtime_info_kwargs = dict(py_runtime_info_kwargs)
# There are all args that BuiltinPyRuntimeInfo doesn't support
py_runtime_info_kwargs.update(dict(
implementation_name = ctx.attr.implementation_name,
interpreter_version_info = interpreter_version_info,
interpreter_files_to_run = interpreter_files_to_run,
pyc_tag = pyc_tag,
stage2_bootstrap_template = ctx.file.stage2_bootstrap_template,
zip_main_template = ctx.file.zip_main_template,
abi_flags = abi_flags,
site_init_template = ctx.file.site_init_template,
supports_build_time_venv = ctx.attr.supports_build_time_venv,
venv_bin_files = ctx.files.venv_bin_files,
))
providers = [
PyRuntimeInfo(**py_runtime_info_kwargs),
DefaultInfo(
files = runtime_files,
runfiles = runfiles,
),
]
if BuiltinPyRuntimeInfo != None and BuiltinPyRuntimeInfo != PyRuntimeInfo:
# Return the builtin provider for better compatibility.
# 1. There is a legacy code path in py_binary that
# checks for the provider when toolchains aren't used
# 2. It makes it easier to transition from builtins to rules_python
providers.append(BuiltinPyRuntimeInfo(**builtin_py_runtime_info_kwargs))
return providers
# Bind to the name "py_runtime" to preserve the kind/rule_class it shows up
# as elsewhere.
py_runtime = rule(
implementation = _py_runtime_impl,
doc = """
Represents a Python runtime used to execute Python code.
A `py_runtime` target can represent either a *platform runtime* or an *in-build
runtime*. A platform runtime accesses a system-installed interpreter at a known
path, whereas an in-build runtime points to an executable target that acts as
the interpreter. In both cases, an "interpreter" means any executable binary or
wrapper script that is capable of running a Python script passed on the command
line, following the same conventions as the standard CPython interpreter.
A platform runtime is by its nature non-hermetic. It imposes a requirement on
the target platform to have an interpreter located at a specific path. An
in-build runtime may or may not be hermetic, depending on whether it points to
a checked-in interpreter or a wrapper script that accesses the system
interpreter.
Example
```
load("@rules_python//python:py_runtime.bzl", "py_runtime")
py_runtime(
name = "python-2.7.12",
files = glob(["python-2.7.12/**"]),
interpreter = "python-2.7.12/bin/python",
)
py_runtime(
name = "python-3.6.0",
interpreter_path = "/opt/pyenv/versions/3.6.0/bin/python",
)
```
""",
fragments = ["py"],
attrs = dicts.add(
{
"abi_flags": attr.string(
default = "<AUTO>",
doc = """
The runtime's ABI flags, i.e. `sys.abiflags`.
If not set, then it will be set based on flags.
""",
),
"bootstrap_template": attr.label(
allow_single_file = True,
default = Label("//python/private:bootstrap_template"),
doc = """
The bootstrap script template file to use. Should have %python_binary%,
%workspace_name%, %main%, and %imports%.
This template, after expansion, becomes the executable file used to start the
process, so it is responsible for initial bootstrapping actions such as finding
the Python interpreter, runfiles, and constructing an environment to run the
intended Python application.
While this attribute is currently optional, it will become required when the
Python rules are moved out of Bazel itself.
The exact variable names expanded is an unstable API and is subject to change.
The API will become more stable when the Python rules are moved out of Bazel
itself.
See @bazel_tools//tools/python:python_bootstrap_template.txt for more variables.
""",
),
"coverage_tool": attr.label(
allow_files = False,
doc = """
This is a target to use for collecting code coverage information from
{rule}`py_binary` and {rule}`py_test` targets.
If set, the target must either produce a single file or be an executable target.
The path to the single file, or the executable if the target is executable,
determines the entry point for the python coverage tool. The target and its
runfiles will be added to the runfiles when coverage is enabled.
The entry point for the tool must be loadable by a Python interpreter (e.g. a
`.py` or `.pyc` file). It must accept the command line arguments
of [`coverage.py`](https://coverage.readthedocs.io), at least including
the `run` and `lcov` subcommands.
""",
),
"files": attr.label_list(
allow_files = True,
doc = """
For an in-build runtime, this is the set of files comprising this runtime.
These files will be added to the runfiles of Python binaries that use this
runtime. For a platform runtime this attribute must not be set.
""",
),
"implementation_name": attr.string(
doc = "The Python implementation name (`sys.implementation.name`)",
default = "cpython",
),
"interpreter": attr.label(
# We set `allow_files = True` to allow specifying executable
# targets from rules that have more than one default output,
# e.g. sh_binary.
allow_files = True,
doc = """
For an in-build runtime, this is the target to invoke as the interpreter. It
can be either of:
* A single file, which will be the interpreter binary. It's assumed such
interpreters are either self-contained single-file executables or any
supporting files are specified in `files`.
* An executable target. The target's executable will be the interpreter binary.
Any other default outputs (`target.files`) and plain files runfiles
(`runfiles.files`) will be automatically included as if specified in the
`files` attribute.
NOTE: the runfiles of the target may not yet be properly respected/propagated
to consumers of the toolchain/interpreter, see
bazel-contrib/rules_python/issues/1612
For a platform runtime (i.e. `interpreter_path` being set) this attribute must
not be set.
""",
),
"interpreter_path": attr.string(doc = """
For a platform runtime, this is the absolute path of a Python interpreter on
the target platform. For an in-build runtime this attribute must not be set.
"""),
"interpreter_version_info": attr.string_dict(
doc = """
Version information about the interpreter this runtime provides.
If not specified, uses {obj}`--python_version`
The supported keys match the names for `sys.version_info`. While the input
values are strings, most are converted to ints. The supported keys are:
* major: int, the major version number
* minor: int, the minor version number
* micro: optional int, the micro version number
* releaselevel: optional str, the release level
* serial: optional int, the serial number of the release
:::{versionchanged} 0.36.0
{obj}`--python_version` determines the default value.
:::
""",
mandatory = False,
),
"pyc_tag": attr.string(
doc = """
Optional string; the tag portion of a pyc filename, e.g. the `cpython-39` infix
of `foo.cpython-39.pyc`. See PEP 3147. If not specified, it will be computed
from `implementation_name` and `interpreter_version_info`. If no pyc_tag is
available, then only source-less pyc generation will function correctly.
""",
),
"python_version": attr.string(
default = "PY3",
values = ["PY2", "PY3"],
doc = """
Whether this runtime is for Python major version 2 or 3. Valid values are `"PY2"`
and `"PY3"`.
The default value is controlled by the `--incompatible_py3_is_default` flag.
However, in the future this attribute will be mandatory and have no default
value.
""",
),
"site_init_template": attr.label(
allow_single_file = True,
default = "//python/private:site_init_template",
doc = """
The template to use for the binary-specific site-init hook run by the
interpreter at startup.
:::{versionadded} 0.41.0
:::
""",
),
"stage2_bootstrap_template": attr.label(
default = "//python/private:stage2_bootstrap_template",
allow_single_file = True,
doc = """
The template to use when two stage bootstrapping is enabled
:::{seealso}
{obj}`PyRuntimeInfo.stage2_bootstrap_template` and {obj}`--bootstrap_impl`
:::
""",
),
"stub_shebang": attr.string(
default = DEFAULT_STUB_SHEBANG,
doc = """
"Shebang" expression prepended to the bootstrapping Python stub script
used when executing {rule}`py_binary` targets.
See [bazelbuild/bazel#8685](https://github.com/bazelbuild/bazel/issues/8685) for
motivation.
Does not apply to Windows.
""",
),
"supports_build_time_venv": attr.bool(
doc = """
Whether this runtime supports virtualenvs created at build time.
See {obj}`PyRuntimeInfo.supports_build_time_venv` for docs.
:::{versionadded} 1.5.0
:::
""",
default = True,
),
"venv_bin_files": attr.label_list(allow_files = True),
"zip_main_template": attr.label(
default = "//python/private/zipapp:zip_main_template",
allow_single_file = True,
doc = """
The template to use for a zip's top-level `__main__.py` file.
This becomes the entry point executed when `python foo.zip` is run.
:::{seealso}
The {obj}`PyRuntimeInfo.zip_main_template` field.
:::
""",
),
"_py_freethreaded_flag": attr.label(
default = labels.PY_FREETHREADED,
),
"_python_version_flag": attr.label(
default = labels.PYTHON_VERSION,
),
},
),
)
def _is_singleton_depset(files):
return _py_builtins.is_singleton_depset(files)
def _interpreter_version_info_from_version_str(version_str):
v = version.parse(version_str)
version_info = {}
parts = list(v.release)
for key in ("major", "minor", "micro"):
if not parts:
break
version_info[key] = parts.pop(0)
return version_info