forked from plume-lib/plume-scripts
-
Notifications
You must be signed in to change notification settings - Fork 4
/
sort-compiler-output
executable file
·101 lines (80 loc) · 2.71 KB
/
sort-compiler-output
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
#!/usr/bin/env python3
## Given compiler output, sorts the errors/warnings by filename.
## Reads from standard input, writes the sorted errors to standard out.
## Works for any tool that produces output in the standard format
## (https://www.gnu.org/prep/standards/html_node/Errors.html).
## This script is useful for compilers such as javac that process files in
## nondeterministic order.
## TODO: Maybe use the comparison from the `sort-directory-order` script.
## TODO: Need to sort *numerically*, not *lexicographically*, for line and column numbers.
import os
import re
import sys
from operator import itemgetter
from itertools import groupby
## TODO: permit reading from stdin *or* a file on the command line.
## https://stackoverflow.com/questions/7576525/
if len(sys.argv) != 1:
print(os.path.basename(__file__) + ": Do not pass arguments, use stdin and stdout.")
sys.exit(1)
error_start_without_groups_string = (
r"("
+ r"^(?:\[(?:ERROR|WARNING)\] )?"
+ r"(?:-> \[Help|"
+ r"[^ ].*:\[?[0-9]+(?:[:,](?:[0-9]+))?\]? "
+ r")"
+ r")"
)
error_start_with_groups_string = (
r"^(?:\[(?:ERROR|WARNING)\] )?"
+ r"(?P<most>-> \[Help|"
+ r"(?P<filename>[^ ].*):\[?(?P<lineno>[0-9]+)(?:[:,](?P<columnno>[0-9]+))?\]? "
+ r")"
)
error_start_without_groups_re = re.compile(
error_start_without_groups_string, re.MULTILINE
)
error_start_with_groups_re = re.compile(error_start_with_groups_string)
all_input = sys.stdin.read()
chunks = re.split(error_start_without_groups_re, all_input)
prefix = chunks[0]
chunks = chunks[1:]
if False:
for chunk in chunks:
print("chunk:")
print(chunk, end="")
print("endchunk.")
chunk_it = iter(chunks)
# Pass the SAME iterator to both, so alternating elements are taken
errors = [x + y for x, y in zip(chunk_it, chunk_it)]
def error_sort_key(error):
match = re.match(error_start_with_groups_re, error)
if match is None:
# print("sortkey: no match for", error)
return str(error)
matchdict = match.groupdict("")
result = (
str(matchdict.get("filename"))
+ str(matchdict.get("lineno")).zfill(6)
+ str(matchdict.get("columnno")).zfill(3)
+ matchdict.get("most")
)
# print("sortkey =", result, "for", error)
return result
if False:
for error in errors:
print("sortkey: ", error_sort_key(error))
print("error:")
print(error, end="")
print("enderror.")
errors.sort(key=error_sort_key)
if False:
print(prefix)
for error in errors:
print("sortederror:")
print(error, end="")
print("endsortederror.")
errors = list(map(itemgetter(0), groupby(errors)))
print(prefix)
for error in errors:
print(error, end="")