/** @file @author Stefan Frings */ #ifndef HTTPRESPONSE_H #define HTTPRESPONSE_H #include #include #include #include "httpglobal.h" #include "httpcookie.h" #include "export.h" namespace qtwebapp { /** This object represents a HTTP response, used to return something to the web client.

    response.setStatus(200,"OK"); // optional, because this is the default
    response.writeBody("Hello");
    response.writeBody("World!",true);
  

Example how to return an error:

    response.setStatus(500,"server error");
    response.write("The request cannot be processed because the servers is broken",true);
  

In case of large responses (e.g. file downloads), a Content-Length header should be set before calling write(). Web Browsers use that information to display a progress bar. */ class HTTPSERVER_API HttpResponse { Q_DISABLE_COPY(HttpResponse) public: /** Constructor. @param socket used to write the response */ HttpResponse(QTcpSocket* socket); /** Set a HTTP response header. You must call this method before the first write(). @param name name of the header @param value value of the header */ void setHeader(QByteArray name, QByteArray value); /** Set a HTTP response header. You must call this method before the first write(). @param name name of the header @param value value of the header */ void setHeader(QByteArray name, int value); /** Get the map of HTTP response headers */ QMap& getHeaders(); /** Get the map of cookies */ QMap& getCookies(); /** Set status code and description. The default is 200,OK. You must call this method before the first write(). */ void setStatus(int statusCode, QByteArray description=QByteArray()); /** Return the status code. */ int getStatusCode() const; /** Write body data to the socket.

The HTTP status line, headers and cookies are sent automatically before the body.

If the response contains only a single chunk (indicated by lastPart=true), then a Content-Length header is automatically set.

Chunked mode is automatically selected if there is no Content-Length header and also no Connection:close header. @param data Data bytes of the body @param lastPart Indicates that this is the last chunk of data and flushes the output buffer. */ void write(QByteArray data, bool lastPart=false); /** Indicates whether the body has been sent completely (write() has been called with lastPart=true). */ bool hasSentLastPart() const; /** Set a cookie. You must call this method before the first write(). */ void setCookie(const HttpCookie& cookie); /** Send a redirect response to the browser. Cannot be combined with write(). @param url Destination URL */ void redirect(const QByteArray& url); /** * Flush the output buffer (of the underlying socket). * You normally don't need to call this method because flush is * automatically called after HttpRequestHandler::service() returns. */ void flush(); /** * May be used to check whether the connection to the web client has been lost. * This might be useful to cancel the generation of large or slow responses. */ bool isConnected() const; private: /** Request headers */ QMap headers; /** Socket for writing output */ QTcpSocket* socket; /** HTTP status code*/ int statusCode; /** HTTP status code description */ QByteArray statusText; /** Indicator whether headers have been sent */ bool sentHeaders; /** Indicator whether the body has been sent completely */ bool sentLastPart; /** Whether the response is sent in chunked mode */ bool chunkedMode; /** Cookies */ QMap cookies; /** Write raw data to the socket. This method blocks until all bytes have been passed to the TCP buffer */ bool writeToSocket(QByteArray data); /** Write the response HTTP status and headers to the socket. Calling this method is optional, because writeBody() calls it automatically when required. */ void writeHeaders(); }; } // end of namespace #endif // HTTPRESPONSE_H