]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/src/transmitter.cpp
- Se limpian un poco las respuestas, ahora lo que van a ser respuestas reales,
[z.facultad/75.42/plaqui.git] / Server / src / transmitter.cpp
index b8635fa6c7f5fbed0c53c441f72deb5886136642..de940f98c187097db7a050c543e96876781c0b8c 100644 (file)
 // $Id$
 //
 
-#include "transmitter.h"
+#include "plaqui/server/transmitter.h"
+#include <glibmm/timer.h>
 #include <socket++/sockinet.h>
 #include <string>
+#ifdef DEBUG
+#      include <iostream>
+#endif // DEBUG
 
-using namespace Plaqui;
+using namespace std;
 
-Transmitter::Transmitter(std::string host, int port):
-               Connection(sockbuf::sock_dgram) {
-#warning Not implemented!
+namespace PlaQui {
+
+namespace Server {
+
+Transmitter::~Transmitter(void) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": destructor." << endl;
+#endif // DEBUG
+}
+
+Transmitter::Transmitter(string& _host, Connection::Port& _port):
+               Connection(sockbuf::sock_dgram, _host, _port) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": _host = " << _host
+               << " | _port = " << _port << endl;
+#endif // DEBUG
        socket->connect(host.c_str(), port);
+       // Reasigno el host y puerto bien, tanto de este objeto como los que se
+       // environ para indicar su valor correcto.
+       host  = socket->peerhost();
+       port  = socket->peerport();
+       _host = socket->peerhost();
+       _port = socket->peerport();
+}
+
+/// \todo debría dar una excepción (?)
+void Transmitter::real_run(void) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": real_run()." << endl;
+#endif // DEBUG
+       // No hace nada, porque solo actua cuando se manda algo con send().
+       while (!stop) {
+               Glib::usleep(1000);
+       }
+}
+
+void Transmitter::send(const string& data) {
+#ifdef DEBUG
+       cerr << __FILE__ << ": send(data = " << data << ")." << endl;
+#endif // DEBUG
+       socket << data << flush;
 }
 
+} // namespace Server
+
+} // namespace PlaQui
+