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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
|
# Copyright (c) 2020 Cisco and/or its affiliates.
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at:
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Algorithms to generate files.
"""
from os.path import isfile
from collections import OrderedDict
import logging
from pal_utils import get_files, get_rst_title_char
RST_INCLUDE_TABLE = (u"\n.. only:: html\n\n"
u" .. csv-table::\n"
u" :header-rows: 1\n"
u" :widths: auto\n"
u" :align: center\n"
u" :file: {file_html}\n"
u"\n.. only:: latex\n\n"
u"\n .. raw:: latex\n\n"
u" \\csvautolongtable{{{file_latex}}}\n\n")
def generate_files(spec, data):
"""Generate all files specified in the specification file.
:param spec: Specification read from the specification file.
:param data: Data to process.
:type spec: Specification
:type data: InputData
"""
generator = {
u"file_details_split": file_details_split,
u"file_details_split_html": file_details_split_html,
u"file_test_results": file_test_results,
u"file_test_results_html": file_test_results_html
}
logging.info(u"Generating the files ...")
for file_spec in spec.files:
try:
generator[file_spec[u"algorithm"]](file_spec, data)
except (NameError, KeyError) as err:
logging.error(
f"Probably algorithm {file_spec[u'algorithm']} is not defined: "
f"{repr(err)}"
)
logging.info(u"Done.")
def _tests_in_suite(suite_name, tests):
"""Check if the suite includes tests.
:param suite_name: Name of the suite to be checked.
:param tests: Set of tests
:type suite_name: str
:type tests: pandas.Series
:returns: True if the suite includes tests.
:rtype: bool
"""
for key in tests.keys():
if suite_name == tests[key][u"parent"]:
return True
return False
def file_details_split(file_spec, input_data, frmt=u"rst"):
"""Generate the file(s) with algorithms
- file_details_split
specified in the specification file.
:param file_spec: File to generate.
:param input_data: Data to process.
:param frmt: Format can be: rst or html
:type file_spec: pandas.Series
:type input_data: InputData
:type frmt: str
"""
fileset_file_name = f"{file_spec[u'output-file']}"
rst_header = (
u"\n"
u".. |br| raw:: html\n\n <br />\n\n\n"
u".. |prein| raw:: html\n\n <pre>\n\n\n"
u".. |preout| raw:: html\n\n </pre>\n\n"
)
start_lvl = file_spec.get(u"data-start-level", 4)
logging.info(f" Generating the file set {fileset_file_name} ...")
data_sets = file_spec.get(u"data", None)
if not data_sets:
logging.error(
f" No data sets specified for {file_spec[u'output-file']}, exit."
)
return
table_sets = file_spec.get(u"dir-tables", None)
if not table_sets:
logging.error(
f" No table sets specified for {file_spec[u'output-file']}, exit."
)
return
if len(data_sets) != len(table_sets):
logging.error(
f" The number of data sets and the number of table sets for "
f"{file_spec[u'output-file']} are not equal, exit."
)
return
chapters = OrderedDict()
for data_set, table_set in zip(data_sets, table_sets):
logging.info(f" Processing the table set {table_set}...")
table_lst = None
if frmt == u"html":
table_lst = get_files(table_set, u".rst", full_path=True)
elif frmt == u"rst":
table_lst = get_files(table_set, u".csv", full_path=True)
if not table_lst:
logging.error(
f" No tables to include in {table_set}. Skipping."
)
return
logging.info(u" Creating the test data set...")
tests = input_data.filter_data(
element=file_spec,
params=[u"name", u"parent", u"doc", u"type", u"level"],
data=data_set,
data_set=u"tests",
continue_on_error=True
)
if tests.empty:
return
tests = input_data.merge_data(tests)
logging.info(u" Creating the suite data set...")
suites = input_data.filter_data(
element=file_spec,
data=data_set,
continue_on_error=True,
data_set=u"suites"
)
if suites.empty:
return
suites = input_data.merge_data(suites)
suites.sort_index(inplace=True)
logging.info(u" Generating files...")
file_name = u""
sub_chapter = u"-".join(table_set.split(u"_")[-2:])
for suite_longname, suite in suites.items():
suite_lvl = len(suite_longname.split(u"."))
if suite_lvl < start_lvl:
# Not interested in this suite
continue
if suite_lvl == start_lvl:
# Our top-level suite
chapter = suite_longname.split(u'.')[-1]
file_name = f"{table_set}/{chapter}.rst"
logging.info(f" Writing file {file_name}")
with open(file_name, u"a") as file_handler:
file_handler.write(rst_header)
if chapters.get(chapter, None) is None:
chapters[chapter] = OrderedDict()
chapters[chapter][sub_chapter] = file_name
title_line = get_rst_title_char(suite[u"level"] - start_lvl + 2) * \
len(sub_chapter)
with open(file_name, u"a") as file_handler:
if not (u"-ndrpdr" in suite[u"name"] or
u"-mrr" in suite[u"name"] or
u"-dev" in suite[u"name"]):
file_handler.write(f"\n{sub_chapter}\n{title_line}\n")
if _tests_in_suite(suite[u"name"], tests):
for tbl_file in table_lst:
if suite[u"name"] in tbl_file:
title_line = get_rst_title_char(
suite[u"level"] - start_lvl + 2) * \
len(suite[u"name"])
file_handler.write(
f"\n{suite[u'name']}\n{title_line}\n"
)
file_handler.write(
f"\n{suite[u'doc']}\n".
replace(u'|br|', u'\n\n -')
)
if frmt == u"html":
file_handler.write(
f"\n.. include:: {tbl_file.split(u'/')[-1]}"
f"\n"
)
elif frmt == u"rst":
file_handler.write(
RST_INCLUDE_TABLE.format(
file_latex=tbl_file,
file_html=tbl_file.split(u"/")[-1])
)
break
titles = {
# VPP Perf, MRR
u"container_memif": u"LXC/DRC Container Memif",
u"crypto": u"IPsec IPv4 Routing",
u"hoststack": u"Hoststack Testing",
u"ip4": u"IPv4 Routing",
u"ip4_tunnels": u"IPv4 Tunnels",
u"ip6": u"IPv6 Routing",
u"ip6_tunnels": u"IPv6 Tunnels",
u"l2": u"L2 Ethernet Switching",
u"lb": u"LoadBalancer",
u"nfv_density": u"NFV Service Density",
u"srv6": u"SRv6 Routing",
u"vm_vhost": u"KVM VMs vhost-user",
u"vts": u"Virtual Topology System",
# VPP Device
u"interfaces": u"Interfaces",
u"l2bd": u"L2 Bridge-domain",
u"l2patch": u"L2 Patch",
u"l2xc": u"L2 Cross-connect",
}
order_chapters = file_spec.get(u"order-chapters", None)
if not order_chapters:
order_chapters = chapters.keys()
order_sub_chapters = file_spec.get(u"order-sub-chapters", None)
for chapter in order_chapters:
sub_chapters = chapters.get(chapter, None)
if not sub_chapters:
continue
with open(f"{fileset_file_name}/index.rst", u"a") as file_handler:
file_handler.write(f" {chapter}\n")
chapter_file_name = f"{fileset_file_name}/{chapter}.rst"
if not isfile(chapter_file_name):
with open(chapter_file_name, u"a") as file_handler:
title = titles.get(chapter, chapter)
file_handler.write(
f"{title}\n"
f"{get_rst_title_char(1) * len(title)}\n\n"
f".. toctree::\n\n"
)
if not order_sub_chapters:
order_sub_chapters = sub_chapters.keys()
for sub_chapter in order_sub_chapters:
testbed = sub_chapters.get(sub_chapter, None)
if not testbed:
continue
with open(chapter_file_name, u"a") as file_handler:
file_handler.write(
f" ../{u'/'.join(testbed.split(u'/')[-2:])}\n"
)
def file_details_split_html(file_spec, input_data):
"""Generate the file(s) with algorithms
- file_details_split_html
specified in the specification file.
:param file_spec: File to generate.
:param input_data: Data to process.
:type file_spec: pandas.Series
:type input_data: InputData
"""
file_details_split(file_spec, input_data, frmt=u"html")
def file_test_results(file_spec, input_data, frmt=u"rst"):
"""Generate the file(s) with algorithms
- file_test_results
specified in the specification file.
:param file_spec: File to generate.
:param input_data: Data to process.
:param frmt: Format can be: rst or html
:type file_spec: pandas.Series
:type input_data: InputData
:type frmt: str
"""
base_file_name = f"{file_spec[u'output-file']}"
rst_header = (
u"\n"
u".. |br| raw:: html\n\n <br />\n\n\n"
u".. |prein| raw:: html\n\n <pre>\n\n\n"
u".. |preout| raw:: html\n\n </pre>\n\n"
)
start_lvl = file_spec.get(u"data-start-level", 4)
logging.info(f" Generating the file {base_file_name} ...")
if frmt == u"html":
table_lst = get_files(file_spec[u"dir-tables"], u".rst", full_path=True)
elif frmt == u"rst":
table_lst = get_files(file_spec[u"dir-tables"], u".csv", full_path=True)
else:
return
if not table_lst:
logging.error(
f" No tables to include in {file_spec[u'dir-tables']}. Skipping."
)
return
logging.info(
f" Creating the tests data set for the "
f"{file_spec.get(u'type', u'')} {file_spec.get(u'title', u'')}."
)
tests = input_data.filter_data(
file_spec,
params=[u"name", u"parent", u"doc", u"type", u"level"],
continue_on_error=True
)
if tests.empty:
return
tests = input_data.merge_data(tests)
suites = input_data.filter_data(
file_spec,
continue_on_error=True,
data_set=u"suites"
)
if suites.empty:
return
suites = input_data.merge_data(suites)
suites.sort_index(inplace=True)
file_name = u""
for suite_longname, suite in suites.items():
suite_lvl = len(suite_longname.split(u"."))
if suite_lvl < start_lvl:
# Not interested in this suite
continue
if suite_lvl == start_lvl:
# Our top-level suite
chapter = suite_longname.split(u'.')[-1]
file_name = f"{base_file_name}/{chapter}.rst"
logging.info(f" Writing file {file_name}")
with open(f"{base_file_name}/index.rst", u"a") as file_handler:
file_handler.write(f" {chapter}\n")
with open(file_name, u"a") as file_handler:
file_handler.write(rst_header)
title_line = get_rst_title_char(suite[u"level"] - start_lvl + 2) * \
len(suite[u"name"])
with open(file_name, u"a") as file_handler:
if not (u"-ndrpdr" in suite[u"name"] or
u"-mrr" in suite[u"name"] or
u"-dev" in suite[u"name"]):
file_handler.write(f"\n{suite[u'name']}\n{title_line}\n")
if _tests_in_suite(suite[u"name"], tests):
for tbl_file in table_lst:
if suite[u"name"] in tbl_file:
file_handler.write(
f"\n{suite[u'name']}\n{title_line}\n"
)
file_handler.write(
f"\n{suite[u'doc']}\n".replace(u'|br|', u'\n\n -')
)
if frmt == u"html":
file_handler.write(
f"\n.. include:: {tbl_file.split(u'/')[-1]}\n"
)
elif frmt == u"rst":
file_handler.write(
RST_INCLUDE_TABLE.format(
file_latex=tbl_file,
file_html=tbl_file.split(u"/")[-1])
)
break
logging.info(u" Done.")
def file_test_results_html(file_spec, input_data):
"""Generate the file(s) with algorithms
- file_test_results_html
specified in the specification file.
:param file_spec: File to generate.
:param input_data: Data to process.
:type file_spec: pandas.Series
:type input_data: InputData
"""
file_test_results(file_spec, input_data, frmt=u"html")
|