]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - gw-tests/genhtml/genhtml.py
genhtml: Close all html elements and add copyright to all pages
[can-benchmark.git] / gw-tests / genhtml / genhtml.py
index 6218004de8275829b7ddf79a64d0e814022d2948..1ed6ce74e0b279f8f2e168add68392d3226f486b 100755 (executable)
@@ -7,6 +7,8 @@ import urllib
 import traceback
 import glob
 
+html_copyright = """<div style="font-size: small; color: gray; margin-top: 1em;">Authors: Michal Sojka, Pavel Píša, Copyright © 2010, 2011 Czech Technical University in Prague</div>"""
+
 class DimValue(object):
     def __new__(cls, dim, value):
         if value in dim:
@@ -23,6 +25,8 @@ class DimValue(object):
        return "DimValue(%s, %s)" % (repr(self.dim), repr(self.value))
     def htmlTableHeading(self):
        return self.dim.htmlTableHeading(self.value)
+    def index(self):
+        return self.dim.sortedKeys.index(self.value)
 
 class DimValues(list):
     def replace(self, val):
@@ -152,8 +156,11 @@ class Test(object):
             print >>file, "<a href='%s/results.html'><img src='%s/%s'></a>" % \
                   (urllib.quote(self.path), urllib.quote(self.path), img)
     def fullImgLink(self, pngName):
-        return "<div><a href='%s'><img src='%s' /></a></div>" % \
-               (pngName[:-4]+".pdf", pngName)
+        if 'NO_PDF' in os.environ:
+            return "<div><img src='%s' /></div>" % pngName
+        else:
+            return "<div><a href='%s'><img src='%s' /></a></div>" % \
+                   (pngName[:-4]+".pdf", pngName)
         
     def htmlPrintStats(self, html):
         cwd = os.getcwd()
@@ -164,12 +171,14 @@ class Test(object):
         stats.sort()
         for i in stats:
             lines = open(i).readlines()
-            def stripComment(l):
+            def fixupLine(l):
                 comment = l.find("#")
                 if comment >= 0:
                     l = l[:comment-1]
+                if l.find("cmdline=") == 0:
+                    l = "<abbr title=%s>cmdline=...</abbr>" % str(l[8:])
                 return l
-            lines = [stripComment(l) for l in lines if l.find("cmdline=") != 0]
+            lines = [fixupLine(l) for l in lines]
             print >>html, "<td><h4>%s</h4>%s</td>" % (i, "<br />".join(lines))
         print >>html, "</tr></table>"
         os.chdir(cwd)
@@ -213,6 +222,7 @@ class Test(object):
         additionalImgs = glob.glob("graph?*.png")
         if additionalImgs: print >>html, "<h3>Additional graphs</h3>"
         for i in additionalImgs:
+            print >>html, "<h4>%s</h4>" % i[5:-4]
             print >>html, self.fullImgLink(i)
         os.chdir(cwd)
         
@@ -220,7 +230,7 @@ class Test(object):
         print >>html, "<a href='./'>Raw data</a><br />"
         print >>html, "<a href='%s'>Script source</a><br />" % (cdup+self.name+".sh.html")
         print >>html, "<a href='%s'>Back to top</a><br />" % cdup
-
+        print >>html,"%s</body></html>" % html_copyright
         html.close()
 
 class Space(list):
@@ -332,7 +342,7 @@ class Page(object):
        self.tests = tests
     def getName(self):
        return "%s-vs-%s-for-%s.html"%(self.dimy.type, self.dimx.type,
-                                       "-".join([v.value for v in self.valsOther]))
+                                       "-".join(["%02d"%v.index() for v in self.valsOther]))
     def generate(self):
        html = open(self.getName(), "w")
        title = "CAN gateway timing analysis" 
@@ -388,9 +398,9 @@ class Page(object):
            print >>html, "</tr>"
        print >> html, """
 </table>
-<div style="font-size: small; color: gray; margin-top: 1em;">Authors: Michal Sojka, Pavel Píša, Copyright © 2010 Czech Technical University in Prague</div>
+%s
 </body>
-"""
+""" % html_copyright
 
 
 if __name__ == "__main__":