Not all breakpoint markers would be displayed in the active code debugger
[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 StackFrame *frame = [connection stepIn];
174 if ([frame isShiftedFrame:[stackController peek]])
175 [stackController pop];
176 [stackController push:frame];
177 [self updateStackViewer];
178 }
179
180 /**
181 * Forwards the message to "step out" to the connection
182 */
183 - (IBAction)stepOut:(id)sender
184 {
185 StackFrame *frame = [connection stepOut];
186 [stackController pop]; // frame we were out of
187 [stackController pop]; // frame we are returning to
188 [stackController push:frame];
189 [self updateStackViewer];
190 }
191
192 /**
193 * Forwards the message to "step over" to the connection
194 */
195 - (IBAction)stepOver:(id)sender
196 {
197 StackFrame *frame = [connection stepOver];
198 [stackController pop];
199 [stackController push:frame];
200 [self updateStackViewer];
201 }
202
203 /**
204 * NSTableView delegate method that informs the controller that the stack selection did change and that
205 * we should update the source viewer
206 */
207 - (void)tableViewSelectionDidChange:(NSNotification *)notif
208 {
209 [self updateSourceViewer];
210 [self expandVariables];
211 }
212
213 /**
214 * Called whenver an item is expanded. This allows us to determine if we need to fetch deeper
215 */
216 - (void)outlineViewItemDidExpand:(NSNotification *)notif
217 {
218 NSTreeNode *node = [[notif userInfo] objectForKey:@"NSObject"];
219 [expandedVariables addObject:[[node representedObject] fullname]];
220 }
221
222 /**
223 * Called when an item was collapsed. This allows us to remove it from the list of expanded items
224 */
225 - (void)outlineViewItemDidCollapse:(NSNotification *)notif
226 {
227 [expandedVariables removeObject:[[[[notif userInfo] objectForKey:@"NSObject"] representedObject] fullname]];
228 }
229
230 #pragma mark Private
231
232 /**
233 * Does the actual updating of the source viewer by reading in the file
234 */
235 - (void)updateSourceViewer
236 {
237 id selection = [stackArrayController selection];
238 if ([selection valueForKey:@"filename"] == NSNoSelectionMarker)
239 return;
240
241 // get the filename
242 NSString *filename = [selection valueForKey:@"filename"];
243 filename = [[NSURL URLWithString:filename] path];
244 if ([filename isEqualToString:@""])
245 return;
246
247 // replace the source if necessary
248 if (![sourceViewer.file isEqualToString:filename])
249 {
250 NSString *source = [selection valueForKey:@"source"];
251 [sourceViewer setString:source asFile:filename];
252
253 NSSet *breakpoints = [NSSet setWithArray:[[BreakpointManager sharedManager] breakpointsForFile:filename]];
254 [[sourceViewer numberView] setMarkers:breakpoints];
255 }
256
257 int line = [[selection valueForKey:@"lineNumber"] intValue];
258 [sourceViewer setMarkedLine:line];
259 [sourceViewer scrollToLine:line];
260
261 [[sourceViewer textView] display];
262 }
263
264 /**
265 * Does some house keeping to the stack viewer
266 */
267 - (void)updateStackViewer
268 {
269 [stackArrayController rearrangeObjects];
270 [stackArrayController setSelectionIndex:0];
271 [self expandVariables];
272 }
273
274 /**
275 * Expands the variables based on the stored set
276 */
277 - (void)expandVariables
278 {
279 for (int i = 0; i < [variablesOutlineView numberOfRows]; i++)
280 {
281 NSTreeNode *node = [variablesOutlineView itemAtRow:i];
282 if ([expandedVariables containsObject:[[node representedObject] fullname]])
283 {
284 [variablesOutlineView expandItem:node];
285 }
286 }
287 }
288
289 #pragma mark BSSourceView Delegate
290
291 /**
292 * The gutter was clicked, which indicates that a breakpoint needs to be changed
293 */
294 - (void)gutterClickedAtLine:(int)line forFile:(NSString *)file
295 {
296 BreakpointManager *mngr = [BreakpointManager sharedManager];
297
298 if ([mngr hasBreakpointAt:line inFile:file])
299 {
300 [mngr removeBreakpointAt:line inFile:file];
301 }
302 else
303 {
304 Breakpoint *bp = [[Breakpoint alloc] initWithLine:line inFile:file];
305 [mngr addBreakpoint:bp];
306 [bp release];
307 }
308
309 [[sourceViewer numberView] setMarkers:[NSSet setWithArray:[mngr breakpointsForFile:file]]];
310 [[sourceViewer numberView] setNeedsDisplay:YES];
311 }
312
313 @end