X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/9819ba72fa4b3763ccf171a8e93f0c0f6aafc69f..fc0d7a8b33c57f63cbb15f7305c55cb287626bc2:/gw-tests/genhtml/genhtml.py diff --git a/gw-tests/genhtml/genhtml.py b/gw-tests/genhtml/genhtml.py index b75bdc4..a5114f1 100755 --- a/gw-tests/genhtml/genhtml.py +++ b/gw-tests/genhtml/genhtml.py @@ -6,6 +6,10 @@ import sys; import urllib import traceback import glob +import datetime + +html_copyright = """
Authors: Michal Sojka, Pavel Píša, Martin Hořeňovský, Copyright © 2010-%d Czech Technical University in Prague.
+Creative Commons License This work is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.
""" % datetime.date.today().year class DimValue(object): def __new__(cls, dim, value): @@ -23,6 +27,8 @@ class DimValue(object): return "DimValue(%s, %s)" % (repr(self.dim), repr(self.value)) def htmlTableHeading(self): return self.dim.htmlTableHeading(self.value) + def index(self): + return self.dim.sortedKeys.index(self.value) class DimValues(list): def replace(self, val): @@ -152,8 +158,12 @@ class Test(object): print >>file, "" % \ (urllib.quote(self.path), urllib.quote(self.path), img) def fullImgLink(self, pngName): - return "
" % \ - (pngName[:-4]+".pdf", pngName) + ps = "Plot source" % ("plot"+pngName[5:-4]+".gp") + if 'NO_PDF' in os.environ: + return "
%s
" % (pngName, ps) + else: + return "
%s
" % \ + (pngName[:-4]+".pdf", pngName, ps) def htmlPrintStats(self, html): cwd = os.getcwd() @@ -169,9 +179,7 @@ class Test(object): if comment >= 0: l = l[:comment-1] if l.find("cmdline=") == 0: - print l l = "cmdline=..." % str(l[8:]) - print l return l lines = [fixupLine(l) for l in lines] print >>html, "

%s

%s" % (i, "
".join(lines)) @@ -217,6 +225,7 @@ class Test(object): additionalImgs = glob.glob("graph?*.png") if additionalImgs: print >>html, "

Additional graphs

" for i in additionalImgs: + print >>html, "

%s

" % i[5:-4] print >>html, self.fullImgLink(i) os.chdir(cwd) @@ -224,7 +233,7 @@ class Test(object): print >>html, "Raw data
" print >>html, "Script source
" % (cdup+self.name+".sh.html") print >>html, "Back to top
" % cdup - + print >>html,"%s" % html_copyright html.close() class Space(list): @@ -320,13 +329,14 @@ h4 { margin: 0; } .otherview .other:hover { background: #eee; } .otherview .missing { color: gray; } .otherview .current { background: #ccc; } +.na { width: 150px; height: 109px; display: table-cell; text-align: center; vertical-align: middle; } """ css.close() for test in self.values(): print test.path test.generateHtml() - os.system("source-highlight -d --output-dir=. ../*.sh > /dev/null") + os.system("source-highlight -d --output-dir=. %s/*.sh > /dev/null" % sh_dir) class Page(object): def __init__(self, dimPair, valsOther, tests): @@ -336,7 +346,7 @@ class Page(object): self.tests = tests def getName(self): return "%s-vs-%s-for-%s.html"%(self.dimy.type, self.dimx.type, - "-".join([v.value for v in self.valsOther])) + "-".join(["%02d"%v.index() for v in self.valsOther])) def generate(self): html = open(self.getName(), "w") title = "CAN gateway timing analysis" @@ -387,18 +397,19 @@ class Page(object): test = tests.getTest(idx) test.printThumbLink(html) except KeyError: - print >>html, "N/A" + print >>html, "N/A" print >>html, "" print >>html, "" print >> html, """ -
Authors: Michal Sojka, Pavel Píša, Copyright © 2010 Czech Technical University in Prague
+%s -""" +""" % html_copyright if __name__ == "__main__": os.chdir(sys.argv[1]) + sh_dir = sys.argv[2] os.system("rm *.html") tests = Tests("./", Space(DimensionHostKern(), DimensionKern(), DimensionTraffic(), DimensionLoad(), DimensionTest())) tests.generateHtml()