3 * Copyright (c) 2007 - 2011, 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 "DebuggerBackEnd.h"
19 #import "AppDelegate.h"
20 #import "NSXMLElementAdditions.h"
22 // GDBpConnection (Private) ////////////////////////////////////////////////////
24 @interface DebuggerBackEnd ()
25 @property (readwrite
, copy
) NSString
* status
;
27 - (void)recordCallback
:(SEL)callback forTransaction
:(NSNumber
*)txn
;
29 - (void)updateStatus
:(NSXMLDocument
*)response
;
30 - (void)debuggerStep
:(NSXMLDocument
*)response
;
31 - (void)rebuildStack
:(NSXMLDocument
*)response
;
32 - (void)getStackFrame
:(NSXMLDocument
*)response
;
33 - (void)setSource
:(NSXMLDocument
*)response
;
34 - (void)contextsReceived
:(NSXMLDocument
*)response
;
35 - (void)variablesReceived
:(NSXMLDocument
*)response
;
36 - (void)propertiesReceived
:(NSXMLDocument
*)response
;
40 // GDBpConnection //////////////////////////////////////////////////////////////
42 @implementation DebuggerBackEnd
45 @synthesize attached
= attached_
;
49 * Creates a new DebuggerBackEnd and initializes the socket from the given connection
52 - (id)initWithPort
:(NSUInteger
)aPort
54 if (self = [super init
])
56 stackFrames_
= [[NSMutableDictionary alloc
] init
];
57 callbackContext_
= [NSMutableDictionary
new];
58 callTable_
= [NSMutableDictionary
new];
60 [[BreakpointManager sharedManager
] setConnection
:self];
61 connection_
= [[NetworkConnection alloc
] initWithPort
:aPort
];
62 connection_.delegate
= self;
63 [connection_ connect
];
65 attached_
= [[NSUserDefaults standardUserDefaults
] boolForKey
:@
"DebuggerAttached"];
71 * Deallocates the object
76 [stackFrames_ release
];
78 [callbackContext_ release
];
83 // Getters /////////////////////////////////////////////////////////////////////
87 * Gets the port number
91 return [connection_ port
];
95 * Returns whether or not we have an active connection
99 return [connection_ connected
] && active_
;
102 // Commands ////////////////////////////////////////////////////////////////////
103 #pragma mark Commands
106 * Tells the debugger to continue running the script. Returns the current stack frame.
110 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"run"];
111 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
115 * Tells the debugger to step into the current command.
119 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"step_into"];
120 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
124 * Tells the debugger to step out of the current context
128 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"step_out"];
129 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
133 * Tells the debugger to step over the current function
137 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"step_over"];
138 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
142 * Ends the current debugging session.
146 [connection_ sendCommandWithFormat
:@
"detach"];
148 self.status
= @
"Stopped";
149 if ([delegate respondsToSelector
:@selector(debuggerDisconnected
)])
150 [delegate debuggerDisconnected
];
154 * Tells the debugger engine to get a specifc property. This also takes in the NSXMLElement
155 * that requested it so that the child can be attached.
157 - (NSInteger
)getChildrenOfProperty
:(VariableNode
*)property atDepth
:(NSInteger
)depth
;
159 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"property_get -d %d -n %@", depth
, [property fullName
]];
160 [self recordCallback
:@selector(propertiesReceived
:) forTransaction
:tx
];
161 return [tx intValue
];
164 - (void)loadStackFrame
:(StackFrame
*)frame
169 NSNumber
* routingNumber
= [NSNumber numberWithInt
:frame.routingID
];
170 NSNumber
* transaction
= nil;
172 // Get the source code of the file. Escape % in URL chars.
173 if ([frame.filename length
]) {
174 NSString
* escapedFilename
= [frame.filename stringByReplacingOccurrencesOfString
:@
"%" withString
:@
"%%"];
175 transaction
= [connection_ sendCommandWithFormat
:@
"source -f %@", escapedFilename
];
176 [self recordCallback
:@selector(setSource
:) forTransaction
:transaction
];
177 [callbackContext_ setObject
:routingNumber forKey
:transaction
];
180 // Get the names of all the contexts.
181 transaction
= [connection_ sendCommandWithFormat
:@
"context_names -d %d", frame.index
];
182 [self recordCallback
:@selector(contextsReceived
:) forTransaction
:transaction
];
183 [callbackContext_ setObject
:routingNumber forKey
:transaction
];
185 // This frame will be fully loaded.
189 // Breakpoint Management ///////////////////////////////////////////////////////
190 #pragma mark Breakpoints
193 * Send an add breakpoint command
195 - (void)addBreakpoint
:(Breakpoint
*)bp
197 if (![connection_ connected
])
200 NSString
* file
= [connection_ escapedURIPath
:[bp transformedPath
]];
201 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"breakpoint_set -t line -f %@ -n %i", file
, [bp line
]];
202 [self recordCallback
:@selector(breakpointReceived
:) forTransaction
:tx
];
203 [callbackContext_ setObject
:bp forKey
:tx
];
207 * Removes a breakpoint
209 - (void)removeBreakpoint
:(Breakpoint
*)bp
211 if (![connection_ connected
])
214 [connection_ sendCommandWithFormat
:@
"breakpoint_remove -d %i", [bp debuggerId
]];
217 // Specific Response Handlers //////////////////////////////////////////////////
218 #pragma mark Response Handlers
220 - (void)errorEncountered
:(NSString
*)error
222 [delegate errorEncountered
:error
];
226 * Initial packet received. We've started a brand-new connection to the engine.
228 - (void)handleInitialResponse
:(NSXMLDocument
*)response
230 if (!self.attached
) {
231 [connection_ sendCommandWithFormat
:@
"detach"];
237 // Register any breakpoints that exist offline.
238 for (Breakpoint
* bp
in [[BreakpointManager sharedManager
] breakpoints
])
239 [self addBreakpoint
:bp
];
241 // Load the debugger to make it look active.
242 [delegate debuggerConnected
];
244 // TODO: update the status.
247 - (void)handleResponse
:(NSXMLDocument
*)response
249 NSInteger transactionID
= [connection_ transactionIDFromResponse
:response
];
250 NSNumber
* key
= [NSNumber numberWithInt
:transactionID
];
251 NSString
* callbackStr
= [callTable_ objectForKey
:key
];
254 SEL callback
= NSSelectorFromString(callbackStr
);
255 [self performSelector
:callback withObject
:response
];
257 [callTable_ removeObjectForKey
:key
];
261 * Receiver for status updates. This just freshens up the UI.
263 - (void)updateStatus
:(NSXMLDocument
*)response
265 self.status
= [[[[response rootElement
] attributeForName
:@
"status"] stringValue
] capitalizedString
];
267 if (!status ||
[status isEqualToString
:@
"Stopped"]) {
268 [delegate debuggerDisconnected
];
270 } else if ([status isEqualToString
:@
"Stopping"]) {
271 [connection_ sendCommandWithFormat
:@
"stop"];
277 * Step in/out/over and run all take this path. We first get the status of the
278 * debugger and then request fresh stack information.
280 - (void)debuggerStep
:(NSXMLDocument
*)response
282 [self updateStatus
:response
];
283 if (![self isConnected
])
286 // If this is the run command, tell the delegate that a bunch of updates
287 // are coming. Also remove all existing stack routes and request a new stack.
288 if ([delegate respondsToSelector
:@selector(clobberStack
)])
289 [delegate clobberStack
];
290 [stackFrames_ removeAllObjects
];
291 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"stack_depth"];
292 [self recordCallback
:@selector(rebuildStack
:) forTransaction
:tx
];
293 stackFirstTransactionID_
= [tx intValue
];
297 * We ask for the stack_depth and now we clobber the stack and start rebuilding
300 - (void)rebuildStack
:(NSXMLDocument
*)response
302 NSInteger depth
= [[[[response rootElement
] attributeForName
:@
"depth"] stringValue
] intValue
];
304 if (stackFirstTransactionID_
== [connection_ transactionIDFromResponse
:response
])
307 // We now need to alloc a bunch of stack frames and get the basic information
309 for (NSInteger i
= 0; i
< depth
; i
++)
311 // Use the transaction ID to create a routing path.
312 NSNumber
* routingID
= [connection_ sendCommandWithFormat
:@
"stack_get -d %d", i
];
313 [self recordCallback
:@selector(getStackFrame
:) forTransaction
:routingID
];
314 [stackFrames_ setObject
:[[StackFrame
new] autorelease
] forKey
:routingID
];
319 * The initial rebuild of the stack frame. We now have enough to initialize
320 * a StackFrame object.
322 - (void)getStackFrame
:(NSXMLDocument
*)response
324 // Get the routing information.
325 NSInteger routingID
= [connection_ transactionIDFromResponse
:response
];
326 if (routingID
< stackFirstTransactionID_
)
328 NSNumber
* routingNumber
= [NSNumber numberWithInt
:routingID
];
330 // Make sure we initialized this frame in our last |-rebuildStack:|.
331 StackFrame
* frame
= [stackFrames_ objectForKey
:routingNumber
];
335 NSXMLElement
* xmlframe
= [[[response rootElement
] children
] objectAtIndex
:0];
337 // Initialize the stack frame.
338 frame.index
= [[[xmlframe attributeForName
:@
"level"] stringValue
] intValue
];
339 frame.filename
= [[xmlframe attributeForName
:@
"filename"] stringValue
];
340 frame.lineNumber
= [[[xmlframe attributeForName
:@
"lineno"] stringValue
] intValue
];
341 frame.function
= [[xmlframe attributeForName
:@
"where"] stringValue
];
342 frame.routingID
= routingID
;
344 // Only get the complete frame for the first level. The other frames will get
345 // information loaded lazily when the user clicks on one.
346 if (frame.index
== 0) {
347 [self loadStackFrame
:frame
];
350 if ([delegate respondsToSelector
:@selector(newStackFrame
:)])
351 [delegate newStackFrame
:frame
];
355 * Callback for setting the source of a file while rebuilding a specific stack
358 - (void)setSource
:(NSXMLDocument
*)response
360 NSNumber
* transaction
= [NSNumber numberWithInt
:[connection_ transactionIDFromResponse
:response
]];
361 if ([transaction intValue
] < stackFirstTransactionID_
)
363 NSNumber
* routingNumber
= [callbackContext_ objectForKey
:transaction
];
367 [callbackContext_ removeObjectForKey
:transaction
];
368 StackFrame
* frame
= [stackFrames_ objectForKey
:routingNumber
];
372 frame.source
= [[response rootElement
] base64DecodedValue
];
374 if ([delegate respondsToSelector
:@selector(sourceUpdated
:)])
375 [delegate sourceUpdated
:frame
];
379 * Enumerates all the contexts of a given stack frame. We then in turn get the
380 * contents of each one of these contexts.
382 - (void)contextsReceived
:(NSXMLDocument
*)response
384 // Get the stack frame's routing ID and use it again.
385 NSNumber
* receivedTransaction
= [NSNumber numberWithInt
:[connection_ transactionIDFromResponse
:response
]];
386 if ([receivedTransaction intValue
] < stackFirstTransactionID_
)
388 NSNumber
* routingID
= [callbackContext_ objectForKey
:receivedTransaction
];
392 // Get the stack frame by the |routingID|.
393 StackFrame
* frame
= [stackFrames_ objectForKey
:routingID
];
395 NSXMLElement
* contextNames
= [response rootElement
];
396 for (NSXMLElement
* context
in [contextNames children
])
398 NSInteger cid
= [[[context attributeForName
:@
"id"] stringValue
] intValue
];
400 // Fetch each context's variables.
401 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"context_get -d %d -c %d", frame.index
, cid
];
402 [self recordCallback
:@selector(variablesReceived
:) forTransaction
:tx
];
403 [callbackContext_ setObject
:routingID forKey
:tx
];
408 * Receives the variables from the context and attaches them to the stack frame.
410 - (void)variablesReceived
:(NSXMLDocument
*)response
412 // Get the stack frame's routing ID and use it again.
413 NSInteger transaction
= [connection_ transactionIDFromResponse
:response
];
414 if (transaction
< stackFirstTransactionID_
)
416 NSNumber
* receivedTransaction
= [NSNumber numberWithInt
:transaction
];
417 NSNumber
* routingID
= [callbackContext_ objectForKey
:receivedTransaction
];
421 // Get the stack frame by the |routingID|.
422 StackFrame
* frame
= [stackFrames_ objectForKey
:routingID
];
424 NSMutableArray
* variables
= [NSMutableArray array
];
426 // Merge the frame's existing variables.
428 [variables addObjectsFromArray
:frame.variables
];
430 // Add these new variables.
431 NSArray
* addVariables
= [[response rootElement
] children
];
433 for (NSXMLElement
* elm
in addVariables
) {
434 VariableNode
* node
= [[VariableNode alloc
] initWithXMLNode
:elm
];
435 [variables addObject
:[node autorelease
]];
439 frame.variables
= variables
;
443 * Callback from a |-getProperty:| request.
445 - (void)propertiesReceived
:(NSXMLDocument
*)response
447 NSInteger transaction
= [connection_ transactionIDFromResponse
:response
];
451 <property> <!-- this is the one we requested -->
452 <property ... /> <!-- these are what we want -->
457 // Detach all the children so we can insert them into another document.
458 NSXMLElement
* parent
= (NSXMLElement
*)[[response rootElement
] childAtIndex
:0];
459 NSArray
* children
= [parent children
];
460 [parent setChildren
:nil];
462 [delegate receivedProperties
:children forTransaction
:transaction
];
466 * Callback for setting a breakpoint.
468 - (void)breakpointReceived
:(NSXMLDocument
*)response
470 NSNumber
* transaction
= [NSNumber numberWithInt
:[connection_ transactionIDFromResponse
:response
]];
471 Breakpoint
* bp
= [callbackContext_ objectForKey
:transaction
];
475 [callbackContext_ removeObjectForKey
:callbackContext_
];
476 [bp setDebuggerId
:[[[[response rootElement
] attributeForName
:@
"id"] stringValue
] intValue
]];
479 // Private /////////////////////////////////////////////////////////////////////
481 - (void)recordCallback
:(SEL)callback forTransaction
:(NSNumber
*)txn
483 [callTable_ setObject
:NSStringFromSelector(callback
) forKey
:txn
];