Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 1 | #!/usr/bin/env python3 |
| 2 | """Install all the required Python packages, with the minimum Python version. |
| 3 | """ |
| 4 | |
| 5 | # Copyright The Mbed TLS Contributors |
| 6 | # SPDX-License-Identifier: Apache-2.0 |
| 7 | # |
| 8 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 9 | # not use this file except in compliance with the License. |
| 10 | # You may obtain a copy of the License at |
| 11 | # |
| 12 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 13 | # |
| 14 | # Unless required by applicable law or agreed to in writing, software |
| 15 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 16 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 17 | # See the License for the specific language governing permissions and |
| 18 | # limitations under the License. |
| 19 | |
| 20 | import argparse |
| 21 | import os |
| 22 | import re |
Gilles Peskine | c31780f | 2021-11-18 18:18:35 +0100 | [diff] [blame] | 23 | import subprocess |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 24 | import sys |
Gilles Peskine | c31780f | 2021-11-18 18:18:35 +0100 | [diff] [blame] | 25 | import tempfile |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 26 | import typing |
| 27 | |
Gilles Peskine | ca07ea0 | 2021-11-22 12:52:24 +0000 | [diff] [blame] | 28 | from typing import List, Optional |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 29 | from mbedtls_dev import typing_util |
| 30 | |
| 31 | def pylint_doesn_t_notice_that_certain_types_are_used_in_annotations( |
| 32 | _list: List[typing.Any], |
| 33 | ) -> None: |
| 34 | pass |
| 35 | |
| 36 | |
| 37 | class Requirements: |
| 38 | """Collect and massage Python requirements.""" |
| 39 | |
| 40 | def __init__(self) -> None: |
| 41 | self.requirements = [] #type: List[str] |
| 42 | |
| 43 | def adjust_requirement(self, req: str) -> str: |
| 44 | """Adjust a requirement to the minimum specified version.""" |
| 45 | # allow inheritance #pylint: disable=no-self-use |
| 46 | # If a requirement specifies a minimum version, impose that version. |
| 47 | req = re.sub(r'>=|~=', r'==', req) |
| 48 | return req |
| 49 | |
| 50 | def add_file(self, filename: str) -> None: |
| 51 | """Add requirements from the specified file. |
| 52 | |
| 53 | This method supports a subset of pip's requirement file syntax: |
| 54 | * One requirement specifier per line, which is passed to |
| 55 | `adjust_requirement`. |
| 56 | * Comments (``#`` at the beginning of the line or after whitespace). |
| 57 | * ``-r FILENAME`` to include another file. |
| 58 | """ |
Gilles Peskine | aeb8d66 | 2022-03-04 20:02:00 +0100 | [diff] [blame] | 59 | with open(filename) as fd: |
| 60 | for line in fd: |
| 61 | line = line.strip() |
| 62 | line = re.sub(r'(\A|\s+)#.*', r'', line) |
| 63 | if not line: |
| 64 | continue |
| 65 | m = re.match(r'-r\s+', line) |
| 66 | if m: |
| 67 | nested_file = os.path.join(os.path.dirname(filename), |
| 68 | line[m.end(0):]) |
| 69 | self.add_file(nested_file) |
| 70 | continue |
| 71 | self.requirements.append(self.adjust_requirement(line)) |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 72 | |
| 73 | def write(self, out: typing_util.Writable) -> None: |
| 74 | """List the gathered requirements.""" |
| 75 | for req in self.requirements: |
| 76 | out.write(req + '\n') |
| 77 | |
Gilles Peskine | ca07ea0 | 2021-11-22 12:52:24 +0000 | [diff] [blame] | 78 | def install( |
| 79 | self, |
| 80 | pip_general_options: Optional[List[str]] = None, |
| 81 | pip_install_options: Optional[List[str]] = None, |
| 82 | ) -> None: |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 83 | """Call pip to install the requirements.""" |
Gilles Peskine | ca07ea0 | 2021-11-22 12:52:24 +0000 | [diff] [blame] | 84 | if pip_general_options is None: |
| 85 | pip_general_options = [] |
| 86 | if pip_install_options is None: |
| 87 | pip_install_options = [] |
Gilles Peskine | c31780f | 2021-11-18 18:18:35 +0100 | [diff] [blame] | 88 | with tempfile.TemporaryDirectory() as temp_dir: |
| 89 | # This is more complicated than it needs to be for the sake |
| 90 | # of Windows. Use a temporary file rather than the command line |
| 91 | # to avoid quoting issues. Use a temporary directory rather |
| 92 | # than NamedTemporaryFile because with a NamedTemporaryFile on |
| 93 | # Windows, the subprocess can't open the file because this process |
| 94 | # has an exclusive lock on it. |
| 95 | req_file_name = os.path.join(temp_dir, 'requirements.txt') |
| 96 | with open(req_file_name, 'w') as req_file: |
| 97 | self.write(req_file) |
Gilles Peskine | ca07ea0 | 2021-11-22 12:52:24 +0000 | [diff] [blame] | 98 | subprocess.check_call([sys.executable, '-m', 'pip'] + |
| 99 | pip_general_options + |
| 100 | ['install'] + pip_install_options + |
| 101 | ['-r', req_file_name]) |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 102 | |
Gilles Peskine | 4b71e9b | 2021-12-03 13:32:10 +0100 | [diff] [blame] | 103 | DEFAULT_REQUIREMENTS_FILE = 'ci.requirements.txt' |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 104 | |
| 105 | def main() -> None: |
| 106 | """Command line entry point.""" |
| 107 | parser = argparse.ArgumentParser(description=__doc__) |
| 108 | parser.add_argument('--no-act', '-n', |
| 109 | action='store_true', |
| 110 | help="Don't act, just print what will be done") |
Gilles Peskine | ca07ea0 | 2021-11-22 12:52:24 +0000 | [diff] [blame] | 111 | parser.add_argument('--pip-install-option', |
| 112 | action='append', dest='pip_install_options', |
| 113 | help="Pass this option to pip install") |
| 114 | parser.add_argument('--pip-option', |
| 115 | action='append', dest='pip_general_options', |
| 116 | help="Pass this general option to pip") |
| 117 | parser.add_argument('--user', |
| 118 | action='append_const', dest='pip_install_options', |
| 119 | const='--user', |
| 120 | help="Install to the Python user install directory" |
| 121 | " (short for --pip-install-option --user)") |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 122 | parser.add_argument('files', nargs='*', metavar='FILE', |
| 123 | help="Requirement files" |
Gilles Peskine | 4b71e9b | 2021-12-03 13:32:10 +0100 | [diff] [blame] | 124 | " (default: {} in the script's directory)" \ |
| 125 | .format(DEFAULT_REQUIREMENTS_FILE)) |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 126 | options = parser.parse_args() |
| 127 | if not options.files: |
| 128 | options.files = [os.path.join(os.path.dirname(__file__), |
Gilles Peskine | 4b71e9b | 2021-12-03 13:32:10 +0100 | [diff] [blame] | 129 | DEFAULT_REQUIREMENTS_FILE)] |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 130 | reqs = Requirements() |
| 131 | for filename in options.files: |
| 132 | reqs.add_file(filename) |
| 133 | reqs.write(sys.stdout) |
| 134 | if not options.no_act: |
Gilles Peskine | ca07ea0 | 2021-11-22 12:52:24 +0000 | [diff] [blame] | 135 | reqs.install(pip_general_options=options.pip_general_options, |
| 136 | pip_install_options=options.pip_install_options) |
Gilles Peskine | e4d142f | 2021-11-17 19:25:43 +0100 | [diff] [blame] | 137 | |
| 138 | if __name__ == '__main__': |
| 139 | main() |