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 <Cocoa/Cocoa.h>
19 #import "Breakpoint.h"
20 #import "NetworkConnection.h"
21 #import "StackFrame.h"
23 @protocol DebuggerBackEndDelegate
;
26 // The DebuggerBackEnd is the communication layer between the application
27 // and the back-end debugger. Clients issue debugger commands via this class,
28 // which are sent in an asynchronous manner. Reads are also asynchronous and
29 // the primary client of this class should set itself as the delegate. The
30 // primary unit that this class deals with is the StackFrame; clients should
31 // maintain a stack structure and the BackEnd will inform the delegate when
32 // a new frame is created or the stack should be destroyed.
33 @interface DebuggerBackEnd
: NSObject
<NetworkConnectionDelegate
>
35 // The connection to the debugger engine.
36 NetworkConnection
* connection_
;
38 // Human-readable status of the connection.
42 // Whether the debugger should detach immediately after being contacted by the
43 // backend. YES means all debugger connections will be dropped.
46 // The connection's delegate.
47 id
<DebuggerBackEndDelegate
> delegate
;
49 // A dictionary that maps routingIDs to StackFrame objects.
50 NSMutableDictionary
* stackFrames_
;
51 // The stack depth for the current build of |stackFrames_|.
52 NSInteger stackDepth_
;
53 // The earliest transaction ID for the current build of |stackFrames_|.
54 NSInteger stackFirstTransactionID_
;
56 // Callback table. This maps transaction IDs to selectors. When the engine
57 // returns a response to the debugger, we will dispatch the response XML to
58 // the selector, based on transaction_id.
59 NSMutableDictionary
* callTable_
;
61 // This stores additional context information for the callback selector.
62 // This dictionary is keyed by the same transaction IDs in |callTable_|, but
63 // also stores some other object that can be accessed in the callback.
64 NSMutableDictionary
* callbackContext_
;
67 @
property (readonly
, copy
) NSString
* status
;
68 @
property (assign
) BOOL attached
;
69 @
property (assign
) id
<DebuggerBackEndDelegate
> delegate
;
72 - (id
)initWithPort
:(NSUInteger
)aPort
;
85 // Breakpoint management.
86 - (void)addBreakpoint
:(Breakpoint
*)bp
;
87 - (void)removeBreakpoint
:(Breakpoint
*)bp
;
89 // Gets a property by name from the debugger engine. Returns a transaction ID
90 // which used in the delegate callback. Properties must be retrieved at a
91 // certain stack depth.
92 - (NSInteger
)getChildrenOfProperty
:(VariableNode
*)property atDepth
:(NSInteger
)depth
;
94 // Takes a partially loaded stack frame and fetches the rest of the information.
95 - (void)loadStackFrame
:(StackFrame
*)frame
;
99 // Delegate ////////////////////////////////////////////////////////////////////
101 @protocol DebuggerBackEndDelegate
<NSObject
>
103 // Passes up errors from SocketWrapper and any other errors generated by the
105 - (void)errorEncountered
:(NSString
*)error
;
107 // Called when the socket connects. Passed up from SocketWrapper.
108 - (void)debuggerConnected
;
110 // Called when we disconnect.
111 - (void)debuggerDisconnected
;
113 // Tells the debugger to destroy the current stack display.
114 - (void)clobberStack
;
116 // Tells the debugger that a new stack frame is avaliable.
117 - (void)newStackFrame
:(StackFrame
*)frame
;
119 // Tells the debugger that new source is available for the given frame.
120 // TODO: rename to |-frameUpdated:|.
121 - (void)sourceUpdated
:(StackFrame
*)frame
;
123 // Callback from |-getProperty:|.
124 - (void)receivedProperties
:(NSArray
*)properties forTransaction
:(NSInteger
)transaction
;