-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathincludes.py
70 lines (55 loc) · 1.65 KB
/
includes.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
#!/usr/bin/env python3
from pathlib import Path
import argparse
import graphviz
parser = argparse.ArgumentParser()
parser.add_argument("-o", type=Path, help="file to write the full graph to")
parser.add_argument("-t", type=Path, help="file to write the transitive graph to")
parser.add_argument(
"logs",
type=Path,
nargs="*",
action="extend",
help="list of log files to parse",
)
shargs = parser.parse_args()
def catfiles(files):
for fn in files:
with open(fn, "r") as file:
yield from file
def parse_output(log):
graph = graphviz.Digraph(
strict=True, graph_attr=dict(overlap="False")
) # not transitive
rootgraph = graphviz.Digraph(
strict=True, graph_attr=dict(overlap="False")
) # transitive includes
rootcause = None
files = list() # [(depth, header)...]
for line in log:
d, h = line.rstrip().split(" ", 1)
d = d.count(".")
h = Path(h)
if d == 0:
rootcause = h
else:
""" "
# A includes B.h, C.h
. A.h
.. B.h
.. C.h
"""
while files[-1][0] >= d:
del files[-1]
# if str(h).startswith("..") :
graph.edge(str(files[-1][1].parent), str(h.parent))
rootgraph.edge(str(rootcause.parent), str(h.parent))
files.append((d, h))
return (graph, rootgraph)
graph, rootgraph = parse_output(catfiles(shargs.logs))
if shargs.o:
with open(shargs.o, "w") as file:
print(graph.source, file=file)
if shargs.t:
with open(shargs.t, "w") as file:
print(rootgraph.source, file=file)