NuriaProject Framework  0.1
The NuriaProject Framework
httpparser.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_HTTPPARSER_HPP
18 #define NURIA_HTTPPARSER_HPP
19 
20 #include "httpclient.hpp"
21 #include <QByteArray>
22 
23 class QIODevice;
24 
25 namespace Nuria {
26 
30 class NURIA_NETWORK_EXPORT HttpParser {
31 public:
33  HttpParser ();
34 
36  ~HttpParser ();
37 
42  bool removeTrailingNewline (QByteArray &data);
43 
49  bool parseFirstLine (const QByteArray &data, QByteArray &verb, QByteArray &path,
50  QByteArray &version);
55  bool parseHeaderLine (const QByteArray &data, QByteArray &name, QByteArray &value);
56 
61  HttpClient::HttpVersion parseVersion (const QByteArray &version);
62 
67  HttpClient::HttpVerb parseVerb (const QByteArray &verb);
68 
73  HttpClient::TransferMode decideTransferMode (HttpClient::HttpVersion version,
74  const QByteArray &connectionHeader);
75 
81  bool parseRangeHeaderValue (const QByteArray &value, qint64 &begin, qint64 &end);
82 
87  QByteArray correctHeaderKeyCase (QByteArray key);
88 
93  bool parseCookies (const QByteArray &data, HttpClient::Cookies &target);
94 
100  bool parseFirstLineFull (const QByteArray &line, HttpClient::HttpVerb &verb,
101  QByteArray &path, HttpClient::HttpVersion &version);
102 };
103 
104 
105 }
106 
107 #endif // NURIA_HTTPPARSER_HPP
TransferMode
Definition: httpclient.hpp:197
HttpVerb
Definition: httpclient.hpp:137
HttpVersion
Definition: httpclient.hpp:127
Definition: abstractsessionmanager.hpp:24
Parser functions for the HyperText Transfer Protocol.
Definition: httpparser.hpp:30
QMap< QByteArray, QNetworkCookie > Cookies
Definition: httpclient.hpp:517