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
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
|
#! /usr/bin/env python
# encoding: utf-8
# hhaim, 2014 (IL) base on WAF book
"""
call 'waf --targets=waf.pdf' or use 'waf list' to see the targets available
"""
VERSION='0.0.1'
APPNAME='wafdocs'
import os, re, shutil
import shlex
import subprocess
import json
top = '.'
out = 'build'
from HTMLParser import HTMLParser
class CTocNode:
def __init__ (self):
self.name="root"
self.level=1; # 1,2,3,4
self.parent=None
self.childs=[]; # link to CTocNode
def get_link (self):
name=self.name
l=name.split('.');
l=l[-1].lower()
s='';
for c in l:
if c.isalpha() or c.isspace():
s+=c
return '#_'+'_'.join(s.lower().split());
def add_new_child (self,name,level):
n=CTocNode();
n.name=name;
n.level=level;
n.parent=self;
self.childs.append(n);
return n
def to_json_childs (self):
l=[]
for obj in self.childs:
l.append(obj.to_json());
return (l);
def to_open (self):
if self.level <3:
return True
else:
return False
def to_json (self):
d={"text" : self.name,
"link" : self.get_link(),
"state" : {
"opened" : self.to_open()
}
}
if len(self.childs)>0 :
d["children"]= self.to_json_childs()
return d
class TocHTMLParser(HTMLParser):
def __init__ (self):
HTMLParser.__init__(self);
self.state=0;
self.root=CTocNode()
self.root.parent=self.root
self.level=2;
self.d={};
self.last_level=1
self.set_level(1,self.root)
def set_level (self,level,node):
assert(node!=None);
assert(isinstance(node,CTocNode)==True);
self.d[str(level)]=node
# in case we change from high to low level remove the higher level
if level<self.last_level:
for l in range(level+1,self.last_level+1):
self.d.pop(str(l),None)
def _get_level (self,level):
k=str(level)
if self.d.has_key(k):
n=self.d[k]
assert(n!=None);
return n
else:
return None
def get_level (self,level):
for l in range(level,0,-1):
n=self._get_level(l)
if n != None:
return n
assert(0);
def is_header (self,tag):
if len(tag)==2 and tag[0]=='h' and tag[1].isdigit() and (int(tag[1])>1):
return (True);
def handle_starttag(self, tag, attrs):
if self.is_header (tag):
self.state=True;
self.level=int(tag[1]);
def handle_endtag(self, tag):
if self.is_header (tag):
self.state=False;
def handle_data(self, data):
if self.state:
level=self.level
cnode=self.get_level(level-1)
n=cnode.add_new_child(data,level);
assert(n!=None);
self.set_level(level,n)
self.last_level=level
def dump_as_json (self):
return json.dumps(self.root.to_json_childs(), sort_keys=False, indent=4)
def create_toc_json (input_file,output_file):
f = open (input_file)
l=f.readlines()
f.close();
html_input = ''.join(l)
parser = TocHTMLParser()
parser.feed(html_input);
f = open (output_file,'w')
f.write(parser.dump_as_json());
f.close();
re_xi = re.compile('''^(include|image)::([^.]*.(asciidoc|\\{PIC\\}))\[''', re.M)
def ascii_doc_scan(self):
p = self.inputs[0].parent
node_lst = [self.inputs[0]]
seen = []
depnodes = []
while node_lst:
nd = node_lst.pop(0)
if nd in seen: continue
seen.append(nd)
code = nd.read()
for m in re_xi.finditer(code):
name = m.group(2)
if m.group(3) == '{PIC}':
ext = '.eps'
if self.generator.rule.rfind('A2X') > 0:
ext = '.png'
k = p.find_resource(name.replace('{PIC}', ext))
if k:
depnodes.append(k)
else:
k = p.find_resource(name)
if k:
depnodes.append(k)
node_lst.append(k)
return [depnodes, ()]
import re
def scansize(self):
name = 'image::%s\\{PIC\\}\\[.*,(width|height)=(\\d+)' % self.inputs[0].name[:-4]
re_src = re.compile(name)
lst = self.inputs[0].parent.get_src().ant_glob('*.txt')
for x in lst:
m = re_src.search(x.read())
if m:
val = str(int(1.6 * int(m.group(2))))
if m.group(1) == 'width':
w = val
h = "800"
else:
w = "800"
h = val
ext = self.inputs[0].name[-3:]
if ext == 'eps':
code = '-geometry %sx%s' % (w, h)
elif ext == 'dia':
if m.group(1) == 'width':
h = ''
else:
w = ''
code = '--size %sx%s' % (w, h)
else:
code = '-Gsize="%s,%s"' % (w, h)
break
else:
return ([], '')
return ([], code)
def options(opt):
opt.add_option('--exe', action='store_true', default=False, help='Execute the program after it is compiled')
def configure(conf):
conf.find_program('asciidoc', path_list='/usr/bin/', var='ASCIIDOC')
conf.find_program('sphinx-build', path_list='/usr/local/bin/', var='SPHINX')
pass;
def convert_to_pdf(task):
input_file = task.outputs[0].abspath()
out_dir = task.outputs[0].parent.get_bld().abspath()
os.system('a2x --no-xmllint -v -f pdf -d article %s -D %s ' %(task.inputs[0].abspath(),out_dir ) )
return (0)
def toc_fixup_file (input_file,
out_file,
json_file_name
):
file = open(input_file)
contents = file.read()
replaced_contents = contents.replace('input_replace_me.json', json_file_name)
file = open(out_file,'w')
file.write(replaced_contents)
file.close();
def convert_to_html_toc_book(task):
input_file = task.inputs[0].abspath()
json_out_file = os.path.splitext(task.outputs[0].abspath())[0]+'.json'
tmp = os.path.splitext(task.outputs[0].abspath())[0]+'.tmp'
json_out_file_short = os.path.splitext(task.outputs[0].name)[0]+'.json'
cmd='{0} -a stylesheet={1} -a icons=true -a docinfo -d book -a max-width=55em -o {2} {3}'.format(
task.env['ASCIIDOC'],
task.inputs[1].abspath(),
tmp,
task.inputs[0].abspath());
os.system( cmd )
create_toc_json(tmp,json_out_file)
toc_fixup_file(tmp,task.outputs[0].abspath(),json_out_file_short);
os.system('rm {0}'.format(tmp));
def convert_to_pdf_book(task):
input_file = task.outputs[0].abspath()
out_dir = task.outputs[0].parent.get_bld().abspath()
os.system('a2x --no-xmllint -v -f pdf -d book %s -D %s ' %(task.inputs[0].abspath(),out_dir ) )
return (0)
def ensure_dir(f):
if not os.path.exists(f):
os.makedirs(f)
def my_copy(task):
input_file=task.outputs[0].abspath()
out_dir=task.outputs[0].parent.get_bld().abspath()
ensure_dir(out_dir)
shutil.copy2(input_file, out_dir+ os.sep+task.outputs[0].name)
return (0)
def do_visio(bld):
for x in bld.path.ant_glob('visio\\*.vsd'):
tg = bld(rule='${VIS} -i ${SRC} -o ${TGT} ', source=x, target=x.change_ext('.png'))
def get_trex_core_git():
trex_core_git_path = os.path.join(os.getcwd(), os.pardir, "trex-core")
if not os.path.isdir(trex_core_git_path):
trex_core_git_path = os.getenv('TREX_CORE_GIT', None)
return trex_core_git_path
def parse_hlt_args(task):
trex_core_git_path = get_trex_core_git()
if not trex_core_git_path:
return 1
hltapi_path = os.path.abspath(os.path.join(trex_core_git_path, 'scripts', 'automation', 'trex_control_plane', 'stl', 'trex_stl_lib', 'trex_stl_hltapi.py'))
header = ['[options="header",cols="<.^1,^.^1,9<.^e"]', '|=================', '^| Argument | Default ^| Comment']
footer = ['|=================\n']
hlt_asciidoc = []
category_regexp = '^(\S+)_kwargs = {$'
comment_line_regexp = '^\s*#\s*(.+)$'
arg_line_regexp = "^\s*'([^']+)':\s*'?([^,']+)'?,\s*#?\s*(.+)?$"
if not os.path.exists(hltapi_path):
raise Exception('Could not find hltapi file: %s' % hltapi_path)
with open(hltapi_path) as f:
in_args = False
for line in f.read().splitlines():
if not in_args:
if line.startswith('import'):
break
category_line = re.match(category_regexp, line)
if category_line:
hlt_asciidoc.append('\n===== %s\n' % category_line.group(1))
hlt_asciidoc += header
in_args = True
continue
comment_line = re.match(comment_line_regexp, line)
if comment_line:
hlt_asciidoc.append('3+^.^s| %s' % comment_line.group(1).replace('|', '\|'))
continue
arg_line = re.match(arg_line_regexp, line)
if arg_line:
arg, default, comment = arg_line.groups()
hlt_asciidoc.append('| %s | %s | %s' % (arg, default, comment.replace('|', '\|') if comment else ''))
continue
if line == '}':
hlt_asciidoc += footer
in_args = False
if not len(hlt_asciidoc):
raise Exception('Parsing of hltapi args failed')
with open('build/hlt_args.asciidoc', 'w') as f:
f.write('\n'.join(hlt_asciidoc))
return 0
def build_cp_docs (task):
out_dir = task.outputs[0].abspath()
export_path = os.path.join(os.getcwd(), 'build', 'cp_docs')
trex_core_git_path = get_trex_core_git()
if not trex_core_git_path: # there exists a default directory or the desired ENV variable.
return 1
trex_core_docs_path = os.path.abspath(os.path.join(trex_core_git_path, 'scripts', 'automation', 'trex_control_plane', 'doc'))
build_doc_cmd = shlex.split("/usr/local/bin/sphinx-build -W -b {bld} {src} {dst}".format(
bld= "html",
src= ".",
dst= out_dir)
)
return subprocess.call(build_doc_cmd, cwd = trex_core_docs_path)
def build_stl_cp_docs (task):
out_dir = task.outputs[0].abspath()
export_path = os.path.join(os.getcwd(), 'build', 'cp_stl_docs')
trex_core_git_path = get_trex_core_git()
if not trex_core_git_path: # there exists a default directory or the desired ENV variable.
return 1
trex_core_docs_path = os.path.abspath(os.path.join(trex_core_git_path, 'scripts', 'automation', 'trex_control_plane', 'doc_stl'))
build_doc_cmd = shlex.split("/usr/local/bin/sphinx-build -W -b {bld} {src} {dst}".format(
bld= "html",
src= ".",
dst= out_dir)
)
return subprocess.call(build_doc_cmd, cwd = trex_core_docs_path)
def build_cp(bld,dir,root,callback):
export_path = os.path.join(os.getcwd(), 'build', dir)
trex_core_git_path = get_trex_core_git()
if not trex_core_git_path: # there exists a default directory or the desired ENV variable.
raise NameError("Environment variable 'TREX_CORE_GIT' is not defined.")
trex_core_docs_path = os.path.join(trex_core_git_path, 'scripts', 'automation', 'trex_control_plane', root, 'index.rst')
bld(rule=callback,target = dir)
def build(bld):
bld(rule=my_copy, target='symbols.lang')
for x in bld.path.ant_glob('images\\**\**.png'):
bld(rule=my_copy, target=x)
bld.add_group()
for x in bld.path.ant_glob('yaml\\**\**.yaml'):
bld(rule=my_copy, target=x)
bld.add_group()
for x in bld.path.ant_glob('video\\**\**.mp4'):
bld(rule=my_copy, target=x)
bld.add_group()
for x in bld.path.ant_glob('images\\**\**.jpg'):
bld(rule=my_copy, target=x)
bld.add_group()
bld(rule=my_copy, target='my_chart.js')
build_cp(bld,'hlt_args.asciidoc','stl/trex_stl_lib', parse_hlt_args)
bld.add_group() # separator, the documents may require any of the pictures from above
if os.path.exists('build/hlt_args.asciidoc'):
bld.add_manual_dependency(
bld.path.find_node('trex_stateless.asciidoc'),
'build/hlt_args.asciidoc')
bld(rule='${ASCIIDOC} -b deckjs -o ${TGT} ${SRC[0].abspath()}',
source='trex_config.asciidoc ', target='trex_config_guide.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -b deckjs -o ${TGT} ${SRC[0].abspath()}',
source='trex_preso.asciidoc ', target='trex_preso.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -a stylesheet=${SRC[1].abspath()} -a icons=true -a max-width=55em -o ${TGT} ${SRC[0].abspath()}',
source='release_notes.asciidoc waf.css', target='release_notes.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -a docinfo -a stylesheet=${SRC[1].abspath()} -a icons=true -a toc2 -a max-width=55em -d book -o ${TGT} ${SRC[0].abspath()}',
source='draft_trex_stateless.asciidoc waf.css', target='draft_trex_stateless.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -a docinfo -a stylesheet=${SRC[1].abspath()} -a icons=true -a toc2 -a max-width=55em -d book -o ${TGT} ${SRC[0].abspath()}',
source='draft_trex_stateless_moved1.asciidoc waf.css', target='draft_trex_stateless1.html', scan=ascii_doc_scan)
bld(rule=convert_to_pdf_book,source='trex_book.asciidoc waf.css', target='trex_book.pdf', scan=ascii_doc_scan)
bld(rule=convert_to_pdf_book,source='trex_stateless.asciidoc waf.css', target='trex_stateless.pdf', scan=ascii_doc_scan)
bld(rule=convert_to_pdf_book,source='draft_trex_stateless.asciidoc waf.css', target='draft_trex_stateless.pdf', scan=ascii_doc_scan)
bld(rule=convert_to_pdf_book,source='trex_vm_manual.asciidoc waf.css', target='trex_vm_manual.pdf', scan=ascii_doc_scan)
bld(rule=convert_to_pdf_book,source='trex_control_plane_peek.asciidoc waf.css', target='trex_control_plane_peek.pdf', scan=ascii_doc_scan)
bld(rule=convert_to_pdf_book, source='trex_control_plane_design_phase1.asciidoc waf.css', target='trex_control_plane_design_phase1.pdf', scan=ascii_doc_scan)
# with nice TOC
bld(rule=convert_to_html_toc_book,
source='trex_vm_manual.asciidoc waf.css', target='trex_vm_manual.html',scan=ascii_doc_scan)
bld(rule=convert_to_html_toc_book,
source='trex_stateless.asciidoc waf.css', target='trex_stateless.html',scan=ascii_doc_scan);
bld(rule=convert_to_html_toc_book,
source='trex_book.asciidoc waf.css', target='trex_manual.html',scan=ascii_doc_scan);
bld(rule=convert_to_html_toc_book,
source='trex_rpc_server_spec.asciidoc waf.css', target='trex_rpc_server_spec.html',scan=ascii_doc_scan);
bld(rule='${ASCIIDOC} -a stylesheet=${SRC[1].abspath()} -a icons=true -a toc2 -a max-width=55em -o ${TGT} ${SRC[0].abspath()}',
source='vm_doc.asciidoc waf.css', target='vm_doc.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -a stylesheet=${SRC[1].abspath()} -a icons=true -a toc2 -a max-width=55em -o ${TGT} ${SRC[0].abspath()}',
source='packet_builder_yaml.asciidoc waf.css', target='packet_builder_yaml.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -a stylesheet=${SRC[1].abspath()} -a icons=true -a toc2 -a max-width=55em -o ${TGT} ${SRC[0].abspath()}',
source='trex_control_plane_design_phase1.asciidoc waf.css', target='trex_control_plane_design_phase1.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -a stylesheet=${SRC[1].abspath()} -a icons=true -a toc2 -a max-width=55em -o ${TGT} ${SRC[0].abspath()}',
source='trex_control_plane_peek.asciidoc waf.css', target='trex_control_plane_peek.html', scan=ascii_doc_scan)
bld(rule='${ASCIIDOC} -a stylesheet=${SRC[1].abspath()} -a icons=true -a toc2 -a max-width=55em -o ${TGT} ${SRC[0].abspath()}',
source='trex_console.asciidoc waf.css', target='trex_console.html', scan=ascii_doc_scan)
build_cp(bld,'cp_docs','doc',build_cp_docs)
build_cp(bld,'cp_stl_docs','doc_stl',build_stl_cp_docs)
class Env(object):
@staticmethod
def get_env(name) :
s= os.environ.get(name);
if s == None:
print "You should define $",name
raise Exception("Env error");
return (s);
@staticmethod
def get_release_path () :
s= Env().get_env('TREX_LOCAL_PUBLISH_PATH');
s +=get_build_num ()+"/"
return s;
@staticmethod
def get_remote_release_path () :
s= Env().get_env('TREX_REMOTE_PUBLISH_PATH');
return s;
@staticmethod
def get_local_web_server () :
s= Env().get_env('TREX_WEB_SERVER');
return s;
# extral web
@staticmethod
def get_trex_ex_web_key() :
s= Env().get_env('TREX_EX_WEB_KEY');
return s;
@staticmethod
def get_trex_ex_web_path() :
s= Env().get_env('TREX_EX_WEB_PATH');
return s;
@staticmethod
def get_trex_ex_web_user() :
s= Env().get_env('TREX_EX_WEB_USER');
return s;
@staticmethod
def get_trex_ex_web_srv() :
s= Env().get_env('TREX_EX_WEB_SRV');
return s;
@staticmethod
def get_trex_core() :
s= Env().get_env('TREX_CORE_GIT');
return s;
def release(bld):
# copy all the files to our web server
core_dir = Env().get_trex_core()
release_dir = core_dir +"/scripts/doc/";
os.system('mkdir -p '+release_dir)
os.system('cp -rv build/release_notes.* '+ release_dir)
def publish(bld):
# copy all the files to our web server
remote_dir = "%s:%s" % ( Env().get_local_web_server(), Env().get_remote_release_path ()+'../doc/')
os.system('rsync -av --del --rsh=ssh build/ %s' % (remote_dir))
def publish_ext(bld):
from_ = 'build/'
os.system('rsync -avz --del -e "ssh -i %s" --rsync-path=/usr/bin/rsync %s %s@%s:%s/doc/' % (Env().get_trex_ex_web_key(),from_, Env().get_trex_ex_web_user(),Env().get_trex_ex_web_srv(),Env().get_trex_ex_web_path() ) )
def publish_test(bld):
# copy all the files to our web server
remote_dir = "%s:%s" % ( Env().get_local_web_server(), Env().get_remote_release_path ()+'../test/')
os.system('rsync -av --del --rsh=ssh build/ %s' % (remote_dir))
|