]> rtime.felk.cvut.cz Git - can-benchmark.git/commitdiff
Generate links kernel configs and test sources in table labels
authorMichal Sojka <sojkam1@fel.cvut.cz>
Thu, 3 Sep 2009 09:46:38 +0000 (11:46 +0200)
committerMichal Sojka <sojkam1@fel.cvut.cz>
Thu, 3 Sep 2009 09:46:38 +0000 (11:46 +0200)
tests/genhtml.py

index 1302ad8f08da92d175bc9a806869f2e495bb8074..2c7aa8dae295f41d0b22a8fdaaebd777d3a4d83b 100755 (executable)
@@ -12,31 +12,41 @@ class Axis:
         self.type = atype
         self.values = dircache.listdir('by-%s'%atype)
 
-    def __str__(self):
-        if self.type == "kern": return "kernel"
-        elif self.type == "clck": return "CPU clock"
-        elif self.type == "test": return "test"
-        else: raise Exception, "Unknown type"
-
     def __iter__(self):
         return iter(self.values)
 
     def __getitem__(self, key):
         return self.values[key]
 
-    def getLabel(self, v):
-        if self.type == "clck": return v+" MHz"
-        elif self.type == "test": return "<a href='%s.sh.html'>%s</a>"%(urllib.quote(v), v)
-        else: return v
-
-
     def labels(self):
         for v in self.values:
             yield self.getLabel(v)
-        
-kernels = Axis('kern')
-clocks = Axis('clck')
-tests = Axis('test')
+
+class AxisKern(Axis):
+    def __init__(self):
+        Axis.__init__(self, 'kern')
+    def getLabel(self, 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))
+    
+
+class AxisClck(Axis):
+    def __init__(self):
+        Axis.__init__(self, 'clck')
+    def getLabel(self, v):
+        return v+" MHz"
+
+class AxisTest(Axis):
+    def __init__(self):
+        Axis.__init__(self, 'test')
+    def getLabel(self, v):
+        return v+"<br><a href='%s.sh.html'>source</a>"%(urllib.quote(v))
+    
+kernels = AxisKern()
+clocks =  AxisClck()
+tests =   AxisTest()
 
 class PageSet:
     def __init__(self, values, x, y):