X-Git-Url: https://git.llucax.com/z.facultad/75.42/plaqui.git/blobdiff_plain/a9cb053146d2f1dc73e536ed87597f458deebea3..7e74b790d290cd7d776349503bb361c47933c01f:/Server/src/transmitter.cpp?ds=sidebyside diff --git a/Server/src/transmitter.cpp b/Server/src/transmitter.cpp index bd6d06b..b59992e 100644 --- a/Server/src/transmitter.cpp +++ b/Server/src/transmitter.cpp @@ -25,26 +25,74 @@ // $Id$ // -#include "transmitter.h" +#include "plaqui/server/transmitter.h" +#include #include #include +#ifdef DEBUG +# include +#endif // DEBUG -using namespace Plaqui; +using namespace std; -Transmitter::Transmitter(std::string host, int port): - Connection(sockbuf::sock_dgram) { - // FIXME - deberia ir en run(). +namespace PlaQui { + +namespace Server { + +Transmitter::~Transmitter(void) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": destructor." << endl; +#endif // DEBUG +} + +Transmitter::Transmitter(const string& _host, const Connection::Port& _port) + throw(sockerr): Connection(sockbuf::sock_dgram, _host, _port) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": _host = " << _host + << " | _port = " << _port << endl; +#endif // DEBUG socket->connect(host.c_str(), port); + // Reasigno el host y puerto bien. + host = socket->peerhost(); + port = socket->peerport(); +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": (real) host = " << _host + << " | port = " << _port << endl; +#endif // DEBUG } +/// \todo debría dar una excepción (?) void Transmitter::real_run(void) { - // FIXME - debería tirar una excepción? - if (!socket->is_open()) { - std::cerr << "No se pudo conectar a " << socket->peerhost() << - ":" << socket->peerport() << "." << std::endl; - } else { - std::cerr << "Conectado a " << socket->peerhost() << - ":" << socket->peerport() << "." << std::endl; +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": real_run()." << endl; +#endif // DEBUG + // No hace nada, porque solo actua cuando se manda algo con send(). + while (!stop) { + Glib::usleep(500000); // 1/2 segundo + } +} + +void Transmitter::send(const string& data) { +#ifdef DEBUG + cerr << __FILE__ << "(" << __LINE__ << ")" + << ": send(data = " << data << ")." << endl; +#endif // DEBUG + if (stop) { + return; + } + try { + socket << data << flush; + } catch (const sockerr& e) { + error(e.serrno(), e.errstr()); + stop = true; } } +} // namespace Server + +} // namespace PlaQui +