]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - gw-tests/genhtml/genhtml.py
genhtml: Almost finished axis changing
[can-benchmark.git] / gw-tests / genhtml / genhtml.py
index 4c16a951fa29e37c000e9515534faa4a8f8efc92..5dacc9ea5c79cfca5baf7d6835864de5312392d4 100755 (executable)
@@ -9,10 +9,27 @@ class DimValue:
     def __init__(self, dim, value):
        self.dim = dim
        self.value = value
+    def __str__(self):
+        return self.dim.val2str(self.value)
     def __repr__(self):
-       return repr(self.value)
-    def htmlLabel(self):
-       return self.dim.htmlLabel(self.value)
+       return "DimValue("+str(self.dim.__class__.__name__) + ", "+repr(self.value)+")"
+    def htmlTableHeading(self):
+       return self.dim.htmlTableHeading(self.value)
+
+class DimValues(list):
+    def replace(self, val):
+        for i in xrange(len(self)):
+            if self[i].dim == val.dim:
+                self[i] = val
+    def __add__(self, val):
+        return DimValues(self).append(val)
+    def __sub__(self, dim):
+        result = DimValues(self)
+        print repr(result)
+        for v in self:
+            if v.dim == dim:
+                result.remove(v)
+        return result
 
 class Dimension(dict):
     def __init__(self, atype, name=None):
@@ -21,24 +38,34 @@ class Dimension(dict):
            self.name = name
        else:
            self.name = atype
+        self.sortedKeys = []
 
     def __iter__(self):
-       keys = self.keys()
-       keys.sort()
-       for k in keys:
-           yield self[k]
+       for i in xrange(len(self)):
+           yield self.getValue(i)
+    def getValue(self, index):
+        print self.sortedKeys
+        return self[self.sortedKeys[index]]
 
     def addValue(self, *values):
        for value in values:
            if value not in self:
                self[value] = DimValue(self, value)
-    def htmlLabel(self, v):
-       return v
+       self.sortedKeys = self.keys()
+       self.sortedKeys.sort()
+    def val2str(self, v):
+        return str(v)
+    def htmlTableHeading(self, v):
+       return self.val2str(v)
+    def __str__(self):
+        return self.name
+    def __repr__(self):
+        return self.type
 
 class DimensionKern(Dimension):
     def __init__(self):
-       Dimension.__init__(self, 'kern', 'Kernel')
-    def htmlLabel(self, v):
+       Dimension.__init__(self, 'gwkern', 'GW kernel')
+    def htmlTableHeading(self, v):
        i=v.find(":")
        if i>0: kver=v[:i]
        else: kver=v
@@ -50,35 +77,67 @@ class DimensionKern(Dimension):
            else: kver=v
            yield kver
 
+class DimensionHostKern(Dimension):
+    def __init__(self):
+       Dimension.__init__(self, 'hostkern', 'Host kernel')
+    def val2str(self, v):
+        if v.find("host-") == 0:
+            v = v[5:]
+        return v
+    def htmlTableHeading(self, v):
+        v = self.val2str(v)
+       i = v.find(":")
+       if i>0: kver = v[:i]
+        else: kver = v
+       return v+"<br><a href='config-%s'>config</a>"%(urllib.quote(kver))
+    def versions(self):
+       for v in self.values:
+           i=v.find(":")
+           if i>0: kver=v[:i]
+           else: kver=v
+           yield kver
+
 class DimensionTest(Dimension):
     def __init__(self):
        Dimension.__init__(self, 'test', 'Test')
-    def htmlLabel(self, v):
+    def htmlTableHeading(self, v):
        return v+"<br><a href='%s.sh.html'>source</a>"%(urllib.quote(v))
 
 class DimensionTraffic(Dimension):
     def __init__(self):
        Dimension.__init__(self, 'traf', 'Traffic')
-    def htmlLabel(self, v):
-       return v
-
+    def val2str(self, v):
+        if v == "50":
+            return "50%"
+        elif v == "oneatatime":
+            return "one message at a time"
+        else:
+            return v
+    def htmlTableHeading(self, v):
+        return self.val2str(v)
 class Test:
     @classmethod
     def isOnPath(cls, path):
-       f = os.path.join(path, 'plot.gp')
+       f = os.path.join(path, '.results')
        return os.path.isfile(f)
     def __init__(self, path):
        self.path = path
+        self.name = os.path.basename(path)
     def printThumbLink(self, file):
-       for img in dircache.listdir(self.path+'/thumb'):
-           print >>file, "<a href='%s/%s'><img src='%s/thumb/%s'></a>" % \
-               (urllib.quote(self.path), img, urllib.quote(self.path), img)
+        thumb = self.path+'/thumb'
+        try:
+            imgs = [img for img in dircache.listdir(thumb)]
+        except OSError:
+            imgs = [ self.name + ".png" ]
+        for img in imgs:
+            print >>file, "<a href='%s/%s'><img src='%s/thumb/%s'></a>" % \
+                  (urllib.quote(self.path), img, urllib.quote(self.path), img)
 
 def iterDimValues(dimensions):
     idx = [0 for i in xrange(len(dimensions))]
     done=False
     while not done:
-       values=[]
+       values=DimValues()
        for i in xrange(len(dimensions)):
            values.append(dimensions[i].values()[idx[i]])
        yield values
@@ -133,16 +192,16 @@ class Tests(dict):
                yield d
     def generateHtml(self):
        for pair in self.iterDimensionPairs():
-           remdims = [d for d in self.iterRemainingDimensions(pair)]
-           for vals in iterDimValues(remdims):
-               page = Page(pair, remdims, vals, self)
+           remDims = [d for d in self.iterRemainingDimensions(pair)]
+           for vals in iterDimValues(remDims):
+               page = Page(pair, remDims, vals, self)
                page.generate()
        try:
            os.remove("index.html")
        except OSError: pass
        os.symlink(page.getName(), "index.html")
 
-       os.system("source-highlight -d --output-dir=. ../*.sh")
+       #os.system("source-highlight -d --output-dir=. ../*.sh")
 
 class Page:
     def __init__(self, dimPair, dimOther, valsOther, tests):
@@ -150,13 +209,16 @@ class Page:
        self.dimOther = dimOther
        self.valsOther = valsOther
        self.tests = tests
-    def getName(self):
-       return "%s-vs-%s-%s.html"%(self.dimy.type, self.dimx.type, "-".join([v.value for v in self.valsOther]))
+    def getName(self, dimy=None, dimx=None, valsOther=None):
+       return "%s-vs-%s-for-%s.html"%(dimx or self.dimy.type,
+                                       dimy or self.dimx.type,
+                                       "-".join([v.value for v in valsOther or self.valsOther]))
     def generate(self):
        html = open(self.getName(), "w")
-       title = "CAN gateway timing analysis" + ", ".join([v.dim.name+" "+v.value for v in self.valsOther])
-       print >> html, """<html>
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+       title = "CAN gateway timing analysis" 
+       print >> html, """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
+<head>
 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 <title>%s</title>
 <style>
@@ -167,31 +229,46 @@ th, td { border: 1px solid lightgray; padding: 4px;}
 </head>
 <body>
 <h1>%s</h1>"""  % (title, title)
+        params = ["%s %s" % (v.dim, v) for v in self.valsOther]
+        print >>html, "Results for:", ", ".join(params), "<hr />"
        for d in self.dimOther:
-           pass
-#             print >>html, "View for %s: " % str(ps.pageclass.name)
-#             for v in ps.values:
-#                 print >>html, "<a href='%s-%s.html'>%s</a> | "%(ps.values.type, urllib.quote(v), v)
-#             print >>html, "<br>"
-#             try:
-#                 print >>html, d.htmlPreamble()
-#             except Exception:
-#                 pass
-
-       print >>html, "<table><thead><tr><td> </td>"
+            print >>html, "%s: " % d
+            print >>html, "<a href='%s'>X axis</a>, " % \
+                self.getName(dimx=d,
+                             valsOther=self.valsOther - d + self.dimx.getValue(0))
+            print >>html, "<a href='%s'>Y axis</a>;&nbsp;&nbsp;" % self.getName(dimy=d)
+            links = []
+            for v in d.values():
+                if v in self.valsOther:
+                    links.append(str(v))
+                else:
+                    vv = DimValues(self.valsOther)
+                    vv.replace(v)
+                    links.append("<a href='%s'>%s</a>"%(urllib.quote(self.getName(valsOther=vv)), str(v)))
+            print >>html, " | ".join(links)
+            print >>html, "<br>"
+            try:
+                print >>html, d.htmlPreamble()
+            except Exception:
+                pass
+
+       print >>html, "<table><thead><tr><td>%s &rarr; <br />%s &darr;</td>" % (self.dimx.name, self.dimy.name)
        for x in self.dimx:
-           print >>html, "<th>%s</th>" % x.htmlLabel()
+           print >>html, "<th>%s</th>" % x.htmlTableHeading()
        print >>html, "</tr></thead>"
        for y in self.dimy:
-           print >>html, "<tr><th>%s</th>" % y.htmlLabel()
+           print >>html, "<tr><th>%s</th>" % y.htmlTableHeading()
 
            for x in self.dimx:
                print >>html, "<td>"
                idx = [x,y]
                idx.extend(self.valsOther)
-               test = tests.getTest(idx)
-               test.printThumbLink(html)
-               print >>html, "</td>"
+                try:
+                    test = tests.getTest(idx)
+                    test.printThumbLink(html)
+                except KeyError:
+                    print >>html, "N/A"
+                print >>html, "</td>"
            print >>html, "</tr>"
        print >> html, """
 </table>
@@ -202,6 +279,7 @@ th, td { border: 1px solid lightgray; padding: 4px;}
 
 if __name__ == "__main__":
     os.chdir(sys.argv[1])
-    tests = Tests("./", DimensionKern(), DimensionTraffic(), DimensionTest())
+    os.system("rm *.html")
+    tests = Tests("./", DimensionHostKern(), DimensionKern(), DimensionTraffic(), DimensionTest())
     tests.generateHtml()
     sys.exit(0)