Implementing the new delegate system throughout SocketWrapper.
[macgdbp.git] / Source / DebuggerConnection.m
1 /*
2 * MacGDBp
3 * Copyright (c) 2002 - 2007, 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 "DebuggerConnection.h"
18
19 @implementation DebuggerConnection
20
21 /**
22 * Creates a new DebuggerConnection and initializes the socket from the given connection
23 * paramters.
24 */
25 - (id)initWithPort: (int)port session: (NSString *)session
26 {
27 if (self = [super init])
28 {
29 _port = port;
30 _session = [session retain];
31
32 _windowController = [[DebuggerWindowController alloc] initWithConnection: self];
33 [[_windowController window] makeKeyAndOrderFront: self];
34
35 // now that we have our host information, open the socket
36 _socket = [[SocketWrapper alloc] initWithPort: port];
37 [_socket setDelegate: self];
38 [_socket connect];
39
40 // clean up after ourselves
41 [[NSNotificationCenter defaultCenter] addObserver: self
42 selector: @selector(applicationWillTerminate:)
43 name: NSApplicationWillTerminateNotification
44 object: NSApp];
45 }
46 return self;
47 }
48
49 /**
50 * Release ourselves when we're about to die
51 */
52 - (void)applicationWillTerminate: (NSNotification *)notif
53 {
54 [self release];
55 }
56
57 /**
58 * Releases all of the object's data members and closes the streams
59 */
60 - (void)dealloc
61 {
62 [_session release];
63 [_socket release];
64
65 [super dealloc];
66 }
67
68 /**
69 * Gets the port number
70 */
71 - (int)port
72 {
73 return _port;
74 }
75
76 /**
77 * Gets the session name
78 */
79 - (NSString *)session
80 {
81 return _session;
82 }
83
84 /**
85 * SocketWrapper delegate method that is called whenever new data is received
86 */
87 - (void)dataReceived: (NSString *)response
88 {
89 NSLog(@"response = %@", response);
90 }
91
92 /**
93 * SocketWrapper delegate method that is called after data is sent. This really
94 * isn't useful for much.
95 */
96 - (void)dataSent
97 {
98 NSLog(@"data sent");
99 }
100
101 /**
102 * Called by SocketWrapper after the connection is successful. This immediately calls
103 * -[SocketWrapper receive] to clear the way for communication
104 */
105 - (void)socketDidAccept
106 {
107 NSLog(@"accepted connection");
108 [_socket receive];
109 }
110
111 /**
112 * Receives errors from the SocketWrapper and updates the display
113 */
114 - (void)errorEncountered: (NSError *)error
115 {
116 NSLog(@"error = %@", error);
117 }
118
119 @end