* Start tracking the last read and last written transaction IDs
[macgdbp.git] / Source / GDBpConnection.h
1 /*
2 * MacGDBp
3 * Copyright (c) 2007 - 2010, 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
46 // The most recently received transaction ID.
47 int lastReadTransaction_;
48
49 // Information about the current read loop. We append to |currentPacket_|
50 // until |currentPacketSize_| has reached |packetSize_|.
51 NSMutableString* currentPacket_;
52 int packetSize_;
53 int currentPacketIndex_;
54
55 // To prevent blocked writing, we enqueue all writes and then wait for the
56 // write stream to tell us it's ready. We store the pending commands in this
57 // array. We use this as a stack (FIFO), with index 0 being first.
58 NSMutableArray* queuedWrites_;
59
60 // The write stream. Weak.
61 CFWriteStreamRef writeStream_;
62
63 // The last transactionID written to the stream.
64 int lastWrittenTransaction_;
65
66 // A dictionary that maps routingIDs to StackFrame objects.
67 NSMutableDictionary* stackFrames_;
68
69 id <GDBpConnectionDelegate> delegate;
70 }
71
72 @property (readonly, copy) NSString* status;
73 @property (assign) id <GDBpConnectionDelegate> delegate;
74
75 // initializer
76 - (id)initWithPort:(int)aPort;
77
78 // getter
79 - (int)port;
80 - (NSString*)remoteHost;
81 - (BOOL)isConnected;
82 - (NSArray*)getCurrentStack;
83
84 // communication
85 - (void)reconnect;
86 - (void)run;
87 - (void)stepIn;
88 - (void)stepOut;
89 - (void)stepOver;
90 - (void)addBreakpoint:(Breakpoint*)bp;
91 - (void)removeBreakpoint:(Breakpoint*)bp;
92
93 // helpers
94 - (NSArray*)getProperty:(NSString*)property;
95
96 @end
97
98 @protocol GDBpConnectionDelegate <NSObject>
99
100 // Passes up errors from SocketWrapper and any other errors generated by the
101 // GDBpConnection.
102 - (void)errorEncountered:(NSString*)error;
103
104 // Called when the socket connects. Passed up from SocketWrapper.
105 - (void)debuggerConnected;
106
107 // Called when we disconnect.
108 - (void)debuggerDisconnected;
109
110 // Tells the debugger to destroy the current stack display.
111 - (void)clobberStack;
112
113 // Tells the debugger that a new stack frame is avaliable.
114 - (void)newStackFrame:(StackFrame*)frame;
115
116 // A simple step has occurred. Pop the top frame the new current one is provided.
117 - (void)popStackFrame:(StackFrame*)frame;
118
119 @end
120