NuriaProject Framework  0.1
The NuriaProject Framework
httppostbodyreader.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_HTTPPOSTBODYREADER_HPP
18 #define NURIA_HTTPPOSTBODYREADER_HPP
19 
20 #include "network_global.hpp"
21 #include <QStringList>
22 #include <QObject>
23 
24 class QIODevice;
25 
26 namespace Nuria {
27 
40 class NURIA_NETWORK_EXPORT HttpPostBodyReader : public QObject {
41  Q_OBJECT
42 public:
43 
45  explicit HttpPostBodyReader (QObject *parent = 0);
46 
49 
55  virtual bool isComplete () const = 0;
56 
60  virtual bool hasFailed () const = 0;
61 
66  virtual bool hasField (const QString &field) const;
67 
69  virtual QStringList fieldNames () const = 0;
70 
76  virtual QString fieldMimeType (const QString &field) const = 0;
77 
82  virtual qint64 fieldLength (const QString &field) const = 0;
83 
85  virtual qint64 fieldBytesTransferred (const QString &field) const = 0;
86 
94  virtual bool isFieldComplete (const QString &field) const;
95 
107  virtual QByteArray fieldValue (const QString &field);
108 
125  virtual QIODevice *fieldStream (const QString &field) = 0;
126 
127 signals:
128 
133  void fieldFound (const QString &fieldName);
134 
139  void fieldCompleted (const QString &fieldName);
140 
146  void completed (bool success);
147 
148 };
149 
150 }
151 
152 #endif // NURIA_HTTPPOSTBODYREADER_HPP
Definition: abstractsessionmanager.hpp:24
Abstract class for readers of the body of HTTP POST requests.
Definition: httppostbodyreader.hpp:40