Menu

[291208]: / lib / help.sh  Maximize  Restore  History

Download this file

375 lines (359 with data), 12.6 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
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
# -*- shell-script -*-
# help.sh - Debugger Help Routines
#
# Copyright (C) 2002-2008, 2010-2012, 2016
# Rocky Bernstein <rocky@gnu.org>
#
# This program 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.
#
# This program 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 this program; see the file COPYING. If not, write to
# the Free Software Foundation, 59 Temple Place, Suite 330, Boston,
# MA 02111 USA.
# A place to put help command text
typeset -A _Dbg_command_help
export _Dbg_command_help
typeset -a _Dbg_command_names_sorted=()
# List of debugger commands.
# FIXME: for now we are attaching this to _Dbg_help_add which
# is whe this is here. After moving somewhere more appropriate, relocate
# the definition.
typeset -A _Dbg_debugger_commands
# Add help text $2 for command $1
function _Dbg_help_add {
(($# < 2)) || (($# > 4)) && return 1
typeset -i add_command; add_command=${3:-1}
_Dbg_command_help[$1]="$2"
(( add_command )) && _Dbg_debugger_commands[$1]="_Dbg_do_$1"
if (($# == 4)); then
complete -F "$4" "$1"
fi
return 0
}
# Add help text $3 for in subcommand $1 under key $2
function _Dbg_help_add_sub {
add_command=${4:-1}
(($# != 3)) && (($# != 4)) && return 1
eval "_Dbg_command_help_$1[$2]=\"$3\""
if (( add_command )) ; then
eval "_Dbg_debugger_${1}_commands[$2]=\"_Dbg_do_${1}_${2}\""
fi
return 0
}
_Dbg_help_sort_command_names() {
((${#_Dbg_command_names_sorted} > 0 )) && return 0
typeset -a list
list=("${!_Dbg_command_help[@]}")
sort_list 0 ${#list[@]}-1
_Dbg_sorted_command_names=("${list[@]}")
}
_Dbg_help_set() {
typeset subcmd
if (( $# == 0 )) ; then
typeset -a list
list=("${!_Dbg_command_help_set[@]}")
sort_list 0 ${#list[@]}-1
for subcmd in ${list[@]}; do
_Dbg_help_set $subcmd 1
done
return 0
fi
subcmd="$1"
typeset label="$2"
if [[ -n "${_Dbg_command_help_set[$subcmd]}" ]] ; then
if [[ -z $label ]] ; then
_Dbg_msg_rst "${_Dbg_command_help_set[$subcmd]}"
return 0
else
label=$(builtin printf "set %-12s-- " $subcmd)
fi
fi
case $subcmd in
ar | arg | args )
_Dbg_msg \
"${label}Set argument list to give program when restarted."
return 0
;;
an | ann | anno | annot | annota | annotat | annotate )
if [[ -z $label ]] ; then
typeset post_label='
0 == normal; 1 == fullname (for use when running under emacs).'
fi
_Dbg_msg \
"${label}Set annotation level.$post_label"
return 0
;;
autoe | autoev | autoeva | autoeval )
_Dbg_help_set_onoff 'autoeval' 'autoeval' \
"Evaluate unrecognized commands"
return 0
;;
autol | autoli | autolis | autolist )
typeset onoff="on."
[[ -z ${_Dbg_cmdloop_hooks['list']} ]] && onoff='off.'
_Dbg_msg \
"${label}Run list command is ${onoff}"
return 0
;;
b | ba | bas | base | basen | basena | basenam | basename )
_Dbg_help_set_onoff 'basename' 'basename' \
"Set short filenames (the basename) in debug output"
return 0
;;
de|deb|debu|debug )
_Dbg_help_set_onoff 'debug' 'debug' \
"Set debugging the debugger"
return 0
;;
di|dif|diff|diffe|differe|differen|different )
typeset onoff=${1:-'on'}
(( _Dbg_set_different )) && onoff='on.'
_Dbg_msg \
"${label}Set to stop at a different line is" $onoff
return 0
;;
do|doll|dolla|dollar|dollar0 )
_Dbg_msg "${label}Set \$0"
return 0
;;
e | ed | edi | edit | editi | editin | 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
;;
high | highl | highlight )
_Dbg_msg_nocr \
"${label}Set syntax highlighting of source listings is "
if [[ -z $_Dbg_edit ]] ; then
_Dbg_msg 'off.'
else
_Dbg_msg 'on.'
fi
return 0
;;
his | hist | history )
_Dbg_msg_nocr \
"${label}Set record command history is "
if [[ -z $_Dbg_set_edit ]] ; then
_Dbg_msg 'off.'
else
_Dbg_msg 'on.'
fi
;;
si | siz | size )
eval "$_seteglob"
if [[ -z $2 ]] ; then
_Dbg_errmsg "Argument required (integer to set it to.)."
elif [[ $2 != $int_pat ]] ; then
_Dbg_errmsg "Integer argument expected; got: $2"
eval "$_resteglob"
return 1
fi
eval "$_resteglob"
_Dbg_write_journal_eval "_Dbg_history_length=$2"
return 0
;;
lin | line | linet | linetr | linetra | linetrac | linetrace )
typeset onoff='off.'
(( _Dbg_set_linetrace )) && onoff='on.'
_Dbg_msg \
"${label}Set tracing execution of lines before executed is" $onoff
if (( _Dbg_set_linetrace )) ; then
_Dbg_msg \
"set linetrace delay -- delay before executing a line is" $_Dbg_set_linetrace_delay
fi
return 0
;;
lis | list | lists | listsi | listsiz | listsize )
_Dbg_msg \
"${label}Set number of source lines $_Dbg_debugger_name will list by default."
;;
p | pr | pro | prom | promp | prompt )
_Dbg_msg \
"${label}${_Dbg_debugger_name}'s prompt is:\n" \
" \"$_Dbg_prompt_str\"."
return 0
;;
sho|show|showc|showco|showcom|showcomm|showcomma|showcomman|showcommand )
_Dbg_msg \
"${label}Set showing the command to execute is $_Dbg_set_show_command."
return 0
;;
sty | style )
[[ -n $label ]] && label='set style -- '
_Dbg_msg_nocr \
"${label}Set pygments highlighting style is "
if [[ -z $_Dbg_set_style ]] ; then
_Dbg_msg 'off.'
else
_Dbg_msg "${_Dbg_set_style}"
fi
;;
t|tr|tra|trac|trace|trace-|tracec|trace-co|trace-com|trace-comm|trace-comma|trace-comman|trace-command|trace-commands )
_Dbg_msg \
"${label}Set showing debugger commands is $_Dbg_set_trace_commands."
return 0
;;
tt|tty )
typeset dbg_tty=$_Dbg_tty
[[ -n $dbg_tty ]] && dbg_tty=$(tty)
_Dbg_msg \
"${label}Debugger output goes to $dbg_tty."
return 0
;;
wi|wid|widt|width )
_Dbg_msg \
"${label}Set maximum width of lines is $_Dbg_set_linewidth."
return 0
;;
* )
_Dbg_errmsg \
"There is no \"set $subcmd\" command."
esac
}
_Dbg_help_show() {
if (( $# == 0 )) ; then
typeset -a list
list=("${!_Dbg_command_help_show[@]}")
sort_list 0 ${#list[@]}-1
typeset subcmd
for subcmd in ${list[@]}; do
[[ $subcmd != 'version' ]] && _Dbg_help_show $subcmd 1
done
return 0
fi
typeset subcmd=$1
typeset label="$2"
if [[ -n "${_Dbg_command_help_show[$subcmd]}" ]] ; then
if [[ -z $label ]] ; then
_Dbg_msg_rst "${_Dbg_command_help_show[$subcmd]}"
return 0
else
label=$(builtin printf "show %-12s-- " $subcmd)
fi
fi
case $subcmd in
al | ali | alia | alias | aliase | aliases )
_Dbg_msg \
"${label}Show list of aliases currently in effect."
return 0
;;
ar | arg | args )
_Dbg_msg \
"${label}Show argument list to give program on restart."
return 0
;;
an | ann | anno | annot | annota | annotat | annotate )
_Dbg_msg \
"${label}Show annotation_level"
return 0
;;
autoe | autoev | autoeva | autoeval )
_Dbg_msg \
"${label}Show if we evaluate unrecognized commands."
return 0
;;
autol | autoli | autolis | autolist )
_Dbg_msg \
"${label}Run list before command loop?"
return 0
;;
b | ba | bas | base | basen | basena | basenam | basename )
_Dbg_msg \
"${label}Show if we are are to show short or long filenames."
return 0
;;
com | comm | comma | comman | command | commands )
_Dbg_msg \
"${label}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 \
"${label}Conditions for redistributing copies of debugger."
;;
d|de|deb|debu|debug)
_Dbg_msg \
"${label}Show if we are set to debug the debugger."
return 0
;;
different | force)
_Dbg_msg \
"${label}Show if debugger stops at a different line."
return 0
;;
dir|dire|direc|direct|directo|director|directori|directorie|directories)
_Dbg_msg \
"${label}Show file directories searched for listing source."
;;
editing )
_Dbg_msg \
"${label}Show editing of command lines and edit style."
;;
highlight )
_Dbg_msg \
"${label}Show if we syntax highlight source listings."
return 0
;;
history )
_Dbg_msg \
"${label}Show if we are recording command history."
return 0
;;
lin | line | linet | linetr | linetra | linetrac | linetrace )
_Dbg_msg \
"${label}Show whether to trace lines before execution."
;;
lis | list | lists | listsi | listsiz | listsize )
_Dbg_msg \
"${label}Show number of source lines debugger will list by default."
;;
p | pr | pro | prom | promp | prompt )
_Dbg_msg \
"${label}Show debugger prompt."
return 0
;;
sty | style )
_Dbg_msg \
"show style -- Show pygments style in source-code listings."
;;
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
;;
tt | tty )
_Dbg_msg \
"${label}Where debugger output goes to."
return 0
;;
wa | war | warr | warra | warran | warrant | warranty )
_Dbg_msg \
"${label}Various kinds of warranty you do not have."
return 0
;;
width )
_Dbg_msg \
"${label}maximum width of a line."
return 0
;;
* )
_Dbg_msg \
"Undefined show command: \"$subcmd\". Try \"help show\"."
esac
}
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.