NuriaProject Framework  0.1
The NuriaProject Framework
httpurlencodedreader.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_HTTPURLENCODEDREADER_HPP
18 #define NURIA_HTTPURLENCODEDREADER_HPP
19 
20 #include "httppostbodyreader.hpp"
21 
22 namespace Nuria {
23 
24 class HttpUrlEncodedReaderPrivate;
25 
41 class NURIA_NETWORK_EXPORT HttpUrlEncodedReader : public HttpPostBodyReader {
42  Q_OBJECT
43 public:
44 
48  HttpUrlEncodedReader (QIODevice *device, const QByteArray &charset, QObject *parent = nullptr);
49 
52 
53  bool isComplete () const override;
54  bool hasFailed () const override;
55  bool hasField (const QString &field) const override;
56  QStringList fieldNames () const override;
57  QString fieldMimeType (const QString &) const override;
58  qint64 fieldLength (const QString &field) const override;
59  qint64 fieldBytesTransferred (const QString &field) const override;
60  bool isFieldComplete (const QString &field) const override;
61  QIODevice *fieldStream (const QString &field) override;
62  QByteArray fieldValue (const QString &field) override;
63 
64 private:
65 
66  void processData ();
67  void processChunk ();
68  bool processChunkStep ();
69  void processKey ();
70  int processValue ();
71  void stopListening ();
72 
73  HttpUrlEncodedReaderPrivate *d_ptr;
74 
75 };
76 
77 }
78 
79 #endif // NURIA_HTTPURLENCODEDREADER_HPP
Definition: abstractsessionmanager.hpp:24
Abstract class for readers of the body of HTTP POST requests.
Definition: httppostbodyreader.hpp:40
Reader for HTTP url-encoded formatted data.
Definition: httpurlencodedreader.hpp:41