1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
# -*- shell-script -*-
# stepping.sh - Debugger next, skip and step commmands.
#
# Copyright (C) 2006, 2008, 2009 Rocky Bernstein rocky@gnu.org
#
# bashdb is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation; either version 2, or (at your option) any later
# version.
#
# bashdb is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License along
# with bashdb; see the file COPYING. If not, write to the Free Software
# Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
# Sets whether or not to display command to be executed in debugger prompt.
# If yes, always show. If auto, show only if the same line is to be run
# but the command is different.
# The default behavior of step_force.
typeset -i _Dbg_step_auto_force=0
_Dbg_help_add next \
"next [COUNT] -- Single step an statement skipping functions.
If COUNT is given, stepping occurs that many times before
stopping. Otherwise COUNT is one. COUNT an be an arithmetic
expression.
Functions and source'd files are not traced. This is in contrast to
\"step\". See also \"skip\"."
_Dbg_help_add skip \
"skip [COUNT] -- Skip (don't run) the next COUNT command(s).
If COUNT is given, stepping occurs that many times before
stopping. Otherwise COUNT is one. COUNT an be an arithmetic
expression. See also \"next\" and \"step\"."
_Dbg_help_add step \
"step [COUNT] -- Single step an statement.
If COUNT is given, stepping occurs that many times before
stopping. Otherwise COUNT is one. COUNT an be an arithmetic
expression.
In contrast to \"next\", functions and source'd files are stepped
into. See also \"skip\"."
_Dbg_help_add 'step+' \
"step+ -- Single step a statement ensuring a different line after the step.
In contrast to \"step\", we ensure that the file and line position is
different from the last one just stopped at.
See also \"step-\" and \"set force\"."
_Dbg_help_add 'step-' \
"step- -- Single step a statement without the \`step force' setting.
Set step force may have been set on. step- ensures we turn that off for
this command.
See also \"step\" and \"set force\"."
# Step command
# $1 is command step+, step-, or step
# $2 is an optional additional count.
_Dbg_do_step() {
_Dbg_not_running && return 1
_Dbg_last_cmd="$1"
_Dbg_last_next_step_cmd="$1"; shift
_Dbg_last_next_step_args="$@"
typeset count=${1:-1}
case "$_Dbg_last_next_step_cmd" in
'step+' ) _Dbg_step_force=1 ;;
'step-' ) _Dbg_step_force=0 ;;
'step' ) _Dbg_step_force=$_Dbg_step_auto_force ;;
* ) ;;
esac
if [[ $count == [0-9]* ]] ; then
_Dbg_step_ignore=${count:-1}
else
_Dbg_errmsg "Argument ($count) should be a number or nothing."
_Dbg_step_ignore=-1
return 0
fi
_Dbg_old_set_opts="$_Dbg_old_set_opts -o functrace"
_Dbg_write_journal "_Dbg_step_ignore=$_Dbg_step_ignore"
_Dbg_write_journal "_Dbg_step_force=$_Dbg_step_force"
_Dbg_write_journal "_Dbg_old_set_opts='$_Dbg_old_set_opts'"
return 1
}
_Dbg_alias_add 's' 'step'
_Dbg_alias_add 's+' 'step+'
_Dbg_alias_add 's-' 'step-'
_Dbg_do_next_skip() {
_Dbg_not_running && return 1
local cmd=$1
local count=${2:-1}
# Do we step debug into functions called or not?
if [[ $cmd == n* ]] ; then
_Dbg_old_set_opts="$_Dbg_old_set_opts +o functrace"
else
_Dbg_old_set_opts="$_Dbg_old_set_opts -o functrace"
fi
_Dbg_write_journal_eval "_Dbg_old_set_opts='$_Dbg_old_set_opts'"
if [[ $count == [0-9]* ]] ; then
let _Dbg_step_ignore=${count:-1}
else
_Dbg_errmsg "Argument ($count) should be a number or nothing."
_Dbg_step_ignore=1
fi
_Dbg_write_journal "_Dbg_step_ignore=$_Dbg_step_ignore"
}
_Dbg_alias_add 'n' 'next'
|