* Add a preference to automatically reconnect. Fixes bug #165.
[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 NSString* session;
28 BOOL connected;
29
30 /**
31 * Human-readable status of the connection
32 */
33 NSString* status;
34
35 SocketWrapper* socket;
36
37 id <GDBpConnectionDelegate> delegate;
38 }
39
40 @property (readonly, copy) NSString* status;
41 @property (readonly) SocketWrapper* socket;
42 @property (assign) id <GDBpConnectionDelegate> delegate;
43
44 // initializer
45 - (id)initWithPort:(int)aPort session:(NSString*)aSession;
46
47 // getter
48 - (int)port;
49 - (NSString*)session;
50 - (NSString*)remoteHost;
51 - (BOOL)isConnected;
52 - (NSArray*)getCurrentStack;
53
54 // communication
55 - (void)reconnect;
56 - (void)run;
57 - (void)stepIn;
58 - (void)stepOut;
59 - (void)stepOver;
60 - (void)addBreakpoint:(Breakpoint*)bp;
61 - (void)removeBreakpoint:(Breakpoint*)bp;
62
63 // helpers
64 - (NSArray*)getProperty:(NSString*)property;
65
66 @end
67
68 @protocol GDBpConnectionDelegate <NSObject>
69
70 // Passes up errors from SocketWrapper and any other errors generated by the
71 // GDBpConnection.
72 - (void)errorEncountered:(NSString*)error;
73
74 // Called when the socket connects. Passed up from SocketWrapper.
75 - (void)debuggerConnected;
76
77 // Called when we disconnect.
78 - (void)debuggerDisconnected;
79
80 @end
81