The GemStone SmalltalkDebugging Tools allow you to inspect objects in both the GemStone and client object spaces, and to set breakpoints in and debug GemStone Smalltalk code, similarly to how you debug client Smalltalk code. GemBuilder’s Debugger and Inspectors are integrated with the client Smalltalk debugger to allow seamless debugging of code in both object spaces.
This chapter describe the differences and additions that GemBuilder makes to the client Smalltalk debugging tools.
Inspectors
describes how to view and modify the instance variables of server objects
Debugger
describes GemBuilder’s enhanced debugger
Breakpoints
describes step points and breakpoints, and the Breakpoint Browser
Stack Traces
describes GbsStackDumper, GemBuilder’s enhanced stack dumping facility
To allow you to examine the values of GemStone server objects and modify them when appropriate, GemBuilder provides enhancements to the client Smalltalk inspectors. When you select a GemStone Smalltalk expression and execute GS-Inspect it, an enhanced client Smalltalk inspector opens on the GemStone server object.
For example, if you select and GS-Inspect it on:
Array with: 'aaa' with: 'bbb' with: 23
The resulting inspector displays as shown in Figure 13.1.
When inspecting a GemStone server object, the inspector provides three or more tabs (depending on the specific object you are inspecting). Tabs with the GS prefix indicate that these apply to a GemStone server object.
The inspector allows you to examine the internal state of the object’s delegate in GemBuilder, by selecting the tab labeled “GS Delegate”.
When inspecting a client object that has a corresponding GemStone server object (or vice versa), the inspector allows you to view both the client object and the server object in the same inspector. Client objects with corresponding server objects includes replicates of server objects, forwarders to server objects, stubs, and objects that are always mapped such as nil, true, false, SmallIntegers, and Characters. When you are inspecting one of these objects, you will see two sets of tabs: one that allows you to examine the client object, and a second similar set of tabs with the GS prefix, to examine the associated GemStone server object.
For example, if you select the following text and Inspect it:
GBSM evaluate: 'Array with: ''aaa'' with: ''bbb'' with: 23'
The following inspector displays both the client and server object:
In the evaluation pane of the inspector, or any other pane, the use of “self” is resolved according to the following rules:
The GemStone Debugger is integrated with the client Smalltalk debugger, allowing you to step through client Smalltalk code and GemStone server code in the same tool. Using the GemStone debugger, you can:
When GemStone Smalltalk execution is interrupted, it either directly opens the Debugger, or a notifier that includes a Debug button. Selecting the Debug button opens the Debugger. A runtime error opens a notifier, while a breakpoint, user interrupt, or an Object >> pause opens a debugger. You may also use the menu item GS Debug-it to open a Debugger on a code snippet, which opens a debugger on that code.
The Debugger’s stack pane displays the active call stack and allows you to choose a context (stack frame) from that stack for manipulation in the window’s other panes. Both GemStone server and client contacts are listed. GemStone server contexts begin with “GS”.
The Debugger is much like the client Smalltalk debugger, with the menus enhanced with GemStone options. Like other GemBuilder text areas, the debugger source code pane provides commands to execute GemStone Smalltalk.
You may configure VisualWorks to color the GemStone server contexts, to distinguish them from client contexts. To do this, select the Settings button on the Launcher toolbar, or go to System > Settings, and select Debugger (under Tools). Select the button to edit the Context List Presentation. If no Patterns exist, create a new Pattern for Everything with the Pattern String *. Then, create a new Pattern with the Pattern String $L$*, and select a color for the GemStone server contexts text. This new Pattern must be above the Pattern String *.
Note that for Windows-based VisualWorks Look and Feel settings, the selection background color may leave selected context text unreadable when colored contexts are enabled.
Setting a breakpoint in your code allows your code to run up to that point, so you can start debugging there.
For the purpose of determining exactly where a step will go during debugging, a GemStone Smalltalk method is composed of step points. You can set breakpoints at any step point.
Generally, step points correspond to the message selector and, within the method, message-sends, assignments, and returns of nonatomic objects. However, compiler optimizations may occasionally result in a different, nonintuitive step point, particularly in a loop.
More detail on step points within GemStone Smalltalk methods is provided in the Topaz Programming Environment, Chapter 2.
Example 13.1 indicates step points with numbered carets, as is output in the topaz environment.
includesValue: value
^1
"Return true if the receiver contains an object of the same value
as the argument. Return false otherwise."
| found index size|
found := false.
^2
index := 0.
^3
size := self size.
^5 ^4
[ found not & (index < size)] whileTrue: [
^6 ^8 ^7 ^9
index := index + 1.
^11 ^10
found := value = (self at: index)
^14 ^13 ^12
].
^found
^15
If you use the GemStone debugger to step through this method, the first step takes you to step point 1, the point where includesValue: is about to be sent. Stepping again sends that message and halts the virtual machine at step point 2, the point where found is assigned. Another step sends that message and halts the virtual machine just before the result is assigned to index, and so on.
You can set a breakpoint in any method by selecting the position in the source text and menu item Set Breakpoint. The step point nearest your cursor position is used for the breakpoint, and the first letter of the text following the breakpoint will be highlighted (colored and underscored).
You can remove the breakpoint by selecting the specific break and using the menu item Remove Breakpoint, or by using Remove All Breakpoints. Breakpoints can also be removed using the Breakpoint Browser, described in the next section. This tool also allows you to disable breakpoints, but leave them in your methods.
When the GemStone Smalltalk virtual machine encounters an enabled breakpoint during execution, GemStone opens the GemStone Debugger. In the Debugger you can interactively explore the context in which execution halted.
To see a complete list of the breakpoints you have set anywhere in your GemStone server code, use the Breakpoint Browser. You can open a Break point Browser using the Browse > Breakpoints menu item on the GemStone Launcher.
In addition to allowing you to examine, remove and add breakpoints, the Breakpoint Browser allows you to disable breakpoints without removing them, and later re-enable these breakpoints. These operations can be performed on a single selected breakpoint or on all breakpoints.
A breakpoint browser has two panes: the list of break points on top, and the source code associated with the selected breakpoint on the bottom.
The breakpoint pane displays a scrollable list of the active breakpoints. The items in the list include the Class and method name, and the step point within the method. In this example above, a method break is set at step point 8 within the method nextPutAll: defined by class WriteStream.
The Breakpoint Pane has the following menu items:
update Update the list of breakpoints with any recently added breakpoints
remove Remove this breakpoint.
removeAll Remove all breakpoints
enable Enable this breakpoint. Has no effect if the breakpoint was not previously disabled.
enableAll Enable all breakpoints. Has no effect if no breakpoints were previously disabled.
disable Disable this breakpoint, but do not remove it. A disabled breakpoint will not cause a break, and displays with (disabled) in the breakpoint browser
In some situations it is easier to extract complete stack traces for later analysis, rather than debugging interactively. In addition, you may need a stack trace to provide to GemStone Technical Support. GemBuilder includes facilities to dump the complete stack, with more information than provided in the standard stack, including information on GemStone server contexts and “glue” contexts.
To extract a complete stack, execute
GbsStackDumper dumpAllProcessStacks
In response, all processes in the image write their complete contexts to a file named stacksAtx.txt in the current working directory, where x is a string containing a timestamp. For example, StacksAtFebruary-22-2013-11.00.20-AM.txt.
To dump the stacks to a particular file location:
GbsStackDumper dumpAllProcessStacksToFileNamed: aString
These methods do not require the debugger, and can be used in runtime applications.