aboutsummaryrefslogtreecommitdiff
path: root/scripts/ci/parse_clang_tidy.py
blob: 48596dee6bb04ec06a2541437a6ffe5c7ab99238 (plain)
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
import hashlib
import json
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+\[(.*?)\]$"
    )

    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"

            fingerprint_data = f"{path}:{line}:{name}"
            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))