| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  | """High-perfomance logging profiler, mostly written in C.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import _hotshot | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from _hotshot import ProfilerError | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Profile: | 
					
						
							|  |  |  |     def __init__(self, logfn, lineevents=0, linetimings=1): | 
					
						
							|  |  |  |         self.lineevents = lineevents and 1 or 0 | 
					
						
							|  |  |  |         self.linetimings = (linetimings and lineevents) and 1 or 0 | 
					
						
							|  |  |  |         self._prof = p = _hotshot.profiler( | 
					
						
							|  |  |  |             logfn, self.lineevents, self.linetimings) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         # Attempt to avoid confusing results caused by the presence of | 
					
						
							|  |  |  |         # Python wrappers around these functions, but only if we can | 
					
						
							|  |  |  |         # be sure the methods have not been overridden or extended. | 
					
						
							|  |  |  |         if self.__class__ is Profile: | 
					
						
							|  |  |  |             self.close = p.close | 
					
						
							|  |  |  |             self.start = p.start | 
					
						
							|  |  |  |             self.stop = p.stop | 
					
						
							|  |  |  |             self.addinfo = p.addinfo | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |     def close(self): | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         """Close the logfile and terminate the profiler.""" | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |         self._prof.close() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-07-18 19:17:54 +00:00
										 |  |  |     def fileno(self): | 
					
						
							|  |  |  |         """Return the file descriptor of the profiler's log file.""" | 
					
						
							|  |  |  |         return self._prof.fileno() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |     def start(self): | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         """Start the profiler.""" | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |         self._prof.start() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def stop(self): | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         """Stop the profiler.""" | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |         self._prof.stop() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-29 20:48:09 +00:00
										 |  |  |     def addinfo(self, key, value): | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         """Add an arbitrary labelled value to the profile log.""" | 
					
						
							| 
									
										
										
										
											2001-10-29 20:48:09 +00:00
										 |  |  |         self._prof.addinfo(key, value) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |     # These methods offer the same interface as the profile.Profile class, | 
					
						
							|  |  |  |     # but delegate most of the work to the C implementation underneath. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def run(self, cmd): | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         """Profile an exec-compatible string in the script
 | 
					
						
							|  |  |  |         environment. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The globals from the __main__ module are used as both the | 
					
						
							|  |  |  |         globals and locals for the script. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |         import __main__ | 
					
						
							|  |  |  |         dict = __main__.__dict__ | 
					
						
							|  |  |  |         return self.runctx(cmd, dict, dict) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def runctx(self, cmd, globals, locals): | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         """Evaluate an exec-compatible string in a specific
 | 
					
						
							|  |  |  |         environment. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         The string is compiled before profiling begins. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2001-10-12 20:56:29 +00:00
										 |  |  |         code = compile(cmd, "<string>", "exec") | 
					
						
							|  |  |  |         self._prof.runcode(code, globals, locals) | 
					
						
							|  |  |  |         return self | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def runcall(self, func, *args, **kw): | 
					
						
							| 
									
										
										
										
											2002-04-16 19:27:23 +00:00
										 |  |  |         """Profile a single call of a callable.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Additional positional and keyword arguments may be passed | 
					
						
							|  |  |  |         along; the result of the call is returned, and exceptions are | 
					
						
							|  |  |  |         allowed to propogate cleanly, while ensuring that profiling is | 
					
						
							|  |  |  |         disabled on the way out. | 
					
						
							|  |  |  |         """
 | 
					
						
							| 
									
										
										
										
											2001-10-15 22:14:29 +00:00
										 |  |  |         return self._prof.runcall(func, args, kw) |