+namespace PlaQui {
+
+namespace Server {
+
+Server::~Server(void) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": destructor." << endl;
+#endif // DEBUG
+ // Termino plantas.
+ Glib::Mutex::Lock lock(plants_mutex);
+ for (PlantList::iterator i = plants.end(); i != plants.end(); i++) {
+ i->second->finish(true);
+ }
+}
+
+Server::Server(const string& plant_filename, const Connection::Port& port):
+ TCPServer(port) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": port = " << port << endl;
+#endif // DEBUG
+ // FIXME
+ Glib::Mutex::Lock lock(plants_mutex);
+ plants["default"] = new Plant(plant_filename);
+ plants["default"]->signal_finished().connect(
+ SigC::bind<const char*>(
+ SigC::slot_class(*this, &Server::on_plant_finished),
+ "default"));
+ plants["default"]->run();
+}
+
+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::bind<ControlServer*>(
+ SigC::slot_class(*this, &Server::on_control_command_received),
+ connection));
+ // TODO:
+ return connection;
+}
+
+void Server::on_plant_updated(const Plant* plant) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": on_plant_updated(plant = " << plant << ")." << endl;
+#endif // DEBUG
+}
+
+void Server::on_plant_finished(const char* plant) {
+#ifdef DEBUG
+ cerr << __FILE__ << ": on_plant_finished(plant_name = " << plant << endl;
+#endif // DEBUG
+ Glib::Mutex::Lock lock(plants_mutex);
+ plants.erase(plant);
+}
+
+/// \todo Terminar de implementar.
+void Server::on_control_command_received(const Command& command,
+ ControlServer* controlserver) {
+#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
+ HTTPResponse* response;
+ //bool stop_controlserver = false;
+ if (command.get_target() == "server") {
+ if (command.get_command() == "status") {
+ response = cmd_server_status();
+ } else if (command.get_command() == "stop") {
+ finish();
+ response = new HTTPResponse(HTTPMessage::OK,
+ "El server se apagará en instantes...");
+ } else {
+ response = new HTTPResponse(HTTPMessage::NOT_FOUND,
+ "Invalid command for 'server' taget!");
+ }
+ } else if (command.get_target() == "connection") {
+ if (command.get_command() == "list") {
+ response = cmd_connection_list();
+ } else if (command.get_command() == "stop") {
+ response = cmd_connection_stop(command);
+ } else {
+ response = new HTTPResponse(HTTPMessage::NOT_FOUND,
+ "Invalid command for 'connection' taget!");
+ }
+ } else if (command.get_target() == "transmission") {
+ if (command.get_command() == "list") {
+ response = cmd_transmission_list();
+ } else if (command.get_command() == "start") {
+ response = cmd_transmission_start(command);
+ } else if (command.get_command() == "stop") {
+ response = cmd_transmission_stop(command);
+ } else {
+ response = new HTTPResponse(HTTPMessage::NOT_FOUND,
+ "Invalid command for 'transmission' taget!");
+ }
+ } else if (command.get_target() == "plant") {
+ if (command.get_command() == "list") {
+ response = cmd_plant_list();
+ } else if (command.get_command() == "get") {
+ response = cmd_plant_get(command);
+ } else if (command.get_command() == "set") {
+ response = cmd_plant_set(command);
+ } else if (command.get_command() == "stop") {
+ response = cmd_plant_stop(command);
+ } else {
+ response = new HTTPResponse(HTTPMessage::NOT_FOUND,
+ "Invalid command for 'plant' taget!");
+ }
+ } else {
+ response = new HTTPResponse(HTTPMessage::NOT_FOUND, "Invalid taget!");
+ }
+ // FIXME
+ response->headers["Content-Type"] = "text/xml; charset=iso-8859-1";
+ //response->headers["Connection"] = "close";
+ controlserver->send(*response);
+ delete response;
+ // FIXME con timeout no debería ser necesario. Verificar cabecera Connection
+ // para saber si hay que finish()earlo o no.
+ //if (stop_controlserver) {
+ // controlserver->finish();
+ //}
+}
+
+HTTPResponse* Server::cmd_server_status(void) const {
+ // FIXME
+ stringstream response_xml;
+ response_xml << "<serverstatus>" << endl;
+ response_xml << "\t<version>0.9</version>" << endl;
+ response_xml << "\t<authors>" << endl;
+ response_xml << "\t\t<author>Nicolás Dimov</author>" << endl;
+ response_xml << "\t\t<author>Leandro Lucarella</author>" << endl;
+ response_xml << "\t\t<author>Ricardo Markiewicz</author>" << endl;
+ response_xml << "\t</authors>" << endl;
+ response_xml << "</serverstatus>" << endl;
+ return new HTTPResponse(HTTPMessage::OK, response_xml.str());
+}
+
+HTTPResponse* Server::cmd_connection_list(void) {
+ // FIXME
+ TCPServer::ConnectionInfoList cil = get_connected();
+ stringstream response_xml;
+ response_xml << "<list type=\"connection\">" << endl;
+ for (TCPServer::ConnectionInfoList::const_iterator i = cil.begin();
+ i != cil.end(); i++) {
+ response_xml << "\t<row>" << endl;
+ response_xml << "\t\t<cell>" << i->host << "</cell>" << endl;
+ response_xml << "\t\t<cell>" << i->port << "</cell>" << endl;
+ response_xml << "\t</row>" << endl;
+ }
+ response_xml << "</list>" << endl;
+ return new HTTPResponse(HTTPMessage::OK, response_xml.str());
+}
+
+HTTPResponse* Server::cmd_connection_stop(const Command& command) {
+ const Command::Arguments& args = command.get_args();
+ Connection::Port port;
+ if (args.size() < 2) {
+ return new HTTPResponse(HTTPMessage::CONFLICT,
+ "Faltan argumentos.");
+ } else if (disconnect(args[0], String(args[1]).to(port))) {
+ return new HTTPResponse(HTTPMessage::OK,
+ string("La conexión a ") + args[0] + ":" + args[1]
+ + " se cerrará en instantes...");
+ } else {
+ return new HTTPResponse(HTTPMessage::NOT_FOUND,
+ string("No existe una conexión a ") + args[0]
+ + ":" + args[1]);
+ }
+}
+
+HTTPResponse* Server::cmd_transmission_list(void) {
+ // FIXME
+ stringstream response_xml;
+ response_xml << "<list type=\"transmission\">" << endl;
+/*TODO plants_mutex.lock();
+ for (PlantList::const_iterator i = plants.begin();
+ i != plants.end(); i++) {
+ trans
+ response_xml << " <li>" << (*i)->get_host() << ":"
+ << (*i)->get_port() << " [<a href=\"/transmission/stop/"
+ << (*i)->get_host() << "/" << (*i)->get_port()
+ << "\">desconectar</a>]</li>" << endl;
+ }
+ transmissions_mutex.unlock();*/
+ response_xml << "</list>" << endl;
+ return new HTTPResponse(HTTPMessage::OK, response_xml.str());
+}
+
+HTTPResponse* Server::cmd_transmission_start(const Command& command) {
+ const Command::Arguments& args = command.get_args();
+ if (args.size() < 3) {
+ return new HTTPResponse(HTTPMessage::CONFLICT,
+ "Faltan argumentos.");
+ } else {
+ string plant = args[0];
+ string host = args[1];
+ Connection::Port port = String(args[2]).to(port);
+ Glib::Mutex::Lock lock(plants_mutex);
+ PlantList::iterator p = plants.find(plant);
+ if (p == plants.end()) {
+ return new HTTPResponse(HTTPMessage::NOT_FOUND,
+ string("No existe la planta '") + plant + "'.");
+ // TODO - agregar chequeo de que la transmision a ese host:port no
+ // exista para otra planta?
+ } else if (plants[plant]->transmission_start(host, port)) {
+ return new HTTPResponse(HTTPMessage::OK,
+ string("Se empieza a transmitir la planta '") + plant
+ + "' a " + host + ":" + String().from(port) + ".");
+ } else {
+ return new HTTPResponse(HTTPMessage::INTERNAL_SERVER_ERROR,
+ string("Error al crear la transmisión a de la planta '")
+ + plant + "' a " + host + ":" + args[2] + ".");
+ }
+ }