Remove SocketWrapper and start using CFSocket with CFStreams in GDBpConnection. This...
[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
19 #import "Breakpoint.h"
20 #import "StackFrame.h"
21
22 @protocol GDBpConnectionDelegate;
23
24 @interface GDBpConnection : NSObject
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 // The raw CFSocket on which the two streams are based. Strong.
41 CFSocketRef socket_;
42
43 // The read stream that is scheduled on the main run loop. Weak.
44 CFReadStreamRef readStream_;
45 NSMutableString* currentPacket_;
46 int packetSize_;
47 int currentPacketIndex_;
48
49 // The write stream. Weak.
50 CFWriteStreamRef writeStream_;
51
52 id <GDBpConnectionDelegate> delegate;
53 }
54
55 @property (readonly, copy) NSString* status;
56 @property (assign) id <GDBpConnectionDelegate> delegate;
57
58 // initializer
59 - (id)initWithPort:(int)aPort;
60
61 // getter
62 - (int)port;
63 - (NSString*)remoteHost;
64 - (BOOL)isConnected;
65 - (NSArray*)getCurrentStack;
66
67 // communication
68 - (void)reconnect;
69 - (void)run;
70 - (void)stepIn;
71 - (void)stepOut;
72 - (void)stepOver;
73 - (void)addBreakpoint:(Breakpoint*)bp;
74 - (void)removeBreakpoint:(Breakpoint*)bp;
75
76 // helpers
77 - (NSArray*)getProperty:(NSString*)property;
78
79 @end
80
81 @protocol GDBpConnectionDelegate <NSObject>
82
83 // Passes up errors from SocketWrapper and any other errors generated by the
84 // GDBpConnection.
85 - (void)errorEncountered:(NSString*)error;
86
87 // Called when the socket connects. Passed up from SocketWrapper.
88 - (void)debuggerConnected;
89
90 // Called when we disconnect.
91 - (void)debuggerDisconnected;
92
93 @end
94