]> rtime.felk.cvut.cz Git - can-benchmark.git/blobdiff - gw-tests/genhtml/genhtml.py
Make page names shorter
[can-benchmark.git] / gw-tests / genhtml / genhtml.py
index 6218004de8275829b7ddf79a64d0e814022d2948..db2d5e5a646ff777e791a9bce5fe9c2e2f08be7f 100755 (executable)
@@ -23,6 +23,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):
@@ -164,12 +166,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 +217,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)
         
@@ -332,7 +337,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"