]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - gw-tests/genhtml/genhtml.py
genhtml: Hopefully completed
[can-benchmark.git] / gw-tests / genhtml / genhtml.py
index 76eee7b5c28304909e7f69ab983b1682539016ca..5425f5ec2a60ec06c53213a8073a5bc1ebd3f762 100755 (executable)
@@ -127,9 +127,11 @@ class Test:
     def isOnPath(cls, path):
        f = os.path.join(path, '.results')
        return os.path.isfile(f)
-    def __init__(self, path):
+    def __init__(self, path, values, tests=None):
        self.path = path
         self.name = os.path.basename(path)
+        self.values = values
+        self.tests = tests
     def printThumbLink(self, file):
         thumb = self.path+'/thumb'
         try:
@@ -137,8 +139,42 @@ class Test:
         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)
+            print >>file, "<a href='%s/results.html'><img src='%s/thumb/%s'></a>" % \
+                  (urllib.quote(self.path), urllib.quote(self.path), img)
+    def generateHtml(self):
+        html = open(os.path.join(self.path, 'results.html'), "w")
+       title = "CAN gateway timing analysis"
+        cdup = "../"*len(self.values)
+       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>
+<link rel="stylesheet" href="%sstyle.css" type="text/css" /> 
+</head>
+<body>
+<h1>%s</h1>"""  % (title, cdup, title)
+        params = ["%s %s" % (v.dim, v) for v in self.values]
+        print >>html, "Results for:", ", ".join(params)
+        print >>html, "<div class='box'><h4>Other views</h4>"
+       for d in self.tests.space:
+            links = []
+            for v in d.values():
+                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("<a href='%s'>%s</a>"%(href, str(v)))
+            print >>html, "%s: " % d, " | ".join(links), "<br>"
+
+        print >>html, "</div>"
+        print >>html, "<div><img src='%s' /></div>" % (self.name+".png")
+        print >>html, "<a href='./'>Raw data</a><br />"
+        print >>html, "<a href='%s'>Back to top</a>" % cdup
+        
+        html.close()
 
 class Space(list):
     """List of Dimensions()s (order matters)"""
@@ -190,31 +226,42 @@ class Tests(dict):
         realkey = self.space.reorder(key)
        return self[realkey.key()]
 
-    def addTest(self, test, coordinates):
-       if len(coordinates) != len(self.space):
-           raise KeyError("The number coordinates do not match the number of dimensions: " + str(coordinates))
-       self[tuple(coordinates)] = test
-       for i in xrange(len(coordinates)):
-            DimValue(self.space[i], coordinates[i])
-
+    def addTest(self, test):
+       self[test.values.key()] = test
+       
     def populate(self, rootpath):
        for root, dirs, files in os.walk(rootpath):
            if (root.find(rootpath) == 0):
-               coordinates = root[len(rootpath):]
+               coordinates = root[len(rootpath):].split("/")
            else:
-               coordinates = rootpath
+               coordinates = rootpath.split("/")
            if Test.isOnPath(root):
-               self.addTest(Test(root), coordinates.split("/"))
+                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))])
+               self.addTest(Test(root, dv, self))
     def generateHtml(self):
        for pair in self.space.iterDimensionPairs():
            remDims = Space(*tuple([d for d in self.space.iterRemainingDimensions(pair)]))
            for vals in remDims.iterValues():
                page = Page(pair, vals, self)
+                print page.getName()
                page.generate()
        try:
            os.remove("index.html")
        except OSError: pass
        os.symlink(page.getName(), "index.html")
+        css = open("style.css", "w")
+        print >>css, """img { border: 0; }
+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}
+"""
+        css.close()
+        for test in self.values():
+            print test.path
+            test.generateHtml()
 
        #os.system("source-highlight -d --output-dir=. ../*.sh")
 
@@ -235,16 +282,13 @@ class Page:
 <head>
 <meta http-equiv="content-type" content="text/html; charset=utf-8" />
 <title>%s</title>
-<style>
-img { border: 0; }
-table { border-collapse: collapse; }
-th, td { border: 1px solid lightgray; padding: 4px;}
-</style>
+<link rel="stylesheet" href="style.css" type="text/css" /> 
 </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 />"
+        print >>html, "<h3>Results for ", ", ".join(params), "</h3>"
+        print >>html, "<div class='box'><h4>Other views</h4>"
        for d in self.dimOther:
             print >>html, "%s: " % d
             print >>html, "<a href='%s'>X axis</a>, " % \
@@ -265,6 +309,7 @@ th, td { border: 1px solid lightgray; padding: 4px;}
                 print >>html, d.htmlPreamble()
             except Exception:
                 pass
+        print >>html, "</div>"
 
        print >>html, "<table><thead><tr><td>%s &rarr; <br />%s &darr;</td>" % (self.dimx.name, self.dimy.name)
        for x in self.dimx: