blob: ef6c42bf613d94f258b5a3e0310b23964899cb11 [file] [log] [blame]
Gilles Peskinee4d142f2021-11-17 19:25:43 +01001#!/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
20import argparse
21import os
22import re
Gilles Peskinec31780f2021-11-18 18:18:35 +010023import subprocess
Gilles Peskinee4d142f2021-11-17 19:25:43 +010024import sys
Gilles Peskinec31780f2021-11-18 18:18:35 +010025import tempfile
Gilles Peskinee4d142f2021-11-17 19:25:43 +010026import typing
27
28from typing import List
29from mbedtls_dev import typing_util
30
31def pylint_doesn_t_notice_that_certain_types_are_used_in_annotations(
32 _list: List[typing.Any],
33) -> None:
34 pass
35
36
37class 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 """
59 for line in open(filename):
60 line = line.strip()
61 line = re.sub(r'(\A|\s+)#.*', r'', line)
62 if not line:
63 continue
64 m = re.match(r'-r\s+', line)
65 if m:
66 nested_file = os.path.join(os.path.dirname(filename),
67 line[m.end(0):])
68 self.add_file(nested_file)
69 continue
70 self.requirements.append(self.adjust_requirement(line))
71
72 def write(self, out: typing_util.Writable) -> None:
73 """List the gathered requirements."""
74 for req in self.requirements:
75 out.write(req + '\n')
76
77 def install(self) -> None:
78 """Call pip to install the requirements."""
Gilles Peskinec31780f2021-11-18 18:18:35 +010079 with tempfile.TemporaryDirectory() as temp_dir:
80 # This is more complicated than it needs to be for the sake
81 # of Windows. Use a temporary file rather than the command line
82 # to avoid quoting issues. Use a temporary directory rather
83 # than NamedTemporaryFile because with a NamedTemporaryFile on
84 # Windows, the subprocess can't open the file because this process
85 # has an exclusive lock on it.
86 req_file_name = os.path.join(temp_dir, 'requirements.txt')
87 with open(req_file_name, 'w') as req_file:
88 self.write(req_file)
89 subprocess.check_call([sys.executable, '-m', 'pip',
90 'install', '-r', req_file_name])
Gilles Peskinee4d142f2021-11-17 19:25:43 +010091
92
93def main() -> None:
94 """Command line entry point."""
95 parser = argparse.ArgumentParser(description=__doc__)
96 parser.add_argument('--no-act', '-n',
97 action='store_true',
98 help="Don't act, just print what will be done")
99 parser.add_argument('files', nargs='*', metavar='FILE',
100 help="Requirement files"
101 "(default: requirements.txt in the script's directory)")
102 options = parser.parse_args()
103 if not options.files:
104 options.files = [os.path.join(os.path.dirname(__file__),
105 'ci.requirements.txt')]
106 reqs = Requirements()
107 for filename in options.files:
108 reqs.add_file(filename)
109 reqs.write(sys.stdout)
110 if not options.no_act:
111 reqs.install()
112
113if __name__ == '__main__':
114 main()