]> git.llucax.com Git - z.facultad/75.42/plaqui.git/blobdiff - Server/include/plaqui/server/httprequest.h
- Se cambia el refresco por defecto de una planta a 0,3 veces por segundo (algo
[z.facultad/75.42/plaqui.git] / Server / include / plaqui / server / httprequest.h
index ace04f077d8f1bb62d90b2b17f6033cf2e5099af..7b43f67c29bc3faaa5e9b623f7b67679f5699394 100644 (file)
@@ -28,7 +28,9 @@
 #ifndef PLAQUI_HTTPREQUEST_H
 #define PLAQUI_HTTPREQUEST_H
 
-#include "httpmessage.h"
+#include "plaqui/server/httperror.h"
+#include "plaqui/server/httpmessage.h"
+#include <socket++/sockstream.h>
 #include <string>
 #include <istream>
 #include <ostream>
@@ -40,6 +42,7 @@ namespace Server {
        /// Pedido HTTP.
        class HTTPRequest: public HTTPMessage {
 
+               /////////////////////////////////////////////////////////////////////
                // Constantes.
 
                protected:
@@ -71,6 +74,7 @@ namespace Server {
                        /// Caracteres no hexa para URIs (RFC 2396).
                        static const std::string CHARS_HEX;
 
+               /////////////////////////////////////////////////////////////////////
                // Tipos.
 
                public:
@@ -78,6 +82,7 @@ namespace Server {
                        /// Tipo de métodos HTTP reconocidos.
                        typedef enum {GET, POST} HTTPMethod;
 
+               /////////////////////////////////////////////////////////////////////
                // Atributos.
 
                protected: // TODO hacer privados con get() y set() ???
@@ -94,6 +99,7 @@ namespace Server {
                        /// Query string.
                        std::string query;
 
+               /////////////////////////////////////////////////////////////////////
                // Métodos.
 
                public:
@@ -109,18 +115,25 @@ namespace Server {
                        HTTPRequest(const std::string& uri = "/",
                                        const HTTPMethod& method = GET,
                                        const std::string& query = "",
+                                       const std::string& body = "",
                                        const std::string& version = "1.1");
 
+                       /**
+                        * Obtiene el método como un string.
+                        */
+                       std::string method_str(void) const;
+
                        /**
                         * Obtiene los datos del pedido HTTP desde un texto.
                         */
-                       friend std::istream& operator>>(std::istream& is, HTTPRequest& req);
+                       friend std::istream& operator>>(std::istream& is, HTTPRequest& req)
+                               throw(HTTPError, sockerr, std::ios::failure);
 
                        /**
                         * Convierte el pedido HTTP en texto.
                         */
                        friend std::ostream& operator<<(std::ostream& os,
-                                       const HTTPRequest& req);
+                                       const HTTPRequest& req) throw(sockerr);
 
        };