3 * Copyright (c) 2002 - 2007, Blue Static <http://www.bluestatic.org>
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.
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.
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
17 #import "DebuggerConnection.h"
19 @implementation DebuggerConnection
22 * Creates a new DebuggerConnection and initializes the socket from the given connection
25 - (id)initWithPort
: (int)port session
: (NSString
*)session
27 if (self = [super init
])
30 _session
= [session retain
];
32 _windowController
= [[DebuggerWindowController alloc
] initWithConnection
: self];
33 [[_windowController window
] makeKeyAndOrderFront
: self];
35 // now that we have our host information, open the socket
36 _socket
= [[SocketWrapper alloc
] initWithPort
: port
];
37 [_socket setDelegate
: self];
40 // clean up after ourselves
41 [[NSNotificationCenter defaultCenter
] addObserver
: self
42 selector
: @selector(applicationWillTerminate
:)
43 name
: NSApplicationWillTerminateNotification
50 * Release ourselves when we're about to die
52 - (void)applicationWillTerminate
: (NSNotification
*)notif
58 * Releases all of the object's data members and closes the streams
69 * Gets the port number
77 * Gets the session name
85 * SocketWrapper delegate method that is called whenever new data is received
87 - (void)dataReceived
: (NSString
*)response
89 NSLog(@
"response = %@", response
);
93 * SocketWrapper delegate method that is called after data is sent. This really
94 * isn't useful for much.
102 * Called by SocketWrapper after the connection is successful. This immediately calls
103 * -[SocketWrapper receive] to clear the way for communication
105 - (void)socketDidAccept
107 NSLog(@
"accepted :)");