3 * Copyright (c) 2007 - 2010, 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 "DebuggerProcessor.h"
19 #import "AppDelegate.h"
20 #import "NSXMLElementAdditions.h"
22 // GDBpConnection (Private) ////////////////////////////////////////////////////
24 @interface DebuggerProcessor ()
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 DebuggerProcessor
48 * Creates a new DebuggerConnection and initializes the socket from the given connection
51 - (id)initWithPort
:(NSUInteger
)aPort
53 if (self = [super init
])
55 stackFrames_
= [[NSMutableDictionary alloc
] init
];
56 callbackContext_
= [NSMutableDictionary
new];
57 callTable_
= [NSMutableDictionary
new];
59 [[BreakpointManager sharedManager
] setConnection
:self];
60 connection_
= [[DebuggerConnection alloc
] initWithPort
:aPort
];
61 connection_.delegate
= self;
62 [connection_ connect
];
68 * Deallocates the object
73 [stackFrames_ release
];
75 [callbackContext_ release
];
80 // Getters /////////////////////////////////////////////////////////////////////
84 * Gets the port number
88 return [connection_ port
];
92 * Returns the name of the remote host
94 - (NSString
*)remoteHost
96 if (![connection_ connected
])
97 return @
"(DISCONNECTED)";
99 // TODO: Either impl or remove.
104 * Returns whether or not we have an active connection
108 return [connection_ connected
];
111 // Commands ////////////////////////////////////////////////////////////////////
112 #pragma mark Commands
115 * Reestablishes communication with the remote debugger so that a new connection doesn't have to be
116 * created every time you want to debug a page
120 if (connection_.connected
)
122 self.status
= @
"Connecting";
123 [connection_ connect
];
127 * Tells the debugger to continue running the script. Returns the current stack frame.
131 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"run"];
132 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
136 * Tells the debugger to step into the current command.
140 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"step_into"];
141 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
145 * Tells the debugger to step out of the current context
149 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"step_out"];
150 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
154 * Tells the debugger to step over the current function
158 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"step_over"];
159 [self recordCallback
:@selector(debuggerStep
:) forTransaction
:tx
];
163 * Tells the debugger engine to get a specifc property. This also takes in the NSXMLElement
164 * that requested it so that the child can be attached.
166 - (NSInteger
)getProperty
:(NSString
*)property
168 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"property_get -n \"%@\"", property
];
169 [self recordCallback
:@selector(propertiesReceived
:) forTransaction
:tx
];
170 return [tx intValue
];
173 - (void)loadStackFrame
:(StackFrame
*)frame
178 NSNumber
* routingNumber
= [NSNumber numberWithInt
:frame.routingID
];
180 // Get the source code of the file. Escape % in URL chars.
181 NSString
* escapedFilename
= [frame.filename stringByReplacingOccurrencesOfString
:@
"%" withString
:@
"%%"];
182 NSNumber
* transaction
= [connection_ sendCommandWithFormat
:@
"source -f %@", escapedFilename
];
183 [self recordCallback
:@selector(setSource
:) forTransaction
:transaction
];
184 [callbackContext_ setObject
:routingNumber forKey
:transaction
];
186 // Get the names of all the contexts.
187 transaction
= [connection_ sendCommandWithFormat
:@
"context_names -d %d", frame.index
];
188 [self recordCallback
:@selector(contextsReceived
:) forTransaction
:transaction
];
189 [callbackContext_ setObject
:routingNumber forKey
:transaction
];
191 // This frame will be fully loaded.
195 // Breakpoint Management ///////////////////////////////////////////////////////
196 #pragma mark Breakpoints
199 * Send an add breakpoint command
201 - (void)addBreakpoint
:(Breakpoint
*)bp
203 if (![connection_ connected
])
206 NSString
* file
= [connection_ escapedURIPath
:[bp transformedPath
]];
207 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"breakpoint_set -t line -f %@ -n %i", file
, [bp line
]];
208 [self recordCallback
:@selector(breakpointReceived
:) forTransaction
:tx
];
209 [callbackContext_ setObject
:bp forKey
:tx
];
213 * Removes a breakpoint
215 - (void)removeBreakpoint
:(Breakpoint
*)bp
217 if (![connection_ connected
])
220 [connection_ sendCommandWithFormat
:@
"breakpoint_remove -d %i", [bp debuggerId
]];
223 // Specific Response Handlers //////////////////////////////////////////////////
224 #pragma mark Response Handlers
226 - (void)errorEncountered
:(NSString
*)error
228 [delegate errorEncountered
:error
];
232 * Initial packet received. We've started a brand-new connection to the engine.
234 - (void)handleInitialResponse
:(NSXMLDocument
*)response
236 // Register any breakpoints that exist offline.
237 for (Breakpoint
* bp
in [[BreakpointManager sharedManager
] breakpoints
])
238 [self addBreakpoint
:bp
];
240 // Load the debugger to make it look active.
241 [delegate debuggerConnected
];
243 // TODO: update the status.
246 - (void)handleResponse
:(NSXMLDocument
*)response
248 NSInteger transactionID
= [connection_ transactionIDFromResponse
:response
];
249 NSNumber
* key
= [NSNumber numberWithInt
:transactionID
];
250 NSString
* callbackStr
= [callTable_ objectForKey
:key
];
253 SEL callback
= NSSelectorFromString(callbackStr
);
254 [self performSelector
:callback withObject
:response
];
256 [callTable_ removeObjectForKey
:key
];
260 * Receiver for status updates. This just freshens up the UI.
262 - (void)updateStatus
:(NSXMLDocument
*)response
264 self.status
= [[[[response rootElement
] attributeForName
:@
"status"] stringValue
] capitalizedString
];
265 if (status
== nil ||
[status isEqualToString
:@
"Stopped"] ||
[status isEqualToString
:@
"Stopping"])
268 [delegate debuggerDisconnected
];
270 self.status
= @
"Stopped";
275 * Step in/out/over and run all take this path. We first get the status of the
276 * debugger and then request fresh stack information.
278 - (void)debuggerStep
:(NSXMLDocument
*)response
280 [self updateStatus
:response
];
281 if (![connection_ connected
])
284 // If this is the run command, tell the delegate that a bunch of updates
285 // are coming. Also remove all existing stack routes and request a new stack.
286 // TODO: figure out if we can not clobber the stack every time.
287 NSString
* command
= [[[response rootElement
] attributeForName
:@
"command"] stringValue
];
288 if (YES ||
[command isEqualToString
:@
"run"])
290 if ([delegate respondsToSelector
:@selector(clobberStack
)])
291 [delegate clobberStack
];
292 [stackFrames_ removeAllObjects
];
293 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"stack_depth"];
294 [self recordCallback
:@selector(rebuildStack
:) forTransaction
:tx
];
295 stackFirstTransactionID_
= [tx intValue
];
300 * We ask for the stack_depth and now we clobber the stack and start rebuilding
303 - (void)rebuildStack
:(NSXMLDocument
*)response
305 NSInteger depth
= [[[[response rootElement
] attributeForName
:@
"depth"] stringValue
] intValue
];
307 if (stackFirstTransactionID_
== [connection_ transactionIDFromResponse
:response
])
310 // We now need to alloc a bunch of stack frames and get the basic information
312 for (NSInteger i
= 0; i
< depth
; i
++)
314 // Use the transaction ID to create a routing path.
315 NSNumber
* routingID
= [connection_ sendCommandWithFormat
:@
"stack_get -d %d", i
];
316 [self recordCallback
:@selector(getStackFrame
:) forTransaction
:routingID
];
317 [stackFrames_ setObject
:[[StackFrame
new] autorelease
] forKey
:routingID
];
322 * The initial rebuild of the stack frame. We now have enough to initialize
323 * a StackFrame object.
325 - (void)getStackFrame
:(NSXMLDocument
*)response
327 // Get the routing information.
328 NSInteger routingID
= [connection_ transactionIDFromResponse
:response
];
329 if (routingID
< stackFirstTransactionID_
)
331 NSNumber
* routingNumber
= [NSNumber numberWithInt
:routingID
];
333 // Make sure we initialized this frame in our last |-rebuildStack:|.
334 StackFrame
* frame
= [stackFrames_ objectForKey
:routingNumber
];
338 NSXMLElement
* xmlframe
= [[[response rootElement
] children
] objectAtIndex
:0];
340 // Initialize the stack frame.
341 frame.index
= [[[xmlframe attributeForName
:@
"level"] stringValue
] intValue
];
342 frame.filename
= [[xmlframe attributeForName
:@
"filename"] stringValue
];
343 frame.lineNumber
= [[[xmlframe attributeForName
:@
"lineno"] stringValue
] intValue
];
344 frame.function
= [[xmlframe attributeForName
:@
"where"] stringValue
];
345 frame.routingID
= routingID
;
347 // Only get the complete frame for the first level. The other frames will get
348 // information loaded lazily when the user clicks on one.
349 if (frame.index
== 0) {
350 [self loadStackFrame
:frame
];
353 if ([delegate respondsToSelector
:@selector(newStackFrame
:)])
354 [delegate newStackFrame
:frame
];
358 * Callback for setting the source of a file while rebuilding a specific stack
361 - (void)setSource
:(NSXMLDocument
*)response
363 NSNumber
* transaction
= [NSNumber numberWithInt
:[connection_ transactionIDFromResponse
:response
]];
364 if ([transaction intValue
] < stackFirstTransactionID_
)
366 NSNumber
* routingNumber
= [callbackContext_ objectForKey
:transaction
];
370 [callbackContext_ removeObjectForKey
:transaction
];
371 StackFrame
* frame
= [stackFrames_ objectForKey
:routingNumber
];
375 frame.source
= [[response rootElement
] base64DecodedValue
];
377 if ([delegate respondsToSelector
:@selector(sourceUpdated
:)])
378 [delegate sourceUpdated
:frame
];
382 * Enumerates all the contexts of a given stack frame. We then in turn get the
383 * contents of each one of these contexts.
385 - (void)contextsReceived
:(NSXMLDocument
*)response
387 // Get the stack frame's routing ID and use it again.
388 NSNumber
* receivedTransaction
= [NSNumber numberWithInt
:[connection_ transactionIDFromResponse
:response
]];
389 if ([receivedTransaction intValue
] < stackFirstTransactionID_
)
391 NSNumber
* routingID
= [callbackContext_ objectForKey
:receivedTransaction
];
395 // Get the stack frame by the |routingID|.
396 StackFrame
* frame
= [stackFrames_ objectForKey
:routingID
];
398 NSXMLElement
* contextNames
= [response rootElement
];
399 for (NSXMLElement
* context
in [contextNames children
])
401 NSInteger cid
= [[[context attributeForName
:@
"id"] stringValue
] intValue
];
403 // Fetch each context's variables.
404 NSNumber
* tx
= [connection_ sendCommandWithFormat
:@
"context_get -d %d -c %d", frame.index
, cid
];
405 [self recordCallback
:@selector(variablesReceived
:) forTransaction
:tx
];
406 [callbackContext_ setObject
:routingID forKey
:tx
];
411 * Receives the variables from the context and attaches them to the stack frame.
413 - (void)variablesReceived
:(NSXMLDocument
*)response
415 // Get the stack frame's routing ID and use it again.
416 NSInteger transaction
= [connection_ transactionIDFromResponse
:response
];
417 if (transaction
< stackFirstTransactionID_
)
419 NSNumber
* receivedTransaction
= [NSNumber numberWithInt
:transaction
];
420 NSNumber
* routingID
= [callbackContext_ objectForKey
:receivedTransaction
];
424 // Get the stack frame by the |routingID|.
425 StackFrame
* frame
= [stackFrames_ objectForKey
:routingID
];
427 NSMutableArray
* variables
= [NSMutableArray array
];
429 // Merge the frame's existing variables.
431 [variables addObjectsFromArray
:frame.variables
];
433 // Add these new variables.
434 NSArray
* addVariables
= [[response rootElement
] children
];
436 for (NSXMLElement
* elm
in addVariables
) {
437 VariableNode
* node
= [[VariableNode alloc
] initWithXMLNode
:elm
];
438 [variables addObject
:[node autorelease
]];
442 frame.variables
= variables
;
446 * Callback from a |-getProperty:| request.
448 - (void)propertiesReceived
:(NSXMLDocument
*)response
450 NSInteger transaction
= [connection_ transactionIDFromResponse
:response
];
454 <property> <!-- this is the one we requested -->
455 <property ... /> <!-- these are what we want -->
460 // Detach all the children so we can insert them into another document.
461 NSXMLElement
* parent
= (NSXMLElement
*)[[response rootElement
] childAtIndex
:0];
462 NSArray
* children
= [parent children
];
463 [parent setChildren
:nil];
465 [delegate receivedProperties
:children forTransaction
:transaction
];
469 * Callback for setting a breakpoint.
471 - (void)breakpointReceived
:(NSXMLDocument
*)response
473 NSNumber
* transaction
= [NSNumber numberWithInt
:[connection_ transactionIDFromResponse
:response
]];
474 Breakpoint
* bp
= [callbackContext_ objectForKey
:transaction
];
478 [callbackContext_ removeObjectForKey
:callbackContext_
];
479 [bp setDebuggerId
:[[[[response rootElement
] attributeForName
:@
"id"] stringValue
] intValue
]];
482 // Private /////////////////////////////////////////////////////////////////////
484 - (void)recordCallback
:(SEL)callback forTransaction
:(NSNumber
*)txn
486 [callTable_ setObject
:NSStringFromSelector(callback
) forKey
:txn
];