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
|
.\" Automatically generated by Pod::Man 4.14 (Pod::Simple 3.43)
.\"
.\" Standard preamble:
.\" ========================================================================
.de Sp \" Vertical space (when we can't use .PP)
.if t .sp .5v
.if n .sp
..
.de Vb \" Begin verbatim text
.ft CW
.nf
.ne \\$1
..
.de Ve \" End verbatim text
.ft R
.fi
..
.\" Set up some character translations and predefined strings. \*(-- will
.\" give an unbreakable dash, \*(PI will give pi, \*(L" will give a left
.\" double quote, and \*(R" will give a right double quote. \*(C+ will
.\" give a nicer C++. Capital omega is used to do unbreakable dashes and
.\" therefore won't be available. \*(C` and \*(C' expand to `' in nroff,
.\" nothing in troff, for use with C<>.
.tr \(*W-
.ds C+ C\v'-.1v'\h'-1p'\s-2+\h'-1p'+\s0\v'.1v'\h'-1p'
.ie n \{\
. ds -- \(*W-
. ds PI pi
. if (\n(.H=4u)&(1m=24u) .ds -- \(*W\h'-12u'\(*W\h'-12u'-\" diablo 10 pitch
. if (\n(.H=4u)&(1m=20u) .ds -- \(*W\h'-12u'\(*W\h'-8u'-\" diablo 12 pitch
. ds L" ""
. ds R" ""
. ds C` ""
. ds C' ""
'br\}
.el\{\
. ds -- \|\(em\|
. ds PI \(*p
. ds L" ``
. ds R" ''
. ds C`
. ds C'
'br\}
.\"
.\" Escape single quotes in literal strings from groff's Unicode transform.
.ie \n(.g .ds Aq \(aq
.el .ds Aq '
.\"
.\" If the F register is >0, we'll generate index entries on stderr for
.\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index
.\" entries marked with X<> in POD. Of course, you'll have to process the
.\" output yourself in some meaningful fashion.
.\"
.\" Avoid warning from groff about undefined register 'F'.
.de IX
..
.nr rF 0
.if \n(.g .if rF .nr rF 1
.if (\n(rF:(\n(.g==0)) \{\
. if \nF \{\
. de IX
. tm Index:\\$1\t\\n%\t"\\$2"
..
. if !\nF==2 \{\
. nr % 0
. nr F 2
. \}
. \}
.\}
.rr rF
.\" ========================================================================
.\"
.IX Title "DB 3perl"
.TH DB 3perl "2023-11-25" "perl v5.36.0" "Perl Programmers Reference Guide"
.\" For nroff, turn off justification. Always turn off hyphenation; it makes
.\" way too many mistakes in technical documents.
.if n .ad l
.nh
.SH "NAME"
DB \- programmatic interface to the Perl debugging API
.SH "SYNOPSIS"
.IX Header "SYNOPSIS"
.Vb 3
\& package CLIENT;
\& use DB;
\& @ISA = qw(DB);
\&
\& # these (inherited) methods can be called by the client
\&
\& CLIENT\->register() # register a client package name
\& CLIENT\->done() # de\-register from the debugging API
\& CLIENT\->skippkg(\*(Aqhide::hide\*(Aq) # ask DB not to stop in this package
\& CLIENT\->cont([WHERE]) # run some more (until BREAK or
\& # another breakpointt)
\& CLIENT\->step() # single step
\& CLIENT\->next() # step over
\& CLIENT\->ret() # return from current subroutine
\& CLIENT\->backtrace() # return the call stack description
\& CLIENT\->ready() # call when client setup is done
\& CLIENT\->trace_toggle() # toggle subroutine call trace mode
\& CLIENT\->subs([SUBS]) # return subroutine information
\& CLIENT\->files() # return list of all files known to DB
\& CLIENT\->lines() # return lines in currently loaded file
\& CLIENT\->loadfile(FILE,LINE) # load a file and let other clients know
\& CLIENT\->lineevents() # return info on lines with actions
\& CLIENT\->set_break([WHERE],[COND])
\& CLIENT\->set_tbreak([WHERE])
\& CLIENT\->clr_breaks([LIST])
\& CLIENT\->set_action(WHERE,ACTION)
\& CLIENT\->clr_actions([LIST])
\& CLIENT\->evalcode(STRING) # eval STRING in executing code\*(Aqs context
\& CLIENT\->prestop([STRING]) # execute in code context before stopping
\& CLIENT\->poststop([STRING])# execute in code context before resuming
\&
\& # These methods will be called at the appropriate times.
\& # Stub versions provided do nothing.
\& # None of these can block.
\&
\& CLIENT\->init() # called when debug API inits itself
\& CLIENT\->stop(FILE,LINE) # when execution stops
\& CLIENT\->idle() # while stopped (can be a client event loop)
\& CLIENT\->cleanup() # just before exit
\& CLIENT\->output(LIST) # called to print any output that
\& # the API must show
.Ve
.SH "DESCRIPTION"
.IX Header "DESCRIPTION"
Perl debug information is frequently required not just by debuggers,
but also by modules that need some \*(L"special\*(R" information to do their
job properly, like profilers.
.PP
This module abstracts and provides all of the hooks into Perl internal
debugging functionality, so that various implementations of Perl debuggers
(or packages that want to simply get at the \*(L"privileged\*(R" debugging data)
can all benefit from the development of this common code. Currently used
by Swat, the perl/Tk \s-1GUI\s0 debugger.
.PP
Note that multiple \*(L"front-ends\*(R" can latch into this debugging \s-1API\s0
simultaneously. This is intended to facilitate things like
debugging with a command line and \s-1GUI\s0 at the same time, debugging
debuggers etc. [Sounds nice, but this needs some serious support \*(-- \s-1GSAR\s0]
.PP
In particular, this \s-1API\s0 does \fBnot\fR provide the following functions:
.IP "\(bu" 4
data display
.IP "\(bu" 4
command processing
.IP "\(bu" 4
command alias management
.IP "\(bu" 4
user interface (tty or graphical)
.PP
These are intended to be services performed by the clients of this \s-1API.\s0
.PP
This module attempts to be squeaky clean w.r.t \f(CW\*(C`use strict;\*(C'\fR and when
warnings are enabled.
.SS "Global Variables"
.IX Subsection "Global Variables"
The following \*(L"public\*(R" global names can be read by clients of this \s-1API.\s0
Beware that these should be considered \*(L"readonly\*(R".
.ie n .IP "$DB::sub" 8
.el .IP "\f(CW$DB::sub\fR" 8
.IX Item "$DB::sub"
Name of current executing subroutine.
.ie n .IP "%DB::sub" 8
.el .IP "\f(CW%DB::sub\fR" 8
.IX Item "%DB::sub"
The keys of this hash are the names of all the known subroutines. Each value
is an encoded string that has the \fBsprintf\fR\|(3) format
\&\f(CW\*(C`("%s:%d\-%d", filename, fromline, toline)\*(C'\fR.
.ie n .IP "$DB::single" 8
.el .IP "\f(CW$DB::single\fR" 8
.IX Item "$DB::single"
Single-step flag. Will be true if the \s-1API\s0 will stop at the next statement.
.ie n .IP "$DB::signal" 8
.el .IP "\f(CW$DB::signal\fR" 8
.IX Item "$DB::signal"
Signal flag. Will be set to a true value if a signal was caught. Clients may
check for this flag to abort time-consuming operations.
.ie n .IP "$DB::trace" 8
.el .IP "\f(CW$DB::trace\fR" 8
.IX Item "$DB::trace"
This flag is set to true if the \s-1API\s0 is tracing through subroutine calls.
.ie n .IP "@DB::args" 8
.el .IP "\f(CW@DB::args\fR" 8
.IX Item "@DB::args"
Contains the arguments of current subroutine, or the \f(CW@ARGV\fR array if in the
toplevel context.
.ie n .IP "@DB::dbline" 8
.el .IP "\f(CW@DB::dbline\fR" 8
.IX Item "@DB::dbline"
List of lines in currently loaded file.
.ie n .IP "%DB::dbline" 8
.el .IP "\f(CW%DB::dbline\fR" 8
.IX Item "%DB::dbline"
Actions in current file (keys are line numbers). The values are strings that
have the \fBsprintf\fR\|(3) format \f(CW\*(C`("%s\e000%s", breakcondition, actioncode)\*(C'\fR.
.ie n .IP "$DB::package" 8
.el .IP "\f(CW$DB::package\fR" 8
.IX Item "$DB::package"
Package namespace of currently executing code.
.ie n .IP "$DB::filename" 8
.el .IP "\f(CW$DB::filename\fR" 8
.IX Item "$DB::filename"
Currently loaded filename.
.ie n .IP "$DB::subname" 8
.el .IP "\f(CW$DB::subname\fR" 8
.IX Item "$DB::subname"
Fully qualified name of currently executing subroutine.
.ie n .IP "$DB::lineno" 8
.el .IP "\f(CW$DB::lineno\fR" 8
.IX Item "$DB::lineno"
Line number that will be executed next.
.SS "\s-1API\s0 Methods"
.IX Subsection "API Methods"
The following are methods in the \s-1DB\s0 base class. A client must
access these methods by inheritance (*not* by calling them directly),
since the \s-1API\s0 keeps track of clients through the inheritance
mechanism.
.IP "\s-1CLIENT\-\s0>\fBregister()\fR" 8
.IX Item "CLIENT->register()"
register a client object/package
.IP "\s-1CLIENT\-\s0>evalcode(\s-1STRING\s0)" 8
.IX Item "CLIENT->evalcode(STRING)"
eval \s-1STRING\s0 in executing code context
.IP "\s-1CLIENT\-\s0>skippkg('D::hide')" 8
.IX Item "CLIENT->skippkg('D::hide')"
ask \s-1DB\s0 not to stop in these packages
.IP "\s-1CLIENT\-\s0>\fBrun()\fR" 8
.IX Item "CLIENT->run()"
run some more (until a breakpt is reached)
.IP "\s-1CLIENT\-\s0>\fBstep()\fR" 8
.IX Item "CLIENT->step()"
single step
.IP "\s-1CLIENT\-\s0>\fBnext()\fR" 8
.IX Item "CLIENT->next()"
step over
.IP "\s-1CLIENT\-\s0>\fBdone()\fR" 8
.IX Item "CLIENT->done()"
de-register from the debugging \s-1API\s0
.SS "Client Callback Methods"
.IX Subsection "Client Callback Methods"
The following \*(L"virtual\*(R" methods can be defined by the client. They will
be called by the \s-1API\s0 at appropriate points. Note that unless specified
otherwise, the debug \s-1API\s0 only defines empty, non-functional default versions
of these methods.
.IP "\s-1CLIENT\-\s0>\fBinit()\fR" 8
.IX Item "CLIENT->init()"
Called after debug \s-1API\s0 inits itself.
.IP "\s-1CLIENT\-\s0>prestop([\s-1STRING\s0])" 8
.IX Item "CLIENT->prestop([STRING])"
Usually inherited from \s-1DB\s0 package. If no arguments are passed,
returns the prestop action string.
.IP "\s-1CLIENT\-\s0>\fBstop()\fR" 8
.IX Item "CLIENT->stop()"
Called when execution stops (w/ args file, line).
.IP "\s-1CLIENT\-\s0>\fBidle()\fR" 8
.IX Item "CLIENT->idle()"
Called while stopped (can be a client event loop).
.IP "\s-1CLIENT\-\s0>poststop([\s-1STRING\s0])" 8
.IX Item "CLIENT->poststop([STRING])"
Usually inherited from \s-1DB\s0 package. If no arguments are passed,
returns the poststop action string.
.IP "\s-1CLIENT\-\s0>evalcode(\s-1STRING\s0)" 8
.IX Item "CLIENT->evalcode(STRING)"
Usually inherited from \s-1DB\s0 package. Ask for a \s-1STRING\s0 to be \f(CW\*(C`eval\*(C'\fR\-ed
in executing code context.
.IP "\s-1CLIENT\-\s0>\fBcleanup()\fR" 8
.IX Item "CLIENT->cleanup()"
Called just before exit.
.IP "\s-1CLIENT\-\s0>output(\s-1LIST\s0)" 8
.IX Item "CLIENT->output(LIST)"
Called when \s-1API\s0 must show a message (warnings, errors etc.).
.SH "BUGS"
.IX Header "BUGS"
The interface defined by this module is missing some of the later additions
to perl's debugging functionality. As such, this interface should be considered
highly experimental and subject to change.
.SH "AUTHOR"
.IX Header "AUTHOR"
Gurusamy Sarathy gsar@activestate.com
.PP
This code heavily adapted from an early version of perl5db.pl attributable
to Larry Wall and the Perl Porters.
|