Vedant Kumar | e56ddc5 | 2019-09-05 21:24:23 +0000 | [diff] [blame] | 1 | #===----------------------------------------------------------------------===## |
| 2 | # |
| 3 | # Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. |
| 4 | # See https://llvm.org/LICENSE.txt for license information. |
| 5 | # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception |
| 6 | # |
| 7 | #===----------------------------------------------------------------------===## |
| 8 | |
| 9 | """run.py is a utility for running a program. |
| 10 | |
| 11 | It can perform code signing, forward arguments to the program, and return the |
| 12 | program's error code. |
| 13 | """ |
| 14 | |
Louis Dionne | ab950ac | 2020-03-20 19:28:36 -0400 | [diff] [blame] | 15 | import argparse |
| 16 | import os |
Louis Dionne | 2022e66 | 2020-04-01 18:48:22 -0400 | [diff] [blame] | 17 | import shutil |
Vedant Kumar | e56ddc5 | 2019-09-05 21:24:23 +0000 | [diff] [blame] | 18 | import subprocess |
| 19 | import sys |
Louis Dionne | 2022e66 | 2020-04-01 18:48:22 -0400 | [diff] [blame] | 20 | import tempfile |
Vedant Kumar | e56ddc5 | 2019-09-05 21:24:23 +0000 | [diff] [blame] | 21 | |
| 22 | |
| 23 | def main(): |
Louis Dionne | a6d477a | 2020-03-20 18:11:38 -0400 | [diff] [blame] | 24 | parser = argparse.ArgumentParser() |
| 25 | parser.add_argument('--codesign_identity', type=str, required=False) |
Louis Dionne | a6d477a | 2020-03-20 18:11:38 -0400 | [diff] [blame] | 26 | parser.add_argument('--dependencies', type=str, nargs='*', required=True) |
| 27 | parser.add_argument('--env', type=str, nargs='*', required=True) |
| 28 | (args, remaining) = parser.parse_known_args(sys.argv[1:]) |
Vedant Kumar | e56ddc5 | 2019-09-05 21:24:23 +0000 | [diff] [blame] | 29 | |
Louis Dionne | a6d477a | 2020-03-20 18:11:38 -0400 | [diff] [blame] | 30 | if len(remaining) < 2: |
| 31 | sys.stderr.write('Missing actual commands to run') |
| 32 | exit(1) |
| 33 | remaining = remaining[1:] # Skip the '--' |
Vedant Kumar | e56ddc5 | 2019-09-05 21:24:23 +0000 | [diff] [blame] | 34 | |
| 35 | # Do any necessary codesigning. |
Louis Dionne | a6d477a | 2020-03-20 18:11:38 -0400 | [diff] [blame] | 36 | if args.codesign_identity: |
| 37 | exe = remaining[0] |
| 38 | rc = subprocess.call(['xcrun', 'codesign', '-f', '-s', args.codesign_identity, exe], env={}) |
| 39 | if rc != 0: |
| 40 | sys.stderr.write('Failed to codesign: ' + exe) |
| 41 | return rc |
Vedant Kumar | e56ddc5 | 2019-09-05 21:24:23 +0000 | [diff] [blame] | 42 | |
Louis Dionne | a6d477a | 2020-03-20 18:11:38 -0400 | [diff] [blame] | 43 | # Extract environment variables into a dictionary |
Louis Dionne | ab950ac | 2020-03-20 19:28:36 -0400 | [diff] [blame] | 44 | env = {k : v for (k, v) in map(lambda s: s.split('=', 1), args.env)} |
Louis Dionne | a6d477a | 2020-03-20 18:11:38 -0400 | [diff] [blame] | 45 | |
Louis Dionne | 2022e66 | 2020-04-01 18:48:22 -0400 | [diff] [blame] | 46 | try: |
| 47 | tmpDir = tempfile.mkdtemp() |
Louis Dionne | a6d477a | 2020-03-20 18:11:38 -0400 | [diff] [blame] | 48 | |
Louis Dionne | 2022e66 | 2020-04-01 18:48:22 -0400 | [diff] [blame] | 49 | # Ensure the file dependencies exist and copy them to a temporary directory. |
| 50 | for dep in args.dependencies: |
| 51 | if not os.path.exists(dep): |
| 52 | sys.stderr.write('Missing file or directory "{}" marked as a dependency of a test'.format(dep)) |
| 53 | exit(1) |
| 54 | if os.path.isdir(dep): |
| 55 | shutil.copytree(dep, os.path.join(tmpDir, os.path.basename(dep)), symlinks=True) |
| 56 | else: |
| 57 | shutil.copy2(dep, tmpDir) |
| 58 | |
| 59 | # Run the executable with the given environment in the temporary directory. |
| 60 | return subprocess.call(' '.join(remaining), cwd=tmpDir, env=env, shell=True) |
| 61 | finally: |
| 62 | shutil.rmtree(tmpDir) |
Vedant Kumar | e56ddc5 | 2019-09-05 21:24:23 +0000 | [diff] [blame] | 63 | |
| 64 | if __name__ == '__main__': |
| 65 | exit(main()) |