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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
|
# -*- shell-script -*-
# help.sh - Debugger Help Routines
#
# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
# 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.
[[ -n $_Dbg_help_ver ]] && return 1
# Command aliases are stored here.
typeset -a _Dbg_command_names=()
typeset -a _Dbg_command_names_sorted=()
typeset -a _Dbg_command_help=()
# Add an new alias in the alias table
_Dbg_help_add() {
(( $# != 2 )) && return 1
_Dbg_command_names+=("$1")
_Dbg_command_help+=("$2")
return 0
}
_Dbg_help_get_text() {
_Dbg_help_text=''
(( $# != 1 )) && return 2
typeset _Dbg_cmd="$1"
_Dbg_command_index "$_Dbg_cmd"
typeset -i i=$?
((i==255)) && return 1
_Dbg_help_text="${_Dbg_command_help[$i]}"
return 0
}
# Return the index in _Dbg_command_names of $1 or 255 if not there.
# We assume we'll never have 255 command names.
function _Dbg_command_index {
(($# != 1)) && return 255
typeset find_name=$1
typeset -i i
for ((i=0; i<${#_Dbg_command_names[@]}; i++)) ; do
[[ ${_Dbg_command_names[$i]} == $find_name ]] && return $i
done
return 255
}
_Dbg_help_sort_command_names() {
((${#_Dbg_command_names_sorted} > 0 )) && return 0
typeset -a list
list=("${_Dbg_command_names[@]}")
sort_list 0 ${#list[@]}-1
_Dbg_sorted_command_names=("${list[@]}")
}
typeset -r _Dbg_set_cmds="args annotate autoeval basename debugger editing linetrace listsize prompt showcommand trace-commands"
_Dbg_help_set() {
if (( $# == 0 )) ; then
typeset thing
for thing in $_Dbg_set_cmds ; do
_Dbg_help_set $thing 1
done
return 0
fi
local set_cmd="$1"
local label="$2"
if [[ -z $set_cmd ]] ; then
local thing
for thing in $_Dbg_set_cmds ; do
_Dbg_help_set $thing 1
done
return
fi
case $set_cmd in
ar | arg | args )
[[ -n $label ]] && label='set args -- '
_Dbg_msg \
"${label}Set argument list to give program being debugged when it is started.
Follow this command with any number of args, to be passed to the program."
return 0
;;
an | ann | anno | annot | annota | annotat | annotate )
if [[ -n $label ]] ; then
label='set annotate -- '
else
local post_label='
0 == normal; 1 == fullname (for use when running under emacs).'
fi
_Dbg_msg \
"${label}Set annotation level.$post_label"
return 0
;;
au | aut | auto | autoe | autoev | autoeva | autoeval )
[[ -n $label ]] && label='set autoeval -- '
local onoff="off."
(( $_Dbg_autoeval != 0 )) && onoff='on.'
_Dbg_msg \
"${label}Evaluate unrecognized commands is" $onoff
return 0
;;
b | ba | bas | base | basen | basena | basenam | basename )
[[ -n $label ]] && label='set basename -- '
local onoff="off."
(( $_Dbg_basename_only != 0 )) && onoff='on.'
_Dbg_msg \
"${label}Set short filenames (the basename) in debug output is" $onoff
return 0
;;
d|de|deb|debu|debug|debugg|debugger|debuggi|debuggin|debugging )
local onoff=${1:-'on'}
[[ -n $label ]] && label='set debugger -- '
(( $_Dbg_debug_debugger )) && onoff='on.'
_Dbg_msg \
"${label}Set debugging the debugger is" $onoff
return 0
;;
e | ed | edi | edit | editi | editin | editing )
[[ -n $label ]] && label='set editing -- '
_Dbg_msg_nocr \
"${label}Set editing of command lines as they are typed is "
if [[ -z $_Dbg_edit ]] ; then
_Dbg_msg 'off.'
else
_Dbg_msg 'on.'
fi
return 0
;;
lin | line | linet | linetr | linetra | linetrac | linetrace )
[[ -n $label ]] && label='set linetrace -- '
local onoff='off.'
(( $_Dbg_linetrace )) && onoff='on.'
_Dbg_msg \
"${label}Set tracing execution of lines before executed is" $onoff
if (( $_Dbg_linetrace )) ; then
_Dbg_msg \
"set linetrace delay -- delay before executing a line is" $_Dbg_linetrace_delay
fi
return 0
;;
lis | list | lists | listsi | listsiz | listsize )
[[ -n $label ]] && label='set listsize -- '
_Dbg_msg \
"${label}Set number of source lines bashdb will list by default."
;;
p | pr | pro | prom | promp | prompt )
[[ -n $label ]] && label='set prompt -- '
_Dbg_msg \
"${label}bashdb's prompt is:\n" \
" \"$_Dbg_prompt_str\"."
return 0
;;
sho|show|showc|showco|showcom|showcomm|showcomma|showcomman|showcommand )
[[ -n $label ]] && label='set showcommand -- '
_Dbg_msg \
"${label}Set showing the command to execute is $_Dbg_show_command."
return 0
;;
t|tr|tra|trac|trace|trace-|tracec|trace-co|trace-com|trace-comm|trace-comma|trace-comman|trace-command|trace-commands )
[[ -n $label ]] && label='set trace-commands -- '
_Dbg_msg \
"${label}Set showing debugger commands is $_Dbg_trace_commands."
return 0
;;
* )
_Dbg_msg \
"There is no \"set $set_cmd\" command."
esac
}
typeset -r _Dbg_show_cmds="aliases annotate args autoeval basename commands copying debugger directories linetrace listsize prompt trace-commands warranty"
_Dbg_help_show() {
typeset -r show_cmd=$1
if [[ -z $show_cmd ]] ; then
local thing
for thing in $_Dbg_show_cmds ; do
_Dbg_help_show $thing 1
done
return
fi
case $show_cmd in
al | ali | alia | alias | aliase | aliases )
_Dbg_msg \
"show aliases -- Show list of aliases currently in effect."
return 0
;;
ar | arg | args )
_Dbg_msg \
"show args -- Show argument list to give program being debugged when it
is started"
return 0
;;
an | ann | anno | annot | annota | annotat | annotate )
_Dbg_msg \
"show annotate -- Show annotation_level"
return 0
;;
au | aut | auto | autoe | autoev | autoeva | autoeval )
_Dbg_msg \
"show auotoeval -- Show if we evaluate unrecognized commands"
return 0
;;
b | ba | bas | base | basen | basena | basenam | basename )
_Dbg_msg \
"show basename -- Show if we are are to show short or long filenames"
return 0
;;
com | comm | comma | comman | command | commands )
_Dbg_msg \
"show commands [+|n] -- Show the history of commands you typed.
You can supply a command number to start with, or a + to start after
the previous command number shown. A negative number indicates the
number of lines to list."
;;
cop | copy| copyi | copyin | copying )
_Dbg_msg \
"show copying -- Conditions for redistributing copies of debugger"
;;
d|de|deb|debu|debug|debugg|debugger|debuggi|debuggin|debugging )
_Dbg_msg \
"show debugger -- Show if we are set to debug the debugger"
return 0
;;
di|dir|dire|direc|direct|directo|director|directori|directorie|directories)
_Dbg_msg \
"show directories -- Show if we are set to debug the debugger"
;;
lin | line | linet | linetr | linetra | linetrac | linetrace )
_Dbg_msg \
"show linetrace -- Show whether to trace lines before execution"
;;
lis | list | lists | listsi | listsiz | listsize )
_Dbg_msg \
"show listsize -- Show number of source lines debugger will list by default"
;;
p | pr | pro | prom | promp | prompt )
_Dbg_msg \
"show prompt -- Show debugger's prompt"
return 0
;;
t|tr|tra|trac|trace|trace-|trace-c|trace-co|trace-com|trace-comm|trace-comma|trace-comman|trace-command|trace-commands )
_Dbg_msg \
"show trace-commands -- Show if we are echoing debugger commands"
return 0
;;
w | wa | war | warr | warra | warran | warrant | warranty )
_Dbg_msg \
"show warranty -- Various kinds of warranty you do not have"
return 0
;;
* )
_Dbg_msg \
"Undefined show command: \"$show_cmd\". Try \"help show\"."
esac
}
# This is put at the so we have something at the end to stop at
# when we debug this. By stopping at the end all of the above functions
# and variables can be tested.
typeset -r _Dbg_help_ver=\
'$Id: help.sh,v 1.11 2008/09/23 08:10:47 rockyb Exp $'
|