Processes
How to safely run subprocesses in your plugin.
It is not safe to use subprocess.run()
like you normally would because this can break caching and will not leverage Pants's parallelism. Instead, Pants has safe alternatives with Process
and InteractiveProcess
.
Process
Process
is similar to subprocess.Popen()
. The process will run in the background, and you can run multiple processes in parallel.
from pants.engine.process import Process, ProcessResult
from pants.engine.rules import Get, rule
@rule
async def demo(...) -> Foo:
result = await Get(
ProcessResult,
Process(
argv=["/bin/echo", "hello world"],
description="Demonstrate processes.",
)
)
logger.info(result.stdout.decode())
logger.info(result.stderr.decode())
This will return a ProcessResult
object, which has the fields stdout: bytes
, stderr: bytes
, and output_digest: Digest
.
The process will run in a temporary directory and is hermetic, meaning that it cannot read any arbitrary file from your project and that it will be stripped of environment variables. This sandbox is important for reproducibility and to allow running your Process
anywhere, such as through remote execution.
To populate the temporary directory with files, use the parameter input_digest: Digest
. It's common to use MergeDigests
to combine multiple Digest
s into one single input_digest
.
To set environment variables, use the parameter env: Mapping[str, str]
. You generally should not read from os.environ
because this reduces reproducibility and breaks caching. Instead, hardcode the value or add a Subsystem
option for the environment variable in question.
To capture output files from the process, set output_files: Iterable[str]
and/or output_directories: Iterable[str]
. Then, you can use the ProcessResult.output_digest
field to get a Digest
of the result.
To use a timeout, set the timeout_fields: int
field. Otherwise, the process will never time out, unless the user cancels Pants.
UncacheableProcess
Normally, a Process
will be cached to ~/.cache/pants/lmdb_store
if the exit_code
is 0
.
If it not safe to cache your Process
—such as when running git
—you can instead wrap your Process
in an UncacheableProcess
.
from pants.engine.process import Process, ProcessResult, UncacheableProcess
@rule
async def demo(...) -> Foo:
process = Process(
argv=["/bin/echo", "hello world"],
description="Never cached.",
env=env,
)
result = await Get(ProcessResult, UncacheableProcess(process))
Warning: This API might change, such as using a keyword argument on Process
to indicate it should not be cached.
FallibleProcessResult
Normally, a ProcessResult
will raise an exception if the return code is not 0
. Instead, a FallibleProcessResult
allows for any return code.
Use Get(FallibleProcessResult, Process)
if you expect that the process may fail, such as when running a linter or tests.
Like ProcessResult
, FallibleProcessResult
has the attributes stdout: bytes
, stderr: bytes
, and output_digest: Digest
, and it adds exit_code: int
.
InteractiveProcess
InteractiveProcess
is similar to subprocess.run()
. The process will run in the foreground and it is blocking.
Because the process is blocking, you may only run an InteractiveProcess
in an @goal_rule
. Your @goal_rule
must request InteractiveRunner
, and then use its method .run()
. Typically, you should only use InteractiveProcess
for things that may require user input, such as running a REPL.
from pants.engine.rules import goal_rule
from pants.engine.process import InteractiveRunner, InteractiveProcess
@goal_rule
async def hello_world(interactive_runner: InteractiveRunner) -> HelloWorld:
# This demonstrates opening a Python REPL.
result = interactive_runner.run(
InteractiveProcess(argv=["/usr/bin/python"])
)
return HelloWorld(exit_code=result.exit_code)
You may either set the parameter input_digest: Digest
, or you may set run_in_workspace=True
. When running in the workspace, you will have access to any file in the build root.
To set environment variables, use the parameter env: Mapping[str, str]
, like you would with Process
. You can also set hermetic_env=False
to inherit the environment variables from the parent ./pants
process.
The method will return an InteractiveProcessResult
, which has a single field exit_code: int
.