-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathclang_tidy.py
executable file
·411 lines (355 loc) · 14.9 KB
/
clang_tidy.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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
#!/usr/bin/env python3
"""Runs clang-tidy in parallel and combines the the results for easier viewing."""
import argparse
import datetime
import hashlib
import json
import locale
import math
import multiprocessing
import os
import re
import subprocess
import sys
import time
from concurrent import futures
from pathlib import Path
from typing import Any, Dict, List, Optional, Tuple
import yaml
# Get relative imports to work when the package is not installed on the PYTHONPATH.
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from clang_tidy_vscode import CHECKS_SO
from mongo_toolchain import get_mongo_toolchain
from simple_report import make_report, put_report, try_combine_reports
checks_so = ""
for module in CHECKS_SO:
if os.path.exists(module):
checks_so = module
break
config_file = ""
for config in ["/tmp/compiledb-bin/.clang-tidy.strict", "bazel-bin/.clang-tidy.strict"]:
if os.path.exists(config):
config_file = config
break
def _clang_tidy_executor(
clang_tidy_filename: Path,
clang_tidy_binary: str,
clang_tidy_cfg: Dict[str, Any],
output_dir: str,
show_stdout: bool,
mongo_check_module: str = "",
compile_commands: str = "compile_commands.json",
) -> Tuple[str, Optional[str]]:
clang_tidy_parent_dir = output_dir / clang_tidy_filename.parent
os.makedirs(clang_tidy_parent_dir, exist_ok=True)
output_filename_base = clang_tidy_parent_dir / clang_tidy_filename.name
output_filename_fixes = output_filename_base.with_suffix(".yml")
if mongo_check_module:
load_module_option = ["-load", mongo_check_module]
else:
load_module_option = []
clang_tidy_command = [
clang_tidy_binary,
*load_module_option,
"-p",
os.path.dirname(compile_commands),
clang_tidy_filename,
f"-export-fixes={output_filename_fixes}",
f"-config={json.dumps(clang_tidy_cfg)}",
"--warnings-as-errors=*,-clang-diagnostic-builtin-macro-redefined",
]
proc = subprocess.run(clang_tidy_command, capture_output=True, check=False)
files_to_parse = None
if proc.returncode != 0:
output_filename_out = output_filename_base.with_suffix(".fail")
files_to_parse = output_filename_fixes
if not show_stdout:
print(
f"Running clang-tidy on {clang_tidy_filename} had errors see {output_filename_out}"
)
else:
print(f"Running clang-tidy on {clang_tidy_filename}")
print(f"{proc.stderr.decode(locale.getpreferredencoding())}")
print(f"{proc.stdout.decode(locale.getpreferredencoding())}")
else:
output_filename_out = output_filename_base.with_suffix(".pass")
if not show_stdout:
print(f"Running clang-tidy on {clang_tidy_filename} had no errors")
with open(output_filename_out, "wb") as output:
output.write(proc.stderr)
output.write(proc.stdout)
return proc.stdout.decode(locale.getpreferredencoding()), files_to_parse
def _combine_errors(fixes_filename: str, files_to_parse: List[str]) -> int:
failed_files = 0
all_fixes = {}
# loop files_to_parse and count the number of failed_files
for item in files_to_parse:
if item is None:
continue
failed_files += 1
# Read the yaml fixes for the file to combine them with the other suggested fixes
with open(item) as input_yml:
fixes = yaml.safe_load(input_yml)
for fix in fixes["Diagnostics"]:
fix_msg = None
if "Notes" in fix:
fix_msg = fix["Notes"][0]
if len(fix["Notes"]) > 1:
print(f'Warning: this script may be missing values in [{fix["Notes"]}]')
else:
fix_msg = fix["DiagnosticMessage"]
fix_data = (
all_fixes.setdefault(fix["DiagnosticName"], {})
.setdefault(fix_msg.get("FilePath", "FilePath Not Found"), {})
.setdefault(
str(fix_msg.get("FileOffset", "FileOffset Not Found")),
{
"replacements": fix_msg.get("Replacements", "Replacements not found"),
"message": fix_msg.get("Message", "Message not found"),
"count": 0,
"source_files": [],
},
)
)
for replacement in fix_data["replacements"]:
if replacement.get("FilePath") and os.path.exists(replacement.get("FilePath")):
with open(replacement.get("FilePath"), "rb") as contents:
replacement["FileContentsMD5"] = hashlib.md5(contents.read()).hexdigest()
fix_data["count"] += 1
fix_data["source_files"].append(fixes["MainSourceFile"])
with open(fixes_filename, "w") as files_file:
json.dump(all_fixes, files_file, indent=4, sort_keys=True)
return failed_files
def __dedup_errors(clang_tidy_errors_threads: List[str]) -> str:
unique_single_errors = set()
for errs in clang_tidy_errors_threads:
if errs:
lines = errs.splitlines()
single_error_start_line = 0
for i, line in enumerate(lines):
if line:
# the first line of one single error message like:
# ......./d_concurrency.h:175:13: error: .........
# trying to match :lineNumber:colomnNumber:
matched_regex = re.match("(.+:[0-9]+:[0-9]+:)", line)
# Collect a full single error message
# when we find another match or reach the last line of the text
if matched_regex and i != single_error_start_line:
unique_single_errors.add(tuple(lines[single_error_start_line:i]))
single_error_start_line = i
elif i == len(lines) - 1:
unique_single_errors.add(tuple(lines[single_error_start_line : i + 1]))
unique_single_error_flatten = [item for sublist in unique_single_errors for item in sublist]
return os.linesep.join(unique_single_error_flatten)
def _run_tidy(args, parser_defaults):
toolchain = get_mongo_toolchain(version=args.clang_tidy_toolchain)
clang_tidy_binary = toolchain.get_tool_path("clang-tidy")
if os.path.exists(args.check_module):
mongo_tidy_check_module = args.check_module
else:
mongo_tidy_check_module = ""
if os.path.exists(args.compile_commands):
with open(args.compile_commands) as compile_commands:
compile_commands = sorted(json.load(compile_commands), key=lambda x: x["file"])
else:
if args.compile_commands == parser_defaults.compile_commands:
print(
f"Could not find compile commands: '{args.compile_commands}', to generate it, use the build command:\n\n"
+ "python3 buildscripts/scons.py --build-profile=compiledb compiledb\n"
)
else:
print(f"Could not find compile commands: {args.compile_commands}")
sys.exit(1)
if os.path.exists(args.clang_tidy_cfg):
with open(args.clang_tidy_cfg) as clang_tidy_cfg:
clang_tidy_cfg = yaml.safe_load(clang_tidy_cfg)
else:
if args.clang_tidy_cfg == parser_defaults.clang_tidy_cfg:
print(
f"Could not find config file: '{args.clang_tidy_cfg}', to generate it, use the build command:\n\n"
+ "python3 buildscripts/scons.py --build-profile=compiledb compiledb\n"
)
else:
print(f"Could not find config file: {args.clang_tidy_cfg}")
sys.exit(1)
if args.split_jobs < 0:
print(f"--split-jobs: '{args.split_jobs}' must positive integer.")
sys.exit(1)
if args.split_jobs != 0:
if args.split < 1 or args.split > args.split_jobs:
print(
f"--split: '{args.split}' must be a value between 1 and --split-jobs: '{args.split_jobs}'"
)
sys.exit(1)
files_to_tidy: List[Path] = list()
files_to_parse = list()
filtered_compile_commands = []
for file_doc in compile_commands:
# A few special cases of files to ignore
if not file_doc["file"].startswith("src/mongo/"):
continue
# Don't run clang_tidy on the streams/third_party code.
if file_doc["file"].startswith("src/mongo/db/modules/enterprise/src/streams/third_party"):
continue
if file_doc["file"].endswith("/parser_gen.cpp"):
continue
# Skip over the tests for clang-tidy that have errors inserted.
if (
not args.clang_tidy_test
and "src/mongo/tools/mongo_tidy_checks/tests" in file_doc["file"]
):
continue
filtered_compile_commands.append(file_doc)
if args.split_jobs != 0:
original_compile_commands = filtered_compile_commands.copy()
total = len(filtered_compile_commands)
extra = total % args.split_jobs
chunk_size = int(total / args.split_jobs) + math.ceil(extra / args.split_jobs)
chunks = [
filtered_compile_commands[i : i + chunk_size]
for i in range(0, len(filtered_compile_commands), chunk_size)
]
# verify we aren't silently forgetting anything.
for chunk in chunks:
for file_doc in chunk:
original_compile_commands.remove(file_doc)
if len(original_compile_commands) != 0:
raise Exception(
"Total compile_commands different from sum of splits! This means something could silently be ignored!"
)
filtered_compile_commands = chunks[args.split - 1]
files_to_tidy = [Path(file_doc["file"]) for file_doc in filtered_compile_commands]
total_jobs = len(files_to_tidy)
workers = args.threads
clang_tidy_errors_futures: List[str] = []
clang_tidy_executor_futures: List[futures.ThreadPoolExecutor.submit] = []
# total completed tasks
tasks_completed = 0
with futures.ThreadPoolExecutor(max_workers=workers) as executor:
start_time = time.time()
# submit all futures
for clang_tidy_filename in files_to_tidy:
clang_tidy_executor_futures.append(
executor.submit(
_clang_tidy_executor,
clang_tidy_filename,
clang_tidy_binary,
clang_tidy_cfg,
args.output_dir,
args.show_stdout,
mongo_tidy_check_module,
compile_commands=args.compile_commands,
)
)
for future in futures.as_completed(clang_tidy_executor_futures):
clang_tidy_errors_futures.append(future.result()[0])
files_to_parse.append(future.result()[1])
tasks_completed += 1
pretty_time_duration = str(datetime.timedelta(seconds=time.time() - start_time))
print(
f" The number of jobs completed is {tasks_completed}/{total_jobs}. Duration {pretty_time_duration}"
)
return clang_tidy_errors_futures, files_to_parse
def main():
"""Execute Main entry point."""
parser = argparse.ArgumentParser(description="Run multithreaded clang-tidy")
parser.add_argument(
"-t",
"--threads",
type=int,
default=multiprocessing.cpu_count(),
help="Run with a specific number of threads",
)
parser.add_argument(
"-d",
"--output-dir",
type=str,
default="clang_tidy_fixes",
help="Directory to write all clang-tidy output to",
)
parser.add_argument(
"-o",
"--fixes-file",
type=str,
default="clang_tidy_fixes.json",
help="Report json file to write combined fixes to",
)
parser.add_argument(
"-c",
"--compile-commands",
type=str,
default="compile_commands.json",
help="compile_commands.json file to use to find the files to tidy",
)
parser.add_argument(
"--split-jobs",
type=int,
default=0,
help="The total number of splits if splitting the jobs across multiple tasks. 0 means don't split.",
)
parser.add_argument(
"--split",
type=int,
default=1,
help="The interval to run out of the total number of --split-jobs. Must be a value between 1 and --split-jobs value.",
)
parser.add_argument(
"-q", "--show-stdout", type=bool, default=True, help="Log errors to console"
)
parser.add_argument(
"-l", "--log-file", type=str, default="clang_tidy", help="clang tidy log from evergreen"
)
parser.add_argument(
"--only-process-fixes",
action="store_true",
help="Skip tidy and process the fixes directory to generate a fixes file. Use in conjunction with -d.",
)
parser.add_argument(
"--disable-reporting",
action="store_true",
default=False,
help="Disable generating the report file for evergreen perf.send",
)
parser.add_argument(
"-m",
"--check-module",
type=str,
default=checks_so,
help="Path to load the custom mongo checks module.",
)
parser.add_argument(
"--clang-tidy-test",
action="store_true",
default=False,
help="if this is a test evaluating clang tidy itself.",
)
parser.add_argument("-y", "--clang-tidy-toolchain", type=str, default=None)
parser.add_argument("-f", "--clang-tidy-cfg", type=str, default=config_file)
args = parser.parse_args()
if args.only_process_fixes:
if not os.path.isdir(args.output_dir):
print(f"Error: {args.output_dir} is not a valid directory.")
sys.exit(3)
find_cmd = ["find", args.output_dir, "-type", "f", "-name", "*.yml"]
find_output = subprocess.Popen(find_cmd, stdout=subprocess.PIPE)
files_to_parse = []
for line in iter(find_output.stdout.readline, ""):
if not line:
break
files_to_parse.append(str(line.rstrip().decode("utf-8")))
else:
parser_defaults = parser.parse_args([])
clang_tidy_errors_futures, files_to_parse = _run_tidy(args, parser_defaults)
failed_files = _combine_errors(Path(args.output_dir, args.fixes_file), files_to_parse)
if not args.only_process_fixes:
# Zip up all the files for upload
subprocess.run(["tar", "-czvf", args.output_dir + ".tgz", args.output_dir], check=False)
# Create report and dump to report.json
if not args.disable_reporting:
error_file_contents = __dedup_errors(clang_tidy_errors_futures)
report = make_report(args.log_file, error_file_contents, 1 if failed_files > 0 else 0)
try_combine_reports(report)
put_report(report)
return failed_files
if __name__ == "__main__":
sys.exit(main())