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
|
import hashlib
import json
import os
import re
import sys
def parse_clang_tidy(log_file_path: str) -> list[dict]:
issues = []
pattern = re.compile(
r"^(.*?):(\d+):(\d+):\s+(warning|error|note):\s+(.*?)\s+\[(.*?)\]$"
)
repo_root = os.environ.get("CI_PROJECT_DIR", os.getcwd())
with open(log_file_path, "r") as f:
for line in f:
match = pattern.match(line)
if not match:
continue
path, line, column, severity, message, name = match.groups()
severity = "minor" if severity == "warning" else "major"
try:
path = os.path.relpath(path, repo_root)
except ValueError:
pass
fingerprint_data = f"{path}:{line}:{name}:{message}"
fingerprint = hashlib.sha256(fingerprint_data.encode()).hexdigest()
issues.append(
{
"description": f"{message} ({name})",
"fingerprint": fingerprint,
"severity": severity,
"location": {
"path": path,
"lines": {
"begin": int(line),
},
},
}
)
return issues
if __name__ == "__main__":
if len(sys.argv) < 2:
sys.exit("Usage: python3 parse_clang_tidy.py <CLANG_TIDY_LOG_PATH>")
issues = parse_clang_tidy(sys.argv[1])
print(json.dumps(issues, indent=2))
|