3 * Copyright (c) 2007 - 2008, Blue Static <http://www.bluestatic.org>
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.
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.
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
17 #import "DebuggerController.h"
18 #import "GDBpConnection.h"
19 #import "NSXMLElementAdditions.h"
20 #import "AppDelegate.h"
21 #import "BreakpointManager.h"
23 @interface DebuggerController (Private
)
24 - (void)updateSourceViewer
;
25 - (void)updateStackViewer
;
28 @implementation DebuggerController
30 @synthesize connection
, sourceViewer
;
33 * Initializes the window controller and sets the connection using preference
38 if (self = [super initWithWindowNibName
:@
"Debugger"])
40 stackController
= [[StackController alloc
] init
];
42 NSUserDefaults
*defaults
= [NSUserDefaults standardUserDefaults
];
43 connection
= [[GDBpConnection alloc
] initWithWindowController
:self
44 port
:[defaults integerForKey
:@
"Port"]
45 session
:[defaults stringForKey
:@
"IDEKey"]];
46 expandedRegisters
= [[NSMutableSet alloc
] init
];
47 [[self window
] makeKeyAndOrderFront
:nil];
48 [[self window
] setDelegate
:self];
50 [[NSNotificationCenter defaultCenter
]
52 selector
:@selector(handleConnectionError
:)
53 name
:kErrorOccurredNotif
66 [expandedRegisters release
];
67 [stackController release
];
72 * Before the display get's comfortable, set up the NSTextView to scroll horizontally
76 [self setStatus
:@
"Connecting"];
77 [[self window
] setExcludedFromWindowsMenu
:YES
];
78 [sourceViewer setDelegate
:self];
79 [stackArrayController setSortDescriptors
:[NSArray arrayWithObject
:[[[NSSortDescriptor alloc
] initWithKey
:@
"index" ascending
:YES
] autorelease
]]];
83 * Called right before the window closes so that we can tell the socket to close down
85 - (void)windowWillClose
:(NSNotification
*)notif
87 [[connection socket
] close
];
91 * Validates the menu items for the "Debugger" menu
93 - (BOOL)validateUserInterfaceItem
:(id <NSValidatedUserInterfaceItem
>)anItem
95 SEL action
= [anItem action
];
97 if (action
== @selector(stepOut
:))
98 return ([connection isConnected
] && [stackController.stack count
] > 1);
99 else if (action
== @selector(stepIn
:) || action
== @selector(stepOver
:) || action
== @selector(run
:))
100 return [connection isConnected
];
102 return [[self window
] validateUserInterfaceItem
:anItem
];
106 * Resets all the displays to be empty
108 - (void)resetDisplays
110 [registerController setContent
:nil];
111 [[sourceViewer textView
] setString
:@
""];
115 * Sets the status and clears any error message
117 - (void)setStatus
:(NSString
*)aStatus
119 [errormsg setHidden
:YES
];
120 [statusmsg setStringValue
:aStatus
];
121 [[self window
] setTitle
:[NSString stringWithFormat
:@
"GDBp @ %@:%d/%@", [connection remoteHost
], [connection port
], [connection session
]]];
123 [stepInButton setEnabled
:NO
];
124 [stepOutButton setEnabled
:NO
];
125 [stepOverButton setEnabled
:NO
];
126 [runButton setEnabled
:NO
];
127 [reconnectButton setEnabled
:NO
];
129 if ([connection isConnected
])
131 if ([aStatus isEqualToString
:@
"Starting"])
133 [stepInButton setEnabled
:YES
];
134 [runButton setEnabled
:YES
];
139 [reconnectButton setEnabled
:YES
];
144 * Sets the status to be "Error" and then displays the error message
146 - (void)setError
:(NSString
*)anError
148 [errormsg setStringValue
:anError
];
149 [self setStatus
:@
"Error"];
150 [errormsg setHidden
:NO
];
154 * Handles a GDBpConnection error
156 - (void)handleConnectionError
:(NSNotification
*)notif
158 [self setError
:[[notif userInfo
] valueForKey
:@
"NSString"]];
162 * Sets the stack root element so that the NSOutlineView can display it
164 - (void)setRegister
:(NSXMLDocument
*)elm
166 // XXX: Doing anything short of this will cause bindings to crash spectacularly for no reason whatsoever, and
167 // in seemingly arbitrary places. The class that crashes is _NSKeyValueObservationInfoCreateByRemoving.
168 // http://boredzo.org/blog/archives/2006-01-29/have-you-seen-this-crash says that this means nothing is
169 // being observed, but I doubt that he was using an NSOutlineView which seems to be one f!cking piece of
170 // sh!t when used with NSTreeController. http://www.cocoadev.com/index.pl?NSTreeControllerBugOrDeveloperError
171 // was the inspiration for this fix (below) but the author says that inserting does not work too well, but
172 // that's okay for us as we just need to replace the entire thing.
173 [registerController setContent
:nil];
174 [registerController setContent
:[[elm rootElement
] children
]];
176 for (int i
= 0; i
< [registerView numberOfRows
]; i
++)
178 NSTreeNode
*node
= [registerView itemAtRow
:i
];
179 if ([expandedRegisters containsObject
:[[node representedObject
] fullname
]])
181 [registerView expandItem
:node
];
187 * Forwards the message to run script execution to the connection
189 - (IBAction
)run
:(id)sender
195 * Tells the connection to ask the server to reconnect
197 - (IBAction
)reconnect
:(id)sender
199 [connection reconnect
];
203 * Forwards the message to "step in" to the connection
205 - (IBAction
)stepIn
:(id)sender
207 StackFrame
*frame
= [connection stepIn
];
208 if ([frame isShiftedFrame
:[stackController peek
]])
209 [stackController pop
];
210 [stackController push
:frame
];
211 [self updateStackViewer
];
215 * Forwards the message to "step out" to the connection
217 - (IBAction
)stepOut
:(id)sender
219 StackFrame
*frame
= [connection stepOut
];
220 [stackController pop
]; // frame we were out of
221 [stackController pop
]; // frame we are returning to
222 [stackController push
:frame
];
223 [self updateStackViewer
];
227 * Forwards the message to "step over" to the connection
229 - (IBAction
)stepOver
:(id)sender
231 StackFrame
*frame
= [connection stepOver
];
232 [stackController pop
];
233 [stackController push
:frame
];
234 [self updateStackViewer
];
238 * NSTableView delegate method that informs the controller that the stack selection did change and that
239 * we should update the source viewer
241 - (void)tableViewSelectionDidChange
:(NSNotification
*)notif
243 [self updateSourceViewer
];
247 * Called whenver an item is expanded. This allows us to determine if we need to fetch deeper
249 - (void)outlineViewItemDidExpand
:(NSNotification
*)notif
251 NSTreeNode
*node
= [[notif userInfo
] objectForKey
:@
"NSObject"];
252 [expandedRegisters addObject
:[[node representedObject
] fullname
]];
256 * Called when an item was collapsed. This allows us to remove it from the list of expanded items
258 - (void)outlineViewItemDidCollapse
:(NSNotification
*)notif
260 [expandedRegisters removeObject
:[[[[notif userInfo
] objectForKey
:@
"NSObject"] representedObject
] fullname
]];
266 * Does the actual updating of the source viewer by reading in the file
268 - (void)updateSourceViewer
270 id selection
= [stackArrayController selection
];
271 if ([selection valueForKey
:@
"filename"] == NSNoSelectionMarker
)
273 [[sourceViewer textView
] setString
:@
""];
277 // get the filename and then set the text
278 NSString
*filename
= [selection valueForKey
:@
"filename"];
279 filename
= [[NSURL URLWithString
:filename
] path
];
280 if ([filename isEqualToString
:@
""])
285 [sourceViewer setFile
:filename
];
287 int line
= [[selection valueForKey
:@
"lineNumber"] intValue
];
288 [sourceViewer setMarkedLine
:line
];
289 [sourceViewer scrollToLine
:line
];
291 // make sure the font stays Monaco
292 //[sourceViewer setFont:[NSFont fontWithName:@"Monaco" size:10.0]];
296 * Does some house keeping to the stack viewer
298 - (void)updateStackViewer
300 [stackArrayController rearrangeObjects
];
301 [stackArrayController setSelectionIndex
:0];
303 [stepInButton setEnabled
:YES
];
304 [stepOverButton setEnabled
:YES
];
305 [runButton setEnabled
:YES
];
308 #pragma mark BSSourceView Delegate
311 * The gutter was clicked, which indicates that a breakpoint needs to be changed
313 - (void)gutterClickedAtLine
:(int)line forFile
:(NSString
*)file
315 BreakpointManager
*mngr
= [BreakpointManager sharedManager
];
317 if ([mngr hasBreakpointAt
:line inFile
:file
])
319 [mngr removeBreakpointAt
:line inFile
:file
];
323 Breakpoint
*bp
= [[Breakpoint alloc
] initWithLine
:line inFile
:file
];
324 [mngr addBreakpoint
:bp
];
328 [[sourceViewer numberView
] setMarkers
:[NSSet setWithArray
:[mngr breakpointsForFile
:file
]]];
329 [[sourceViewer numberView
] setNeedsDisplay
:YES
];