X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/151cc32b933d28ddbd15d5ce264d12805a169f01..0067509575642daf871e95388be79ae95ad33d70:/gw-tests/genhtml/genhtml.py diff --git a/gw-tests/genhtml/genhtml.py b/gw-tests/genhtml/genhtml.py index 3dbb4f0..be1bb4e 100755 --- a/gw-tests/genhtml/genhtml.py +++ b/gw-tests/genhtml/genhtml.py @@ -9,10 +9,8 @@ import traceback class DimValue(object): def __new__(cls, dim, value): if value in dim: - print "OLD", value return dim[value] else: - print "NEW", value return super(DimValue, cls).__new__(cls, dim, value) def __init__(self, dim, value): self.dim = dim @@ -136,7 +134,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 @@ -167,20 +165,23 @@ class Test(object):

%s

""" % (title, cdup, title) params = ["%s %s" % (v.dim, v) for v in self.values] print >>html, "Results for:", ", ".join(params) - print >>html, "

Other results

" + print >>html, "

Other results

" for d in self.tests.space: links = [] for v in d: if v in self.values: - links.append(str(v)) + links.append("%s"%str(v)) else: vv = DimValues(self.values) vv.replace(v) - href = cdup + urllib.quote(self.tests[vv.key()].path+"/results.html") - links.append("%s"%(href, str(v))) - print >>html, "%s: " % d, " | ".join(links), "
" + try: + href = cdup + urllib.quote(self.tests[vv.key()].path+"/results.html") + links.append("%s"%(href, str(v))) + except KeyError: + links.append("%s"%str(v)) + print >>html, "" - print >>html, "" + print >>html, "
%s" % d, " ".join(links), "
" print >>html, "
" % (self.name+".png") print >>html, "Raw data
" print >>html, "Script source
" % (cdup+self.name+".sh.html") @@ -275,7 +276,12 @@ class Tests(dict): table { border-collapse: collapse; } th, td { border: 1px solid lightgray; padding: 4px;} h4 { margin: 0; } -.box { border: 1px solid black; padding: 1ex; margin: 1ex 0} +.otherview { margin: 1ex 0} +.otherview .value { color: black; padding: 0ex 1ex; -moz-border-radius: 1ex; border-radius: 1ex;} +.otherview .value a { color: inherit; text-decoration: none; } +.otherview .other:hover { background: #eee; } +.otherview .missing { color: gray; } +.otherview .current { background: #ccc; } """ css.close() for test in self.values(): @@ -307,28 +313,26 @@ class Page(object):

%s

""" % (title, title) params = ["%s %s" % (v.dim, v) for v in self.valsOther] print >>html, "

Results for ", ", ".join(params), "

" - print >>html, "

Other views

" + print >>html, "

Other views

" + print >>html, "" for d in self.dimOther: - print >>html, "%s: " % d - print >>html, "X axis, " % \ + print >>html, "" % d + print >>html, "" % \ Page((d, self.dimx), self.valsOther - d + self.dimy.getValue(0), self.tests).getName() links = [] + print >>html, "" + print >>html, "
%s " % \ Page((self.dimy, d), self.valsOther - d + self.dimx.getValue(0), self.tests).getName() - print >>html, "Y axis;  " % \ + print >>html, "" for v in d: if v in self.valsOther: - links.append(str(v)) + links.append("%s"%str(v)) else: vv = DimValues(self.valsOther) vv.replace(v) - links.append("%s"%(urllib.quote(Page((self.dimy, self.dimx), vv, self.tests).getName()), str(v))) - print >>html, " | ".join(links) - print >>html, "
" - try: - print >>html, d.htmlPreamble() - except Exception: - pass - print >>html, "" + links.append("%s"%(urllib.quote(Page((self.dimy, self.dimx), vv, self.tests).getName()), str(v))) + print >>html, " ".join(links) + print >>html, "
" print >>html, "" % (self.dimx.name, self.dimy.name) for x in self.dimx:
%s →
%s ↓