Remove DebuggerBackEnd.status.
[macgdbp.git] / Source / DebuggerBackEnd.h
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2011, 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 <Cocoa/Cocoa.h>
18
19 #import "Breakpoint.h"
20 #import "ProtocolClient.h"
21 #import "StackFrame.h"
22
23 @protocol DebuggerBackEndDelegate;
24 @class DebuggerModel;
25 @class VariableNode;
26
27 // The DebuggerBackEnd is the communication layer between the application
28 // and the back-end debugger. Clients issue debugger commands via this class,
29 // which are sent in an asynchronous manner. Reads are also asynchronous and
30 // the primary client of this class should set itself as the delegate. The
31 // primary unit that this class deals with is the StackFrame; clients should
32 // maintain a stack structure and the BackEnd will inform the delegate when
33 // a new frame is created or the stack should be destroyed.
34 @interface DebuggerBackEnd : NSObject<ProtocolClientDelegate>
35
36 // Whether the debugger should detach immediately after being contacted by the
37 // backend. YES means all debugger connections will be dropped.
38 @property(assign, nonatomic) BOOL autoAttach;
39
40 // The model object to update in response to changes in the debugger.
41 @property(assign, nonatomic) DebuggerModel* model;
42
43 // initializer
44 - (id)initWithPort:(NSUInteger)aPort;
45
46 // getter
47 - (NSUInteger)port;
48 - (BOOL)isConnected;
49
50 // communication
51 - (void)run;
52 - (void)stepIn;
53 - (void)stepOut;
54 - (void)stepOver;
55 - (void)stop;
56 - (void)detach;
57
58 // Breakpoint management.
59 - (void)addBreakpoint:(Breakpoint*)bp;
60 - (void)removeBreakpoint:(Breakpoint*)bp;
61
62 // Evaluates a given string in the current execution context.
63 - (void)evalScript:(NSString*)str callback:(void (^)(NSString*))callback;
64
65 // Takes a partially loaded stack frame and fetches the rest of the information.
66 - (void)loadStackFrame:(StackFrame*)frame;
67
68 // Ensures that a variable node's immediate children are loaded, and fetches
69 // any that are not. This is done within the scope of the given stack frame.
70 - (void)loadVariableNode:(VariableNode*)variable
71 forStackFrame:(StackFrame*)frame;
72
73 @end