CSIT-1094: Change menu style
[csit.git] / resources / tools / presentation / generator_report.py
1 # Copyright (c) 2017 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 """Report generation.
15 """
16
17 import logging
18 import datetime
19
20 from shutil import make_archive
21
22 from utils import get_files, execute_command, archive_input_data
23
24
25 # .css file for the html format of the report
26 THEME_OVERRIDES = """/* override table width restrictions */
27 @media screen and (min-width: 767px) {
28     .wy-table-responsive table td, .wy-table-responsive table th {
29         white-space: normal !important;
30     }
31
32     .wy-table-responsive {
33         font-size: small;
34         margin-bottom: 24px;
35         max-width: 100%;
36         overflow: visible !important;
37     }
38 }
39 .rst-content blockquote {
40     margin-left: 0px;
41     line-height: 18px;
42     margin-bottom: 0px;
43 }
44 .wy-menu-vertical a {
45     display: inline-block;
46     line-height: 18px;
47     padding: 0 2em;
48     display: block;
49     position: relative;
50     font-size: 90%;
51     color: #d9d9d9
52 }
53 .wy-menu-vertical li.current a {
54     color: gray;
55     border-right: solid 1px #c9c9c9;
56     padding: 0 3em;
57 }
58 .wy-menu-vertical li.toctree-l2.current > a {
59     background: #c9c9c9;
60     padding: 0 3em;
61 }
62 .wy-menu-vertical li.toctree-l2.current li.toctree-l3 > a {
63     display: block;
64     background: #c9c9c9;
65     padding: 0 4em;
66 }
67 .wy-menu-vertical li.toctree-l3.current li.toctree-l4 > a {
68     display: block;
69     background: #bdbdbd;
70     padding: 0 5em;
71 }
72 .wy-menu-vertical li.on a, .wy-menu-vertical li.current > a {
73     color: #404040;
74     padding: 0 2em;
75     font-weight: bold;
76     position: relative;
77     background: #fcfcfc;
78     border: none;
79         border-top-width: medium;
80         border-bottom-width: medium;
81         border-top-style: none;
82         border-bottom-style: none;
83         border-top-color: currentcolor;
84         border-bottom-color: currentcolor;
85     padding-left: 2em -4px;
86 }
87 """
88
89 # Command to build the html format of the report
90 HTML_BUILDER = 'sphinx-build -v -c . -a ' \
91                '-b html -E ' \
92                '-t html ' \
93                '-D release={release} ' \
94                '-D version="Report v{report_version} - {date}" ' \
95                '{working_dir} ' \
96                '{build_dir}/'
97
98 # Command to build the pdf format of the report
99 PDF_BUILDER = 'sphinx-build -v -c . -a ' \
100               '-b latex -E ' \
101               '-t latex ' \
102               '-D release={release} ' \
103               '-D version="Report v{report_version} - {date}" ' \
104               '{working_dir} ' \
105               '{build_dir}'
106
107
108 def generate_report(release, spec, report_version):
109     """Generate all formats and versions of the report.
110
111     :param release: Release string of the product.
112     :param spec: Specification read from the specification file.
113     :param report_version: Version of the report.
114     :type release: str
115     :type spec: Specification
116     :type report_version: str
117     """
118
119     logging.info("Generating the report ...")
120
121     report = {
122         "html": generate_html_report,
123         "pdf": generate_pdf_report
124     }
125
126     for report_format, versions in spec.output["format"].items():
127         report[report_format](release, spec, versions, report_version)
128
129     archive_input_data(spec)
130     archive_report(spec)
131
132     logging.info("Done.")
133
134
135 def generate_html_report(release, spec, versions, report_version):
136     """Generate html format of the report.
137
138     :param release: Release string of the product.
139     :param spec: Specification read from the specification file.
140     :param versions: List of versions to generate.
141     :param report_version: Version of the report.
142     :type release: str
143     :type spec: Specification
144     :type versions: list
145     :type report_version: str
146     """
147
148     logging.info("  Generating the html report, give me a few minutes, please "
149                  "...")
150
151     cmd = HTML_BUILDER.format(
152         release=release,
153         report_version=report_version,
154         date=datetime.datetime.utcnow().strftime('%m/%d/%Y %H:%M UTC'),
155         working_dir=spec.environment["paths"]["DIR[WORKING,SRC]"],
156         build_dir=spec.environment["paths"]["DIR[BUILD,HTML]"])
157     execute_command(cmd)
158
159     with open(spec.environment["paths"]["DIR[CSS_PATCH_FILE]"], "w") as \
160             css_file:
161         css_file.write(THEME_OVERRIDES)
162
163     with open(spec.environment["paths"]["DIR[CSS_PATCH_FILE2]"], "w") as \
164             css_file:
165         css_file.write(THEME_OVERRIDES)
166
167     logging.info("  Done.")
168
169
170 def generate_pdf_report(release, spec, versions, report_version):
171     """Generate html format of the report.
172
173     :param release: Release string of the product.
174     :param spec: Specification read from the specification file.
175     :param versions: List of versions to generate. Not implemented yet.
176     :param report_version: Version of the report.
177     :type release: str
178     :type spec: Specification
179     :type versions: list
180     :type report_version: str
181     """
182
183     logging.info("  Generating the pdf report, give me a few minutes, please "
184                  "...")
185
186     convert_plots = "xvfb-run -a wkhtmltopdf {html} {pdf}.pdf"
187
188     # Convert PyPLOT graphs in HTML format to PDF.
189     plots = get_files(spec.environment["paths"]["DIR[STATIC,VPP]"], "html")
190     plots.extend(get_files(spec.environment["paths"]["DIR[STATIC,DPDK]"],
191                            "html"))
192     for plot in plots:
193         file_name = "{0}".format(plot.rsplit(".", 1)[0])
194         cmd = convert_plots.format(html=plot, pdf=file_name)
195         execute_command(cmd)
196
197     # Generate the LaTeX documentation
198     build_dir = spec.environment["paths"]["DIR[BUILD,LATEX]"]
199     cmd = PDF_BUILDER.format(
200         release=release,
201         report_version=report_version,
202         date=datetime.datetime.utcnow().strftime('%m/%d/%Y %H:%M UTC'),
203         working_dir=spec.environment["paths"]["DIR[WORKING,SRC]"],
204         build_dir=build_dir)
205     execute_command(cmd)
206
207     # Build pdf documentation
208     archive_dir = spec.environment["paths"]["DIR[STATIC,ARCH]"]
209     cmds = [
210         'cd {build_dir} && '
211         'pdflatex -shell-escape -interaction nonstopmode csit.tex || true'.
212         format(build_dir=build_dir),
213         'cd {build_dir} && '
214         'pdflatex -interaction nonstopmode csit.tex || true'.
215         format(build_dir=build_dir),
216         'cd {build_dir} && '
217         'cp csit.pdf ../{archive_dir}/csit_{release}_{report_version}.pdf'.
218         format(build_dir=build_dir,
219                archive_dir=archive_dir,
220                release=release,
221                report_version=report_version)
222     ]
223
224     for cmd in cmds:
225         execute_command(cmd)
226
227     logging.info("  Done.")
228
229
230 def archive_report(spec):
231     """Archive the report.
232
233     :param spec: Specification read from the specification file.
234     :type spec: Specification
235     """
236
237     logging.info("  Archiving the report ...")
238
239     make_archive("csit.report",
240                  "gztar",
241                  base_dir=spec.environment["paths"]["DIR[BUILD,HTML]"])
242
243     logging.info("  Done.")