Set the SourceView.file to nil and tell the stack NSArrayController to rearrange
[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 [stackArrayController rearrangeObjects];
117 [[sourceViewer textView] setString:@""];
118 sourceViewer.file = nil;
119 }
120
121 /**
122 * Sets the status to be "Error" and then displays the error message
123 */
124 - (void)setError:(NSString *)anError
125 {
126 [errormsg setStringValue:anError];
127 [errormsg setHidden:NO];
128 }
129
130 /**
131 * Handles a GDBpConnection error
132 */
133 - (void)handleConnectionError:(NSNotification *)notif
134 {
135 [self setError:[[notif userInfo] valueForKey:@"NSString"]];
136 }
137
138 /**
139 * Called once the socket accepts and MacGDBp is connected to the debugger
140 */
141 - (void)startDebugger
142 {
143 [self stepIn:self];
144 }
145
146 /**
147 * Forwards the message to run script execution to the connection
148 */
149 - (IBAction)run:(id)sender
150 {
151 StackFrame *frame = [connection run];
152 [stackController pop];
153
154 if ([connection isConnected] && frame != nil)
155 {
156 [stackController push:frame];
157 [self updateStackViewer];
158 }
159 }
160
161 /**
162 * Tells the connection to ask the server to reconnect
163 */
164 - (IBAction)reconnect:(id)sender
165 {
166 [connection reconnect];
167 [self resetDisplays];
168 }
169
170 /**
171 * Forwards the message to "step in" to the connection
172 */
173 - (IBAction)stepIn:(id)sender
174 {
175 if ([[variablesTreeController selectedObjects] count] > 0)
176 selectedVariable = [[variablesTreeController selectedObjects] objectAtIndex:0];
177
178 StackFrame *frame = [connection stepIn];
179 if ([frame isShiftedFrame:[stackController peek]])
180 [stackController pop];
181 [stackController push:frame];
182 [self updateStackViewer];
183 }
184
185 /**
186 * Forwards the message to "step out" to the connection
187 */
188 - (IBAction)stepOut:(id)sender
189 {
190 if ([[variablesTreeController selectedObjects] count] > 0)
191 selectedVariable = [[variablesTreeController selectedObjects] objectAtIndex:0];
192
193 StackFrame *frame = [connection stepOut];
194 [stackController pop]; // frame we were out of
195 [stackController pop]; // frame we are returning to
196 [stackController push:frame];
197 [self updateStackViewer];
198 }
199
200 /**
201 * Forwards the message to "step over" to the connection
202 */
203 - (IBAction)stepOver:(id)sender
204 {
205 if ([[variablesTreeController selectedObjects] count] > 0)
206 selectedVariable = [[variablesTreeController selectedObjects] objectAtIndex:0];
207
208 StackFrame *frame = [connection stepOver];
209 [stackController pop];
210 [stackController push:frame];
211 [self updateStackViewer];
212 }
213
214 /**
215 * NSTableView delegate method that informs the controller that the stack selection did change and that
216 * we should update the source viewer
217 */
218 - (void)tableViewSelectionDidChange:(NSNotification *)notif
219 {
220 [self updateSourceViewer];
221 [self expandVariables];
222 }
223
224 /**
225 * Called whenver an item is expanded. This allows us to determine if we need to fetch deeper
226 */
227 - (void)outlineViewItemDidExpand:(NSNotification *)notif
228 {
229 NSTreeNode *node = [[notif userInfo] objectForKey:@"NSObject"];
230 [expandedVariables addObject:[[node representedObject] fullname]];
231 }
232
233 /**
234 * Called when an item was collapsed. This allows us to remove it from the list of expanded items
235 */
236 - (void)outlineViewItemDidCollapse:(NSNotification *)notif
237 {
238 [expandedVariables removeObject:[[[[notif userInfo] objectForKey:@"NSObject"] representedObject] fullname]];
239 }
240
241 #pragma mark Private
242
243 /**
244 * Does the actual updating of the source viewer by reading in the file
245 */
246 - (void)updateSourceViewer
247 {
248 id selection = [stackArrayController selection];
249 if ([selection valueForKey:@"filename"] == NSNoSelectionMarker)
250 return;
251
252 // get the filename
253 NSString *filename = [selection valueForKey:@"filename"];
254 filename = [[NSURL URLWithString:filename] path];
255 if ([filename isEqualToString:@""])
256 return;
257
258 // replace the source if necessary
259 if (![sourceViewer.file isEqualToString:filename])
260 {
261 NSString *source = [selection valueForKey:@"source"];
262 [sourceViewer setString:source asFile:filename];
263
264 NSSet *breakpoints = [NSSet setWithArray:[[BreakpointManager sharedManager] breakpointsForFile:filename]];
265 [[sourceViewer numberView] setMarkers:breakpoints];
266 }
267
268 int line = [[selection valueForKey:@"lineNumber"] intValue];
269 [sourceViewer setMarkedLine:line];
270 [sourceViewer scrollToLine:line];
271
272 [[sourceViewer textView] display];
273 }
274
275 /**
276 * Does some house keeping to the stack viewer
277 */
278 - (void)updateStackViewer
279 {
280 [stackArrayController rearrangeObjects];
281 [stackArrayController setSelectionIndex:0];
282 [self expandVariables];
283 }
284
285 /**
286 * Expands the variables based on the stored set
287 */
288 - (void)expandVariables
289 {
290 NSString *selection = [selectedVariable fullname];
291
292 for (int i = 0; i < [variablesOutlineView numberOfRows]; i++)
293 {
294 NSTreeNode *node = [variablesOutlineView itemAtRow:i];
295 NSString *fullname = [[node representedObject] fullname];
296
297 // see if it needs expanding
298 if ([expandedVariables containsObject:fullname])
299 [variablesOutlineView expandItem:node];
300
301 // select it if we had it selected before
302 if ([fullname isEqualToString:selection])
303 [variablesTreeController setSelectionIndexPath:[node indexPath]];
304 }
305 }
306
307 #pragma mark BSSourceView Delegate
308
309 /**
310 * The gutter was clicked, which indicates that a breakpoint needs to be changed
311 */
312 - (void)gutterClickedAtLine:(int)line forFile:(NSString *)file
313 {
314 BreakpointManager *mngr = [BreakpointManager sharedManager];
315
316 if ([mngr hasBreakpointAt:line inFile:file])
317 {
318 [mngr removeBreakpointAt:line inFile:file];
319 }
320 else
321 {
322 Breakpoint *bp = [[Breakpoint alloc] initWithLine:line inFile:file];
323 [mngr addBreakpoint:bp];
324 [bp release];
325 }
326
327 [[sourceViewer numberView] setMarkers:[NSSet setWithArray:[mngr breakpointsForFile:file]]];
328 [[sourceViewer numberView] setNeedsDisplay:YES];
329 }
330
331 @end