NuriaProject Framework  0.1
The NuriaProject Framework
httpwriter.hpp
1 /* Copyright (c) 2014-2015, The Nuria Project
2  * The NuriaProject Framework is free software: you can redistribute it and/or
3  * modify it under the terms of the GNU Lesser General Public License as
4  * published by the Free Software Foundation, either version 3 of the License,
5  * or (at your option) any later version.
6  *
7  * The NuriaProject Framework is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10  * GNU Lesser General Public License for more details.
11  *
12  * You should have received a copy of the GNU Lesser General Public License
13  * along with The NuriaProject Framework.
14  * If not, see <http://www.gnu.org/licenses/>.
15  */
16 
17 #ifndef NURIA_HTTPWRITER_HPP
18 #define NURIA_HTTPWRITER_HPP
19 
20 #include "httpclient.hpp"
21 #include <QByteArray>
22 
23 namespace Nuria {
24 
28 class NURIA_NETWORK_EXPORT HttpWriter {
29 public:
30 
32  HttpWriter ();
33 
37  QByteArray httpVersionToString (HttpClient::HttpVersion version);
38 
44  QByteArray writeResponseLine (HttpClient::HttpVersion version, int statusCode,
45  const QByteArray &message);
46 
50  QByteArray writeSetCookies (const HttpClient::Cookies &cookies);
51 
58  QByteArray writeSetCookieValue (const QNetworkCookie &cookie);
59 
63  QByteArray writeHttpHeaders (const HttpClient::HeaderMap &headers);
64 
69  QByteArray dateTimeToHttpDateHeader (const QDateTime &dateTime);
70 
74  QByteArray buildRangeHeader (qint64 begin, qint64 end, qint64 totalLength);
75 
80  void addComplianceHeaders (HttpClient::HttpVersion version, HttpClient::HeaderMap &headers);
81 
90  void applyRangeHeaders (qint64 begin, qint64 end, qint64 totalLength,
91  HttpClient::HeaderMap &headers);
92 
98  void addTransferEncodingHeader (HttpClient::TransferMode mode, HttpClient::HeaderMap &headers);
99 
106  void addConnectionHeader (HttpClient::ConnectionMode mode, int count, int max,
107  HttpClient::HeaderMap &headers);
108 
109 private:
110 
111 };
112 
113 }
114 
115 #endif // NURIA_HTTPWRITER_HPP
TransferMode
Definition: httpclient.hpp:197
Writer for HTTP data.
Definition: httpwriter.hpp:28
HttpVersion
Definition: httpclient.hpp:127
ConnectionMode
Definition: httpclient.hpp:231
Definition: abstractsessionmanager.hpp:24
QMultiMap< QByteArray, QByteArray > HeaderMap
Definition: httpclient.hpp:270
QMap< QByteArray, QNetworkCookie > Cookies
Definition: httpclient.hpp:517