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 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047
|
# dbg-cmds.inc - Bourne Again Shell Debugger Top-level debugger commands
#
# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007
# Rocky Bernstein rockyb@users.sourceforge.net
#
# Bash 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.
#
# Bash 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 Bash; see the file COPYING. If not, write to the Free Software
# Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
# Debugger command loop: Come here at to read debugger commands to
# run.
# Main-line debugger read/execute command loop
# ==================== VARIABLES =======================================
# _Dbg_INPUT_START_DESC is the lowest descriptor we use for reading.
# _Dbg_MAX_INPUT_DESC is the maximum input descriptor that can be
# safely used (as per the bash manual on redirection)
# _Dbg-input_desc is the current descriptor in use. "sourc"ing other
# command files will increase this descriptor
typeset -ir _Dbg_INPUT_START_DESC=4
typeset -i _Dbg_MAX_INPUT_DESC=9 # logfile can reduce this
typeset -i _Dbg_input_desc=_Dbg_INPUT_START_DESC-1 # will ++ before use
typeset -a _Dbg_history=()
# Are we inside the middle of a "skip" command?
typeset -i _Dbg_inside_skip=0
# keep a list of source'd command files. If the entry is "" then we are
# interactive.
typeset -a _Dbg_cmdfile=('')
# A variable holding a space is set so it can be used in a "set prompt" command
# ("read" in the main command loop will remove a trailing space so we need
# another way to allow a user to enter spaces in the prompt.)
typeset _Dbg_space=' '
# Should we allow editing of debugger commands?
# The value should either be '-e' or ''
typeset _Dbg_edit='-e'
# What do we use for a debugger prompt? Technically we don't need to
# use the above $bashdb_space in the assignment below, but we put it
# in to suggest to a user that this is how one gets a spaces into the
# prompt.
typeset _Dbg_prompt_str='bashdb${_Dbg_less}${#_Dbg_history[@]}${_Dbg_greater}$_Dbg_space'
# The arguments in the last "print" command.
typeset _Dbg_last_print_args=''
# The arguments in the last "x" command.
typeset _Dbg_last_x_args=''
# ===================== FUNCTIONS =======================================
# Note: We have to be careful here in naming "local" variables. In contrast
# to other places in the debugger, because of the read/eval loop, they are
# in fact seen by those using the debugger. So in contrast to other "local"s
# in the debugger, we prefer to preface these with _Dbg_.
_Dbg_cmdloop() {
# THIS SHOULD BE DONE IN dbg-sig.inc, but there's a bug in BASH in
# trying to change "trap RETURN" inside a "trap RETURN" handler....
# Turn off return trapping. Not strictly necessary, since it *should* be
# covered by the _Dbg_ test below if we've named functions correctly.
# However turning off the RETURN trap should reduce unnecessary calls.
# trap RETURN
_Dbg_inside_skip=0
# Evaluate all the display expressions
_Dbg_eval_all_display
# Loop over all pending open input file descriptors
while (( $_Dbg_input_desc >= $_Dbg_INPUT_START_DESC )) ; do
# Set up prompt to show shell level.
local _Dbg_greater=''
local _Dbg_less=''
local -i _Dbg_i=0
for (( _Dbg_i=0 ; _Dbg_i < BASHDB_LEVEL ; _Dbg_i++ )) ; do
_Dbg_greater=">$_Dbg_greater"
_Dbg_less="<$_Dbg_less"
done
for (( _Dbg_i=0 ; _Dbg_i < BASH_SUBSHELL ; _Dbg_i++ )) ; do
_Dbg_greater=")$_Dbg_greater"
_Dbg_less="$_Dbg_less("
done
# Loop over debugger commands. But before reading a debugger
# command, we need to make sure IFS is set to spaces to ensure our
# two variables (command name and rest of the arguments) are set
# correctly. Saving the IFS and setting it to the "normal" value
# of space should be done in the DEBUG signal handler entry.
# Also, we need to make sure the prompt output is
# redirected to the debugger terminal. Both of these things may
# have been changed by the debugged program for its own
# purposes. Furthermore, were we *not* to redirect our stderr
# below, we may mess up what the debugged program expects to see
# in in stderr by adding our debugger prompt.
# if no tty, no prompt
local _Dbg_prompt_output=${_Dbg_tty:-/dev/null}
eval "local _Dbg_prompt=$_Dbg_prompt_str"
local _Dbg_cmd
local args
while read $_Dbg_edit -p "$_Dbg_prompt" \
_Dbg_cmd args \
<&$_Dbg_input_desc 2>>$_Dbg_prompt_output; do
if (( _Dbg_brkpt_commands_defining )) ; then
case $_Dbg_cmd in
silent )
_Dbg_brkpt_commands_silent[$_Dbg_brkpt_commands_current]=1
continue
;;
end )
_Dbg_brkpt_commands_defining=0
#### ??? TESTING
## local -i cur=$_Dbg_brkpt_commands_current
## local -i start=${_Dbg_brkpt_commands_start[$cur]}
## local -i end=${_Dbg_brkpt_commands_end[$cur]}
## local -i i
## echo "++ brkpt: $cur, start: $start, end: $end "
## for (( i=start; (( i < end )) ; i++ )) ; do
## echo ${_Dbg_brkpt_commands[$i]}
## done
eval "_Dbg_prompt=$_Dbg_prompt_str"
continue
;;
*)
_Dbg_brkpt_commands[${#_Dbg_brkpt_commands[@]}]="$_Dbg_cmd $args"
(( _Dbg_brkpt_commands_end[$_Dbg_brkpt_commands_current]++ ))
continue
;;
esac
else
_Dbg_onecmd "$_Dbg_cmd" "$args"
fi
local rc=$?
if (( $rc != 10 )) ; then
return $rc
fi
if (( _Dbg_brkpt_commands_defining )) ; then
_Dbg_prompt='>'
else
eval "_Dbg_prompt=$_Dbg_prompt_str"
fi
done # while read $_Dbg_edit -p ...
((_Dbg_input_desc--))
# Remove last entry of $_Dbg_cmdfile
unset _Dbg_cmdfile[${#_Dbg_cmdfile[@]}]
done # Loop over all open pending file descriptors
# EOF hit. Same as quit without arguments
_Dbg_msg "" # Cause <cr> since EOF may not have put in.
_Dbg_do_quit
}
# Run a single command
# Parameters: _Dbg_cmd and args
#
_Dbg_onecmd() {
local _Dbg_cmd=$1
shift
local args=$*
# Set default next, step or skip command
if [[ -z $_Dbg_cmd ]]; then
_Dbg_cmd=$_Dbg_last_next_step_cmd
args=$_Dbg_last_next_step_args
fi
# If "set trace-commands" is "on", echo the the command
if [[ $_Dbg_trace_commands == 'on' ]] ; then
_Dbg_msg "+$_Dbg_cmd $args"
fi
local dq_cmd=$(_Dbg_esc_dq "$_Dbg_cmd")
local dq_args=$(_Dbg_esc_dq "$args")
# _Dbg_write_journal_eval doesn't work here. Don't really understand
# how to get it to work. So we do this in two steps.
_Dbg_write_journal \
"_Dbg_history[${#_Dbg_history[@]}]=\"$dq_cmd $dq_args\""
_Dbg_history[${#_Dbg_history[@]}]="$_Dbg_cmd $args"
_Dbg_hi=${#_Dbg_history[@]}
local -i _Dbg_redo=1
while (( $_Dbg_redo )) ; do
_Dbg_redo=0
case $_Dbg_cmd in
# Comment line
[#]* )
_Dbg_remove_history_item
;;
# List window up to _curline
- )
local -i start_line=(_curline+1-$_Dbg_listsize)
local -i count=($_Dbg_listsize)
if (( start_line <= 0 )) ; then
((count=count+start_line-1))
start_line=1;
fi
_Dbg_list $_cur_source_file $start_line $count
;;
# list current line
. )
_Dbg_list $_cur_source_file $_curline 1
;;
# Search forwards for pattern
/* )
_Dbg_do_search $_Dbg_cmd
;;
# Search backwards for pattern
[?]* )
_Dbg_do_search_back $_Dbg_cmd
;;
# Set action to be silently run when a line is hit
a )
_Dbg_do_action $args ;;
# Set breakpoint on a line
b | br | bre | brea | break )
_Dbg_do_break 0 $args ;;
# Stack trace
ba | bac | back | backt | backtr | backtra | backtrac | backtrace | bt | T | wh | whe | wher | where )
_Dbg_do_stack_trace 2 $args;
;;
# Continue
c | cont | conti |contin |continu | continue )
_Dbg_do_continue $args
if [[ $? == 0 ]] ; then
IFS="$_Dbg_old_IFS";
_Dbg_write_journal_eval \
"_Dbg_old_set_opts=\"$_Dbg_old_set_opts -o functrace\""
return 0
fi
;;
# Change Directory
cd )
# Allow for tilde expansion. We also allow expansion of
# variables like $HOME which gdb doesn't allow. That's life.
local cd_command="cd $args"
eval $cd_command
_Dbg_do_pwd
;;
# commands
comm | comma | comman | command | commands )
_Dbg_do_commands $args
;;
# complete
com | comp | compl | comple |complet | complete )
_Dbg_do_complete $args
;;
# Breakpoint/Watchpoint Conditions
cond | condi |condit |conditi | conditio | condition )
_Dbg_do_condition $args
;;
# Delete all breakpoints by line number.
# Note we use "d" as an alias for "clear" to be compatible
# with the Perl5 debugger.
d | cl | cle | clea | clea | clear )
_Dbg_do_clear_brkpt $args
;;
# Delete breakpoints by entry numbers. Note "d" is an alias for
# clear.
de | del | dele | delet | delete )
_Dbg_do_delete $args
;;
# Set up a script for debugging into.
deb | debu | debug )
_Dbg_do_debug $args
# Skip over the execute statement which presumably we ran above.
_Dbg_do_next_step_skip "skip" 1
IFS="$_Dbg_old_IFS";
return 1
;;
# Disable breakpoints
di | dis | disa | disab | disabl | disable )
_Dbg_do_disable $args
;;
# Display expression
disp | displ | displa| display )
_Dbg_do_display $args
;;
# Delete all breakpoints.
D | deletea | deleteal | deleteall )
_Dbg_clear_all_brkpt
;;
# List stack 1 up
do | dow | down )
_Dbg_do_down $args
;;
# evaluate as bash command
e | ev | eva | eval )
_Dbg_do_eval $args
;;
# evaluate as bash command
en | ena | enab | enabl | enable )
_Dbg_do_enable $args
;;
#
fil | file )
_Dbg_do_file $args
;;
#
fin | fini | finis | finish | r )
(( _Dbg_return_level=${#FUNCNAME[@]}-3 ))
return 0
;;
# Set stack frame
fr | fra | fra | frame )
_Dbg_do_frame $args
;;
# print help command menu
h | he | hel | help | '?' )
_Dbg_do_help $args ;;
# Set signal handle parameters
ha | han | hand | handl | handle )
_Dbg_do_handle $args
;;
# Info subcommands
i | in | inf | info )
_Dbg_do_info $args
;;
# List line.
# print lines in file
l | li | lis | list )
_Dbg_do_list $args
;;
# List line.
# print lines in file
lo | loa | load )
_Dbg_do_load $args
;;
# kill program
k | ki | kil | kill )
_Dbg_do_kill $args
;;
# next/single-step N times (default 1)
n | ne | nex | next | s | st | ste | step | sk | ski | skip )
_Dbg_last_next_step_cmd="$_Dbg_cmd"
_Dbg_last_next_step_args=$args
_Dbg_do_next_step_skip $_Dbg_cmd $args
if [[ $_Dbg_cmd == sk* ]] ; then
_Dbg_inside_skip=1
return 1
else
return 0
fi
;;
# print globbed or substituted variables
p | pr | pri | prin | print )
_Dbg_do_print "$args"
;;
# print working directory
pw | pwd )
_Dbg_do_pwd
;;
# quit
q | qu | qui | quit )
_Dbg_do_quit $args
;;
# restart debug session.
re | res | rest | resta | restar | restart | ru | run | R )
_Dbg_do_restart $args
;;
# return from function/source without finishing executions
ret | retu | retur | return )
_Dbg_steps=1
_Dbg_write_journal "_Dbg_steps=$_Dbg_steps"
IFS="$_Dbg_old_IFS";
return 2
;;
# Search backwards for pattern
rev | reve | rever | revers | reverse )
_Dbg_do_search_back $args
;;
# Run a debugger set command
se | set )
_Dbg_do_set $args
;;
# Search forwards for pattern
sea | sear | searc | search | \
for | forw | forwa | forwar | forward )
_Dbg_do_search $args
;;
# Run a debugger show command
sh | sho | show )
_Dbg_do_show $args
;;
# run shell command. Has to come before ! below.
she | shel | shell | '!!' )
eval $args ;;
# Send signal to process
si | sig | sign | signa | signal )
_Dbg_do_signal $args
;;
# Run a debugger comamnd file
so | sou | sour | sourc | source )
_Dbg_do_source $args
;;
# toggle execution trace
t | to | tog | togg | toggl | toggle )
_Dbg_do_trace
;;
# Set breakpoint on a line
tb | tbr | tbre | tbrea | tbreak )
_Dbg_do_break 1 $args ;;
# Set the output tty
tt | tty )
_Dbg_do_tty $args
_Dbg_prompt_output=${_Dbg_tty:-/dev/null}
;;
# List call stack up
u | up )
_Dbg_do_up $args
;;
# List call stack up
un | undi | undis | undisp | undispl | undispla | undisplay )
_Dbg_do_undisplay $args
;;
# Show version information
ve | ver | vers | versi | versio | version | M )
_Dbg_do_show_versions
;;
# List window around line.
w | wi | win | wind | windo | window )
((_startline=_curline - _Dbg_listsize/2))
(( $_startline <= 0 )) && _startline=1
_Dbg_list $_cur_source_file $_startline
;;
# watch variable
wa | wat | watch | W )
local -a a
a=($args)
local first=${a[0]}
if [[ $first == '' ]] ; then
_Dbg_do_watch 0
else
if [[ 0 == `_Dbg_is_var $first` ]] ; then
_Dbg_msg "Can't set watch: no such variable $first."
else
unset a first
_Dbg_do_watch 0 "\$$args"
fi
fi
;;
# Watch expression
watche | We )
_Dbg_do_watch 1 "$args"
;;
# intelligent print of variable, function or expression
x | examine )
_Dbg_do_x "$args"
;;
# List all breakpoints and actions.
L )
_Dbg_do_list_brkpt
_Dbg_list_watch
_Dbg_list_action
;;
# Remove all actions
A )
_Dbg_do_clear_all_actions $args
;;
# Run debugger command history
H )
_Dbg_remove_history_item
_Dbg_do_history_list $args
;;
# S List subroutine names
S )
_Dbg_do_list_subroutines $args
;;
# Dump variables
V )
_Dbg_do_list_variables "$args"
;;
# Has to come after !! of "shell" listed above
\!* | hi | his | hist | histo | histor | history )
_Dbg_remove_history_item
_Dbg_do_history_parse $args
if (( $history_num >= 0 )) ; then
if (( $history_num < ${#_Dbg_history[@]} )) ; then
set ${_Dbg_history[$history_num]}
_Dbg_cmd=$1
shift
args="$@"
_Dbg_redo=1;
else
_Dbg_msg \
"Number $history_num should be less than ${#_Dbg_history[@]}"
fi
fi
;;
* )
_Dbg_msg "Undefined command: \"$_Dbg_cmd\". Try \"help\"."
_Dbg_remove_history_item
;;
esac
done # while (( $_Dbg_redo ))
IFS=$_Dbg_space_IFS;
eval "_Dbg_prompt=$_Dbg_prompt_str"
return 10
}
# Set up to Debug into another script...
# TODO: would work better if instead of using $source_line below
# which might have several statements, we could just pick up the next
# single statement.
_Dbg_do_debug() {
# set -xv
local script_cmd=${@:-$_Dbg_bash_command}
# We need to expand variables that might be in $script_cmd.
# set_Dbg_nested_debug_cmd is set up to to be eval'd below.
local set_Dbg_debug_cmd="local _Dbg_debug_cmd=\"$script_cmd\"";
[ -z "$BASH" ] && BASH='bash'
eval "$_seteglob"
# Add appropriate bash debugging options
if [[ $_Dbg_script != 1 ]] ; then
# Running "bash --debugger", so prepend "bash --debugger"
set_Dbg_debug_cmd="local _Dbg_debug_cmd=\"$BASH --debugger $script_cmd\"";
elif [[ $0/// == *bashdb/// ]] ; then
# Running "bashdb", so prepend "bash bashdb .."
set_Dbg_debug_cmd="local _Dbg_debug_cmd=\"$BASH $0 -q -L $_Dbg_libdir $script_cmd\"";
fi
eval "$_resteglob"
eval $set_Dbg_debug_cmd
if (( _Dbg_basename_only )) ; then
_Dbg_msg "Debugging new script with $script_cmd"
else
_Dbg_msg "Debugging new script with $_Dbg_debug_cmd"
fi
local -r old_quit_on_quit=$BASHDB_QUIT_ON_QUIT
export BASHDB_QUIT_ON_QUIT=1
export BASHDB_BASENAME_ONLY="$_Dbg_basename_only"
((BASHDB_LEVEL++))
$_Dbg_debug_cmd
((BASHDB_LEVEL--))
export BASHDB_QUIT_ON_QUIT=$old_quit_on_quit
}
# V [![pat]] List variables and values for whose variables names which
# match pat $1. If ! is used, list variables that *don't* match.
# If pat ($1) is omitted, use * (everything) for the pattern.
_Dbg_do_list_variables() {
local _Dbg_old_glob="$GLOBIGNORE"
GLOBIGNORE="*"
local _Dbg_match="$1"
_Dbg_match_inverted=no
case ${_Dbg_match} in
\!*)
_Dbg_match_inverted=yes
_Dbg_match=${_Dbg_match#\!}
;;
"")
_Dbg_match='*'
;;
esac
local _Dbg_list=`declare -p`
local _Dbg_old_ifs=${IFS}
IFS="
"
local _Dbg_temp=${_Dbg_list}
_Dbg_list=""
local -i i=0
local -a _Dbg_list
# GLOBIGNORE protects us against using the result of
# a glob expansion, but it doesn't protect us from
# actually performing it, and this can bring bash down
# with a huge _Dbg_source_ variable being globbed.
# So here we disable globbing momentarily
set -o noglob
for _Dbg_item in ${_Dbg_temp}; do
_Dbg_list[${i}]="${_Dbg_item}"
i=${i}+1
done
set +o noglob
IFS=${_Dbg_old_ifs}
local _Dbg_item=""
local _Dbg_skip=0
local _Dbg_show_cmd=""
_Dbg_show_cmd=`echo -e "case \\${_Dbg_item} in \n${_Dbg_match})\n echo yes;;\n*)\necho no;; esac"`
for (( i=0; (( i < ${#_Dbg_list[@]} )) ; i++ )) ; do
_Dbg_item=${_Dbg_list[$i]}
case ${_Dbg_item} in
*\ \(\)\ )
_Dbg_skip=1
;;
\})
_Dbg_skip=0
continue
esac
if [[ _Dbg_skip -eq 1 ]]; then
continue
fi
# Ignore all _Dbg_ variables here because the following
# substitutions takes a long while when it encounters
# a big _Dbg_source_
case ${_Dbg_item} in
_Dbg_*) # Hide/ignore debugger variables.
continue;
;;
esac
_Dbg_item=${_Dbg_item/=/==/}
_Dbg_item=${_Dbg_item%%=[^=]*}
case ${_Dbg_item} in
_=);;
*=)
_Dbg_item=${_Dbg_item%=}
local _Dbg_show=`eval $_Dbg_show_cmd`
if [[ "$_Dbg_show" != "$_Dbg_match_inverted" ]]; then
if [[ -n ${_Dbg_item} ]]; then
local _Dbg_var=`declare -p ${_Dbg_item} 2>/dev/null`
if [[ -n "$_Dbg_var" ]]; then
# Uncomment the following 3 lines to use literal
# linefeeds
# _Dbg_var=${_Dbg_var//\\\\n/\\n}
# _Dbg_var=${_Dbg_var//
#/\n}
# Comment the following 3 lines to use literal linefeeds
_Dbg_var=${_Dbg_var//\\\\n/\\\\\\n}
_Dbg_var=${_Dbg_var//
/\\n}
_Dbg_var=${_Dbg_var#* * }
_Dbg_msg ${_Dbg_var}
fi
fi
fi
;;
*)
;;
esac
done
GLOBIGNORE=$_Dbg_old_glob
}
_Dbg_do_eval() {
echo ". ${_Dbg_libdir}/dbg-set-d-vars.inc" > $_Dbg_evalfile
echo "$@" >> $_Dbg_evalfile
if [[ -n $_basdhb_tty ]] ; then
. $_Dbg_evalfile >>$_Dbg_tty
else
. $_Dbg_evalfile
fi
# We've reset some variables like IFS and PS4 to make eval look
# like they were before debugger entry - so reset them now
_Dbg_set_debugger_internal
}
_Dbg_do_file() {
local filename
if [[ -z "$1" ]] ; then
_Dbg_msg "Need to give a filename for the file command"
return
fi
_Dbg_glob_filename $1
if [[ ! -f "$filename" ]] && [[ ! -x "$filename" ]] ; then
_Dbg_msg "Source file $filename does not exist as a readable regular file."
return
fi
local filevar=`_Dbg_file2var ${BASH_SOURCE[3]}`
_Dbg_set_assoc_scalar_entry "_Dbg_file_cmd_" $filevar "$filename"
local source_file="${BASH_SOURCE[3]}"
(( _Dbg_basename_only )) && source_file=${source_file##*/}
_Dbg_msg "File $filename will be used when $source_file is referenced."
}
_Dbg_do_kill() {
local _Dbg_prompt_output=${_Dbg_tty:-/dev/null}
read $_Dbg_edit -p "Do hard kill and terminate the debugger? (y/n): " \
<&$_Dbg_input_desc 2>>$_Dbg_prompt_output
if [[ $REPLY = [Yy]* ]] ; then
kill -9 $$
fi
}
_Dbg_do_load() {
local filename=$1
if [[ -z "$filename" ]] ; then
_Dbg_msg "Need to give a filename for the file command"
return
fi
local full_filename=$(_Dbg_resolve_expand_filename "$filename")
if [ -n $full_filename ] && [ -r $full_filename ] ; then
# Have we already loaded in this file?
for file in ${_Dbg_filenames[@]} ; do
if [[ $file = $full_filename ]] ; then
_Dbg_msg "File $full_filename already loaded."
return
fi
done
_Dbg_readin "$full_filename"
_Dbg_msg "File $full_filename loaded."
else
_Dbg_msg "Couldn't resolve or read $filename"
fi
}
_Dbg_do_next_step_skip() {
if (( ! _Dbg_running )) ; then
_Dbg_msg "The program is not being run."
return
fi
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 "_Dbg_old_set_opts=\"$_Dbg_old_set_opts\""
if [[ $count == [0-9]* ]] ; then
let _Dbg_steps=${count:-1}
else
_Dbg_msg "Argument ($count) should be a number or nothing."
_Dbg_steps=1
fi
_Dbg_write_journal "_Dbg_steps=$_Dbg_steps"
}
_Dbg_do_print() {
local -r _Dbg_expr=${@:-"$_Dbg_last_print_args"}
local -r dq_expr=$(_Dbg_esc_dq "$_Dbg_expr")
. ${_Dbg_libdir}/dbg-set-d-vars.inc
eval "_Dbg_msg $_Dbg_expr"
_Dbg_last_print_args="$dq_expr"
}
_Dbg_do_pwd() {
local _Dbg_cwd=$(pwd)
(( _Dbg_basename_only )) && _Dbg_cwd=${_Dbg_cwd##*/}
_Dbg_msg "Working directory ${_Dbg_cwd}."
}
# Restart script in same way with saved arguments (probably the same
# ones as we were given before).
_Dbg_do_restart() {
_Dbg_cleanup;
local script_args
if (( $# != 0 )) ; then
script_args="$@"
else
script_args="${_Dbg_script_args[@]}"
fi
local exec_cmd="$0 $script_args";
if [[ $_Dbg_script != 1 ]] ; then
[ -z "$BASH" ] && BASH='bash'
if [ $_cur_source_file == $_Dbg_bogus_file ] ; then
script_args="--debugger -c \"$BASH_EXECUTION_STRING\""
exec_cmd="$BASH --debugger -c \"$BASH_EXECUTION_STRING\"";
else
exec_cmd="$BASH --debugger $0 $script_args";
fi
elif [[ -n "$BASH" ]] ; then
local exec_cmd="$BASH $0 $script_args";
fi
if (( _Dbg_basename_only )) ; then
_Dbg_msg "Restarting with: $script_args"
else
_Dbg_msg "Restarting with: $exec_cmd"
fi
# If we are in a subshell we need to get out of those levels
# first before we restart. The strategy is to write into persistent
# storage the restart command, and issue a "quit." The quit should
# discover the restart at the last minute and issue the restart.
if (( BASH_SUBSHELL > 0 )) ; then
_Dbg_msg "Note you are in a subshell. We will need to leave that first."
_Dbg_write_journal "BASHDB_RESTART_COMMAND=\"$exec_cmd\""
_Dbg_do_quit 0
fi
_Dbg_save_state
cd $_Dbg_init_cwd
exec $exec_cmd
}
# Handle command-file source. If the filename's okay we just increase the
# input-file descriptor by one and redirect input which will
# be picked up in next debugger command loop.
_Dbg_do_source() {
local filename
if [[ -z "$1" ]] ; then
_Dbg_msg "Need to give a filename for the source command"
return
fi
_Dbg_glob_filename $1
if [[ -r $filename ]] || [[ "$filename" == '/dev/stdin' ]] ; then
if ((_Dbg_input_desc < _Dbg_MAX_INPUT_DESC )) ; then
((_Dbg_input_desc++))
_Dbg_input[$_Dbg_input_desc]=$filename
local _Dbg_redirect_cmd="exec $_Dbg_input_desc<$filename"
eval $_Dbg_redirect_cmd
_Dbg_cmdfile[${#_Dbg_cmdfile[@]}]=$filename
else
local -i max_nesting
((max_nesting=_Dbg_MAX_INPUT_DESC-_Dbg_INPUT_START_DESC+1))
_Dbg_msg "Source nesting too deep; nesting can't be greater than $max_nesting."
fi
else
_Dbg_msg "Source file $filename is not readable."
fi
}
# toggle execution trace feature
_Dbg_do_trace() {
((_Dbg_linetrace=!$_Dbg_linetrace))
_Dbg_msg "Line trace = \c"
let " $_Dbg_linetrace" && _Dbg_msg "on" || _Dbg_msg "off"
}
# Set output tty
_Dbg_do_tty() {
if [[ -z "$1" ]] ; then
_Dbg_msg "Argument required (terminal name for running target process)."
return 1
fi
if ! $(touch $1 >/dev/null 2>/dev/null); then
_Dbg_msg "Can't access $1 for writing."
return 1
fi
if [[ ! -w $1 ]] ; then
_Dbg_msg "tty $1 needs to be writable"
return 1
fi
_Dbg_tty=$1
return 0
}
_Dbg_do_x() {
local -r _Dbg_expr=${@:-"$_Dbg_last_x_args"}
local _Dbg_result
if (( `_Dbg_is_var $_Dbg_expr` )) ; then
_Dbg_result=`declare -p $_Dbg_expr`
_Dbg_msg "$_Dbg_result"
elif (( `_Dbg_is_function $_Dbg_expr` )) ; then
_Dbg_result=`declare -f $_Dbg_expr`
_Dbg_msg "$_Dbg_result"
else
local -i _Dbg_rc
eval let _Dbg_result=$_Dbg_expr 2>/dev/null; _Dbg_rc=$?
if (( $_Dbg_rc != 0 )) ; then
_Dbg_do_print "$_Dbg_expr"
else
_Dbg_msg "$_Dbg_result"
fi
fi
_Dbg_last_x_args="$_Dbg_x_args"
}
_Dbg_save_state() {
_Dbg_statefile=`_Dbg_tempname statefile`
echo "" > $_Dbg_statefile
_Dbg_save_breakpoints
_Dbg_save_actions
_Dbg_save_watchpoints
_Dbg_save_display
_Dbg_save_Dbg_set
echo "unset BASHDB_RESTART_FILE" >> $_Dbg_statefile
echo "rm $_Dbg_statefile" >> $_Dbg_statefile
export BASHDB_RESTART_FILE="$_Dbg_statefile"
_Dbg_write_journal "export BASHDB_RESTART_FILE=\"$_Dbg_statefile\""
}
_Dbg_save_Dbg_set() {
declare -p _Dbg_basename_only >> $_Dbg_statefile
declare -p _Dbg_debug_debugger >> $_Dbg_statefile
declare -p _Dbg_edit >> $_Dbg_statefile
declare -p _Dbg_listsize >> $_Dbg_statefile
declare -p _Dbg_prompt_str >> $_Dbg_statefile
declare -p _Dbg_show_command >> $_Dbg_statefile
}
_Dbg_restore_state() {
local statefile=$1
. $1
}
# ================== INITIALIZATION =====================================
if [[ -r /dev/stdin ]] ; then
_Dbg_do_source /dev/stdin
elif [[ $(tty) != 'not a tty' ]] ; then
_Dbg_do_source $(tty)
fi
# List of command files to process
typeset -a _Dbg_input
# Have we already specified where to read debugger input from?
# Note: index 0 is only set by bashdb. It is not used otherwise for I/O
# like those indices >= _Dbg_INPUT_START_DESC are.
if [ -n "$BASHDB_INPUT" ] ; then
_Dbg_input=($BASHDB_INPUT)
_Dbg_do_source ${_Dbg_input[0]}
_Dbg_no_init=1
fi
if [[ -z $_Dbg_no_init && -r ~/.bashdbinit ]] ; then
_Dbg_do_source ~/.bashdbinit
fi
# BASHDB_LEVEL is the number of times we are nested inside a debugger
# by virtue of running "debug" for example.
if [[ -z "${BASHDB_LEVEL}" ]] ; then
typeset -i BASHDB_LEVEL=1
export BASHDB_LEVEL
fi
# temp file for internal eval'd commands
typeset _Dbg_evalfile=`_Dbg_tempname eval`
# File to save information that needs to be passed from a subshell
# to a parent shell
typeset _Dbg_journal=`_Dbg_tempname journal`
if [ ! -f _Dbg_journal ] ; then
typeset -i BASHDB_QUIT_LEVELS=0
_Dbg_write_journal "BASHDB_QUIT_LEVELS=0"
fi
# 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.
_Dbg_cmds_ver='$Id: dbg-cmds.inc,v 1.30 2007/03/03 05:02:30 rockyb Exp $'
#;;; Local Variables: ***
#;;; mode:shell-script ***
#;;; End: ***
|