/usr/share/gnu-smalltalk/examples/MiniDebugger.st is in gnu-smalltalk-common 3.2.4-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | "======================================================================
|
| Minimal inspector and debugger using DebugTools
|
|
======================================================================"
"======================================================================
|
| Copyright 2002, 2006, 2007 Free Software Foundation, Inc.
| Written by Paolo Bonzini.
|
| This file is part of GNU Smalltalk.
|
| GNU Smalltalk 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.
|
| GNU Smalltalk 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
| GNU Smalltalk; see the file COPYING. If not, write to the Free Software
| Foundation, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
======================================================================"
PackageLoader fileInPackage: #DebugTools!
Object subclass: #MiniTool
instanceVariableNames: 'commandArg command'
classVariableNames:''
poolDictionaries:''
category: 'Debugging-Support'
!
MiniTool subclass: #MiniInspector
instanceVariableNames: 'inspectedObject depth'
classVariableNames:''
poolDictionaries:''
category: 'Debugging-Support'
!
MiniTool subclass: #MiniDebugger
instanceVariableNames: 'debugger activeContext depth methodSourceCodeCache'
classVariableNames: ''
poolDictionaries: ''
category: 'System-Debugging-Support'
!
MiniInspector comment:
'I implement a primitive inspector which is launched by the MiniDebugger.'!
MiniDebugger comment:
'I implement a primitive (non graphical) debugger for use on systems without
graphics or when the real debugger dies (i.e. an error occurs in the
graphical debugger). The interface is vaguely similar to GDB.'!
!MiniTool class methodsFor: 'disabling debugging'!
debuggerClass
^nil
! !
!MiniTool methodsFor: 'rep loop'!
interpreterLoopWith: anObject
| line |
'read-eval-print loop; exit with empty line
' displayNl.
[
'(rep) ' display.
line := stdin nextLine.
line isEmpty
] whileFalse: [
self eval: line to: anObject
]
!
eval: line to: anObject
| result |
result := Behavior
evaluate: line
to: anObject
ifError: [ :f :l :e | e printNl. ^self ].
result printNl
! !
!MiniTool methodsFor: 'instance creation'!
showPrompt
self subclassResponsibility
!
eofCommand
self subclassResponsibility
!
doCommand
self subclassResponsibility
!
getCommand
| cmd |
self showPrompt.
cmd := stdin atEnd
ifTrue: [ { self eofCommand } ]
ifFalse: [ stdin nextLine substrings ].
cmd isEmpty ifFalse: [
command := (cmd at: 1) at: 1.
commandArg := cmd copyFrom: 2.
"Else repeat the last command."
].
self doCommand ifFalse: [
(command = $h) ifFalse: [ 'invalid command' displayNl ].
self help displayNl
].
!
help
self subclassResponsibility
! !
!MiniInspector class methodsFor: 'instance creation'!
openOn: anObject
self openOn: anObject depth: 0
!
openOn: anObject depth: n
self new initializeFor: anObject depth: n; commandLoop
! !
!MiniInspector methodsFor: 'command loop'!
help
^'inspector commands:
(e)val start read-eval-print loop
(i)nstvars print all instvars
(i)nstvars NUMBER inspect n-th instvar (negative=fixed, positive=indexed)
(p)rint print object
(p)rint NUMBER print n-th instvar (negative=fixed, positive=indexed)
(q)uit'
!
doCommand
(command = $p) ifTrue: [
stdout space: depth.
commandArg isEmpty
ifFalse: [ (self nthInstvar: commandArg first asInteger) printNl ]
ifTrue: [ inspectedObject printNl ].
^true
].
(command = $e) ifTrue: [
self interpreterLoopWith: inspectedObject.
^true
].
(command = $i) ifTrue: [
commandArg isEmpty
ifFalse: [ self inspectInstvar: commandArg first asInteger ]
ifTrue: [ self printInstVarsOf: inspectedObject ].
^true
].
^command = $q
!
eofCommand
^'q'
!
commandLoop
self printHeader.
[
self getCommand.
command = $q
] whileFalse.
!
showPrompt
stdout space: depth.
'(insp) ' display.
! !
!MiniInspector methodsFor: 'commands'!
inspectInstvar: which
self doInspect: (self nthInstvar: which).
self printHeader.
!
printInstVarsOf: anObject
stdout space: depth.
anObject inspect.
! !
!MiniInspector methodsFor: 'private'!
initializeFor: anObject depth: n
inspectedObject := anObject.
depth := n.
^self
!
printHeader
stdout space: depth.
'-- inspector: ' display.
inspectedObject basicPrintNl.
!
doInspect: anObject
self class openOn: anObject depth: depth + 1
!
nthInstvar: which
which < 0
ifTrue: [ ^inspectedObject instVarAt: which negated ].
^inspectedObject basicSize = 0
ifTrue: [ inspectedObject instVarAt: which ]
ifFalse: [ inspectedObject basicAt: which ]
! !
!MiniDebugger class methodsFor: 'class attributes'!
debuggingPriority
^FloatD infinity
! !
!MiniDebugger class methodsFor: 'instance creation'!
open: aString
[ :debugger || continuation arg |
Processor activeProcess name: 'Debugger'.
arg := Continuation currentDo: [ :cc |
continuation := cc.
aString ].
arg printNl.
[ self new debugger: debugger; commandLoop ]
on: SystemExceptions.DebuggerReentered
do: [ :ex | continuation value: ex messageText ]
] forkDebugger
! !
!MiniDebugger methodsFor: 'commands'!
debugger: aDebugger
debugger := aDebugger.
!
commandLoop
"Show meaningful source code to the user."
[ debugger suspendedContext isInternalExceptionHandlingContext ]
whileTrue: [ debugger slowFinish ].
depth := 0.
activeContext := debugger suspendedContext.
debugger suspendedContext backtrace.
self printCurrentLine.
[
self getCommand.
debugger isActive
] whileTrue.
Processor activeProcess suspend
!
!MiniDebugger methodsFor: 'commands'!
step
debugger step.
self resetContext!
next
debugger next.
self resetContext!
finish
debugger finish: activeContext.
self resetContext!
continue
debugger continue!
resetContext
activeContext := debugger suspendedContext.
depth := 0!
up
activeContext parentContext isNil ifTrue: [ ^self ].
activeContext := activeContext parentContext.
depth := depth + 1.
!
down
depth > 0 ifFalse: [ ^self ].
depth := depth - 1.
activeContext := debugger suspendedContext.
depth timesRepeat: [ activeContext := activeContext parentContext ]
! !
!MiniDebugger methodsFor: 'printing'!
printCurrentMethod
| source |
source := self currentMethodSource.
source isNil ifTrue: [ ^self ].
source keysAndValuesDo: [ :line :code |
self rightJustify: line.
stdout
space;
nextPutAll: code;
nl
]
!
printCurrentLine
| line source |
activeContext isNil ifTrue: [ ^self ].
source := self currentMethodSource.
source isNil ifTrue: [ ^self ].
line := Debugger currentLineIn: activeContext.
line = 0 ifTrue: [ ^self ].
self rightJustify: line.
stdout
space;
nextPutAll: (source at: line ifAbsent: [ '' ]);
nl
! !
!MiniDebugger methodsFor: 'user commands'!
doStepCommand
| context arg |
('udsnfc' includes: command) ifFalse: [ ^false ].
context := activeContext.
arg := commandArg at: 1 ifAbsent: [ 1 ].
arg := arg asInteger.
arg timesRepeat: [
(command == $u) ifTrue: [ self up ].
(command == $d) ifTrue: [ self down ].
(command == $s) ifTrue: [ self step ].
(command == $n) ifTrue: [ self next ].
(command == $f) ifTrue: [ self finish ].
(command == $c) ifTrue: [ self continue ].
].
activeContext isNil ifFalse: [
activeContext == context ifFalse: [ activeContext printNl ].
self printCurrentLine ].
^true
!
doProcessCommand
| id processes terminated |
('TSKb' includes: command) ifFalse: [ ^false ].
(commandArg isEmpty and: [ command == $b ]) ifTrue: [
activeContext backtrace.
^true ].
processes := commandArg collect: [ :each || stream proc |
stream := each readStream.
id := Number readFrom: stream.
stream atEnd
ifFalse: [ 'please supply a valid process id' displayNl. ^true ].
proc := id asObject.
(proc isKindOf: Process)
ifFalse: [ 'please supply a valid process id' displayNl. ^true ].
proc ].
processes isEmpty ifTrue: [ processes := {debugger process} ].
terminated := false.
processes do: [ :proc |
proc suspendedContext isNil
ifTrue: [('%1: process was terminated' % { proc asOop }) displayNl]
ifFalse: [
(command == $b) ifTrue: [
processes size > 1 ifTrue: [
('backtrace for process %1' % { proc asOop }) displayNl].
proc context backtrace ].
(command == $S) ifTrue: [ proc suspend ].
(command == $K) ifTrue: [ proc primTerminate ].
(command == $T) ifTrue: [
proc terminate.
terminated := terminated or: [proc == debugger process]]]].
terminated ifTrue: [ self continue ].
^true
!
doCommand
self doStepCommand ifTrue: [ ^true ].
self doProcessCommand ifTrue: [ ^true ].
('PriIelwgxX' includes: command) ifFalse: [ ^false ].
(command == $h) ifTrue: [ ^true ].
commandArg isEmpty
ifFalse: [ 'no argument needed for this command' displayNl. ^true ].
(command == $P) ifTrue: [ self showProcesses ].
(command == $r) ifTrue: [ activeContext receiver printNl ].
(command == $i) ifTrue: [ MiniInspector openOn: activeContext receiver ].
(command == $I) ifTrue: [ MiniInspector openOn: activeContext ].
(command == $e) ifTrue: [ self interpreterLoopWith: activeContext receiver ].
(command == $l) ifTrue: [ self printCurrentMethod ].
(command == $w) ifTrue: [ activeContext printNl. self printCurrentLine ].
(command == $g) ifTrue: [ ObjectMemory globalGarbageCollect ].
(command == $X) ifTrue: [ ObjectMemory abort ].
(command == $x) ifTrue: [ ObjectMemory quit ].
^true
!
eofCommand
^'T'
!
showPrompt
'(debug) ' display.
!
help
^'Control flow commands:
s [n] step N times
n [n] next (step over send) N times
f [n] finish current method N times
c continue
Process commands: no ID means debugged process
P show process list
T [id]... terminate process
K [id]... kill process - no unwinds or cleanup
b [id]... backtrace
Examining state:
r print receiver on stdout
i inspect (enter MiniInspector on current receiver)
I inspect context (enter MiniInspector on current context)
e eval (enter read-eval-print loop on current receiver)
Examining the call stack:
u [n] go N frames up (default 1)
d [n] go N frames down (default 1)
l print current method
w print current frame
Other commands:
g collect all garbage
X exit Smalltalk, and dump core
x exit Smalltalk'
! !
!MiniDebugger methodsFor: 'private'!
currentMethodSource
activeContext isNil ifTrue: [ ^#() ].
methodSourceCodeCache isNil ifTrue: [
methodSourceCodeCache := WeakKeyIdentityDictionary new ].
^methodSourceCodeCache at: activeContext method ifAbsentPut: [
activeContext method methodSourceString lines ]
!
rightJustify: n
| printString |
printString := n printString.
stdout
space: (7 - printString size max: 0);
nextPutAll: printString
!
showProcesses
self rightJustify: debugger process asOop.
'>' display.
debugger process printNl.
Process allSubinstancesDo: [ :each |
each == debugger process ifFalse: [
self rightJustify: each asOop.
' ' display.
each printNl ] ]
! !
!UndefinedObject methodsFor: 'polymorphism'!
lines
^nil
! !
!Behavior methodsFor: 'debugging'!
debuggerClass
^MiniDebugger
! !
|