apply review comments: wip
authortimothy.murphy@nokia.com
Mon, 14 Dec 2009 21:47:42 +0000
branchwip
changeset 100 55250667c668
parent 99 7204b1c9d0e8
child 101 55e6115d31a4
apply review comments: whatcomp filter recipestats.py and timelines.py
sbsv2/raptor/bin/recipestats.py
sbsv2/raptor/bin/timelines.py
sbsv2/raptor/python/plugins/filter_what.py
--- a/sbsv2/raptor/bin/recipestats.py	Mon Dec 14 21:34:47 2009 +0000
+++ b/sbsv2/raptor/bin/recipestats.py	Mon Dec 14 21:47:42 2009 +0000
@@ -92,7 +92,6 @@
 
 				s -= start_time
 
-				#print s,elapsed
 				continue
 			except ValueError, e:
 				raise Exception("Parse problem: float conversion on these groups: %s\n%s" %(str(tm.groups()), str(e)))
--- a/sbsv2/raptor/bin/timelines.py	Mon Dec 14 21:34:47 2009 +0000
+++ b/sbsv2/raptor/bin/timelines.py	Mon Dec 14 21:47:42 2009 +0000
@@ -25,6 +25,9 @@
 import time
 
 class Timeline(object):
+	"""A bar representing a number of recipes which were executed in 
+	   time sequence.  There is no guarantee about what host but in 
+	   theory they could have been executed on the same host."""
 
 	globalmax = 2.0
 
@@ -34,15 +37,13 @@
 		self.ylevel = ylevel
 
 	def append(self, recipe):
+		"" add this recipe to this timeline if it happens after the latest recipe already in the timeline ""
 		if recipe.starttime + recipe.duration > self.maxtime:
 			self.maxtime = recipe.starttime + recipe.duration
 			if self.maxtime > Timeline.globalmax:
 				Timeline.globalmax = self.maxtime 
-			#print "maxtime:",self.maxtime
-			#print "xscale:",self.xscale
 		else:
 			pass
-			#print "bob",self.maxtime
 
 		self.recipes.append(recipe)
 
@@ -62,6 +63,9 @@
 			r.draw(self.xscale, self.ylevel, coloff)
 
 class Recipe(object):
+	"""Represents a task completed in a raptor build. 
+	   Drawn as a colour-coded bar with different 
+	   colours for the various recipe types."""
 	STAT_OK = 0
 	colours = {
 		'compile': (0.5,0.5,1.0),
@@ -69,6 +73,7 @@
 		'win32compile2object': (0.5,0.5,1.0),
 		'tools2linkexe': (0.5,1.0,0.5),
 		'link': (0.5,1.0,0.5),
+		'linkandpostlink': (0.5,1.0,0.5),
 		'win32stageonelink': (0.5,1.0,0.5),
 		'tools2lib': (0.5,1.0,1.0),
 		'win32stagetwolink': (1.0,0.1,1.0),
@@ -92,7 +97,6 @@
 		else:
 			glColor4f(1.0*coloff, 0.6*coloff, 0.6*coloff,0.2)
 
-		print "ylevel: %s %f " % (self.name, ylevel)
 
 		x = self.starttime * scale
 		y = ylevel
@@ -148,7 +152,6 @@
 	for i in xrange(0,4):
 		ylevel += 0.6 
 		timelines.append(Timeline(ylevel))
-		print "TIMELINE", ylevel
 
 	f = sys.stdin
 
@@ -179,7 +182,6 @@
 
 			s -= start_time
 
-			#print s,elapsed
 			continue
 
 		sm = status_re.match(l2)
@@ -198,13 +200,10 @@
 			newdiff = s - t.maxtime
 			if newdiff < 0.0:
 				continue
-			#print "diff: %f" % (newdiff)
 			if olddiff > newdiff:
 				dest_timeline = t
 				olddiff = newdiff
-				#print "timeline selected: %d diff: %f" % (tnum,newdiff)
 			tnum += 1
-		#print "----------"
 
 		dest_timeline.append(Recipe(s, elapsed, rname, status))
 		event = pygame.event.poll()
--- a/sbsv2/raptor/python/plugins/filter_what.py	Mon Dec 14 21:34:47 2009 +0000
+++ b/sbsv2/raptor/python/plugins/filter_what.py	Mon Dec 14 21:47:42 2009 +0000
@@ -150,7 +150,8 @@
 							if self.current_bldinf != '':
 								self.end_bldinf()
 							self.current_bldinf = bi
-							self.start_bldinf(bi)
+							if bi != '':
+								self.start_bldinf(bi)