X-Git-Url: http://rtime.felk.cvut.cz/gitweb/can-benchmark.git/blobdiff_plain/18527dd22cac9f31163171839b6985ab61b09a29..523d0aed00c01f834607f78356801b38936d2be1:/gw-tests/genhtml/genhtml.py diff --git a/gw-tests/genhtml/genhtml.py b/gw-tests/genhtml/genhtml.py index 5425f5e..a6cab8f 100755 --- a/gw-tests/genhtml/genhtml.py +++ b/gw-tests/genhtml/genhtml.py @@ -4,8 +4,16 @@ import os; import dircache; import sys; import urllib +import traceback -class DimValue: +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 self.value = value @@ -50,16 +58,15 @@ class Dimension(dict): def getValue(self, index): return self[self.sortedKeys[index]] - def addValue(self, *values): - for value in values: - if value not in self: - if isinstance(value, DimValue): - self[value.value] = value - else: - raise Exception("Unsupported usage of addValue") - #self[value] = DimValue(self, value) - self.sortedKeys = self.keys() - self.sortedKeys.sort() + def addValue(self, value): + if value not in self: + if isinstance(value, DimValue): + self[value.value] = value + else: + raise Exception("Unsupported usage of addValue") + #self[value] = DimValue(self, value) + self.sortedKeys = self.keys() + self.sortedKeys.sort() def val2str(self, v): return str(v) def htmlTableHeading(self, v): @@ -110,6 +117,10 @@ class DimensionTest(Dimension): def htmlTableHeading(self, v): return v+"
source"%(urllib.quote(v)) +class DimensionLoad(Dimension): + def __init__(self): + Dimension.__init__(self, 'load', 'Load') + class DimensionTraffic(Dimension): def __init__(self): Dimension.__init__(self, 'traf', 'Traffic') @@ -122,7 +133,7 @@ class DimensionTraffic(Dimension): return v def htmlTableHeading(self, v): return self.val2str(v) -class Test: +class Test(object): @classmethod def isOnPath(cls, path): f = os.path.join(path, '.results') @@ -156,23 +167,27 @@ class Test:

%s

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

Other views

" + print >>html, "

Other results

" for d in self.tests.space: links = [] - for v in d.values(): + for v in d: if v in self.values: links.append(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: + pass + print >>html, "" - print >>html, "" + print >>html, "
%s" % d, " | ".join(links), "
" print >>html, "
" % (self.name+".png") print >>html, "Raw data
" - print >>html, "Back to top" % cdup + print >>html, "Script source
" % (cdup+self.name+".sh.html") + print >>html, "Back to top
" % cdup html.close() @@ -180,6 +195,15 @@ class Space(list): """List of Dimensions()s (order matters)""" def __init__(self, *dimensions): self.extend(list(dimensions)) + def path2dimValues(self, path): + coordinates = path.split("/") + if len(coordinates) != len(self): + raise KeyError("The number coordinates do not match the number of dimensions: " + str(coordinates)) + + dv = DimValues([DimValue(self[i], coordinates[i]) \ + for i in xrange(len(coordinates))]) + return dv + def iterValues(self): idx = [0 for i in xrange(len(self))] done=False @@ -232,13 +256,11 @@ class Tests(dict): def populate(self, rootpath): for root, dirs, files in os.walk(rootpath): if (root.find(rootpath) == 0): - coordinates = root[len(rootpath):].split("/") + path = root[len(rootpath):] else: - coordinates = rootpath.split("/") + path = rootpath if Test.isOnPath(root): - if len(coordinates) != len(self.space): - raise KeyError("The number coordinates do not match the number of dimensions: " + str(coordinates)) - dv = DimValues([DimValue(self.space[i], coordinates[i]) for i in xrange(len(coordinates))]) + dv = self.space.path2dimValues(path) self.addTest(Test(root, dv, self)) def generateHtml(self): for pair in self.space.iterDimensionPairs(): @@ -257,15 +279,16 @@ 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} """ css.close() for test in self.values(): print test.path test.generateHtml() - #os.system("source-highlight -d --output-dir=. ../*.sh") + os.system("source-highlight -d --output-dir=. ../*.sh > /dev/null") -class Page: +class Page(object): def __init__(self, dimPair, valsOther, tests): self.dimy, self.dimx = dimPair self.dimOther = [v.dim for v in valsOther] @@ -288,15 +311,17 @@ class Page:

%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 = [] - for v in d.values(): + 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)) else: @@ -304,12 +329,8 @@ class Page: 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, "" + print >>html, "
" print >>html, "" % (self.dimx.name, self.dimy.name) for x in self.dimx: @@ -339,6 +360,6 @@ class Page: if __name__ == "__main__": os.chdir(sys.argv[1]) os.system("rm *.html") - tests = Tests("./", Space(DimensionHostKern(), DimensionKern(), DimensionTraffic(), DimensionTest())) + tests = Tests("./", Space(DimensionHostKern(), DimensionKern(), DimensionTraffic(), DimensionLoad(), DimensionTest())) tests.generateHtml() sys.exit(0)
%s →
%s ↓