Skip to content

Commit 9b6c2eb

Browse files
committed
clang-tidy emit action per file to lint and merge stdout and error codes
1 parent defed5d commit 9b6c2eb

File tree

2 files changed

+44
-15
lines changed

2 files changed

+44
-15
lines changed

example/src/cpp/main/BUILD

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
load("@rules_cc//cc:defs.bzl", "cc_binary", "cc_library")
2-
2+
load("//tools/lint:linters.bzl", "clang_tidy_test")
33
cc_library(
44
name = "hello-greet",
55
srcs = ["hello-greet.cc"],
@@ -17,6 +17,11 @@ cc_binary(
1717
],
1818
)
1919

20+
clang_tidy_test(
21+
name = "hello-world-clang-tidy-test",
22+
srcs = ["hello-world"],
23+
)
24+
2025
cc_library(
2126
name = "hello-greet-with-error",
2227
srcs = ["hello-greet-with-error.cc"],

lint/clang_tidy.bzl

+38-14
Original file line numberDiff line numberDiff line change
@@ -309,29 +309,53 @@ def clang_tidy_action(ctx, compilation_context, executable, srcs, stdout, exit_c
309309

310310
outputs = [stdout]
311311
env = _get_env(ctx, srcs)
312-
env["CLANG_TIDY__STDOUT_STDERR_OUTPUT_FILE"] = stdout.path
313312

314313
if exit_code:
315-
env["CLANG_TIDY__EXIT_CODE_OUTPUT_FILE"] = exit_code.path
316314
outputs.append(exit_code)
317315

318316
# pass compiler args via a params file. The command line may already be long due to
319317
# sources, which can't go the params file, so materialize it always.
320-
clang_tidy_args = _get_args(ctx, compilation_context, srcs)
321-
compiler_args = ctx.actions.args()
322-
compiler_args.add_all(_get_compiler_args(ctx, compilation_context, srcs))
323-
compiler_args.use_param_file("--config %s", use_always = True)
324318

319+
intermediate_outputs_stdout = []
320+
intermediate_outputs_exit_code = []
321+
# create an action for each file
322+
for src in srcs:
323+
out_intermediate_stdout = ctx.actions.declare_file(stdout.short_path+".{}.stdout".format(len(intermediate_outputs_stdout)))
324+
env["CLANG_TIDY__STDOUT_STDERR_OUTPUT_FILE"] = out_intermediate_stdout.path
325+
if exit_code:
326+
out_intermediate_exit_code = ctx.actions.declare_file(exit_code.short_path+".{}.exit_code".format(len(intermediate_outputs_exit_code)))
327+
env["CLANG_TIDY__EXIT_CODE_OUTPUT_FILE"] = out_intermediate_exit_code.path
328+
clang_tidy_args = _get_args(ctx, compilation_context, [src])
329+
compiler_args = ctx.actions.args()
330+
compiler_args.add_all(_get_compiler_args(ctx, compilation_context, [src]))
331+
compiler_args.use_param_file("--config %s", use_always = True)
332+
333+
ctx.actions.run_shell(
334+
inputs = _gather_inputs(ctx, compilation_context, [src]),
335+
outputs = [out_intermediate_stdout,]+([out_intermediate_exit_code] if exit_code else []),
336+
tools = [executable._clang_tidy_wrapper, executable._clang_tidy, find_cpp_toolchain(ctx).all_files],
337+
command = executable._clang_tidy_wrapper.path + " $@",
338+
arguments = [executable._clang_tidy.path] + clang_tidy_args + ["--", compiler_args],
339+
env = env,
340+
mnemonic = _MNEMONIC,
341+
progress_message = "Linting %{label} with clang-tidy",
342+
)
343+
intermediate_outputs_stdout.append(out_intermediate_stdout)
344+
if exit_code:
345+
intermediate_outputs_exit_code.append(out_intermediate_exit_code)
346+
347+
# emit
325348
ctx.actions.run_shell(
326-
inputs = _gather_inputs(ctx, compilation_context, srcs),
327-
outputs = outputs,
328-
tools = [executable._clang_tidy_wrapper, executable._clang_tidy, find_cpp_toolchain(ctx).all_files],
329-
command = executable._clang_tidy_wrapper.path + " $@",
330-
arguments = [executable._clang_tidy.path] + clang_tidy_args + ["--", compiler_args],
331-
env = env,
332-
mnemonic = _MNEMONIC,
333-
progress_message = "Linting %{label} with clang-tidy",
349+
inputs = intermediate_outputs_stdout,
350+
outputs = [stdout],
351+
command = "cat {} > {}".format(" ".join([f.path for f in intermediate_outputs_stdout]),stdout.path)
334352
)
353+
if exit_code:
354+
ctx.actions.run_shell(
355+
inputs = intermediate_outputs_exit_code,
356+
outputs = [exit_code],
357+
command = "cat {} | sort -nr | head -n 1 > {}".format(" ".join([f.path for f in intermediate_outputs_exit_code]),exit_code.path)
358+
)
335359

336360
def clang_tidy_fix(ctx, compilation_context, executable, srcs, patch, stdout, exit_code):
337361
"""Create a Bazel Action that spawns clang-tidy with --fix.

0 commit comments

Comments
 (0)