Happy new year! Bump copyright.
[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;
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 return self;
57 }
58
59 /**
60 * Dealloc
61 */
62 - (void)dealloc
63 {
64 [connection release];
65 [expandedVariables release];
66 [stackController release];
67 [super dealloc];
68 }
69
70 /**
71 * Before the display get's comfortable, set up the NSTextView to scroll horizontally
72 */
73 - (void)awakeFromNib
74 {
75 [[self window] setExcludedFromWindowsMenu:YES];
76 [[self window] setTitle:[NSString stringWithFormat:@"GDBp @ %@:%d/%@", [connection remoteHost], [connection port], [connection session]]];
77 [sourceViewer setDelegate:self];
78 [stackArrayController setSortDescriptors:[NSArray arrayWithObject:[[[NSSortDescriptor alloc] initWithKey:@"index" ascending:YES] autorelease]]];
79 }
80
81 /**
82 * Called right before the window closes so that we can tell the socket to close down
83 */
84 - (void)windowWillClose:(NSNotification *)notif
85 {
86 [[connection socket] close];
87 }
88
89 /**
90 * Validates the menu items for the "Debugger" menu
91 */
92 - (BOOL)validateUserInterfaceItem:(id <NSValidatedUserInterfaceItem>)anItem
93 {
94 SEL action = [anItem action];
95
96 if (action == @selector(stepOut:))
97 return ([connection isConnected] && [stackController.stack count] > 1);
98 else if (action == @selector(stepIn:) || action == @selector(stepOver:) || action == @selector(run:))
99 return [connection isConnected];
100 else if (action == @selector(reconnect:))
101 return ![connection isConnected];
102
103 return [[self window] validateUserInterfaceItem:anItem];
104 }
105
106 /**
107 * Resets all the displays to be empty
108 */
109 - (void)resetDisplays
110 {
111 [variablesTreeController setContent:nil];
112 [stackController.stack removeAllObjects];
113 [[sourceViewer textView] setString:@""];
114 }
115
116 /**
117 * Sets the status to be "Error" and then displays the error message
118 */
119 - (void)setError:(NSString *)anError
120 {
121 [errormsg setStringValue:anError];
122 [errormsg setHidden:NO];
123 }
124
125 /**
126 * Handles a GDBpConnection error
127 */
128 - (void)handleConnectionError:(NSNotification *)notif
129 {
130 [self setError:[[notif userInfo] valueForKey:@"NSString"]];
131 }
132
133 /**
134 * Forwards the message to run script execution to the connection
135 */
136 - (IBAction)run:(id)sender
137 {
138 [connection run];
139 }
140
141 /**
142 * Tells the connection to ask the server to reconnect
143 */
144 - (IBAction)reconnect:(id)sender
145 {
146 [connection reconnect];
147 [self resetDisplays];
148 }
149
150 /**
151 * Forwards the message to "step in" to the connection
152 */
153 - (IBAction)stepIn:(id)sender
154 {
155 StackFrame *frame = [connection stepIn];
156 if ([frame isShiftedFrame:[stackController peek]])
157 [stackController pop];
158 [stackController push:frame];
159 [self updateStackViewer];
160 }
161
162 /**
163 * Forwards the message to "step out" to the connection
164 */
165 - (IBAction)stepOut:(id)sender
166 {
167 StackFrame *frame = [connection stepOut];
168 [stackController pop]; // frame we were out of
169 [stackController pop]; // frame we are returning to
170 [stackController push:frame];
171 [self updateStackViewer];
172 }
173
174 /**
175 * Forwards the message to "step over" to the connection
176 */
177 - (IBAction)stepOver:(id)sender
178 {
179 StackFrame *frame = [connection stepOver];
180 [stackController pop];
181 [stackController push:frame];
182 [self updateStackViewer];
183 }
184
185 /**
186 * NSTableView delegate method that informs the controller that the stack selection did change and that
187 * we should update the source viewer
188 */
189 - (void)tableViewSelectionDidChange:(NSNotification *)notif
190 {
191 [self updateSourceViewer];
192 [self expandVariables];
193 }
194
195 /**
196 * Called whenver an item is expanded. This allows us to determine if we need to fetch deeper
197 */
198 - (void)outlineViewItemDidExpand:(NSNotification *)notif
199 {
200 NSTreeNode *node = [[notif userInfo] objectForKey:@"NSObject"];
201 [expandedVariables addObject:[[node representedObject] fullname]];
202 }
203
204 /**
205 * Called when an item was collapsed. This allows us to remove it from the list of expanded items
206 */
207 - (void)outlineViewItemDidCollapse:(NSNotification *)notif
208 {
209 [expandedVariables removeObject:[[[[notif userInfo] objectForKey:@"NSObject"] representedObject] fullname]];
210 }
211
212 #pragma mark Private
213
214 /**
215 * Does the actual updating of the source viewer by reading in the file
216 */
217 - (void)updateSourceViewer
218 {
219 id selection = [stackArrayController selection];
220 if ([selection valueForKey:@"filename"] == NSNoSelectionMarker)
221 return;
222
223 // get the filename
224 NSString *filename = [selection valueForKey:@"filename"];
225 filename = [[NSURL URLWithString:filename] path];
226 if ([filename isEqualToString:@""])
227 return;
228
229 // replace the source if necessary
230 if (![sourceViewer.file isEqualToString:filename])
231 {
232 NSString *source = [selection valueForKey:@"source"];
233 [sourceViewer setString:source asFile:filename];
234 }
235
236 int line = [[selection valueForKey:@"lineNumber"] intValue];
237 [sourceViewer setMarkedLine:line];
238 [sourceViewer scrollToLine:line];
239
240 [[sourceViewer textView] display];
241 }
242
243 /**
244 * Does some house keeping to the stack viewer
245 */
246 - (void)updateStackViewer
247 {
248 [stackArrayController rearrangeObjects];
249 [stackArrayController setSelectionIndex:0];
250 [self expandVariables];
251 }
252
253 /**
254 * Expands the variables based on the stored set
255 */
256 - (void)expandVariables
257 {
258 for (int i = 0; i < [variablesOutlineView numberOfRows]; i++)
259 {
260 NSTreeNode *node = [variablesOutlineView itemAtRow:i];
261 if ([expandedVariables containsObject:[[node representedObject] fullname]])
262 {
263 [variablesOutlineView expandItem:node];
264 }
265 }
266 }
267
268 #pragma mark BSSourceView Delegate
269
270 /**
271 * The gutter was clicked, which indicates that a breakpoint needs to be changed
272 */
273 - (void)gutterClickedAtLine:(int)line forFile:(NSString *)file
274 {
275 BreakpointManager *mngr = [BreakpointManager sharedManager];
276
277 if ([mngr hasBreakpointAt:line inFile:file])
278 {
279 [mngr removeBreakpointAt:line inFile:file];
280 }
281 else
282 {
283 Breakpoint *bp = [[Breakpoint alloc] initWithLine:line inFile:file];
284 [mngr addBreakpoint:bp];
285 [bp release];
286 }
287
288 [[sourceViewer numberView] setMarkers:[NSSet setWithArray:[mngr breakpointsForFile:file]]];
289 [[sourceViewer numberView] setNeedsDisplay:YES];
290 }
291
292 @end