public
Description: Debugger for zsh (at least 4.3.6-dev-2)
Homepage:
Clone URL: git://github.com/rocky/zshdb.git
rocky (author)
Fri Jul 03 22:57:20 -0700 2009
commit  d3370dfff7846c64685aa948be7662c9ca3093c1
tree    0daa8cce92dcca6e42b66e85602c19c5952699b7
parent  8f7b94496c279d3f07c37f7bbc9d8a335683f893
zshdb / dbg-opts.sh
100644 171 lines (151 sloc) 5.342 kb
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
# -*- shell-script -*-
# dbg-opts.sh - zshdb command options processing. The bane of programming.
#
# Copyright (C) 2008 Rocky Bernstein rocky@gnu.org
#
# zshdb 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.
#
# zshdb 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 zshdb; see the file COPYING. If not, write to the Free Software
# Foundation, 59 Temple Place, Suite 330, Boston, MA 02111 USA.
 
_Dbg_usage() {
  printf "Usage:
${_Dbg_pname} [OPTIONS] <script_file>
 
Runs $_Dbg_shell_name <script_file> under a debugger.
 
options:
-h | --help Print this help.
-q | --quiet Do not print introductory and quiet messages.
-A | --annotate LEVEL Set the annotation level.
-B | --basename Show basename only on source file listings.
(Needed in regression tests)
-L | --library DIRECTORY
Set the directory location of library helper file: $_Dbg_main
-c | --command STRING Run STRING instead of a script file
-n | --nx | --no-init Don't run initialization files.
-t | --tty DEV Run using device for your programs standard input and output
-T | --tempdir DIRECTORY
Use DIRECTORY to store temporary files in
-V | --version Print the debugger version number.
-x | --eval-command CMDFILE
Execute debugger commands from CMDFILE.
"
  exit 100
}
 
_Dbg_show_version() {
  printf "There is absolutely no warranty for $_Dbg_debugger_name. Type \"show warranty\" for details.
"
  exit 101
 
}
 
# Script arguments before adulteration by _Dbg_parse_opts
typeset -a _Dbg_orig_script_args
_Dbg_orig_script_args=($@)
 
# The following globals are set by _Dbg_parse_opts. Any values set are
# the default values.
typeset -ax _Dbg_script_args
 
# Use gdb-style annotate?
typeset -i _Dbg_annotate=0
 
# Simulate set -x?
typeset -i _Dbg_linetrace=0
typeset -i _Dbg_basename_only=0
typeset -i _Dbg_o_nx=0
typeset -i _Dbg_o_linetrace=0
typeset _Dbg_tty=''
 
# $_Dbg_tmpdir could have been set by the top-level debugger script.
[[ -z $_Dbg_tmpdir ]] && typeset _Dbg_tmpdir=/tmp
 
_Dbg_parse_options() {
 
    . ${_Dbg_libdir}/getopts_long.sh
 
    typeset -i _Dbg_o_quiet=0
    typeset -i _Dbg_o_version=0
 
    while getopts_long A:Bc:x:hL:nqTt:V opt \
annotate required_argument \
basename no_argument \
command required_argument \
eval-command required_argument \
cmdfile required_argument \
     help no_argument \
library required_argument \
no-init no_argument \
nx no_argument \
quiet no_argument \
        tempdir required_argument \
        tty required_argument \
version no_argument \
'' "$@"
    do
case "$opt" in
A | annotate )
_Dbg_o_annotate=$OPTLARG;;
B | basename )
_Dbg_basename_only=1 ;;
c | command )
_Dbg_EXECUTION_STRING="$OPTLARG" ;;
h | help )
_Dbg_usage ;;
L | library ) ;;
V | version )
_Dbg_o_version=1 ;;
n | nx | no-init )
_Dbg_o_nx=1 ;;
q | quiet )
_Dbg_o_quiet=1 ;;
t | tty)
_Dbg_tty=$OPTLARG ;;
tempdir)
_Dbg_tmpdir=$OPTLARG ;;
x | eval-command )
DBG_INPUT=$OPTLARG ;;
'?' ) # Path taken on a bad option
echo >&2 'Use -h or --help to see options.'
exit 2 ;;
* )
echo "Unknown option $opt. Use -h or --help to see options." >&2
exit 2 ;;
esac
done
shift "$(($OPTLIND - 1))"
 
    if (( _Dbg_o_version )) ; then
_Dbg_do_show_version
exit 0
    elif (( ! _Dbg_o_quiet )); then
echo "$_Dbg_shell_name Shell Debugger, release $_Dbg_release"
printf '
Copyright 2008, 2009 Rocky Bernstein
This is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
 
'
    fi
    (( _Dbg_o_version )) && _Dbg_show_version
 
    if [[ -n $_Dbg_o_annotate ]] ; then
if [[ ${_Dbg_o_annotate} == [0-9]* ]] ; then
_Dbg_annotate=$_Dbg_o_annotate
if (( _Dbg_annotate > 3 || _Dbg_annotate < 0)); then
print "Annotation level must be less between 0 and 3. Got: $_Dbg_annotate." >&2
print "Setting Annotation level to 0." >&2
_Dbg_annotate=0
fi
else
print "Annotate option should be an integer, got ${_Dbg_o_annotate}." >&2
print "Setting annotation level to 0." >&2
fi
fi
unset _Dbg_o_annotate _Dbg_o_version _Dbg_o_quiet
    _Dbg_script_args=("$@")
}
 
 
# Stand-alone Testing.
if [[ -n "$_Dbg_dbg_opts_test" ]] ; then
OPTLIND=1
    _Dbg_libdir='.'
    [[ -n $_Dbg_input ]] && typeset -p _Dbg_input
    _Dbg_parse_options "$@"
    typeset -p _Dbg_annotate
    typeset -p _Dbg_linetrace
    typeset -p _Dbg_basename_only
fi