| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  | """Class for printing reports on profiled python code.""" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | # Class for printing reports on profiled python code. rev 1.0  4/1/94 | 
					
						
							|  |  |  | # | 
					
						
							|  |  |  | # Based on prior profile module by Sjoerd Mullender... | 
					
						
							|  |  |  | #   which was hacked somewhat by: Guido van Rossum | 
					
						
							|  |  |  | # | 
					
						
							| 
									
										
										
										
											1999-04-13 04:24:22 +00:00
										 |  |  | # see profile.doc and profile.py for more info. | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # Copyright 1994, by InfoSeek Corporation, all rights reserved. | 
					
						
							|  |  |  | # Written by James Roskind | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | # Permission to use, copy, modify, and distribute this Python software | 
					
						
							|  |  |  | # and its associated documentation for any purpose (subject to the | 
					
						
							|  |  |  | # restriction in the following sentence) without fee is hereby granted, | 
					
						
							|  |  |  | # provided that the above copyright notice appears in all copies, and | 
					
						
							|  |  |  | # that both that copyright notice and this permission notice appear in | 
					
						
							|  |  |  | # supporting documentation, and that the name of InfoSeek not be used in | 
					
						
							|  |  |  | # advertising or publicity pertaining to distribution of the software | 
					
						
							|  |  |  | # without specific, written prior permission.  This permission is | 
					
						
							|  |  |  | # explicitly restricted to the copying and modification of the software | 
					
						
							|  |  |  | # to remain in Python, compiled Python, or other languages (such as C) | 
					
						
							|  |  |  | # wherein the modified or derived code is exclusively imported into a | 
					
						
							|  |  |  | # Python module. | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | # INFOSEEK CORPORATION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS | 
					
						
							|  |  |  | # SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND | 
					
						
							|  |  |  | # FITNESS. IN NO EVENT SHALL INFOSEEK CORPORATION BE LIABLE FOR ANY | 
					
						
							|  |  |  | # SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER | 
					
						
							|  |  |  | # RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF | 
					
						
							|  |  |  | # CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN | 
					
						
							|  |  |  | # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  | import sys | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | import os | 
					
						
							|  |  |  | import time | 
					
						
							|  |  |  | import marshal | 
					
						
							| 
									
										
										
										
											1997-10-22 21:00:49 +00:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-02-12 02:00:42 +00:00
										 |  |  | __all__ = ["Stats"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | class Stats: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     """This class is used for creating reports from data generated by the
 | 
					
						
							|  |  |  |     Profile class.  It is a "friend" of that class, and imports data either | 
					
						
							|  |  |  |     by direct access to members of Profile class, or by reading in a dictionary | 
					
						
							|  |  |  |     that was emitted (via marshal) from the Profile class. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The big change from the previous Profiler (in terms of raw functionality) | 
					
						
							|  |  |  |     is that an "add()" method has been provided to combine Stats from | 
					
						
							|  |  |  |     several distinct profile runs.  Both the constructor and the add() | 
					
						
							|  |  |  |     method now take arbitrarily many file names as arguments. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     All the print methods now take an argument that indicates how many lines | 
					
						
							|  |  |  |     to print.  If the arg is a floating point number between 0 and 1.0, then | 
					
						
							|  |  |  |     it is taken as a decimal percentage of the available lines to be printed | 
					
						
							|  |  |  |     (e.g., .1 means print 10% of all available lines).  If it is an integer, | 
					
						
							|  |  |  |     it is taken to mean the number of lines of data that you wish to have | 
					
						
							|  |  |  |     printed. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The sort_stats() method now processes some additional options (i.e., in | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |     addition to the old -1, 0, 1, or 2).  It takes an arbitrary number of | 
					
						
							|  |  |  |     quoted strings to select the sort order.  For example sort_stats('time', | 
					
						
							|  |  |  |     'name') sorts on the major key of 'internal function time', and on the | 
					
						
							|  |  |  |     minor key of 'the name of the function'.  Look at the two tables in | 
					
						
							|  |  |  |     sort_stats() and get_sort_arg_defs(self) for more examples. | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |     All methods return self,  so you can string together commands like: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         Stats('foo', 'goo').strip_dirs().sort_stats('calls').\ | 
					
						
							|  |  |  |                             print_stats(5).print_callers(5) | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |     def __init__(self, *args, **kwds): | 
					
						
							|  |  |  |         # I can't figure out how to explictly specify a stream keyword arg | 
					
						
							|  |  |  |         # with *args: | 
					
						
							|  |  |  |         #   def __init__(self, *args, stream=sys.stdout): ... | 
					
						
							|  |  |  |         # so I use **kwds and sqauwk if something unexpected is passed in. | 
					
						
							|  |  |  |         self.stream = sys.stdout | 
					
						
							|  |  |  |         if "stream" in kwds: | 
					
						
							|  |  |  |             self.stream = kwds["stream"] | 
					
						
							|  |  |  |             del kwds["stream"] | 
					
						
							|  |  |  |         if kwds: | 
					
						
							|  |  |  |             keys = kwds.keys() | 
					
						
							|  |  |  |             keys.sort() | 
					
						
							|  |  |  |             extras = ", ".join(["%s=%s" % (k, kwds[k]) for k in keys]) | 
					
						
							|  |  |  |             raise ValueError, "unrecognized keyword args: %s" % extras | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         if not len(args): | 
					
						
							|  |  |  |             arg = None | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             arg = args[0] | 
					
						
							|  |  |  |             args = args[1:] | 
					
						
							|  |  |  |         self.init(arg) | 
					
						
							| 
									
										
										
										
											2003-02-27 20:14:51 +00:00
										 |  |  |         self.add(*args) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def init(self, arg): | 
					
						
							|  |  |  |         self.all_callees = None  # calc only if needed | 
					
						
							|  |  |  |         self.files = [] | 
					
						
							|  |  |  |         self.fcn_list = None | 
					
						
							|  |  |  |         self.total_tt = 0 | 
					
						
							|  |  |  |         self.total_calls = 0 | 
					
						
							|  |  |  |         self.prim_calls = 0 | 
					
						
							|  |  |  |         self.max_name_len = 0 | 
					
						
							|  |  |  |         self.top_level = {} | 
					
						
							|  |  |  |         self.stats = {} | 
					
						
							|  |  |  |         self.sort_arg_dict = {} | 
					
						
							|  |  |  |         self.load_stats(arg) | 
					
						
							|  |  |  |         trouble = 1 | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             self.get_top_level_stats() | 
					
						
							|  |  |  |             trouble = 0 | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             if trouble: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |                 print >> self.stream, "Invalid timing data", | 
					
						
							|  |  |  |                 if self.files: print >> self.stream, self.files[-1], | 
					
						
							|  |  |  |                 print >> self.stream | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_stats(self, arg): | 
					
						
							|  |  |  |         if not arg:  self.stats = {} | 
					
						
							| 
									
										
										
										
											2006-11-26 19:27:47 +00:00
										 |  |  |         elif isinstance(arg, basestring): | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             f = open(arg, 'rb') | 
					
						
							|  |  |  |             self.stats = marshal.load(f) | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 file_stats = os.stat(arg) | 
					
						
							| 
									
										
										
										
											2002-06-01 19:51:15 +00:00
										 |  |  |                 arg = time.ctime(file_stats.st_mtime) + "    " + arg | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             except:  # in case this is not unix | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |             self.files = [ arg ] | 
					
						
							|  |  |  |         elif hasattr(arg, 'create_stats'): | 
					
						
							|  |  |  |             arg.create_stats() | 
					
						
							|  |  |  |             self.stats = arg.stats | 
					
						
							|  |  |  |             arg.stats = {} | 
					
						
							|  |  |  |         if not self.stats: | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |             raise TypeError,  "Cannot create or construct a %r object from '%r''" % ( | 
					
						
							|  |  |  |                               self.__class__, arg) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def get_top_level_stats(self): | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |         for func, (cc, nc, tt, ct, callers) in self.stats.items(): | 
					
						
							|  |  |  |             self.total_calls += nc | 
					
						
							|  |  |  |             self.prim_calls  += cc | 
					
						
							|  |  |  |             self.total_tt    += tt | 
					
						
							| 
									
										
										
										
											2008-08-03 22:52:42 +00:00
										 |  |  |             if ("jprofile", 0, "profiler") in callers: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                 self.top_level[func] = None | 
					
						
							|  |  |  |             if len(func_std_string(func)) > self.max_name_len: | 
					
						
							|  |  |  |                 self.max_name_len = len(func_std_string(func)) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def add(self, *arg_list): | 
					
						
							|  |  |  |         if not arg_list: return self | 
					
						
							| 
									
										
										
										
											2003-02-27 20:14:51 +00:00
										 |  |  |         if len(arg_list) > 1: self.add(*arg_list[1:]) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         other = arg_list[0] | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |         if type(self) != type(other) or self.__class__ != other.__class__: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             other = Stats(other) | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |         self.files += other.files | 
					
						
							|  |  |  |         self.total_calls += other.total_calls | 
					
						
							|  |  |  |         self.prim_calls += other.prim_calls | 
					
						
							|  |  |  |         self.total_tt += other.total_tt | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |         for func in other.top_level: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             self.top_level[func] = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if self.max_name_len < other.max_name_len: | 
					
						
							|  |  |  |             self.max_name_len = other.max_name_len | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.fcn_list = None | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |         for func, stat in other.stats.iteritems(): | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |             if func in self.stats: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                 old_func_stat = self.stats[func] | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 old_func_stat = (0, 0, 0, 0, {},) | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             self.stats[func] = add_func_stats(old_func_stat, stat) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-05-14 14:28:09 +00:00
										 |  |  |     def dump_stats(self, filename): | 
					
						
							|  |  |  |         """Write the profile data to a file we know how to load back.""" | 
					
						
							|  |  |  |         f = file(filename, 'wb') | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             marshal.dump(self.stats, f) | 
					
						
							|  |  |  |         finally: | 
					
						
							|  |  |  |             f.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     # list the tuple indices and directions for sorting, | 
					
						
							|  |  |  |     # along with some printable description | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |     sort_arg_dict_default = { | 
					
						
							|  |  |  |               "calls"     : (((1,-1),              ), "call count"), | 
					
						
							|  |  |  |               "cumulative": (((3,-1),              ), "cumulative time"), | 
					
						
							|  |  |  |               "file"      : (((4, 1),              ), "file name"), | 
					
						
							|  |  |  |               "line"      : (((5, 1),              ), "line number"), | 
					
						
							|  |  |  |               "module"    : (((4, 1),              ), "file name"), | 
					
						
							|  |  |  |               "name"      : (((6, 1),              ), "function name"), | 
					
						
							|  |  |  |               "nfl"       : (((6, 1),(4, 1),(5, 1),), "name/file/line"), | 
					
						
							|  |  |  |               "pcalls"    : (((0,-1),              ), "call count"), | 
					
						
							|  |  |  |               "stdname"   : (((7, 1),              ), "standard name"), | 
					
						
							|  |  |  |               "time"      : (((2,-1),              ), "internal time"), | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |               } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def get_sort_arg_defs(self): | 
					
						
							|  |  |  |         """Expand all abbreviations that are unique.""" | 
					
						
							|  |  |  |         if not self.sort_arg_dict: | 
					
						
							|  |  |  |             self.sort_arg_dict = dict = {} | 
					
						
							|  |  |  |             bad_list = {} | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             for word, tup in self.sort_arg_dict_default.iteritems(): | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                 fragment = word | 
					
						
							|  |  |  |                 while fragment: | 
					
						
							|  |  |  |                     if not fragment: | 
					
						
							|  |  |  |                         break | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |                     if fragment in dict: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                         bad_list[fragment] = 0 | 
					
						
							|  |  |  |                         break | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |                     dict[fragment] = tup | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                     fragment = fragment[:-1] | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             for word in bad_list: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                 del dict[word] | 
					
						
							|  |  |  |         return self.sort_arg_dict | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def sort_stats(self, *field): | 
					
						
							|  |  |  |         if not field: | 
					
						
							|  |  |  |             self.fcn_list = 0 | 
					
						
							|  |  |  |             return self | 
					
						
							|  |  |  |         if len(field) == 1 and type(field[0]) == type(1): | 
					
						
							|  |  |  |             # Be compatible with old profiler | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |             field = [ {-1: "stdname", | 
					
						
							|  |  |  |                       0:"calls", | 
					
						
							|  |  |  |                       1:"time", | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                       2: "cumulative" }  [ field[0] ] ] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         sort_arg_defs = self.get_sort_arg_defs() | 
					
						
							|  |  |  |         sort_tuple = () | 
					
						
							|  |  |  |         self.sort_type = "" | 
					
						
							|  |  |  |         connector = "" | 
					
						
							|  |  |  |         for word in field: | 
					
						
							|  |  |  |             sort_tuple = sort_tuple + sort_arg_defs[word][0] | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |             self.sort_type += connector + sort_arg_defs[word][1] | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             connector = ", " | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         stats_list = [] | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |         for func, (cc, nc, tt, ct, callers) in self.stats.iteritems(): | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |             stats_list.append((cc, nc, tt, ct) + func + | 
					
						
							|  |  |  |                               (func_std_string(func), func)) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-03 22:52:42 +00:00
										 |  |  |         stats_list.sort(key=CmpToKey(TupleComp(sort_tuple).compare)) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         self.fcn_list = fcn_list = [] | 
					
						
							|  |  |  |         for tuple in stats_list: | 
					
						
							|  |  |  |             fcn_list.append(tuple[-1]) | 
					
						
							|  |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def reverse_order(self): | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |         if self.fcn_list: | 
					
						
							|  |  |  |             self.fcn_list.reverse() | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def strip_dirs(self): | 
					
						
							|  |  |  |         oldstats = self.stats | 
					
						
							|  |  |  |         self.stats = newstats = {} | 
					
						
							|  |  |  |         max_name_len = 0 | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |         for func, (cc, nc, tt, ct, callers) in oldstats.iteritems(): | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             newfunc = func_strip_path(func) | 
					
						
							|  |  |  |             if len(func_std_string(newfunc)) > max_name_len: | 
					
						
							|  |  |  |                 max_name_len = len(func_std_string(newfunc)) | 
					
						
							|  |  |  |             newcallers = {} | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             for func2, caller in callers.iteritems(): | 
					
						
							|  |  |  |                 newcallers[func_strip_path(func2)] = caller | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |             if newfunc in newstats: | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |                 newstats[newfunc] = add_func_stats( | 
					
						
							|  |  |  |                                         newstats[newfunc], | 
					
						
							|  |  |  |                                         (cc, nc, tt, ct, newcallers)) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 newstats[newfunc] = (cc, nc, tt, ct, newcallers) | 
					
						
							|  |  |  |         old_top = self.top_level | 
					
						
							|  |  |  |         self.top_level = new_top = {} | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |         for func in old_top: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             new_top[func_strip_path(func)] = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.max_name_len = max_name_len | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self.fcn_list = None | 
					
						
							|  |  |  |         self.all_callees = None | 
					
						
							|  |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def calc_callees(self): | 
					
						
							|  |  |  |         if self.all_callees: return | 
					
						
							|  |  |  |         self.all_callees = all_callees = {} | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |         for func, (cc, nc, tt, ct, callers) in self.stats.iteritems(): | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |             if not func in all_callees: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                 all_callees[func] = {} | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             for func2, caller in callers.iteritems(): | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |                 if not func2 in all_callees: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                     all_callees[func2] = {} | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |                 all_callees[func2][func]  = caller | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         return | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     #****************************************************************** | 
					
						
							|  |  |  |     # The following functions support actual printing of reports | 
					
						
							|  |  |  |     #****************************************************************** | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Optional "amount" is either a line count, or a percentage of lines. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def eval_print_amount(self, sel, list, msg): | 
					
						
							|  |  |  |         new_list = list | 
					
						
							|  |  |  |         if type(sel) == type(""): | 
					
						
							|  |  |  |             new_list = [] | 
					
						
							|  |  |  |             for func in list: | 
					
						
							|  |  |  |                 if re.search(sel, func_std_string(func)): | 
					
						
							|  |  |  |                     new_list.append(func) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             count = len(list) | 
					
						
							|  |  |  |             if type(sel) == type(1.0) and 0.0 <= sel < 1.0: | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |                 count = int(count * sel + .5) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                 new_list = list[:count] | 
					
						
							|  |  |  |             elif type(sel) == type(1) and 0 <= sel < count: | 
					
						
							|  |  |  |                 count = sel | 
					
						
							|  |  |  |                 new_list = list[:count] | 
					
						
							|  |  |  |         if len(list) != len(new_list): | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |             msg = msg + "   List reduced from %r to %r due to restriction <%r>\n" % ( | 
					
						
							|  |  |  |                          len(list), len(new_list), sel) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return new_list, msg | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def get_print_list(self, sel_list): | 
					
						
							|  |  |  |         width = self.max_name_len | 
					
						
							|  |  |  |         if self.fcn_list: | 
					
						
							|  |  |  |             list = self.fcn_list[:] | 
					
						
							|  |  |  |             msg = "   Ordered by: " + self.sort_type + '\n' | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             list = self.stats.keys() | 
					
						
							|  |  |  |             msg = "   Random listing order was used\n" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         for selection in sel_list: | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |             list, msg = self.eval_print_amount(selection, list, msg) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         count = len(list) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not list: | 
					
						
							|  |  |  |             return 0, list | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |         print >> self.stream, msg | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         if count < len(self.stats): | 
					
						
							|  |  |  |             width = 0 | 
					
						
							|  |  |  |             for func in list: | 
					
						
							|  |  |  |                 if  len(func_std_string(func)) > width: | 
					
						
							|  |  |  |                     width = len(func_std_string(func)) | 
					
						
							|  |  |  |         return width+2, list | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def print_stats(self, *amount): | 
					
						
							|  |  |  |         for filename in self.files: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, filename | 
					
						
							|  |  |  |         if self.files: print >> self.stream | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |         indent = ' ' * 8 | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |         for func in self.top_level: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, indent, func_get_function_name(func) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |         print >> self.stream, indent, self.total_calls, "function calls", | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         if self.total_calls != self.prim_calls: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "(%d primitive calls)" % self.prim_calls, | 
					
						
							|  |  |  |         print >> self.stream, "in %.3f CPU seconds" % self.total_tt | 
					
						
							|  |  |  |         print >> self.stream | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         width, list = self.get_print_list(amount) | 
					
						
							|  |  |  |         if list: | 
					
						
							|  |  |  |             self.print_title() | 
					
						
							|  |  |  |             for func in list: | 
					
						
							|  |  |  |                 self.print_line(func) | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream | 
					
						
							|  |  |  |             print >> self.stream | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def print_callees(self, *amount): | 
					
						
							|  |  |  |         width, list = self.get_print_list(amount) | 
					
						
							|  |  |  |         if list: | 
					
						
							|  |  |  |             self.calc_callees() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             self.print_call_heading(width, "called...") | 
					
						
							|  |  |  |             for func in list: | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |                 if func in self.all_callees: | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |                     self.print_call_line(width, func, self.all_callees[func]) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |                 else: | 
					
						
							|  |  |  |                     self.print_call_line(width, func, {}) | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream | 
					
						
							|  |  |  |             print >> self.stream | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def print_callers(self, *amount): | 
					
						
							|  |  |  |         width, list = self.get_print_list(amount) | 
					
						
							|  |  |  |         if list: | 
					
						
							|  |  |  |             self.print_call_heading(width, "was called by...") | 
					
						
							|  |  |  |             for func in list: | 
					
						
							|  |  |  |                 cc, nc, tt, ct, callers = self.stats[func] | 
					
						
							| 
									
										
										
										
											2006-02-08 12:53:56 +00:00
										 |  |  |                 self.print_call_line(width, func, callers, "<-") | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream | 
					
						
							|  |  |  |             print >> self.stream | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def print_call_heading(self, name_size, column_title): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |         print >> self.stream, "Function ".ljust(name_size) + column_title | 
					
						
							| 
									
										
										
										
											2006-02-08 12:53:56 +00:00
										 |  |  |         # print sub-header only if we have new-style callers | 
					
						
							|  |  |  |         subheader = False | 
					
						
							|  |  |  |         for cc, nc, tt, ct, callers in self.stats.itervalues(): | 
					
						
							|  |  |  |             if callers: | 
					
						
							|  |  |  |                 value = callers.itervalues().next() | 
					
						
							|  |  |  |                 subheader = isinstance(value, tuple) | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |         if subheader: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, " "*name_size + "    ncalls  tottime  cumtime" | 
					
						
							| 
									
										
										
										
											2006-02-08 12:53:56 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def print_call_line(self, name_size, source, call_dict, arrow="->"): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |         print >> self.stream, func_std_string(source).ljust(name_size) + arrow, | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         if not call_dict: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             return | 
					
						
							|  |  |  |         clist = call_dict.keys() | 
					
						
							|  |  |  |         clist.sort() | 
					
						
							|  |  |  |         indent = "" | 
					
						
							|  |  |  |         for func in clist: | 
					
						
							|  |  |  |             name = func_std_string(func) | 
					
						
							| 
									
										
										
										
											2006-02-08 12:53:56 +00:00
										 |  |  |             value = call_dict[func] | 
					
						
							|  |  |  |             if isinstance(value, tuple): | 
					
						
							|  |  |  |                 nc, cc, tt, ct = value | 
					
						
							|  |  |  |                 if nc != cc: | 
					
						
							|  |  |  |                     substats = '%d/%d' % (nc, cc) | 
					
						
							|  |  |  |                 else: | 
					
						
							|  |  |  |                     substats = '%d' % (nc,) | 
					
						
							|  |  |  |                 substats = '%s %s %s  %s' % (substats.rjust(7+2*len(indent)), | 
					
						
							|  |  |  |                                              f8(tt), f8(ct), name) | 
					
						
							|  |  |  |                 left_width = name_size + 1 | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 substats = '%s(%r) %s' % (name, value, f8(self.stats[func][3])) | 
					
						
							|  |  |  |                 left_width = name_size + 3 | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, indent*left_width + substats | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |             indent = " " | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def print_title(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |         print >> self.stream, '   ncalls  tottime  percall  cumtime  percall', | 
					
						
							|  |  |  |         print >> self.stream, 'filename:lineno(function)' | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def print_line(self, func):  # hack : should print percentages | 
					
						
							|  |  |  |         cc, nc, tt, ct, callers = self.stats[func] | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |         c = str(nc) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         if nc != cc: | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |             c = c + '/' + str(cc) | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |         print >> self.stream, c.rjust(9), | 
					
						
							|  |  |  |         print >> self.stream, f8(tt), | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         if nc == 0: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, ' '*8, | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, f8(tt/nc), | 
					
						
							|  |  |  |         print >> self.stream, f8(ct), | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         if cc == 0: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, ' '*8, | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, f8(ct/cc), | 
					
						
							|  |  |  |         print >> self.stream, func_std_string(func) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | class TupleComp: | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     """This class provides a generic function for comparing any two tuples.
 | 
					
						
							|  |  |  |     Each instance records a list of tuple-indices (from most significant | 
					
						
							|  |  |  |     to least significant), and sort direction (ascending or decending) for | 
					
						
							|  |  |  |     each tuple-index.  The compare functions can then be used as the function | 
					
						
							|  |  |  |     argument to the system sort() function when a list of tuples need to be | 
					
						
							|  |  |  |     sorted in the instances order."""
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self, comp_select_list): | 
					
						
							|  |  |  |         self.comp_select_list = comp_select_list | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def compare (self, left, right): | 
					
						
							|  |  |  |         for index, direction in self.comp_select_list: | 
					
						
							|  |  |  |             l = left[index] | 
					
						
							|  |  |  |             r = right[index] | 
					
						
							|  |  |  |             if l < r: | 
					
						
							|  |  |  |                 return -direction | 
					
						
							|  |  |  |             if l > r: | 
					
						
							|  |  |  |                 return direction | 
					
						
							|  |  |  |         return 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-03 22:52:42 +00:00
										 |  |  | def CmpToKey(mycmp): | 
					
						
							|  |  |  |     """Convert a cmp= function into a key= function""" | 
					
						
							|  |  |  |     class K(object): | 
					
						
							|  |  |  |         def __init__(self, obj): | 
					
						
							|  |  |  |             self.obj = obj | 
					
						
							|  |  |  |         def __lt__(self, other): | 
					
						
							|  |  |  |             return mycmp(self.obj, other.obj) == -1 | 
					
						
							|  |  |  |     return K | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | #************************************************************************** | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  | # func_name is a triple (file:string, line:int, name:string) | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def func_strip_path(func_name): | 
					
						
							| 
									
										
										
										
											2003-05-14 14:28:09 +00:00
										 |  |  |     filename, line, name = func_name | 
					
						
							|  |  |  |     return os.path.basename(filename), line, name | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def func_get_function_name(func): | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     return func[2] | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def func_std_string(func_name): # match what old profile produced | 
					
						
							| 
									
										
										
										
											2006-02-08 12:53:56 +00:00
										 |  |  |     if func_name[:2] == ('~', 0): | 
					
						
							|  |  |  |         # special case for built-in functions | 
					
						
							|  |  |  |         name = func_name[2] | 
					
						
							|  |  |  |         if name.startswith('<') and name.endswith('>'): | 
					
						
							|  |  |  |             return '{%s}' % name[1:-1] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return name | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         return "%s:%d(%s)" % func_name | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #************************************************************************** | 
					
						
							|  |  |  | # The following functions combine statists for pairs functions. | 
					
						
							|  |  |  | # The bulk of the processing involves correctly handling "call" lists, | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  | # such as callers and callees. | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | #************************************************************************** | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-04 15:10:34 +00:00
										 |  |  | def add_func_stats(target, source): | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     """Add together all the stats for two profile entries.""" | 
					
						
							|  |  |  |     cc, nc, tt, ct, callers = source | 
					
						
							|  |  |  |     t_cc, t_nc, t_tt, t_ct, t_callers = target | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |     return (cc+t_cc, nc+t_nc, tt+t_tt, ct+t_ct, | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |               add_callers(t_callers, callers)) | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def add_callers(target, source): | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     """Combine two caller lists in a single list.""" | 
					
						
							|  |  |  |     new_callers = {} | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |     for func, caller in target.iteritems(): | 
					
						
							|  |  |  |         new_callers[func] = caller | 
					
						
							|  |  |  |     for func, caller in source.iteritems(): | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if func in new_callers: | 
					
						
							| 
									
										
										
										
											2008-01-21 10:24:59 +00:00
										 |  |  |             new_callers[func] = tuple([i[0] + i[1] for i in | 
					
						
							|  |  |  |                                        zip(caller, new_callers[func])]) | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             new_callers[func] = caller | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     return new_callers | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def count_calls(callers): | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     """Sum the caller statistics to get total number of calls received.""" | 
					
						
							|  |  |  |     nc = 0 | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |     for calls in callers.itervalues(): | 
					
						
							|  |  |  |         nc += calls | 
					
						
							| 
									
										
										
										
											2001-01-15 00:50:52 +00:00
										 |  |  |     return nc | 
					
						
							| 
									
										
										
										
											1994-06-23 11:42:52 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #************************************************************************** | 
					
						
							|  |  |  | # The following functions support printing of reports | 
					
						
							|  |  |  | #************************************************************************** | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def f8(x): | 
					
						
							| 
									
										
										
										
											2001-10-08 06:13:19 +00:00
										 |  |  |     return "%8.3f" % x | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #************************************************************************** | 
					
						
							|  |  |  | # Statistics browser added by ESR, April 2001 | 
					
						
							|  |  |  | #************************************************************************** | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if __name__ == '__main__': | 
					
						
							|  |  |  |     import cmd | 
					
						
							| 
									
										
										
										
											2001-04-14 01:48:41 +00:00
										 |  |  |     try: | 
					
						
							|  |  |  |         import readline | 
					
						
							| 
									
										
										
										
											2001-05-11 19:21:41 +00:00
										 |  |  |     except ImportError: | 
					
						
							| 
									
										
										
										
											2001-04-14 01:48:41 +00:00
										 |  |  |         pass | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     class ProfileBrowser(cmd.Cmd): | 
					
						
							|  |  |  |         def __init__(self, profile=None): | 
					
						
							| 
									
										
										
										
											2001-07-28 14:44:03 +00:00
										 |  |  |             cmd.Cmd.__init__(self) | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             self.prompt = "% " | 
					
						
							| 
									
										
										
										
											2002-06-01 16:07:16 +00:00
										 |  |  |             if profile is not None: | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |                 self.stats = Stats(profile) | 
					
						
							| 
									
										
										
										
											2006-06-11 07:27:56 +00:00
										 |  |  |                 self.stream = self.stats.stream | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             else: | 
					
						
							|  |  |  |                 self.stats = None | 
					
						
							| 
									
										
										
										
											2006-06-11 07:27:56 +00:00
										 |  |  |                 self.stream = sys.stdout | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def generic(self, fn, line): | 
					
						
							|  |  |  |             args = line.split() | 
					
						
							|  |  |  |             processed = [] | 
					
						
							|  |  |  |             for term in args: | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     processed.append(int(term)) | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 except ValueError: | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     frac = float(term) | 
					
						
							|  |  |  |                     if frac > 1 or frac < 0: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |                         print >> self.stream, "Fraction argument must be in [0, 1]" | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |                         continue | 
					
						
							|  |  |  |                     processed.append(frac) | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  |                 except ValueError: | 
					
						
							|  |  |  |                     pass | 
					
						
							|  |  |  |                 processed.append(term) | 
					
						
							|  |  |  |             if self.stats: | 
					
						
							| 
									
										
										
										
											2003-02-27 20:14:51 +00:00
										 |  |  |                 getattr(self.stats, fn)(*processed) | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |                 print >> self.stream, "No statistics object is loaded." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             return 0 | 
					
						
							| 
									
										
										
										
											2001-04-26 07:32:38 +00:00
										 |  |  |         def generic_help(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Arguments may be:" | 
					
						
							|  |  |  |             print >> self.stream, "* An integer maximum number of entries to print." | 
					
						
							|  |  |  |             print >> self.stream, "* A decimal fractional number between 0 and 1, controlling" | 
					
						
							|  |  |  |             print >> self.stream, "  what fraction of selected entries to print." | 
					
						
							|  |  |  |             print >> self.stream, "* A regular expression; only entries with function names" | 
					
						
							|  |  |  |             print >> self.stream, "  that match it are printed." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_add(self, line): | 
					
						
							|  |  |  |             self.stats.add(line) | 
					
						
							|  |  |  |             return 0 | 
					
						
							|  |  |  |         def help_add(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Add profile info from given file to current statistics object." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_callees(self, line): | 
					
						
							| 
									
										
										
										
											2001-04-14 15:16:05 +00:00
										 |  |  |             return self.generic('print_callees', line) | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |         def help_callees(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Print callees statistics from the current stat object." | 
					
						
							| 
									
										
										
										
											2001-04-26 07:32:38 +00:00
										 |  |  |             self.generic_help() | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_callers(self, line): | 
					
						
							| 
									
										
										
										
											2001-04-14 15:16:05 +00:00
										 |  |  |             return self.generic('print_callers', line) | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |         def help_callers(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Print callers statistics from the current stat object." | 
					
						
							| 
									
										
										
										
											2001-04-26 07:32:38 +00:00
										 |  |  |             self.generic_help() | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_EOF(self, line): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "" | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             return 1 | 
					
						
							|  |  |  |         def help_EOF(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Leave the profile brower." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_quit(self, line): | 
					
						
							|  |  |  |             return 1 | 
					
						
							|  |  |  |         def help_quit(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Leave the profile brower." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_read(self, line): | 
					
						
							|  |  |  |             if line: | 
					
						
							|  |  |  |                 try: | 
					
						
							|  |  |  |                     self.stats = Stats(line) | 
					
						
							|  |  |  |                 except IOError, args: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |                     print >> self.stream, args[1] | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |                     return | 
					
						
							|  |  |  |                 self.prompt = line + "% " | 
					
						
							| 
									
										
										
										
											2001-06-07 05:49:05 +00:00
										 |  |  |             elif len(self.prompt) > 2: | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |                 line = self.prompt[-2:] | 
					
						
							|  |  |  |             else: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |                 print >> self.stream, "No statistics object is current -- cannot reload." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             return 0 | 
					
						
							|  |  |  |         def help_read(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Read in profile data from a specified file." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_reverse(self, line): | 
					
						
							|  |  |  |             self.stats.reverse_order() | 
					
						
							|  |  |  |             return 0 | 
					
						
							|  |  |  |         def help_reverse(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Reverse the sort order of the profiling report." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_sort(self, line): | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             abbrevs = self.stats.get_sort_arg_defs() | 
					
						
							| 
									
										
										
										
											2001-04-26 07:32:38 +00:00
										 |  |  |             if line and not filter(lambda x,a=abbrevs: x not in a,line.split()): | 
					
						
							| 
									
										
										
										
											2003-02-27 20:14:51 +00:00
										 |  |  |                 self.stats.sort_stats(*line.split()) | 
					
						
							| 
									
										
										
										
											2001-04-26 07:32:38 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |                 print >> self.stream, "Valid sort keys (unique prefixes are accepted):" | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |                 for (key, value) in Stats.sort_arg_dict_default.iteritems(): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |                     print >> self.stream, "%s -- %s" % (key, value[1]) | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             return 0 | 
					
						
							|  |  |  |         def help_sort(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Sort profile data according to specified keys." | 
					
						
							|  |  |  |             print >> self.stream, "(Typing `sort' without arguments lists valid keys.)" | 
					
						
							| 
									
										
										
										
											2001-07-30 10:21:13 +00:00
										 |  |  |         def complete_sort(self, text, *args): | 
					
						
							| 
									
										
										
										
											2002-06-02 18:55:56 +00:00
										 |  |  |             return [a for a in Stats.sort_arg_dict_default if a.startswith(text)] | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_stats(self, line): | 
					
						
							|  |  |  |             return self.generic('print_stats', line) | 
					
						
							|  |  |  |         def help_stats(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Print statistics from the current stat object." | 
					
						
							| 
									
										
										
										
											2001-04-26 07:32:38 +00:00
										 |  |  |             self.generic_help() | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def do_strip(self, line): | 
					
						
							| 
									
										
										
										
											2001-04-14 15:16:05 +00:00
										 |  |  |             self.stats.strip_dirs() | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |             return 0 | 
					
						
							|  |  |  |         def help_strip(self): | 
					
						
							| 
									
										
										
										
											2006-04-21 02:31:07 +00:00
										 |  |  |             print >> self.stream, "Strip leading path information from filenames in the report." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         def postcmd(self, stop, line): | 
					
						
							|  |  |  |             if stop: | 
					
						
							|  |  |  |                 return stop | 
					
						
							|  |  |  |             return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     import sys | 
					
						
							|  |  |  |     if len(sys.argv) > 1: | 
					
						
							|  |  |  |         initprofile = sys.argv[1] | 
					
						
							|  |  |  |     else: | 
					
						
							|  |  |  |         initprofile = None | 
					
						
							|  |  |  |     try: | 
					
						
							| 
									
										
										
										
											2006-06-11 07:27:56 +00:00
										 |  |  |         browser = ProfileBrowser(initprofile) | 
					
						
							|  |  |  |         print >> browser.stream, "Welcome to the profile statistics browser." | 
					
						
							|  |  |  |         browser.cmdloop() | 
					
						
							|  |  |  |         print >> browser.stream, "Goodbye." | 
					
						
							| 
									
										
										
										
											2001-04-13 00:23:01 +00:00
										 |  |  |     except KeyboardInterrupt: | 
					
						
							|  |  |  |         pass | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | # That's all, folks. |