| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  | """Debugger basics""" | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | import sys | 
					
						
							| 
									
										
										
										
											1999-09-09 23:24:33 +00:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											1996-10-15 14:40:21 +00:00
										 |  |  | import types | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-20 19:54:20 +00:00
										 |  |  | __all__ = ["BdbQuit","Bdb","Breakpoint"] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2002-03-31 14:06:41 +00:00
										 |  |  | class BdbQuit(Exception): | 
					
						
							|  |  |  |     """Exception to give up completely""" | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1999-01-25 20:51:34 +00:00
										 |  |  | class Bdb: | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     """Generic Python debugger base class.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This class takes care of details of the trace facility; | 
					
						
							|  |  |  |     a derived class should implement user interaction. | 
					
						
							|  |  |  |     The standard debugger class (pdb.Pdb) is an example. | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def __init__(self): | 
					
						
							|  |  |  |         self.breaks = {} | 
					
						
							|  |  |  |         self.fncache = {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def canonic(self, filename): | 
					
						
							| 
									
										
										
										
											2001-11-29 02:50:15 +00:00
										 |  |  |         if filename == "<" + filename[1:-1] + ">": | 
					
						
							|  |  |  |             return filename | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         canonic = self.fncache.get(filename) | 
					
						
							|  |  |  |         if not canonic: | 
					
						
							|  |  |  |             canonic = os.path.abspath(filename) | 
					
						
							| 
									
										
										
										
											2002-02-25 23:23:24 +00:00
										 |  |  |             canonic = os.path.normcase(canonic) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             self.fncache[filename] = canonic | 
					
						
							|  |  |  |         return canonic | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def reset(self): | 
					
						
							|  |  |  |         import linecache | 
					
						
							|  |  |  |         linecache.checkcache() | 
					
						
							|  |  |  |         self.botframe = None | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |         self._set_stopinfo(None, None) | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def trace_dispatch(self, frame, event, arg): | 
					
						
							|  |  |  |         if self.quitting: | 
					
						
							|  |  |  |             return # None | 
					
						
							|  |  |  |         if event == 'line': | 
					
						
							|  |  |  |             return self.dispatch_line(frame) | 
					
						
							|  |  |  |         if event == 'call': | 
					
						
							|  |  |  |             return self.dispatch_call(frame, arg) | 
					
						
							|  |  |  |         if event == 'return': | 
					
						
							|  |  |  |             return self.dispatch_return(frame, arg) | 
					
						
							|  |  |  |         if event == 'exception': | 
					
						
							|  |  |  |             return self.dispatch_exception(frame, arg) | 
					
						
							| 
									
										
										
										
											2004-03-24 21:57:10 +00:00
										 |  |  |         if event == 'c_call': | 
					
						
							|  |  |  |             return self.trace_dispatch | 
					
						
							|  |  |  |         if event == 'c_exception': | 
					
						
							|  |  |  |             return self.trace_dispatch | 
					
						
							|  |  |  |         if event == 'c_return': | 
					
						
							|  |  |  |             return self.trace_dispatch | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |         print 'bdb.Bdb.dispatch: unknown debugging event:', repr(event) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         return self.trace_dispatch | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def dispatch_line(self, frame): | 
					
						
							|  |  |  |         if self.stop_here(frame) or self.break_here(frame): | 
					
						
							|  |  |  |             self.user_line(frame) | 
					
						
							|  |  |  |             if self.quitting: raise BdbQuit | 
					
						
							|  |  |  |         return self.trace_dispatch | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def dispatch_call(self, frame, arg): | 
					
						
							|  |  |  |         # XXX 'arg' is no longer used | 
					
						
							|  |  |  |         if self.botframe is None: | 
					
						
							|  |  |  |             # First call of dispatch since reset() | 
					
						
							| 
									
										
										
										
											2002-05-28 08:04:00 +00:00
										 |  |  |             self.botframe = frame.f_back # (CT) Note that this may also be None! | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             return self.trace_dispatch | 
					
						
							|  |  |  |         if not (self.stop_here(frame) or self.break_anywhere(frame)): | 
					
						
							|  |  |  |             # No need to trace this function | 
					
						
							|  |  |  |             return # None | 
					
						
							|  |  |  |         self.user_call(frame, arg) | 
					
						
							|  |  |  |         if self.quitting: raise BdbQuit | 
					
						
							|  |  |  |         return self.trace_dispatch | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def dispatch_return(self, frame, arg): | 
					
						
							|  |  |  |         if self.stop_here(frame) or frame == self.returnframe: | 
					
						
							|  |  |  |             self.user_return(frame, arg) | 
					
						
							|  |  |  |             if self.quitting: raise BdbQuit | 
					
						
							| 
									
										
										
										
											2001-06-25 18:01:24 +00:00
										 |  |  |         return self.trace_dispatch | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def dispatch_exception(self, frame, arg): | 
					
						
							|  |  |  |         if self.stop_here(frame): | 
					
						
							|  |  |  |             self.user_exception(frame, arg) | 
					
						
							|  |  |  |             if self.quitting: raise BdbQuit | 
					
						
							|  |  |  |         return self.trace_dispatch | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     # Normally derived classes don't override the following | 
					
						
							|  |  |  |     # methods, but they may if they want to redefine the | 
					
						
							|  |  |  |     # definition of stopping and breakpoints. | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def stop_here(self, frame): | 
					
						
							| 
									
										
										
										
											2002-05-29 00:54:38 +00:00
										 |  |  |         # (CT) stopframe may now also be None, see dispatch_call. | 
					
						
							|  |  |  |         # (CT) the former test for None is therefore removed from here. | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if frame is self.stopframe: | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |             return frame.f_lineno >= self.stoplineno | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         while frame is not None and frame is not self.stopframe: | 
					
						
							|  |  |  |             if frame is self.botframe: | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |                 return True | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             frame = frame.f_back | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |         return False | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def break_here(self, frame): | 
					
						
							|  |  |  |         filename = self.canonic(frame.f_code.co_filename) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if not filename in self.breaks: | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |             return False | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         lineno = frame.f_lineno | 
					
						
							|  |  |  |         if not lineno in self.breaks[filename]: | 
					
						
							| 
									
										
										
										
											2004-08-30 13:29:44 +00:00
										 |  |  |             # The line itself has no breakpoint, but maybe the line is the | 
					
						
							|  |  |  |             # first line of a function with breakpoint set by function name. | 
					
						
							|  |  |  |             lineno = frame.f_code.co_firstlineno | 
					
						
							|  |  |  |             if not lineno in self.breaks[filename]: | 
					
						
							|  |  |  |                 return False | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         # flag says ok to delete temp. bp | 
					
						
							|  |  |  |         (bp, flag) = effective(filename, lineno, frame) | 
					
						
							|  |  |  |         if bp: | 
					
						
							|  |  |  |             self.currentbp = bp.number | 
					
						
							|  |  |  |             if (flag and bp.temporary): | 
					
						
							|  |  |  |                 self.do_clear(str(bp.number)) | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |             return True | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2002-04-04 22:55:58 +00:00
										 |  |  |             return False | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-04-08 15:05:16 +00:00
										 |  |  |     def do_clear(self, arg): | 
					
						
							|  |  |  |         raise NotImplementedError, "subclass of bdb must implement do_clear()" | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def break_anywhere(self, frame): | 
					
						
							| 
									
										
										
										
											2008-08-01 01:36:47 +00:00
										 |  |  |         return self.canonic(frame.f_code.co_filename) in self.breaks | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     # Derived classes should override the user_* methods | 
					
						
							|  |  |  |     # to gain control. | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def user_call(self, frame, argument_list): | 
					
						
							|  |  |  |         """This method is called when there is the remote possibility
 | 
					
						
							|  |  |  |         that we ever need to stop in this function."""
 | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def user_line(self, frame): | 
					
						
							|  |  |  |         """This method is called when we stop or break at this line.""" | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def user_return(self, frame, return_value): | 
					
						
							|  |  |  |         """This method is called when a return trap is set here.""" | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-08-01 01:36:47 +00:00
										 |  |  |     def user_exception(self, frame, exc_info): | 
					
						
							|  |  |  |         exc_type, exc_value, exc_traceback = exc_info | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         """This method is called if an exception occurs,
 | 
					
						
							|  |  |  |         but only if we are to stop at or just below this level."""
 | 
					
						
							|  |  |  |         pass | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |     def _set_stopinfo(self, stopframe, returnframe, stoplineno=-1): | 
					
						
							|  |  |  |         self.stopframe = stopframe | 
					
						
							|  |  |  |         self.returnframe = returnframe | 
					
						
							|  |  |  |         self.quitting = 0 | 
					
						
							|  |  |  |         self.stoplineno = stoplineno | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     # Derived classes and clients can call the following methods | 
					
						
							|  |  |  |     # to affect the stepping state. | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |     def set_until(self, frame): #the name "until" is borrowed from gdb | 
					
						
							|  |  |  |         """Stop when the line with the line no greater than the current one is
 | 
					
						
							|  |  |  |         reached or when returning from current frame"""
 | 
					
						
							|  |  |  |         self._set_stopinfo(frame, frame, frame.f_lineno+1) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def set_step(self): | 
					
						
							|  |  |  |         """Stop after one line of code.""" | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |         self._set_stopinfo(None,None) | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def set_next(self, frame): | 
					
						
							|  |  |  |         """Stop on the next line in or below the given frame.""" | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |         self._set_stopinfo(frame, None) | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def set_return(self, frame): | 
					
						
							|  |  |  |         """Stop when returning from the given frame.""" | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |         self._set_stopinfo(frame.f_back, frame) | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-11-07 11:35:30 +00:00
										 |  |  |     def set_trace(self, frame=None): | 
					
						
							|  |  |  |         """Start debugging from `frame`.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         If frame is not specified, debugging starts from caller's frame. | 
					
						
							|  |  |  |         """
 | 
					
						
							|  |  |  |         if frame is None: | 
					
						
							|  |  |  |             frame = sys._getframe().f_back | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         self.reset() | 
					
						
							|  |  |  |         while frame: | 
					
						
							|  |  |  |             frame.f_trace = self.trace_dispatch | 
					
						
							|  |  |  |             self.botframe = frame | 
					
						
							|  |  |  |             frame = frame.f_back | 
					
						
							|  |  |  |         self.set_step() | 
					
						
							|  |  |  |         sys.settrace(self.trace_dispatch) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def set_continue(self): | 
					
						
							|  |  |  |         # Don't stop except at breakpoints or when finished | 
					
						
							| 
									
										
										
										
											2008-05-11 14:13:25 +00:00
										 |  |  |         self._set_stopinfo(self.botframe, None) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if not self.breaks: | 
					
						
							|  |  |  |             # no breakpoints; run without debugger overhead | 
					
						
							|  |  |  |             sys.settrace(None) | 
					
						
							| 
									
										
										
										
											2002-05-28 08:04:00 +00:00
										 |  |  |             frame = sys._getframe().f_back | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             while frame and frame is not self.botframe: | 
					
						
							|  |  |  |                 del frame.f_trace | 
					
						
							|  |  |  |                 frame = frame.f_back | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def set_quit(self): | 
					
						
							|  |  |  |         self.stopframe = self.botframe | 
					
						
							|  |  |  |         self.returnframe = None | 
					
						
							|  |  |  |         self.quitting = 1 | 
					
						
							|  |  |  |         sys.settrace(None) | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     # Derived classes and clients can call the following methods | 
					
						
							|  |  |  |     # to manipulate breakpoints.  These methods return an | 
					
						
							|  |  |  |     # error message is something went wrong, None if all is well. | 
					
						
							|  |  |  |     # Set_break prints out the breakpoint line and file:lineno. | 
					
						
							|  |  |  |     # Call self.get_*break*() to see the breakpoints or better | 
					
						
							|  |  |  |     # for bp in Breakpoint.bpbynumber: if bp: bp.bpprint(). | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-30 13:29:44 +00:00
										 |  |  |     def set_break(self, filename, lineno, temporary=0, cond = None, | 
					
						
							|  |  |  |                   funcname=None): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         filename = self.canonic(filename) | 
					
						
							|  |  |  |         import linecache # Import as late as possible | 
					
						
							|  |  |  |         line = linecache.getline(filename, lineno) | 
					
						
							|  |  |  |         if not line: | 
					
						
							|  |  |  |             return 'Line %s:%d does not exist' % (filename, | 
					
						
							|  |  |  |                                    lineno) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if not filename in self.breaks: | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             self.breaks[filename] = [] | 
					
						
							|  |  |  |         list = self.breaks[filename] | 
					
						
							|  |  |  |         if not lineno in list: | 
					
						
							|  |  |  |             list.append(lineno) | 
					
						
							| 
									
										
										
										
											2004-08-30 13:29:44 +00:00
										 |  |  |         bp = Breakpoint(filename, lineno, temporary, cond, funcname) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def clear_break(self, filename, lineno): | 
					
						
							|  |  |  |         filename = self.canonic(filename) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if not filename in self.breaks: | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             return 'There are no breakpoints in %s' % filename | 
					
						
							|  |  |  |         if lineno not in self.breaks[filename]: | 
					
						
							|  |  |  |             return 'There is no breakpoint at %s:%d' % (filename, | 
					
						
							|  |  |  |                                     lineno) | 
					
						
							|  |  |  |         # If there's only one bp in the list for that file,line | 
					
						
							|  |  |  |         # pair, then remove the breaks entry | 
					
						
							|  |  |  |         for bp in Breakpoint.bplist[filename, lineno][:]: | 
					
						
							|  |  |  |             bp.deleteMe() | 
					
						
							|  |  |  |         if not Breakpoint.bplist.has_key((filename, lineno)): | 
					
						
							|  |  |  |             self.breaks[filename].remove(lineno) | 
					
						
							|  |  |  |         if not self.breaks[filename]: | 
					
						
							|  |  |  |             del self.breaks[filename] | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def clear_bpbynumber(self, arg): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             number = int(arg) | 
					
						
							|  |  |  |         except: | 
					
						
							|  |  |  |             return 'Non-numeric breakpoint number (%s)' % arg | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             bp = Breakpoint.bpbynumber[number] | 
					
						
							|  |  |  |         except IndexError: | 
					
						
							|  |  |  |             return 'Breakpoint number (%d) out of range' % number | 
					
						
							|  |  |  |         if not bp: | 
					
						
							|  |  |  |             return 'Breakpoint (%d) already deleted' % number | 
					
						
							|  |  |  |         self.clear_break(bp.file, bp.line) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def clear_all_file_breaks(self, filename): | 
					
						
							|  |  |  |         filename = self.canonic(filename) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if not filename in self.breaks: | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             return 'There are no breakpoints in %s' % filename | 
					
						
							|  |  |  |         for line in self.breaks[filename]: | 
					
						
							|  |  |  |             blist = Breakpoint.bplist[filename, line] | 
					
						
							|  |  |  |             for bp in blist: | 
					
						
							|  |  |  |                 bp.deleteMe() | 
					
						
							|  |  |  |         del self.breaks[filename] | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def clear_all_breaks(self): | 
					
						
							|  |  |  |         if not self.breaks: | 
					
						
							|  |  |  |             return 'There are no breakpoints' | 
					
						
							|  |  |  |         for bp in Breakpoint.bpbynumber: | 
					
						
							|  |  |  |             if bp: | 
					
						
							|  |  |  |                 bp.deleteMe() | 
					
						
							|  |  |  |         self.breaks = {} | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def get_break(self, filename, lineno): | 
					
						
							|  |  |  |         filename = self.canonic(filename) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         return filename in self.breaks and \ | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             lineno in self.breaks[filename] | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def get_breaks(self, filename, lineno): | 
					
						
							|  |  |  |         filename = self.canonic(filename) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         return filename in self.breaks and \ | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             lineno in self.breaks[filename] and \ | 
					
						
							|  |  |  |             Breakpoint.bplist[filename, lineno] or [] | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def get_file_breaks(self, filename): | 
					
						
							|  |  |  |         filename = self.canonic(filename) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if filename in self.breaks: | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             return self.breaks[filename] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             return [] | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def get_all_breaks(self): | 
					
						
							|  |  |  |         return self.breaks | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     # Derived classes and clients can call the following method | 
					
						
							|  |  |  |     # to get a data structure representing a stack trace. | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def get_stack(self, f, t): | 
					
						
							|  |  |  |         stack = [] | 
					
						
							|  |  |  |         if t and t.tb_frame is f: | 
					
						
							|  |  |  |             t = t.tb_next | 
					
						
							|  |  |  |         while f is not None: | 
					
						
							|  |  |  |             stack.append((f, f.f_lineno)) | 
					
						
							|  |  |  |             if f is self.botframe: | 
					
						
							|  |  |  |                 break | 
					
						
							|  |  |  |             f = f.f_back | 
					
						
							|  |  |  |         stack.reverse() | 
					
						
							|  |  |  |         i = max(0, len(stack) - 1) | 
					
						
							|  |  |  |         while t is not None: | 
					
						
							|  |  |  |             stack.append((t.tb_frame, t.tb_lineno)) | 
					
						
							|  |  |  |             t = t.tb_next | 
					
						
							| 
									
										
										
										
											2008-10-22 21:16:34 +00:00
										 |  |  |         if f is None: | 
					
						
							|  |  |  |             i = max(0, len(stack) - 1) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         return stack, i | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def format_stack_entry(self, frame_lineno, lprefix=': '): | 
					
						
							| 
									
										
										
										
											2008-05-23 05:03:59 +00:00
										 |  |  |         import linecache, repr | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         frame, lineno = frame_lineno | 
					
						
							|  |  |  |         filename = self.canonic(frame.f_code.co_filename) | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |         s = '%s(%r)' % (filename, lineno) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if frame.f_code.co_name: | 
					
						
							|  |  |  |             s = s + frame.f_code.co_name | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             s = s + "<lambda>" | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if '__args__' in frame.f_locals: | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             args = frame.f_locals['__args__'] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             args = None | 
					
						
							|  |  |  |         if args: | 
					
						
							| 
									
										
										
										
											2008-05-23 05:03:59 +00:00
										 |  |  |             s = s + repr.repr(args) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             s = s + '()' | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if '__return__' in frame.f_locals: | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |             rv = frame.f_locals['__return__'] | 
					
						
							|  |  |  |             s = s + '->' | 
					
						
							| 
									
										
										
										
											2008-05-23 05:03:59 +00:00
										 |  |  |             s = s + repr.repr(rv) | 
					
						
							| 
									
										
										
										
											2008-12-14 10:54:50 +00:00
										 |  |  |         line = linecache.getline(filename, lineno, frame.f_globals) | 
					
						
							| 
									
										
										
										
											2001-02-09 05:07:04 +00:00
										 |  |  |         if line: s = s + lprefix + line.strip() | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         return s | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     # The following two methods can be called by clients to use | 
					
						
							|  |  |  |     # a debugger to debug a statement, given as a string. | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def run(self, cmd, globals=None, locals=None): | 
					
						
							|  |  |  |         if globals is None: | 
					
						
							|  |  |  |             import __main__ | 
					
						
							|  |  |  |             globals = __main__.__dict__ | 
					
						
							|  |  |  |         if locals is None: | 
					
						
							|  |  |  |             locals = globals | 
					
						
							|  |  |  |         self.reset() | 
					
						
							|  |  |  |         sys.settrace(self.trace_dispatch) | 
					
						
							|  |  |  |         if not isinstance(cmd, types.CodeType): | 
					
						
							|  |  |  |             cmd = cmd+'\n' | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2008-03-28 20:56:00 +00:00
										 |  |  |             exec cmd in globals, locals | 
					
						
							|  |  |  |         except BdbQuit: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             self.quitting = 1 | 
					
						
							|  |  |  |             sys.settrace(None) | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def runeval(self, expr, globals=None, locals=None): | 
					
						
							|  |  |  |         if globals is None: | 
					
						
							|  |  |  |             import __main__ | 
					
						
							|  |  |  |             globals = __main__.__dict__ | 
					
						
							|  |  |  |         if locals is None: | 
					
						
							|  |  |  |             locals = globals | 
					
						
							|  |  |  |         self.reset() | 
					
						
							|  |  |  |         sys.settrace(self.trace_dispatch) | 
					
						
							|  |  |  |         if not isinstance(expr, types.CodeType): | 
					
						
							|  |  |  |             expr = expr+'\n' | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2008-03-28 20:56:00 +00:00
										 |  |  |             return eval(expr, globals, locals) | 
					
						
							|  |  |  |         except BdbQuit: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             self.quitting = 1 | 
					
						
							|  |  |  |             sys.settrace(None) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def runctx(self, cmd, globals, locals): | 
					
						
							|  |  |  |         # B/W compatibility | 
					
						
							|  |  |  |         self.run(cmd, globals, locals) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # This method is more useful to debug a single function call. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-10-24 00:32:24 +00:00
										 |  |  |     def runcall(self, func, *args, **kwds): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         self.reset() | 
					
						
							|  |  |  |         sys.settrace(self.trace_dispatch) | 
					
						
							|  |  |  |         res = None | 
					
						
							|  |  |  |         try: | 
					
						
							| 
									
										
										
										
											2008-03-28 20:56:00 +00:00
										 |  |  |             res = func(*args, **kwds) | 
					
						
							|  |  |  |         except BdbQuit: | 
					
						
							|  |  |  |             pass | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             self.quitting = 1 | 
					
						
							|  |  |  |             sys.settrace(None) | 
					
						
							|  |  |  |         return res | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | def set_trace(): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     Bdb().set_trace() | 
					
						
							| 
									
										
										
										
											1994-08-01 11:34:53 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-09-11 22:38:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | class Breakpoint: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     """Breakpoint class
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Implements temporary breakpoints, ignore counts, disabling and | 
					
						
							|  |  |  |     (re)-enabling, and conditionals. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Breakpoints are indexed by number through bpbynumber and by | 
					
						
							|  |  |  |     the file,line tuple using bplist.  The former points to a | 
					
						
							|  |  |  |     single instance of class Breakpoint.  The latter points to a | 
					
						
							|  |  |  |     list of such instances since there may be more than one | 
					
						
							|  |  |  |     breakpoint per line. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # XXX Keeping state in the class is a mistake -- this means | 
					
						
							|  |  |  |     # you cannot have more than one active Bdb instance. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     next = 1        # Next bp to be assigned | 
					
						
							|  |  |  |     bplist = {}     # indexed by (file, lineno) tuple | 
					
						
							|  |  |  |     bpbynumber = [None] # Each entry is None or an instance of Bpt | 
					
						
							|  |  |  |                 # index 0 is unused, except for marking an | 
					
						
							|  |  |  |                 # effective break .... see effective() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-30 13:29:44 +00:00
										 |  |  |     def __init__(self, file, line, temporary=0, cond=None, funcname=None): | 
					
						
							|  |  |  |         self.funcname = funcname | 
					
						
							|  |  |  |         # Needed if funcname is not None. | 
					
						
							|  |  |  |         self.func_first_executable_line = None | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         self.file = file    # This better be in canonical form! | 
					
						
							|  |  |  |         self.line = line | 
					
						
							|  |  |  |         self.temporary = temporary | 
					
						
							|  |  |  |         self.cond = cond | 
					
						
							|  |  |  |         self.enabled = 1 | 
					
						
							|  |  |  |         self.ignore = 0 | 
					
						
							|  |  |  |         self.hits = 0 | 
					
						
							|  |  |  |         self.number = Breakpoint.next | 
					
						
							|  |  |  |         Breakpoint.next = Breakpoint.next + 1 | 
					
						
							|  |  |  |         # Build the two lists | 
					
						
							|  |  |  |         self.bpbynumber.append(self) | 
					
						
							|  |  |  |         if self.bplist.has_key((file, line)): | 
					
						
							|  |  |  |             self.bplist[file, line].append(self) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             self.bplist[file, line] = [self] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def deleteMe(self): | 
					
						
							|  |  |  |         index = (self.file, self.line) | 
					
						
							|  |  |  |         self.bpbynumber[self.number] = None   # No longer in list | 
					
						
							|  |  |  |         self.bplist[index].remove(self) | 
					
						
							|  |  |  |         if not self.bplist[index]: | 
					
						
							|  |  |  |             # No more bp for this f:l combo | 
					
						
							|  |  |  |             del self.bplist[index] | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def enable(self): | 
					
						
							|  |  |  |         self.enabled = 1 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def disable(self): | 
					
						
							|  |  |  |         self.enabled = 0 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-05-10 17:13:20 +00:00
										 |  |  |     def bpprint(self, out=None): | 
					
						
							|  |  |  |         if out is None: | 
					
						
							|  |  |  |             out = sys.stdout | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if self.temporary: | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  |             disp = 'del  ' | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  |             disp = 'keep ' | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if self.enabled: | 
					
						
							| 
									
										
										
										
											2006-04-15 08:41:11 +00:00
										 |  |  |             disp = disp + 'yes  ' | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2006-04-15 08:41:11 +00:00
										 |  |  |             disp = disp + 'no   ' | 
					
						
							| 
									
										
										
										
											2006-05-10 17:13:20 +00:00
										 |  |  |         print >>out, '%-4dbreakpoint   %s at %s:%d' % (self.number, disp, | 
					
						
							|  |  |  |                                                        self.file, self.line) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if self.cond: | 
					
						
							| 
									
										
										
										
											2006-05-10 17:13:20 +00:00
										 |  |  |             print >>out, '\tstop only if %s' % (self.cond,) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if self.ignore: | 
					
						
							| 
									
										
										
										
											2006-05-10 17:13:20 +00:00
										 |  |  |             print >>out, '\tignore next %d hits' % (self.ignore) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         if (self.hits): | 
					
						
							|  |  |  |             if (self.hits > 1): ss = 's' | 
					
						
							|  |  |  |             else: ss = '' | 
					
						
							| 
									
										
										
										
											2006-05-10 17:13:20 +00:00
										 |  |  |             print >>out, ('\tbreakpoint already hit %d time%s' % | 
					
						
							|  |  |  |                           (self.hits, ss)) | 
					
						
							| 
									
										
										
										
											1998-09-11 22:38:35 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # -----------end of Breakpoint class---------- | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-08-30 13:29:44 +00:00
										 |  |  | def checkfuncname(b, frame): | 
					
						
							|  |  |  |     """Check whether we should break here because of `b.funcname`.""" | 
					
						
							|  |  |  |     if not b.funcname: | 
					
						
							|  |  |  |         # Breakpoint was set via line number. | 
					
						
							|  |  |  |         if b.line != frame.f_lineno: | 
					
						
							|  |  |  |             # Breakpoint was set at a line with a def statement and the function | 
					
						
							|  |  |  |             # defined is called: don't break. | 
					
						
							|  |  |  |             return False | 
					
						
							|  |  |  |         return True | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # Breakpoint set via function name. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if frame.f_code.co_name != b.funcname: | 
					
						
							|  |  |  |         # It's not a function call, but rather execution of def statement. | 
					
						
							|  |  |  |         return False | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # We are in the right frame. | 
					
						
							|  |  |  |     if not b.func_first_executable_line: | 
					
						
							|  |  |  |         # The function is entered for the 1st time. | 
					
						
							|  |  |  |         b.func_first_executable_line = frame.f_lineno | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if  b.func_first_executable_line != frame.f_lineno: | 
					
						
							|  |  |  |         # But we are not at the first line number: don't break. | 
					
						
							|  |  |  |         return False | 
					
						
							|  |  |  |     return True | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-09-11 22:38:35 +00:00
										 |  |  | # Determines if there is an effective (active) breakpoint at this | 
					
						
							|  |  |  | # line of code.  Returns breakpoint number or 0 if none | 
					
						
							|  |  |  | def effective(file, line, frame): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     """Determine which breakpoint for this file:line is to be acted upon.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Called only if we know there is a bpt at this | 
					
						
							|  |  |  |     location.  Returns breakpoint that was triggered and a flag | 
					
						
							|  |  |  |     that indicates if it is ok to delete a temporary bp. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  |     possibles = Breakpoint.bplist[file,line] | 
					
						
							|  |  |  |     for i in range(0, len(possibles)): | 
					
						
							|  |  |  |         b = possibles[i] | 
					
						
							|  |  |  |         if b.enabled == 0: | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2004-08-30 13:29:44 +00:00
										 |  |  |         if not checkfuncname(b, frame): | 
					
						
							|  |  |  |             continue | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         # Count every hit when bp is enabled | 
					
						
							|  |  |  |         b.hits = b.hits + 1 | 
					
						
							|  |  |  |         if not b.cond: | 
					
						
							|  |  |  |             # If unconditional, and ignoring, | 
					
						
							|  |  |  |             # go on to next, else break | 
					
						
							|  |  |  |             if b.ignore > 0: | 
					
						
							|  |  |  |                 b.ignore = b.ignore -1 | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             else: | 
					
						
							|  |  |  |                 # breakpoint and marker that's ok | 
					
						
							|  |  |  |                 # to delete if temporary | 
					
						
							|  |  |  |                 return (b,1) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             # Conditional bp. | 
					
						
							|  |  |  |             # Ignore count applies only to those bpt hits where the | 
					
						
							|  |  |  |             # condition evaluates to true. | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 val = eval(b.cond, frame.f_globals, | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  |                        frame.f_locals) | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |                 if val: | 
					
						
							|  |  |  |                     if b.ignore > 0: | 
					
						
							|  |  |  |                         b.ignore = b.ignore -1 | 
					
						
							|  |  |  |                         # continue | 
					
						
							|  |  |  |                     else: | 
					
						
							|  |  |  |                         return (b,1) | 
					
						
							|  |  |  |                 # else: | 
					
						
							|  |  |  |                 #   continue | 
					
						
							|  |  |  |             except: | 
					
						
							|  |  |  |                 # if eval fails, most conservative | 
					
						
							|  |  |  |                 # thing is to stop on breakpoint | 
					
						
							| 
									
										
										
										
											2001-01-14 21:54:20 +00:00
										 |  |  |                 # regardless of ignore count. | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |                 # Don't delete temporary, | 
					
						
							|  |  |  |                 # as another hint to user. | 
					
						
							|  |  |  |                 return (b,0) | 
					
						
							|  |  |  |     return (None, None) | 
					
						
							| 
									
										
										
										
											1998-09-11 22:38:35 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | # -------------------- testing -------------------- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Tdb(Bdb): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def user_call(self, frame, args): | 
					
						
							|  |  |  |         name = frame.f_code.co_name | 
					
						
							|  |  |  |         if not name: name = '???' | 
					
						
							|  |  |  |         print '+++ call', name, args | 
					
						
							|  |  |  |     def user_line(self, frame): | 
					
						
							| 
									
										
										
										
											2001-02-09 05:07:04 +00:00
										 |  |  |         import linecache | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |         name = frame.f_code.co_name | 
					
						
							|  |  |  |         if not name: name = '???' | 
					
						
							|  |  |  |         fn = self.canonic(frame.f_code.co_filename) | 
					
						
							| 
									
										
										
										
											2008-12-14 10:54:50 +00:00
										 |  |  |         line = linecache.getline(fn, frame.f_lineno, frame.f_globals) | 
					
						
							| 
									
										
										
										
											2001-02-09 05:07:04 +00:00
										 |  |  |         print '+++', fn, frame.f_lineno, name, ':', line.strip() | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     def user_return(self, frame, retval): | 
					
						
							|  |  |  |         print '+++ return', retval | 
					
						
							|  |  |  |     def user_exception(self, frame, exc_stuff): | 
					
						
							|  |  |  |         print '+++ exception', exc_stuff | 
					
						
							|  |  |  |         self.set_continue() | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def foo(n): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     print 'foo(', n, ')' | 
					
						
							|  |  |  |     x = bar(n*10) | 
					
						
							|  |  |  |     print 'bar returned', x | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def bar(a): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     print 'bar(', a, ')' | 
					
						
							|  |  |  |     return a/2 | 
					
						
							| 
									
										
										
										
											1992-01-22 22:21:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | def test(): | 
					
						
							| 
									
										
										
										
											2000-02-02 15:10:15 +00:00
										 |  |  |     t = Tdb() | 
					
						
							|  |  |  |     t.run('import bdb; bdb.foo(10)') | 
					
						
							| 
									
										
										
										
											2001-02-09 05:07:04 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | # end |