-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmulti_project_report.py
96 lines (80 loc) · 3.5 KB
/
multi_project_report.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
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
#!/usr/bin/env python3
import argparse
import subprocess
import re
import sys
import os
import shutil
from typing import List, Tuple
from yattag import Doc
from pathlib import Path
from util import stringified_percent
extra_files = ["multi.css", "logo.png"]
def main(arg_list: List[str]) -> None:
parser = argparse.ArgumentParser()
parser.add_argument("dir")
args = parser.parse_args()
multi_project_index(args.dir)
def multi_project_index(report_dir: str) -> None:
project_reports = get_lines(f"find {report_dir}/ -maxdepth 1 -mindepth 1 -type d -not -name '.*', -not -name 'output'")
total_theorems = 0
total_success = 0
project_stats: List[Tuple[str, int, int]] = []
for project_report in project_reports:
num_theorems, num_success = get_stats(project_report)
total_theorems += num_theorems
total_success += num_success
project_stats.append((os.path.basename(project_report), num_theorems, num_success))
write_html(report_dir, total_theorems, total_success, project_stats)
base = Path(os.path.abspath(__file__)).parent.parent / "reports"
for filename in extra_files:
shutil.copyfile(base / filename, report_dir / filename)
def get_stats(project_dir: str) -> Tuple[int, int]:
with open(os.path.join(project_dir, "index.html")) as f:
contents = f.read()
statsMatch = re.search("Proofs Completed:\s+(\d+\.\d+)%\s+\((\d+)/(\d+)\)", contents)
assert statsMatch, project_dir
percent = statsMatch.group(1)
num_theorems = int(statsMatch.group(3))
num_success = int(statsMatch.group(2))
return num_theorems, num_success
def write_html(output_dir: str, total_theorems: int, total_success:int,
project_stats: List[Tuple[str, int, int]]):
doc, tag, text, line = Doc().ttl()
with tag('html'):
with tag('head'):
doc.stag("link", rel="stylesheet", href="multi.css")
with tag('title'):
text("Proverbot9001 Multi-project report")
with tag('body'):
with tag('img',
('src', 'logo.png'),
('id', 'logo')):
pass
with tag('h2'):
text("Proofs completed: {}% ({}/{})"
.format(stringified_percent(total_success, total_theorems),
total_success, total_theorems))
with tag('table'):
with tag('tr', klass="header"):
line('th', "Project")
line('th', "% Success")
line('th', "# Theorems Proved")
line('th', "# Theorems Total")
line('th', "details")
for proj_name, num_theorems, num_success in project_stats:
with tag('tr'):
line('td', proj_name)
line('td', stringified_percent(num_success, num_theorems))
line('td', str(num_success))
line('td', str(num_theorems))
with tag('td'):
with tag('a', href=os.path.join(proj_name,"index.html")):
text("link")
with open(os.path.join(output_dir, "index.html"), 'w') as fout:
fout.write(doc.getvalue())
def get_lines(command : str):
return (subprocess.run([command], stdout=subprocess.PIPE, shell=True)
.stdout.decode('utf-8').split('\n')[:-1])
if __name__ == "__main__":
main(sys.argv[1:])