//
#include "plaqui/server/server.h"
+#include "plaqui/server/connection.h"
+#include "plaqui/server/controlserver.h"
+#include <sigc++/class_slot.h>
#ifdef DEBUG
+# include "plaqui/server/string.h"
# include <iostream>
#endif // DEBUG
-using namespace PlaQui::Server;
+using namespace std;
+
+namespace PlaQui {
+
+namespace Server {
+
+Server::~Server(void) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": destructor." << endl;
+#endif // DEBUG
+}
Server::Server(int port):
- socket(sockbuf::sock_stream) {
- socket.bind(port);
+ TCPServer(port) {
#ifdef DEBUG
- std::cerr << "Escuchando en " << socket.localhost() <<
- ":" << socket.localport() << "." << std::endl;
+ cerr << __FILE__ << ": port = " << port << endl;
#endif // DEBUG
- socket.listen();
}
-bool Server::start_transmission(std::string host, int port) {
+/// \todo Implementar.
+bool Server::start_transmission(string host, int port) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": start_transmission(host = " << host
+ << " | port = " << port << ")" << endl;
+#endif // DEBUG
// TODO
return false;
}
+
+Connection* Server::new_connection(
+ const sockbuf::sockdesc& sd) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": new_connection(sd = " << sd.sock << ")"
+ << endl;
+#endif // DEBUG
+ ControlServer* connection = new ControlServer(sd);
+ // TODO verificar si el new se hace bien? no creo.
+ connection->signal_command_received().connect(
+ SigC::slot_class(*this, &Server::on_control_command_received));
+ // TODO:
+ return connection;
+}
-bool Server::stop_transmission(std::string host, int port) {
+/// \todo Implementar.
+bool Server::stop_transmission(string host, int port) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": stop_transmission(host = " << host
+ << " | port = " << port << ")" << endl;
+#endif // DEBUG
// TODO
return false;
}
-void Server::real_run(void) {
- // FIXME se tiene que ir a la clase para poder frenarlo desde afuera.
- bool stop = false;
- ControlServer* control_server;
- while (!stop) {
- control_server = new ControlServer(socket.accept());
- controllers.push_back(control_server);
- control_server->run();
- }
+/// \todo Implementar.
+void Server::on_control_command_received(const Command& command) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": on_control_command_received(target = "
+ << command.get_target() << ", command = " << command.get_command()
+ << ", args = [" << String::join(command.get_args(), ", ") << "])"
+ << endl;
+#endif // DEBUG
}
+} // namespace Server
+
+} // namespace PlaQui
+