QGIS API Documentation  3.10.0-A Coruña (6c816b4204)
qgsnetworkreplyparser.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsnetworkreplyparser.h - Multipart QNetworkReply parser
3  -------------------
4  begin : 4 January, 2013
5  copyright : (C) 2013 by Radim Blazek
6  email : radim dot blazek at gmail.com
7 
8  ***************************************************************************/
9 
10 /***************************************************************************
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * *
17  ***************************************************************************/
18 
19 #ifndef QGSNETWORKREPLYPARSER_H
20 #define QGSNETWORKREPLYPARSER_H
21 
22 #define SIP_NO_FILE
23 
24 #include <QNetworkReply>
25 
26 #include "qgis_core.h"
27 
39 class CORE_EXPORT QgsNetworkReplyParser : public QObject
40 {
41  Q_OBJECT
42 
43  public:
44  typedef QMap<QByteArray, QByteArray> RawHeaderMap;
45 
49  QgsNetworkReplyParser( QNetworkReply *reply );
50 
54  bool isValid() const { return mValid; }
55 
59  int parts() const { return mHeaders.size(); }
60 
66  QByteArray rawHeader( int part, const QByteArray &headerName ) const { return mHeaders.value( part ).value( headerName ); }
67 
69  QList< RawHeaderMap > headers() const { return mHeaders; }
70 
75  QByteArray body( int part ) const { return mBodies.value( part ); }
76 
78  QList<QByteArray> bodies() const { return mBodies; }
79 
81  QString error() const { return mError; }
82 
86  static bool isMultipart( QNetworkReply *reply );
87 
88  private:
89  QNetworkReply *mReply = nullptr;
90 
91  bool mValid;
92 
93  QString mError;
94 
95  /* List of header maps */
96  QList< RawHeaderMap > mHeaders;
97 
98  /* List of part bodies */
99  QList<QByteArray> mBodies;
100 };
101 
102 #endif
QByteArray rawHeader(int part, const QByteArray &headerName) const
Gets part header.
int parts() const
Gets number of parts.
QList< RawHeaderMap > headers() const
Gets headers.
QMap< QByteArray, QByteArray > RawHeaderMap
QByteArray body(int part) const
Gets part part body.
bool isValid() const
Indicates if successfully parsed.
QString error() const
Parsing error.
Multipart QNetworkReply parser.
QList< QByteArray > bodies() const
Gets bodies.