Remove -[DebuggerController setStatus:]
[macgdbp.git] / Source / DebuggerController.m
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2008, 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 @end
27
28 @implementation DebuggerController
29
30 @synthesize connection, sourceViewer;
31
32 /**
33 * Initializes the window controller and sets the connection using preference
34 * values
35 */
36 - (id)init
37 {
38 if (self = [super initWithWindowNibName:@"Debugger"])
39 {
40 stackController = [[StackController alloc] init];
41
42 NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
43 connection = [[GDBpConnection alloc] initWithPort:[defaults integerForKey:@"Port"] session:[defaults stringForKey:@"IDEKey"]];
44 expandedRegisters = [[NSMutableSet alloc] init];
45 [[self window] makeKeyAndOrderFront:nil];
46 [[self window] setDelegate:self];
47
48 [[NSNotificationCenter defaultCenter]
49 addObserver:self
50 selector:@selector(handleConnectionError:)
51 name:kErrorOccurredNotif
52 object:connection
53 ];
54 }
55 return self;
56 }
57
58 /**
59 * Dealloc
60 */
61 - (void)dealloc
62 {
63 [connection release];
64 [expandedRegisters release];
65 [stackController release];
66 [super dealloc];
67 }
68
69 /**
70 * Before the display get's comfortable, set up the NSTextView to scroll horizontally
71 */
72 - (void)awakeFromNib
73 {
74 [[self window] setExcludedFromWindowsMenu:YES];
75 [[self window] setTitle:[NSString stringWithFormat:@"GDBp @ %@:%d/%@", [connection remoteHost], [connection port], [connection session]]];
76 [sourceViewer setDelegate:self];
77 [stackArrayController setSortDescriptors:[NSArray arrayWithObject:[[[NSSortDescriptor alloc] initWithKey:@"index" ascending:YES] autorelease]]];
78 }
79
80 /**
81 * Called right before the window closes so that we can tell the socket to close down
82 */
83 - (void)windowWillClose:(NSNotification *)notif
84 {
85 [[connection socket] close];
86 }
87
88 /**
89 * Validates the menu items for the "Debugger" menu
90 */
91 - (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem
92 {
93 SEL action = [anItem action];
94
95 if (action == @selector(stepOut:))
96 return ([connection isConnected] && [stackController.stack count] > 1);
97 else if (action == @selector(stepIn:) || action == @selector(stepOver:) || action == @selector(run:))
98 return [connection isConnected];
99 else if (action == @selector(reconnect:))
100 return ![connection isConnected];
101
102 return [[self window] validateUserInterfaceItem:anItem];
103 }
104
105 /**
106 * Resets all the displays to be empty
107 */
108 - (void)resetDisplays
109 {
110 [registerController setContent:nil];
111 [[sourceViewer textView] setString:@""];
112 }
113
114 /**
115 * Sets the status to be "Error" and then displays the error message
116 */
117 - (void)setError:(NSString *)anError
118 {
119 [errormsg setStringValue:anError];
120 [errormsg setHidden:NO];
121 }
122
123 /**
124 * Handles a GDBpConnection error
125 */
126 - (void)handleConnectionError:(NSNotification *)notif
127 {
128 [self setError:[[notif userInfo] valueForKey:@"NSString"]];
129 }
130
131 /**
132 * Sets the stack root element so that the NSOutlineView can display it
133 */
134 - (void)setRegister:(NSXMLDocument *)elm
135 {
136 // XXX: Doing anything short of this will cause bindings to crash spectacularly for no reason whatsoever, and
137 // in seemingly arbitrary places. The class that crashes is _NSKeyValueObservationInfoCreateByRemoving.
138 // http://boredzo.org/blog/archives/2006-01-29/have-you-seen-this-crash says that this means nothing is
139 // being observed, but I doubt that he was using an NSOutlineView which seems to be one f!cking piece of
140 // sh!t when used with NSTreeController. http://www.cocoadev.com/index.pl?NSTreeControllerBugOrDeveloperError
141 // was the inspiration for this fix (below) but the author says that inserting does not work too well, but
142 // that's okay for us as we just need to replace the entire thing.
143 [registerController setContent:nil];
144 [registerController setContent:[[elm rootElement] children]];
145
146 for (int i = 0; i < [registerView numberOfRows]; i++)
147 {
148 NSTreeNode *node = [registerView itemAtRow:i];
149 if ([expandedRegisters containsObject:[[node representedObject] fullname]])
150 {
151 [registerView expandItem:node];
152 }
153 }
154 }
155
156 /**
157 * Forwards the message to run script execution to the connection
158 */
159 - (IBAction)run:(id)sender
160 {
161 [connection run];
162 }
163
164 /**
165 * Tells the connection to ask the server to reconnect
166 */
167 - (IBAction)reconnect:(id)sender
168 {
169 [connection reconnect];
170 [self resetDisplays];
171 }
172
173 /**
174 * Forwards the message to "step in" to the connection
175 */
176 - (IBAction)stepIn:(id)sender
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 StackFrame *frame = [connection stepOut];
191 [stackController pop]; // frame we were out of
192 [stackController pop]; // frame we are returning to
193 [stackController push:frame];
194 [self updateStackViewer];
195 }
196
197 /**
198 * Forwards the message to "step over" to the connection
199 */
200 - (IBAction)stepOver:(id)sender
201 {
202 StackFrame *frame = [connection stepOver];
203 [stackController pop];
204 [stackController push:frame];
205 [self updateStackViewer];
206 }
207
208 /**
209 * NSTableView delegate method that informs the controller that the stack selection did change and that
210 * we should update the source viewer
211 */
212 - (void)tableViewSelectionDidChange:(NSNotification *)notif
213 {
214 [self updateSourceViewer];
215 }
216
217 /**
218 * Called whenver an item is expanded. This allows us to determine if we need to fetch deeper
219 */
220 - (void)outlineViewItemDidExpand:(NSNotification *)notif
221 {
222 NSTreeNode *node = [[notif userInfo] objectForKey:@"NSObject"];
223 [expandedRegisters addObject:[[node representedObject] fullname]];
224 }
225
226 /**
227 * Called when an item was collapsed. This allows us to remove it from the list of expanded items
228 */
229 - (void)outlineViewItemDidCollapse:(NSNotification *)notif
230 {
231 [expandedRegisters removeObject:[[[[notif userInfo] objectForKey:@"NSObject"] representedObject] fullname]];
232 }
233
234 #pragma mark Private
235
236 /**
237 * Does the actual updating of the source viewer by reading in the file
238 */
239 - (void)updateSourceViewer
240 {
241 id selection = [stackArrayController selection];
242 if ([selection valueForKey:@"filename"] == NSNoSelectionMarker)
243 {
244 [[sourceViewer textView] setString:@""];
245 return;
246 }
247
248 // get the filename and then set the text
249 NSString *filename = [selection valueForKey:@"filename"];
250 filename = [[NSURL URLWithString:filename] path];
251 if ([filename isEqualToString:@""])
252 {
253 return;
254 }
255
256 [sourceViewer setFile:filename];
257
258 int line = [[selection valueForKey:@"lineNumber"] intValue];
259 [sourceViewer setMarkedLine:line];
260 [sourceViewer scrollToLine:line];
261
262 // make sure the font stays Monaco
263 //[sourceViewer setFont:[NSFont fontWithName:@"Monaco" size:10.0]];
264 }
265
266 /**
267 * Does some house keeping to the stack viewer
268 */
269 - (void)updateStackViewer
270 {
271 [stackArrayController rearrangeObjects];
272 [stackArrayController setSelectionIndex:0];
273 }
274
275 #pragma mark BSSourceView Delegate
276
277 /**
278 * The gutter was clicked, which indicates that a breakpoint needs to be changed
279 */
280 - (void)gutterClickedAtLine:(int)line forFile:(NSString *)file
281 {
282 BreakpointManager *mngr = [BreakpointManager sharedManager];
283
284 if ([mngr hasBreakpointAt:line inFile:file])
285 {
286 [mngr removeBreakpointAt:line inFile:file];
287 }
288 else
289 {
290 Breakpoint *bp = [[Breakpoint alloc] initWithLine:line inFile:file];
291 [mngr addBreakpoint:bp];
292 [bp release];
293 }
294
295 [[sourceViewer numberView] setMarkers:[NSSet setWithArray:[mngr breakpointsForFile:file]]];
296 [[sourceViewer numberView] setNeedsDisplay:YES];
297 }
298
299 @end