qnetworkreply.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QNETWORKREPLY_H
  40. #define QNETWORKREPLY_H
  41. #include <QtCore/QIODevice>
  42. #include <QtCore/QString>
  43. #include <QtCore/QVariant>
  44. #include <QtNetwork/QNetworkRequest>
  45. #include <QtNetwork/QNetworkAccessManager>
  46. QT_BEGIN_NAMESPACE
  47. class QUrl;
  48. class QVariant;
  49. class QAuthenticator;
  50. class QSslConfiguration;
  51. class QSslError;
  52. class QSslPreSharedKeyAuthenticator;
  53. class QNetworkReplyPrivate;
  54. class Q_NETWORK_EXPORT QNetworkReply: public QIODevice
  55. {
  56. Q_OBJECT
  57. public:
  58. enum NetworkError {
  59. NoError = 0,
  60. // network layer errors [relating to the destination server] (1-99):
  61. ConnectionRefusedError = 1,
  62. RemoteHostClosedError,
  63. HostNotFoundError,
  64. TimeoutError,
  65. OperationCanceledError,
  66. SslHandshakeFailedError,
  67. TemporaryNetworkFailureError,
  68. NetworkSessionFailedError,
  69. BackgroundRequestNotAllowedError,
  70. TooManyRedirectsError,
  71. InsecureRedirectError,
  72. UnknownNetworkError = 99,
  73. // proxy errors (101-199):
  74. ProxyConnectionRefusedError = 101,
  75. ProxyConnectionClosedError,
  76. ProxyNotFoundError,
  77. ProxyTimeoutError,
  78. ProxyAuthenticationRequiredError,
  79. UnknownProxyError = 199,
  80. // content errors (201-299):
  81. ContentAccessDenied = 201,
  82. ContentOperationNotPermittedError,
  83. ContentNotFoundError,
  84. AuthenticationRequiredError,
  85. ContentReSendError,
  86. ContentConflictError,
  87. ContentGoneError,
  88. UnknownContentError = 299,
  89. // protocol errors
  90. ProtocolUnknownError = 301,
  91. ProtocolInvalidOperationError,
  92. ProtocolFailure = 399,
  93. // Server side errors (401-499)
  94. InternalServerError = 401,
  95. OperationNotImplementedError,
  96. ServiceUnavailableError,
  97. UnknownServerError = 499
  98. };
  99. Q_ENUM(NetworkError)
  100. ~QNetworkReply();
  101. // reimplemented from QIODevice
  102. virtual void close() Q_DECL_OVERRIDE;
  103. virtual bool isSequential() const Q_DECL_OVERRIDE;
  104. // like QAbstractSocket:
  105. qint64 readBufferSize() const;
  106. virtual void setReadBufferSize(qint64 size);
  107. QNetworkAccessManager *manager() const;
  108. QNetworkAccessManager::Operation operation() const;
  109. QNetworkRequest request() const;
  110. NetworkError error() const;
  111. bool isFinished() const;
  112. bool isRunning() const;
  113. QUrl url() const;
  114. // "cooked" headers
  115. QVariant header(QNetworkRequest::KnownHeaders header) const;
  116. // raw headers:
  117. bool hasRawHeader(const QByteArray &headerName) const;
  118. QList<QByteArray> rawHeaderList() const;
  119. QByteArray rawHeader(const QByteArray &headerName) const;
  120. typedef QPair<QByteArray, QByteArray> RawHeaderPair;
  121. const QList<RawHeaderPair>& rawHeaderPairs() const;
  122. // attributes
  123. QVariant attribute(QNetworkRequest::Attribute code) const;
  124. #ifndef QT_NO_SSL
  125. QSslConfiguration sslConfiguration() const;
  126. void setSslConfiguration(const QSslConfiguration &configuration);
  127. void ignoreSslErrors(const QList<QSslError> &errors);
  128. #endif
  129. public Q_SLOTS:
  130. virtual void abort() = 0;
  131. virtual void ignoreSslErrors();
  132. Q_SIGNALS:
  133. void metaDataChanged();
  134. void finished();
  135. void error(QNetworkReply::NetworkError);
  136. #ifndef QT_NO_SSL
  137. void encrypted();
  138. void sslErrors(const QList<QSslError> &errors);
  139. void preSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator *authenticator);
  140. #endif
  141. void redirected(const QUrl &url);
  142. void uploadProgress(qint64 bytesSent, qint64 bytesTotal);
  143. void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
  144. protected:
  145. explicit QNetworkReply(QObject *parent = Q_NULLPTR);
  146. QNetworkReply(QNetworkReplyPrivate &dd, QObject *parent);
  147. virtual qint64 writeData(const char *data, qint64 len) Q_DECL_OVERRIDE;
  148. void setOperation(QNetworkAccessManager::Operation operation);
  149. void setRequest(const QNetworkRequest &request);
  150. void setError(NetworkError errorCode, const QString &errorString);
  151. void setFinished(bool);
  152. void setUrl(const QUrl &url);
  153. void setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value);
  154. void setRawHeader(const QByteArray &headerName, const QByteArray &value);
  155. void setAttribute(QNetworkRequest::Attribute code, const QVariant &value);
  156. virtual void sslConfigurationImplementation(QSslConfiguration &) const;
  157. virtual void setSslConfigurationImplementation(const QSslConfiguration &);
  158. virtual void ignoreSslErrorsImplementation(const QList<QSslError> &);
  159. private:
  160. Q_DECLARE_PRIVATE(QNetworkReply)
  161. };
  162. QT_END_NAMESPACE
  163. Q_DECLARE_METATYPE(QNetworkReply::NetworkError)
  164. #endif