Remove the |session| ivar from GDBpConnection. Use |transactionID| to keep
[macgdbp.git] / Source / GDBpConnection.h
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2009, 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 #import "SocketWrapper.h"
19 #import "Breakpoint.h"
20 #import "StackFrame.h"
21
22 @protocol GDBpConnectionDelegate;
23
24 @interface GDBpConnection : NSObject <SocketWrapperDelegate>
25 {
26 int port;
27 BOOL connected;
28
29 /**
30 * An ever-increasing integer that gives each transaction a unique ID for
31 * the debugging engine. Managed by |-createCommand:|.
32 */
33 int transactionID;
34
35 /**
36 * Human-readable status of the connection
37 */
38 NSString* status;
39
40 SocketWrapper* socket;
41
42 id <GDBpConnectionDelegate> delegate;
43 }
44
45 @property (readonly, copy) NSString* status;
46 @property (readonly) SocketWrapper* socket;
47 @property (assign) id <GDBpConnectionDelegate> delegate;
48
49 // initializer
50 - (id)initWithPort:(int)aPort;
51
52 // getter
53 - (int)port;
54 - (NSString*)remoteHost;
55 - (BOOL)isConnected;
56 - (NSArray*)getCurrentStack;
57
58 // communication
59 - (void)reconnect;
60 - (void)run;
61 - (void)stepIn;
62 - (void)stepOut;
63 - (void)stepOver;
64 - (void)addBreakpoint:(Breakpoint*)bp;
65 - (void)removeBreakpoint:(Breakpoint*)bp;
66
67 // helpers
68 - (NSArray*)getProperty:(NSString*)property;
69
70 @end
71
72 @protocol GDBpConnectionDelegate <NSObject>
73
74 // Passes up errors from SocketWrapper and any other errors generated by the
75 // GDBpConnection.
76 - (void)errorEncountered:(NSString*)error;
77
78 // Called when the socket connects. Passed up from SocketWrapper.
79 - (void)debuggerConnected;
80
81 // Called when we disconnect.
82 - (void)debuggerDisconnected;
83
84 @end
85