X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/839937d2c18ad240ff87ba33d6ce144d5d8793a0..a4463e1ce99295ad665b9e45bb911e6e9f672ebb:/gw-tests/genhtml/genhtml.py diff --git a/gw-tests/genhtml/genhtml.py b/gw-tests/genhtml/genhtml.py index fc7620b..94ca00e 100755 --- a/gw-tests/genhtml/genhtml.py +++ b/gw-tests/genhtml/genhtml.py @@ -5,13 +5,14 @@ import dircache; import sys; import urllib import traceback +import glob class DimValue(object): def __new__(cls, dim, value): if value in dim: return dim[value] else: - return super(DimValue, cls).__new__(cls, dim, value) + return super(DimValue, cls).__new__(cls) def __init__(self, dim, value): self.dim = dim self.value = value @@ -134,7 +135,7 @@ class DimensionTraffic(Dimension): class Test(object): @classmethod def isOnPath(cls, path): - f = os.path.join(path, '.results') + f = os.path.join(path, 'plot.sh') return os.path.isfile(f) def __init__(self, path, values, tests=None): self.path = path @@ -142,14 +143,39 @@ class Test(object): self.values = values self.tests = tests def printThumbLink(self, file): - thumb = self.path+'/thumb' - try: - imgs = [img for img in dircache.listdir(thumb)] - except OSError: - imgs = [ self.name + ".png" ] +# try: +# imgs = [img for img in dircache.listdir(thumb)] +# except OSError: +# imgs = [ self.name + ".png" ] + imgs = [ 'tgraph.png' ] for img in imgs: - print >>file, "" % \ + print >>file, "" % \ (urllib.quote(self.path), urllib.quote(self.path), img) + def fullImgLink(self, pngName): + 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") title = "CAN gateway timing analysis" @@ -182,11 +208,21 @@ class Test(object): print >>html, "%s" % d, " ".join(links), "" print >>html, "" - print >>html, "
" % (self.name+".png") + print >>html, self.fullImgLink("graph.png") + self.htmlPrintStats(html) + cwd = os.getcwd() + os.chdir(self.path) + additionalImgs = glob.glob("graph?*.png") + if additionalImgs: print >>html, "

Additional graphs

" + for i in additionalImgs: + 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):