Split out the C++ class into its own file. Also move NetworkConnection's private...
[macgdbp.git] / Source / NetworkConnectionPrivate.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 @class LogEntry;
18
19 @interface NetworkConnection ()
20
21 @property (assign) CFSocketRef socket;
22 @property (assign) CFReadStreamRef readStream;
23 @property NSUInteger lastReadTransaction;
24 @property (retain) NSMutableString* currentPacket;
25 @property (assign) CFWriteStreamRef writeStream;
26 @property NSUInteger lastWrittenTransaction;
27 @property (retain) NSMutableArray* queuedWrites;
28
29 - (void)runNetworkThread;
30
31 - (void)socketDidAccept;
32 - (void)socketDisconnected;
33 - (void)readStreamHasData;
34
35 // These methods MUST be called on the network thread as they are not threadsafe.
36 - (void)send:(NSString*)command;
37 - (void)performSend:(NSString*)command;
38 - (void)sendQueuedWrites;
39
40 - (void)performQuitSignal;
41
42 - (void)handleResponse:(NSXMLDocument*)response;
43 - (void)handlePacket:(NSString*)packet;
44
45 // Threadsafe wrappers for the delegate's methods.
46 - (void)errorEncountered:(NSString*)error;
47 - (LogEntry*)recordSend:(NSString*)command;
48 - (LogEntry*)recordReceive:(NSString*)command;
49
50 @end