##// END OF EJS Templates
apply rocky's pydb-debug patch (disable py2.5 checking)
apply rocky's pydb-debug patch (disable py2.5 checking)

File last commit:

r468:f0f39279
r468:f0f39279
Show More
Debugger.py
414 lines | 14.6 KiB | text/x-python | PythonLexer
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 # -*- coding: utf-8 -*-
"""
Pdb debugger class.
Modified from the standard pdb.Pdb class to avoid including readline, so that
the command line completion of other programs which include this isn't
damaged.
In the future, this class will be expanded with improvements over the standard
pdb.
The code in this file is mainly lifted out of cmd.py in Python 2.2, with minor
changes. Licensing should therefore be under the standard Python terms. For
details on the PSF (Python Software Foundation) standard license, see:
http://www.python.org/2.2.3/license.html
vivainio
apply rocky's pydb-debug patch (disable py2.5 checking)
r468 $Id: Debugger.py 1954 2006-11-29 09:39:44Z vivainio $"""
fperez
Small fix in ultraTB, and fix autocall....
r88
#*****************************************************************************
#
# Since this file is essentially a modified copy of the pdb module which is
# part of the standard Python distribution, I assume that the proper procedure
# is to maintain its copyright as belonging to the Python Software Foundation
# (in addition to my own, for all new code).
#
# Copyright (C) 2001 Python Software Foundation, www.python.org
# Copyright (C) 2005-2006 Fernando Perez. <fperez@colorado.edu>
#
# Distributed under the terms of the BSD License. The full license is in
# the file COPYING, distributed as part of this software.
#
#*****************************************************************************
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 from IPython import Release
__author__ = '%s <%s>' % Release.authors['Fernando']
__license__ = 'Python'
fperez
Cosmetic cleanups: put all imports in a single line, and sort them...
r52 import bdb
import cmd
import linecache
import os
import sys
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46 from IPython import PyColorize, ColorANSI
from IPython.genutils import Term
from IPython.excolors import ExceptionColors
vivainio
Last set of Rocky's patches for pydb integration
r393 # See if we can use pydb.
has_pydb = False
prompt = 'ipdb>'
vivainio
apply rocky's pydb-debug patch (disable py2.5 checking)
r468 try:
import pydb
if hasattr(pydb.pydb, "runl"):
has_pydb = True
from pydb import Pdb as OldPdb
prompt = 'ipydb>'
vivainio
Last set of Rocky's patches for pydb integration
r393 except ImportError:
pass
if has_pydb:
from pydb import Pdb as OldPdb
else:
from pdb import Pdb as OldPdb
def decorate_fn_with_doc(new_fn, old_fn, additional_text=""):
"""Make new_fn have old_fn's doc string. This is particularly useful
for the do_... commands that hook into the help system.
Adapted from from a comp.lang.python posting
by Duncan Booth."""
def wrapper(*args, **kw):
return new_fn(*args, **kw)
if old_fn.__doc__:
wrapper.__doc__ = old_fn.__doc__ + additional_text
return wrapper
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46 def _file_lines(fname):
"""Return the contents of a named file as a list of lines.
This function never raises an IOError exception: if the file can't be
read, it simply returns an empty list."""
try:
outfile = open(fname)
except IOError:
return []
else:
out = outfile.readlines()
outfile.close()
return out
vivainio
Last set of Rocky's patches for pydb integration
r393 class Pdb(OldPdb):
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 """Modified Pdb class, does not load readline."""
fperez
- fix missing __file__ for scripts run via %run....
r122
vivainio
apply rocky's pydb-debug patch (disable py2.5 checking)
r468 if sys.version[:3] >= '2.5' or has_pydb:
fperez
Apply Ville's patch, closes #87
r367 def __init__(self,color_scheme='NoColor',completekey=None,
stdin=None, stdout=None):
fperez
- Cleanup [1786], which went in with unfinished stuff by accident....
r368 # Parent constructor:
vivainio
Last set of Rocky's patches for pydb integration
r393 OldPdb.__init__(self,completekey,stdin,stdout)
fperez
- Cleanup [1786], which went in with unfinished stuff by accident....
r368
fperez
Apply Ville's patch, closes #87
r367 # IPython changes...
vivainio
Last set of Rocky's patches for pydb integration
r393 self.prompt = prompt # The default prompt is '(Pdb)'
self.is_pydb = prompt == 'ipydb>'
if self.is_pydb:
# iplib.py's ipalias seems to want pdb's checkline
# which located in pydb.fn
import pydb.fns
self.checkline = lambda filename, lineno: \
pydb.fns.checkline(self, filename, lineno)
self.curframe = None
self.do_restart = self.new_do_restart
self.old_all_completions = __IPYTHON__.Completer.all_completions
__IPYTHON__.Completer.all_completions=self.all_completions
# Do we have access to pydb's list command parser?
self.do_list = decorate_fn_with_doc(self.list_command_pydb,
OldPdb.do_list)
self.do_l = self.do_list
self.do_frame = decorate_fn_with_doc(self.new_do_frame,
OldPdb.do_frame)
fperez
Apply Ville's patch, closes #87
r367 self.aliases = {}
# Create color table: we copy the default one from the traceback
# module and add a few attributes needed for debugging
self.color_scheme_table = ExceptionColors.copy()
# shorthands
C = ColorANSI.TermColors
cst = self.color_scheme_table
cst['NoColor'].colors.breakpoint_enabled = C.NoColor
cst['NoColor'].colors.breakpoint_disabled = C.NoColor
cst['Linux'].colors.breakpoint_enabled = C.LightRed
cst['Linux'].colors.breakpoint_disabled = C.Red
cst['LightBG'].colors.breakpoint_enabled = C.LightRed
cst['LightBG'].colors.breakpoint_disabled = C.Red
self.set_colors(color_scheme)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
fperez
Apply Ville's patch, closes #87
r367 else:
fperez
- Cleanup [1786], which went in with unfinished stuff by accident....
r368 # Ugly hack: for Python 2.3-2.4, we can't call the parent constructor,
# because it binds readline and breaks tab-completion. This means we
# have to COPY the constructor here.
fperez
Apply Ville's patch, closes #87
r367 def __init__(self,color_scheme='NoColor'):
bdb.Bdb.__init__(self)
cmd.Cmd.__init__(self,completekey=None) # don't load readline
self.prompt = 'ipdb> ' # The default prompt is '(Pdb)'
self.aliases = {}
# These two lines are part of the py2.4 constructor, let's put them
# unconditionally here as they won't cause any problems in 2.3.
self.mainpyfile = ''
self._wait_for_mainpyfile = 0
# Read $HOME/.pdbrc and ./.pdbrc
try:
self.rcLines = _file_lines(os.path.join(os.environ['HOME'],
".pdbrc"))
except KeyError:
self.rcLines = []
self.rcLines.extend(_file_lines(".pdbrc"))
# Create color table: we copy the default one from the traceback
# module and add a few attributes needed for debugging
self.color_scheme_table = ExceptionColors.copy()
# shorthands
C = ColorANSI.TermColors
cst = self.color_scheme_table
cst['NoColor'].colors.breakpoint_enabled = C.NoColor
cst['NoColor'].colors.breakpoint_disabled = C.NoColor
cst['Linux'].colors.breakpoint_enabled = C.LightRed
cst['Linux'].colors.breakpoint_disabled = C.Red
cst['LightBG'].colors.breakpoint_enabled = C.LightRed
cst['LightBG'].colors.breakpoint_disabled = C.Red
self.set_colors(color_scheme)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
def set_colors(self, scheme):
"""Shorthand access to the color table scheme selector method."""
self.color_scheme_table.set_active_scheme(scheme)
def interaction(self, frame, traceback):
__IPYTHON__.set_completer_frame(frame)
vivainio
Last set of Rocky's patches for pydb integration
r393 OldPdb.interaction(self, frame, traceback)
def new_do_up(self, arg):
OldPdb.do_up(self, arg)
__IPYTHON__.set_completer_frame(self.curframe)
do_u = do_up = decorate_fn_with_doc(new_do_up, OldPdb.do_up)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
vivainio
Last set of Rocky's patches for pydb integration
r393 def new_do_down(self, arg):
OldPdb.do_down(self, arg)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46 __IPYTHON__.set_completer_frame(self.curframe)
vivainio
Last set of Rocky's patches for pydb integration
r393 do_d = do_down = decorate_fn_with_doc(new_do_down, OldPdb.do_down)
def new_do_frame(self, arg):
OldPdb.do_frame(self, arg)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46 __IPYTHON__.set_completer_frame(self.curframe)
vivainio
Last set of Rocky's patches for pydb integration
r393
def new_do_quit(self, arg):
vivainio
existence of old_all_completions checked in debugger exit
r465
if hasattr(self, 'old_all_completions'):
__IPYTHON__.Completer.all_completions=self.old_all_completions
vivainio
Last set of Rocky's patches for pydb integration
r393 return OldPdb.do_quit(self, arg)
do_q = do_quit = decorate_fn_with_doc(new_do_quit, OldPdb.do_quit)
def new_do_restart(self, arg):
"""Restart command. In the context of ipython this is exactly the same
thing as 'quit'."""
self.msg("Restart doesn't make sense here. Using 'quit' instead.")
return self.do_quit(arg)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
def postloop(self):
__IPYTHON__.set_completer_frame(None)
def print_stack_trace(self):
try:
for frame_lineno in self.stack:
self.print_stack_entry(frame_lineno, context = 5)
except KeyboardInterrupt:
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 pass
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
def print_stack_entry(self,frame_lineno,prompt_prefix='\n-> ',
context = 3):
frame, lineno = frame_lineno
print >>Term.cout, self.format_stack_entry(frame_lineno, '', context)
def format_stack_entry(self, frame_lineno, lprefix=': ', context = 3):
import linecache, repr
fperez
- set the default value of autoedit_syntax to be false. Too many complaints....
r294 ret = []
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
Colors = self.color_scheme_table.active_colors
ColorsNormal = Colors.Normal
tpl_link = '%s%%s%s' % (Colors.filenameEm, ColorsNormal)
fperez
- set the default value of autoedit_syntax to be false. Too many complaints....
r294 tpl_call = '%s%%s%s%%s%s' % (Colors.vName, Colors.valEm, ColorsNormal)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46 tpl_line = '%%s%s%%s %s%%s' % (Colors.lineno, ColorsNormal)
tpl_line_em = '%%s%s%%s %s%%s%s' % (Colors.linenoEm, Colors.line,
ColorsNormal)
frame, lineno = frame_lineno
return_value = ''
if '__return__' in frame.f_locals:
rv = frame.f_locals['__return__']
#return_value += '->'
return_value += repr.repr(rv) + '\n'
fperez
- set the default value of autoedit_syntax to be false. Too many complaints....
r294 ret.append(return_value)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
#s = filename + '(' + `lineno` + ')'
filename = self.canonic(frame.f_code.co_filename)
link = tpl_link % filename
if frame.f_code.co_name:
func = frame.f_code.co_name
else:
func = "<lambda>"
call = ''
if func != '?':
if '__args__' in frame.f_locals:
args = repr.repr(frame.f_locals['__args__'])
else:
args = '()'
call = tpl_call % (func, args)
fperez
- set the default value of autoedit_syntax to be false. Too many complaints....
r294
# The level info should be generated in the same format pdb uses, to
# avoid breaking the pdbtrack functionality of python-mode in *emacs.
ret.append('> %s(%s)%s\n' % (link,lineno,call))
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
start = lineno - 1 - context//2
lines = linecache.getlines(filename)
start = max(start, 0)
start = min(start, len(lines) - context)
lines = lines[start : start + context]
fperez
- set the default value of autoedit_syntax to be false. Too many complaints....
r294 for i,line in enumerate(lines):
show_arrow = (start + 1 + i == lineno)
ret.append(self.__format_line(tpl_line_em, filename,
start + 1 + i, line,
arrow = show_arrow) )
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
fperez
- set the default value of autoedit_syntax to be false. Too many complaints....
r294 return ''.join(ret)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
def __format_line(self, tpl_line, filename, lineno, line, arrow = False):
bp_mark = ""
bp_mark_color = ""
bp = None
if lineno in self.get_file_breaks(filename):
bps = self.get_breaks(filename, lineno)
bp = bps[-1]
if bp:
Colors = self.color_scheme_table.active_colors
bp_mark = str(bp.number)
bp_mark_color = Colors.breakpoint_enabled
if not bp.enabled:
bp_mark_color = Colors.breakpoint_disabled
numbers_width = 7
if arrow:
# This is the line with the error
pad = numbers_width - len(str(lineno)) - len(bp_mark)
if pad >= 3:
marker = '-'*(pad-3) + '-> '
elif pad == 2:
marker = '> '
elif pad == 1:
marker = '>'
else:
marker = ''
num = '%s%s' % (marker, str(lineno))
line = tpl_line % (bp_mark_color + bp_mark, num, line)
else:
num = '%*s' % (numbers_width - len(bp_mark), str(lineno))
line = tpl_line % (bp_mark_color + bp_mark, num, line)
return line
vivainio
Last set of Rocky's patches for pydb integration
r393 def list_command_pydb(self, arg):
"""List command to use if we have a newer pydb installed"""
filename, first, last = OldPdb.parse_list_cmd(self, arg)
if filename is not None:
self.print_list_lines(filename, first, last)
def print_list_lines(self, filename, first, last):
"""The printing (as opposed to the parsing part of a 'list'
command."""
try:
Colors = self.color_scheme_table.active_colors
ColorsNormal = Colors.Normal
tpl_line = '%%s%s%%s %s%%s' % (Colors.lineno, ColorsNormal)
tpl_line_em = '%%s%s%%s %s%%s%s' % (Colors.linenoEm, Colors.line, ColorsNormal)
src = []
for lineno in range(first, last+1):
line = linecache.getline(filename, lineno)
if not line:
break
if lineno == self.curframe.f_lineno:
line = self.__format_line(tpl_line_em, filename, lineno, line, arrow = True)
else:
line = self.__format_line(tpl_line, filename, lineno, line, arrow = False)
src.append(line)
self.lineno = lineno
print >>Term.cout, ''.join(src)
except KeyboardInterrupt:
pass
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46 def do_list(self, arg):
self.lastcmd = 'list'
last = None
if arg:
try:
x = eval(arg, {}, {})
if type(x) == type(()):
first, last = x
first = int(first)
last = int(last)
if last < first:
# Assume it's a count
last = first + last
else:
first = max(1, int(x) - 5)
except:
print '*** Error in argument:', `arg`
return
elif self.lineno is None:
first = max(1, self.curframe.f_lineno - 5)
fperez
Reorganized the directory for ipython/ to have its own dir, which is a bit...
r0 else:
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46 first = self.lineno + 1
if last is None:
last = first + 10
vivainio
Last set of Rocky's patches for pydb integration
r393 self.print_list_lines(self.curframe.f_code.co_filename, first, last)
fperez
- Fairly significant changes to include Vivian's patches for improved pdb...
r46
do_l = do_list
vivainio
Last set of Rocky's patches for pydb integration
r393
def do_pdef(self, arg):
"""The debugger interface to magic_pdef"""
namespaces = [('Locals', self.curframe.f_locals),
('Globals', self.curframe.f_globals)]
__IPYTHON__.magic_pdef(arg, namespaces=namespaces)
def do_pdoc(self, arg):
"""The debugger interface to magic_pdoc"""
namespaces = [('Locals', self.curframe.f_locals),
('Globals', self.curframe.f_globals)]
__IPYTHON__.magic_pdoc(arg, namespaces=namespaces)
def do_pinfo(self, arg):
"""The debugger equivalant of ?obj"""
namespaces = [('Locals', self.curframe.f_locals),
('Globals', self.curframe.f_globals)]
__IPYTHON__.magic_pinfo("pinfo %s" % arg, namespaces=namespaces)