-
Notifications
You must be signed in to change notification settings - Fork 284
/
Copy pathbuild_utils.py
274 lines (236 loc) · 8.52 KB
/
build_utils.py
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
"""Module with common utilities used by other build and test scripts."""
import json
import os
import shlex
import shutil
import subprocess
import sys
PYTYPE_SRC_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
OUT_DIR = os.path.join(PYTYPE_SRC_ROOT, "out")
CMAKE_LOG = os.path.join(OUT_DIR, "cmake.log")
NINJA_LOG = os.path.join(OUT_DIR, "ninja.log")
NINJA_FAILURE_PREFIX = "FAILED: "
FAILURE_MSG_PREFIX = ">>> FAIL"
PASS_MSG_PREFIX = ">>> PASS"
RESULT_MSG_SEP = " - "
_NOT_A_MSG = 0
_NINJA_FAILURE_MSG = 1
_TEST_MODULE_FAIL_MSG = 2
_TEST_MODULE_PASS_MSG = 3
def current_py_version():
"""Return the Python version under which this script is being run."""
return "%d.%d" % (sys.version_info.major, sys.version_info.minor)
class BuildConfig:
"""Utility class to create and manage the build config cache."""
BUILD_CONFIG_CACHE = os.path.join(OUT_DIR, ".build_config.json")
def __init__(self, **kwargs):
self.py_version = kwargs.get("py_version")
self.build_type = kwargs.get("build_type")
def save_to_cache_file(self):
with open(self.BUILD_CONFIG_CACHE, "w") as f:
json.dump(
{"py_version": self.py_version, "build_type": self.build_type}, f
)
def __eq__(self, other):
return (
self.py_version == other.py_version
and self.build_type == other.build_type
)
@classmethod
def current_build_config(cls, debug):
return BuildConfig(**{
"py_version": current_py_version(),
"build_type": "debug" if debug else "None",
})
@classmethod
def read_cached_config(cls):
if os.path.exists(cls.BUILD_CONFIG_CACHE):
with open(cls.BUILD_CONFIG_CACHE) as f:
return BuildConfig(**json.load(f))
else:
# There is no python version cache file during the very first run.
return BuildConfig(**{})
def clean_dir(dir_path, exclude_file_list=None):
exclude_list = exclude_file_list or []
for item in os.listdir(dir_path):
path = os.path.join(dir_path, item)
if os.path.isdir(path):
shutil.rmtree(path)
elif item not in exclude_list:
os.remove(path)
def _clean_out_dir(msg):
print(msg)
clean_dir(OUT_DIR, ["README.md", ".gitignore"])
def parse_ninja_output_line(line):
if line.startswith(NINJA_FAILURE_PREFIX):
return _NINJA_FAILURE_MSG, None, None
elif line.startswith(FAILURE_MSG_PREFIX):
components = line.split(RESULT_MSG_SEP)
log_file = components[2] if len(components) == 3 else None
return _TEST_MODULE_FAIL_MSG, components[1], log_file
elif line.startswith(PASS_MSG_PREFIX):
_, mod_name = line.split(RESULT_MSG_SEP)
return _TEST_MODULE_PASS_MSG, mod_name, None
else:
return _NOT_A_MSG, None, None
def failure_msg(mod_name, log_file):
components = [FAILURE_MSG_PREFIX, mod_name]
if log_file:
components.append(log_file)
return RESULT_MSG_SEP.join(components)
def pass_msg(mod_name):
return RESULT_MSG_SEP.join([PASS_MSG_PREFIX, mod_name])
def run_cmd(cmd, cwd=None, pipe=True):
process_options = {}
if pipe:
process_options = {
"stdout": subprocess.PIPE,
"stderr": subprocess.STDOUT,
"text": True,
}
if cwd:
process_options["cwd"] = cwd
print("+", shlex.join(cmd), flush=True)
with subprocess.Popen(cmd, **process_options) as process:
stdout, _ = process.communicate()
return process.returncode, stdout
def run_cmake(force_clean=False, log_output=False, debug_build=False):
"""Run cmake in the 'out' directory."""
current_config = BuildConfig.current_build_config(debug_build)
if force_clean:
_clean_out_dir("Force-cleaning 'out' directory.")
elif BuildConfig.read_cached_config() != current_config:
_clean_out_dir(
"Previous build config was different; cleaning 'out' directory.\n"
)
else:
print(
"Running with build config same as cached build config; "
"not cleaning 'out' directory.\n"
)
if os.path.exists(os.path.join(OUT_DIR, "build.ninja")):
# Run CMake if it was not already run. If CMake was already run, it
# generates a build.ninja file in the "out" directory.
msg = "Running CMake skipped as the build.ninja file is present ...\n"
print(msg)
if log_output:
with open(CMAKE_LOG, "w") as cmake_log:
cmake_log.write(msg)
return True
print("Running CMake ...\n")
cmd = [
"cmake",
PYTYPE_SRC_ROOT,
"-G",
"Ninja",
f"-DPython_ADDITIONAL_VERSIONS={current_config.py_version}",
]
if debug_build:
cmd.append("-DCMAKE_BUILD_TYPE=Debug")
else:
if os.name == "nt":
cmd.append("-DCMAKE_BUILD_TYPE=Release")
returncode, stdout = run_cmd(cmd, cwd=OUT_DIR)
# Print the full CMake output to stdout. It is not a lot that it would
# clutter the output, and also gives information about the Python version
# found etc.
print(stdout)
if log_output:
with open(CMAKE_LOG, "w") as cmake_log:
cmake_log.write(stdout)
if returncode != 0:
print(f">>> FAILED: CMake command '{shlex.join(cmd)}'")
if log_output:
print(f">>> Full CMake output is available in '{CMAKE_LOG}'.")
return False
# Cache the config for which the build files have been generated.
current_config.save_to_cache_file()
return True
class FailCollector:
"""A class to collect failures."""
def __init__(self):
self._failures = []
def add_failure(self, mod_name, log_file):
self._failures.append((mod_name, log_file))
def print_report(self, verbose):
num_failures = len(self._failures)
if num_failures == 0:
return
print("\n%d test module(s) failed: \n" % num_failures)
for mod_name, log_file in self._failures:
msg = f"** {mod_name}"
if log_file:
msg += f" - {log_file}"
print(msg)
if log_file and verbose:
with open(log_file.strip()) as f:
print(f.read(), file=sys.stderr)
def run_ninja(targets, fail_collector=None, fail_fast=False, verbose=False):
"""Run ninja over the list of specified targets.
Arguments:
targets: The list of targets to run.
fail_collector: A FailCollector object to collect failures.
fail_fast: If True, abort at the first target failure.
verbose: If True, print verbose output.
Returns:
True if no target fails. False, otherwise.
"""
# The -k option to ninja, set to a very high value, makes it run until it
# detects all failures. So, we set it to a high value unless |fail_fast| is
# True.
cmd = ["ninja", "-k", "1" if fail_fast else "100000"] + targets
with subprocess.Popen(
cmd,
cwd=OUT_DIR,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
text=True,
) as process:
failed_targets = []
# When verbose output is requested, test failure logs are printed to stderr.
# However, sometimes a test fails without generating a log, in which case we
# need to print the ninja build output to see what happened.
print_if_verbose = False
with open(NINJA_LOG, "w") as ninja_log:
while True:
line = process.stdout.readline()
if not line:
break
ninja_log.write(line)
msg_type, modname, logfile = parse_ninja_output_line(line)
if msg_type == _NINJA_FAILURE_MSG:
# This is a failed ninja target.
failed_targets.append(line[len(NINJA_FAILURE_PREFIX) :].strip())
print_if_verbose = True
if (
msg_type == _TEST_MODULE_PASS_MSG
or msg_type == _TEST_MODULE_FAIL_MSG
):
print(line)
if msg_type == _TEST_MODULE_FAIL_MSG:
fail_collector.add_failure(modname, logfile)
print_if_verbose = False
if verbose and print_if_verbose:
print(line.rstrip())
if failed_targets:
# For convenience, we will print the list of failed targets.
summary_hdr = (
">>> Found Ninja target failures (includes test failures):"
)
print("\n" + summary_hdr)
ninja_log.write("\n" + summary_hdr + "\n")
for t in failed_targets:
target = f" - {t}"
print(target)
ninja_log.write(target + "\n")
process.wait()
if process.returncode == 0:
return True
else:
# Ninja output can be a lot. Printing it here will clutter the output of
# this script. So, just tell the user how to repro the error.
print(f">>> FAILED: Ninja command '{shlex.join(cmd)}'.")
print(">>> Run it in the 'out' directory to reproduce.")
print(f">>> Full Ninja output is available in '{NINJA_LOG}'.")
print(">>> Failing test modules (if any) will be reported below.")
return False