Before setting selectedVariable, we need to make sure there is a selection!
[macgdbp.git] / Source / DebuggerController.m
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2009, Blue Static <http://www.bluestatic.org>
4 *
5 * This program is free software; you can redistribute it and/or modify it under the terms of the GNU
6 * General Public License as published by the Free Software Foundation; either version 2 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
10 * even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 * General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License along with this program; if not,
14 * write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
15 */
16
17 #import "DebuggerController.h"
18 #import "GDBpConnection.h"
19 #import "NSXMLElementAdditions.h"
20 #import "AppDelegate.h"
21 #import "BreakpointManager.h"
22
23 @interface DebuggerController (Private)
24 - (void)updateSourceViewer;
25 - (void)updateStackViewer;
26 - (void)expandVariables;
27 @end
28
29 @implementation DebuggerController
30
31 @synthesize connection, sourceViewer, inspector;
32
33 /**
34 * Initializes the window controller and sets the connection using preference
35 * values
36 */
37 - (id)init
38 {
39 if (self = [super initWithWindowNibName:@"Debugger"])
40 {
41 stackController = [[StackController alloc] init];
42
43 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
44 connection = [[GDBpConnection alloc] initWithPort:[defaults integerForKey:@"Port"] session:[defaults stringForKey:@"IDEKey"]];
45 expandedVariables = [[NSMutableSet alloc] init];
46 [[self window] makeKeyAndOrderFront:nil];
47 [[self window] setDelegate:self];
48
49 [[NSNotificationCenter defaultCenter]
50 addObserver:self
51 selector:@selector(handleConnectionError:)
52 name:kErrorOccurredNotif
53 object:connection
54 ];
55
56 if ([[NSUserDefaults standardUserDefaults] boolForKey:@"InspectorWindowVisible"])
57 [inspector orderFront:self];
58 }
59 return self;
60 }
61
62 /**
63 * Dealloc
64 */
65 - (void)dealloc
66 {
67 [connection release];
68 [expandedVariables release];
69 [stackController release];
70 [super dealloc];
71 }
72
73 /**
74 * Before the display get's comfortable, set up the NSTextView to scroll horizontally
75 */
76 - (void)awakeFromNib
77 {
78 [[self window] setExcludedFromWindowsMenu:YES];
79 [[self window] setTitle:[NSString stringWithFormat:@"GDBp @ %@:%d/%@", [connection remoteHost], [connection port], [connection session]]];
80 [sourceViewer setDelegate:self];
81 [stackArrayController setSortDescriptors:[NSArray arrayWithObject:[[[NSSortDescriptor alloc] initWithKey:@"index" ascending:YES] autorelease]]];
82 }
83
84 /**
85 * Called right before the window closes so that we can tell the socket to close down
86 */
87 - (void)windowWillClose:(NSNotification *)notif
88 {
89 [[connection socket] close];
90 }
91
92 /**
93 * Validates the menu items for the "Debugger" menu
94 */
95 - (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem
96 {
97 SEL action = [anItem action];
98
99 if (action == @selector(stepOut:))
100 return ([connection isConnected] && [stackController.stack count] > 1);
101 else if (action == @selector(stepIn:) || action == @selector(stepOver:) || action == @selector(run:))
102 return [connection isConnected];
103 else if (action == @selector(reconnect:))
104 return ![connection isConnected];
105
106 return [[self window] validateUserInterfaceItem:anItem];
107 }
108
109 /**
110 * Resets all the displays to be empty
111 */
112 - (void)resetDisplays
113 {
114 [variablesTreeController setContent:nil];
115 [stackController.stack removeAllObjects];
116 [[sourceViewer textView] setString:@""];
117 }
118
119 /**
120 * Sets the status to be "Error" and then displays the error message
121 */
122 - (void)setError:(NSString *)anError
123 {
124 [errormsg setStringValue:anError];
125 [errormsg setHidden:NO];
126 }
127
128 /**
129 * Handles a GDBpConnection error
130 */
131 - (void)handleConnectionError:(NSNotification *)notif
132 {
133 [self setError:[[notif userInfo] valueForKey:@"NSString"]];
134 }
135
136 /**
137 * Called once the socket accepts and MacGDBp is connected to the debugger
138 */
139 - (void)startDebugger
140 {
141 [self stepIn:self];
142 }
143
144 /**
145 * Forwards the message to run script execution to the connection
146 */
147 - (IBAction)run:(id)sender
148 {
149 StackFrame *frame = [connection run];
150 [stackController pop];
151
152 if ([connection isConnected] && frame != nil)
153 {
154 [stackController push:frame];
155 [self updateStackViewer];
156 }
157 }
158
159 /**
160 * Tells the connection to ask the server to reconnect
161 */
162 - (IBAction)reconnect:(id)sender
163 {
164 [connection reconnect];
165 [self resetDisplays];
166 }
167
168 /**
169 * Forwards the message to "step in" to the connection
170 */
171 - (IBAction)stepIn:(id)sender
172 {
173 if ([[variablesTreeController selectedObjects] count] > 0)
174 selectedVariable = [[variablesTreeController selectedObjects] objectAtIndex:0];
175
176 StackFrame *frame = [connection stepIn];
177 if ([frame isShiftedFrame:[stackController peek]])
178 [stackController pop];
179 [stackController push:frame];
180 [self updateStackViewer];
181 }
182
183 /**
184 * Forwards the message to "step out" to the connection
185 */
186 - (IBAction)stepOut:(id)sender
187 {
188 if ([[variablesTreeController selectedObjects] count] > 0)
189 selectedVariable = [[variablesTreeController selectedObjects] objectAtIndex:0];
190
191 StackFrame *frame = [connection stepOut];
192 [stackController pop]; // frame we were out of
193 [stackController pop]; // frame we are returning to
194 [stackController push:frame];
195 [self updateStackViewer];
196 }
197
198 /**
199 * Forwards the message to "step over" to the connection
200 */
201 - (IBAction)stepOver:(id)sender
202 {
203 if ([[variablesTreeController selectedObjects] count] > 0)
204 selectedVariable = [[variablesTreeController selectedObjects] objectAtIndex:0];
205
206 StackFrame *frame = [connection stepOver];
207 [stackController pop];
208 [stackController push:frame];
209 [self updateStackViewer];
210 }
211
212 /**
213 * NSTableView delegate method that informs the controller that the stack selection did change and that
214 * we should update the source viewer
215 */
216 - (void)tableViewSelectionDidChange:(NSNotification *)notif
217 {
218 [self updateSourceViewer];
219 [self expandVariables];
220 }
221
222 /**
223 * Called whenver an item is expanded. This allows us to determine if we need to fetch deeper
224 */
225 - (void)outlineViewItemDidExpand:(NSNotification *)notif
226 {
227 NSTreeNode *node = [[notif userInfo] objectForKey:@"NSObject"];
228 [expandedVariables addObject:[[node representedObject] fullname]];
229 }
230
231 /**
232 * Called when an item was collapsed. This allows us to remove it from the list of expanded items
233 */
234 - (void)outlineViewItemDidCollapse:(NSNotification *)notif
235 {
236 [expandedVariables removeObject:[[[[notif userInfo] objectForKey:@"NSObject"] representedObject] fullname]];
237 }
238
239 #pragma mark Private
240
241 /**
242 * Does the actual updating of the source viewer by reading in the file
243 */
244 - (void)updateSourceViewer
245 {
246 id selection = [stackArrayController selection];
247 if ([selection valueForKey:@"filename"] == NSNoSelectionMarker)
248 return;
249
250 // get the filename
251 NSString *filename = [selection valueForKey:@"filename"];
252 filename = [[NSURL URLWithString:filename] path];
253 if ([filename isEqualToString:@""])
254 return;
255
256 // replace the source if necessary
257 if (![sourceViewer.file isEqualToString:filename])
258 {
259 NSString *source = [selection valueForKey:@"source"];
260 [sourceViewer setString:source asFile:filename];
261
262 NSSet *breakpoints = [NSSet setWithArray:[[BreakpointManager sharedManager] breakpointsForFile:filename]];
263 [[sourceViewer numberView] setMarkers:breakpoints];
264 }
265
266 int line = [[selection valueForKey:@"lineNumber"] intValue];
267 [sourceViewer setMarkedLine:line];
268 [sourceViewer scrollToLine:line];
269
270 [[sourceViewer textView] display];
271 }
272
273 /**
274 * Does some house keeping to the stack viewer
275 */
276 - (void)updateStackViewer
277 {
278 [stackArrayController rearrangeObjects];
279 [stackArrayController setSelectionIndex:0];
280 [self expandVariables];
281 }
282
283 /**
284 * Expands the variables based on the stored set
285 */
286 - (void)expandVariables
287 {
288 NSString *selection = [selectedVariable fullname];
289
290 for (int i = 0; i < [variablesOutlineView numberOfRows]; i++)
291 {
292 NSTreeNode *node = [variablesOutlineView itemAtRow:i];
293 NSString *fullname = [[node representedObject] fullname];
294
295 // see if it needs expanding
296 if ([expandedVariables containsObject:fullname])
297 [variablesOutlineView expandItem:node];
298
299 // select it if we had it selected before
300 if ([fullname isEqualToString:selection])
301 [variablesTreeController setSelectionIndexPath:[node indexPath]];
302 }
303 }
304
305 #pragma mark BSSourceView Delegate
306
307 /**
308 * The gutter was clicked, which indicates that a breakpoint needs to be changed
309 */
310 - (void)gutterClickedAtLine:(int)line forFile:(NSString *)file
311 {
312 BreakpointManager *mngr = [BreakpointManager sharedManager];
313
314 if ([mngr hasBreakpointAt:line inFile:file])
315 {
316 [mngr removeBreakpointAt:line inFile:file];
317 }
318 else
319 {
320 Breakpoint *bp = [[Breakpoint alloc] initWithLine:line inFile:file];
321 [mngr addBreakpoint:bp];
322 [bp release];
323 }
324
325 [[sourceViewer numberView] setMarkers:[NSSet setWithArray:[mngr breakpointsForFile:file]]];
326 [[sourceViewer numberView] setNeedsDisplay:YES];
327 }
328
329 @end