NuriaProject Framework  0.1
The NuriaProject Framework
httpmultipartreader.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_HTTPMULTIPARTREADER_HPP
18 #define NURIA_HTTPMULTIPARTREADER_HPP
19 
20 #include "httppostbodyreader.hpp"
21 
22 namespace Nuria {
23 
24 class HttpMultiPartReaderPrivate;
25 class TemporaryBufferDevice;
26 
43 class NURIA_NETWORK_EXPORT HttpMultiPartReader : public HttpPostBodyReader {
44  Q_OBJECT
45 public:
46 
50  HttpMultiPartReader (QIODevice *device, const QByteArray &boundary, QObject *parent = nullptr);
51 
54 
55  bool isComplete () const override;
56  bool hasFailed () const override;
57  bool hasField (const QString &field) const override;
58  QStringList fieldNames () const override;
59  QString fieldMimeType (const QString &field) const override;
60  qint64 fieldLength (const QString &field) const override;
61  qint64 fieldBytesTransferred (const QString &field) const override;
62  bool isFieldComplete (const QString &field) const override;
63  QIODevice *fieldStream (const QString &field) override;
64 
65 private:
66 
67  void setState (int state);
68  void processData ();
69  void processChunk ();
70  bool processChunkStep ();
71  int processFirstLine ();
72  int processAllHeaders ();
73  int processHeaders (int offset);
74  bool processHeaderLine (const QByteArray &line);
75  bool parseHeaders ();
76  qint64 parseContentLength (const QByteArray &data);
77  QString parseContentDispositionValue (const QByteArray &data);
78  QString parseContentDispositionFormDataValue (const QByteArray &data);
79  int processContent ();
80  int isBoundingLine (const QByteArray &buffer, bool &last, int offset);
81  int boundingLineLength () const;
82  void stopListening ();
83  int appendToCurrentBuffer (const QByteArray &data, int length);
84  int processContentBoundary (int idxOfNewline);
85  void initCurrentBuffer (const QString &name, TemporaryBufferDevice *device);
86 
87  HttpMultiPartReaderPrivate *d_ptr;
88 
89 };
90 
91 }
92 
93 #endif // NURIA_HTTPMULTIPARTREADER_HPP
Definition: abstractsessionmanager.hpp:24
Abstract class for readers of the body of HTTP POST requests.
Definition: httppostbodyreader.hpp:40
In-memory buffer device with fallback to a temporary file.
Definition: temporarybufferdevice.hpp:48
Reader for HTTP multi-part formatted data.
Definition: httpmultipartreader.hpp:43