- // FIXME - hacer respuesta XML.
- // La respuesta hay que mandarla asincrónicamente porque no puedo
- // responder hasta que la planta no se termine de actualizar, por
- // ejemplo.
- stringstream response_xml;
- socket << "HTTP/1.0 200 OK" << endl;
-/*
-Date: Sun, 19 Oct 2003 15:11:14 GMT
-Server: Apache/1.3.28 (Debian GNU/Linux)
-Last-Modified: Mon, 28 Apr 2003 07:50:08 GMT
-Accept-Ranges: bytes
-*/
- socket << "Content-Type: text/html; charset=iso-8859-1" << endl;
- response_xml << "<html>" << endl;
- response_xml << " <head>" << endl;
- response_xml << " <title>PlaQui v0.1</title>" << endl;
- response_xml << " </head>" << endl;
- response_xml << " <body>" << endl;
- response_xml << " <h1>PlaQui</h1>" << endl;
- response_xml << " <p>versión 0.2</p>" << endl;
- response_xml << " <h2>Pedido HTTP</h2>" << endl;
- response_xml << " <ul>" << endl;
- for (HTTPHeaders::const_iterator i = request.headers.begin();
- i != request.headers.end(); i++) {
- response_xml << " <li><b>" << i->first << ":</b> "
- << i->second << endl;
- }
- response_xml << " </ul>" << endl;
- response_xml << " <h2>Desarrollado por</h2>" << endl;
- response_xml << " <ul>" << endl;
- response_xml << " <li>Nicolás Dimov.</li>" << endl;
- response_xml << " <li>Leandro Lucarella.</li>" << endl;
- response_xml << " <li>Ricardo Markiewicz.</li>" << endl;
- response_xml << " </ul>" << endl;
- response_xml << " <address>" << endl;
- response_xml << " Copyleft 2003 - bajo los " << endl;
- response_xml << " términos de la licencia GPL" << endl;
- response_xml << " </address>" << endl;
- response_xml << " </body>" << endl;
- response_xml << "</html>" << endl;
- socket << "Content-Length: " << response_xml.str().length() << endl;
- socket << endl;
- socket << response_xml.str() << flush;
+ // Manda el comando.
+ command_received(command);
+ }
+}
+
+void ControlServer::send(const Response& response) {
+ try {
+ socket << response << flush;
+ } catch (const sockerr& e) {
+ cerr << __FILE__ << "(" << __LINE__ << ") send(): "
+ << "Socket Error: " << e.operation() << " | serrno = "
+ << e.serrno() << " | errstr = " << e.errstr() << endl;
+ } catch (const exception& e) {
+ cerr << __FILE__ << "(" << __LINE__ << ") send(): "
+ << "Error: " << e.what() << endl;
+ } catch (...) {
+ cerr << __FILE__ << "(" << __LINE__ << ") send(): "
+ << "Error DESCONOCIDO!!!!!!!!" << endl;