--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sbsv2/raptor/bin/recipestats.py Sun Dec 06 10:38:55 2009 +0000
@@ -0,0 +1,111 @@
+#
+# Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
+# All rights reserved.
+# This component and the accompanying materials are made available
+# under the terms of the License "Eclipse Public License v1.0"
+# which accompanies this distribution, and is available
+# at the URL "http://www.eclipse.org/legal/epl-v10.html".
+#
+# Initial Contributors:
+# Nokia Corporation - initial contribution.
+#
+# Contributors:
+#
+# Description:
+#
+# display summary information about recipes from raptor logs
+# e.g. total times and so on.
+
+import time
+
+class RecipeStats(object):
+ STAT_OK = 0
+
+
+ def __init__(self):
+ self.stats = {}
+ self.failcount = 0
+ self.failtime = 0.0
+ self.failtypes = {}
+ self.retryfails = 0
+
+ def add(self, starttime, duration, name, status):
+ if status != RecipeStats.STAT_OK:
+ self.failcount += 1
+ if name in self.failtypes:
+ self.failtypes[name] += 1
+ else:
+ self.failtypes[name] = 1
+
+ if status == 128:
+ self.retryfails += 1
+ return
+
+ if name in self.stats:
+ (count, time) = self.stats[name]
+ self.stats[name] = (count + 1, time + duration)
+ else:
+ self.stats[name] = (1,duration)
+
+ def recipe_csv(self):
+ s = "# name, time, count\n"
+ for (name,(count,time)) in self.stats.iteritems():
+ s += '"%s",%s,%d\n' % (name, str(time), count)
+ return s
+
+
+
+import sys
+import re
+
+def main():
+
+ f = sys.stdin
+ st = RecipeStats()
+
+ recipe_re = re.compile(".*<recipe name='([^']+)'.*")
+ time_re = re.compile(".*<time start='([0-9]+\.[0-9]+)' *elapsed='([0-9]+\.[0-9]+)'.*")
+ status_re = re.compile(".*<status exit='([^']*)'.*")
+
+ alternating = 0
+ start_time = 0.0
+
+
+ for l in f.xreadlines():
+ l2 = l.rstrip("\n")
+ rm = recipe_re.match(l2)
+
+ if rm is not None:
+ rname = rm.groups()[0]
+ continue
+
+
+ tm = time_re.match(l2)
+ if tm is not None:
+ s = float(tm.groups()[0])
+ elapsed = float(tm.groups()[1])
+
+ if start_time == 0.0:
+ start_time = s
+
+ s -= start_time
+
+ #print s,elapsed
+ continue
+
+ sm = status_re.match(l2)
+
+ if sm is None:
+ continue
+
+ if sm.groups()[0] == 'ok':
+ status = 0
+ else:
+ status = int(sm.groups()[0])
+
+ st.add(s, elapsed, rname, status)
+
+ print st.recipe_csv()
+
+
+if __name__ == '__main__': main()