X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/43203fc1132e402ab5751167ed64196f10f5dedf..9c0c758e9af50f624414decbaae43c04e8d8e3f9:/Server/src/connection.cpp diff --git a/Server/src/connection.cpp b/Server/src/connection.cpp index 18b5909..31aaf1a 100644 --- a/Server/src/connection.cpp +++ b/Server/src/connection.cpp @@ -31,23 +31,72 @@ # include #endif // DEBUG -PlaQui::Server::Connection::~Connection(void) { +using namespace std; + +namespace PlaQui { + +namespace Server { + +Connection::~Connection(void) { #ifdef DEBUG - std::cerr << __FILE__ << ": destructor." << std::endl; + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": destructor." << endl; #endif // DEBUG } -PlaQui::Server::Connection::Connection(const sockbuf::sockdesc& sd): +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 } -PlaQui::Server::Connection::Connection(sockbuf::type type): - socket(type) { +Connection::Connection(const sockbuf::type& type, const std::string& host, + const Port& port): socket(type), host(host), port(port) { #ifdef DEBUG - std::cerr << __FILE__ << ": type = " << type << std::endl; + 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 +} + +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; +} + +const Connection::Port Connection::get_port(void) const { + return port; +} + +} // namespace Server + +} // namespace PlaQui +