X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/e2f6ea0a1257b097e4e6278d742733b316d2f553..c36e3d6a2a7c2a96eb98cd1db64a11f508a03677:/gw-tests/genhtml/genhtml.py diff --git a/gw-tests/genhtml/genhtml.py b/gw-tests/genhtml/genhtml.py index cd4985b..fd5940c 100755 --- a/gw-tests/genhtml/genhtml.py +++ b/gw-tests/genhtml/genhtml.py @@ -23,6 +23,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 +154,32 @@ class Test(object): print >>file, "" % \ (urllib.quote(self.path), urllib.quote(self.path), img) def fullImgLink(self, pngName): - return "
" % \ - (pngName[:-4]+".pdf", pngName) + if 'NO_PDF' in os.environ: + return "
" % pngName + else: + return "
" % \ + (pngName[:-4]+".pdf", pngName) + + def htmlPrintStats(self, html): + cwd = os.getcwd() + os.chdir(self.path) + stats = glob.glob("*-stat.txt") + print >>html, "

Statistics

" + print >>html, "" + stats.sort() + for i in stats: + lines = open(i).readlines() + def fixupLine(l): + comment = l.find("#") + if comment >= 0: + l = l[:comment-1] + if l.find("cmdline=") == 0: + l = "cmdline=..." % str(l[8:]) + return l + lines = [fixupLine(l) for l in lines] + print >>html, "" % (i, "
".join(lines)) + print >>html, "

%s

%s
" + os.chdir(cwd) def generateHtml(self): html = open(os.path.join(self.path, 'results.html'), "w") @@ -188,20 +214,21 @@ class Test(object): print >>html, "" print >>html, self.fullImgLink("graph.png") - print >>html, "Raw data
" - print >>html, "Script source
" % (cdup+self.name+".sh.html") - print >>html, "Back to top
" % cdup - + self.htmlPrintStats(html) cwd = os.getcwd() os.chdir(self.path) additionalImgs = glob.glob("graph?*.png") - if additionalImgs: - print "XXX" - print >>html, "

Additional graphs

" + if additionalImgs: print >>html, "

Additional graphs

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

%s

" % i[5:-4] print >>html, self.fullImgLink(i) os.chdir(cwd) + print >>html, "
" + print >>html, "Raw data
" + print >>html, "Script source
" % (cdup+self.name+".sh.html") + print >>html, "Back to top
" % cdup + html.close() class Space(list): @@ -313,7 +340,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"