-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.py
85 lines (71 loc) · 2.43 KB
/
main.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
# -*- coding: utf-8 -*-
__author__ = "Arunprasath Shankar"
__copyright__ = "Copyright 2012, Arunprasath Shankar"
__license__ = "GPL"
__version__ = "1.0.1"
__email__ = "[email protected]"
from project import *
from csvtohtml import *
from vhdl_facts import *
if __name__ == '__main__':
read_lines = ''
if not sys.argv[1].endswith('.vhd'):
files = os.listdir(sys.argv[1])
con = openFiles(files)
read_lines = joinFiles(con)
else:
openSingleFile(sys.argv[1])
con = openSingleFile(sys.argv[1])
read_lines = joinFiles(con)
out = open('itag3a.csv','wb')
csv_write = csv.writer(out)
csv_write.writerow(['Index','Mapped Sections','Confidence Factor','Mapped Port Name','Annotation','Module Type','Module Name','Port I/O','Port Width','Parent Module','Level','Alias Entity Location','Line'])
vhd = VHDLtoXml(csv_write)
vhd.parseWordsFacts()
vhd.sectionNames()
vhd.cleanWords()
vhd.parseVHDL(read_lines)
vhd.printXml()
vhd.parseXML()
vhd.readXML()
vhd.xmlTree(vhd.readXML(),[0])
wl = VHDLtoXml.tokens
vhd.findPackageName()
vhd.findEndPackageName()
vhd.identifyPackageBlocks()
vhd.packageBlocks()
vhd.compareAB()
vhd.tokenLines()
vhd.finalPackageBlocks()
print '# --------------------------------------------- ENTITY ----------------------------------------------------'
vhd.findEntityName()
vhd.findEndEntityName()
vhd.identifyEntityBlocks()
vhd.entityBlocks()
vhd.compareEntityAB()
vhd.finalEntityBlocks()
vhd.findEntityArchName()
vhd.findEndEntityArchName()
vhd.findEndEntityNameArch()
vhd.archSpan()
vhd.componentEntityLoc()
vhd.chopTress()
#vhd.unRollMasterDict()
vhd.Level_1_2_3()
out.close()
# ----------------------------------------------------- Html Table Generation --------------------------------------
f = csv.reader(open('itag3a.csv','rb'))
h = open('itag3a.html','w')
html = CsvToHTML(f,h)
html.drawHTMLTable(f,h)
# ----------------------------------------------------- Fact Generation --------------------------------------------
flush = FlushOutVHDLFacts(wl)
flush.printFacts()
folder = './code_dump'
for file in os.listdir(folder):
file_path = os.path.join(folder, file)
try:
if os.path.isfile(file_path):
os.unlink(file_path)
except Exception, e:
print e