]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/connection.cpp
Se pone un poco mas de orden. Desaparece la ControlClient::signal_connected().
[z.facultad/75.42/plaqui.git] / Server / src / connection.cpp
index 6d48727c4f924ecc3e691a1ac645c4476a2272df..31aaf1a4b0c3b5214e2485128732077f513c349b 100644 (file)
 // $Id$
 //
 
-#include "connection.h"
+#include "plaqui/server/connection.h"
 #include <socket++/sockinet.h>
+#ifdef DEBUG
+#      include <iostream>
+#endif // DEBUG
+
+using namespace std;
 
-using namespace Plaqui;
+namespace PlaQui {
+
+namespace Server {
+
+Connection::~Connection(void) {
+#ifdef DEBUG
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": destructor." << endl;
+#endif // DEBUG
+}
 
 Connection::Connection(const sockbuf::sockdesc& sd):
                socket(sd) {
 #ifdef DEBUG
-       std::cerr << __FILE__ << ": sd = " << sd.sock << std::endl;
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": sd = " << sd.sock;
+#endif // DEBUG
+       host = socket->peerhost();
+       port = socket->peerport();
+#ifdef DEBUG
+       cerr << " | host = " << host << " | port = " << port << endl;
+#endif // DEBUG
+}
+
+Connection::Connection(const sockbuf::type& type, const std::string& host,
+               const Port& port): socket(type), host(host), port(port) {
+#ifdef DEBUG
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": type = " << type << " | host = " << host
+               << " | port = " << port << endl;
+#endif // DEBUG
+}
+
+Connection::Connection(const std::string& host, const Port& port):
+               host(host), port(port) {
+#ifdef DEBUG
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": host = " << host << " | port = " << port << endl;
 #endif // DEBUG
 }
 
-/*
-Connection::Connection(const sockinetbuf& sb):
-               socket(sb) {
+void Connection::finish(void) {
+#ifdef DEBUG
+       cerr << __FILE__ << "(" << __LINE__ << ")"
+               << ": finish();" << endl;
+#endif // DEBUG
+       Runnable::finish();
+       try {
+               // Para que el socket retorne el control, cierro sus canales de E/S.
+               socket->shutdown(sockbuf::shut_readwrite);
+       } catch (const sockerr& e) {
+               signal_error().emit(e.serrno(), e.errstr());
+       }
+}
+
+const string Connection::get_host(void) const {
+       return host;
 }
-*/
 
-Connection::Connection(sockbuf::type type):
-               socket(type) {
+const Connection::Port Connection::get_port(void) const {
+       return port;
 }
 
+} // namespace Server
+
+} // namespace PlaQui
+