qnetworkaccessmanager.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  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 QNETWORKACCESSMANAGER_H
  40. #define QNETWORKACCESSMANAGER_H
  41. #include <QtCore/QObject>
  42. #ifndef QT_NO_SSL
  43. #include <QtNetwork/QSslConfiguration>
  44. #include <QtNetwork/QSslPreSharedKeyAuthenticator>
  45. #endif
  46. QT_BEGIN_NAMESPACE
  47. class QIODevice;
  48. class QAbstractNetworkCache;
  49. class QAuthenticator;
  50. class QByteArray;
  51. template<typename T> class QList;
  52. class QNetworkCookie;
  53. class QNetworkCookieJar;
  54. class QNetworkRequest;
  55. class QNetworkReply;
  56. class QNetworkProxy;
  57. class QNetworkProxyFactory;
  58. class QSslError;
  59. #ifndef QT_NO_BEARERMANAGEMENT
  60. class QNetworkConfiguration;
  61. #endif
  62. class QHttpMultiPart;
  63. class QNetworkReplyImplPrivate;
  64. class QNetworkAccessManagerPrivate;
  65. class Q_NETWORK_EXPORT QNetworkAccessManager: public QObject
  66. {
  67. Q_OBJECT
  68. #ifndef QT_NO_BEARERMANAGEMENT
  69. Q_PROPERTY(NetworkAccessibility networkAccessible READ networkAccessible WRITE setNetworkAccessible NOTIFY networkAccessibleChanged)
  70. #endif
  71. public:
  72. enum Operation {
  73. HeadOperation = 1,
  74. GetOperation,
  75. PutOperation,
  76. PostOperation,
  77. DeleteOperation,
  78. CustomOperation,
  79. UnknownOperation = 0
  80. };
  81. #ifndef QT_NO_BEARERMANAGEMENT
  82. enum NetworkAccessibility {
  83. UnknownAccessibility = -1,
  84. NotAccessible = 0,
  85. Accessible = 1
  86. };
  87. Q_ENUM(NetworkAccessibility)
  88. #endif
  89. explicit QNetworkAccessManager(QObject *parent = Q_NULLPTR);
  90. ~QNetworkAccessManager();
  91. // ### Qt 6: turn into virtual
  92. QStringList supportedSchemes() const;
  93. void clearAccessCache();
  94. #ifndef QT_NO_NETWORKPROXY
  95. QNetworkProxy proxy() const;
  96. void setProxy(const QNetworkProxy &proxy);
  97. QNetworkProxyFactory *proxyFactory() const;
  98. void setProxyFactory(QNetworkProxyFactory *factory);
  99. #endif
  100. QAbstractNetworkCache *cache() const;
  101. void setCache(QAbstractNetworkCache *cache);
  102. QNetworkCookieJar *cookieJar() const;
  103. void setCookieJar(QNetworkCookieJar *cookieJar);
  104. QNetworkReply *head(const QNetworkRequest &request);
  105. QNetworkReply *get(const QNetworkRequest &request);
  106. QNetworkReply *post(const QNetworkRequest &request, QIODevice *data);
  107. QNetworkReply *post(const QNetworkRequest &request, const QByteArray &data);
  108. QNetworkReply *post(const QNetworkRequest &request, QHttpMultiPart *multiPart);
  109. QNetworkReply *put(const QNetworkRequest &request, QIODevice *data);
  110. QNetworkReply *put(const QNetworkRequest &request, const QByteArray &data);
  111. QNetworkReply *put(const QNetworkRequest &request, QHttpMultiPart *multiPart);
  112. QNetworkReply *deleteResource(const QNetworkRequest &request);
  113. QNetworkReply *sendCustomRequest(const QNetworkRequest &request, const QByteArray &verb, QIODevice *data = Q_NULLPTR);
  114. #ifndef QT_NO_BEARERMANAGEMENT
  115. void setConfiguration(const QNetworkConfiguration &config);
  116. QNetworkConfiguration configuration() const;
  117. QNetworkConfiguration activeConfiguration() const;
  118. void setNetworkAccessible(NetworkAccessibility accessible);
  119. NetworkAccessibility networkAccessible() const;
  120. #endif
  121. #ifndef QT_NO_SSL
  122. void connectToHostEncrypted(const QString &hostName, quint16 port = 443,
  123. const QSslConfiguration &sslConfiguration = QSslConfiguration::defaultConfiguration());
  124. #endif
  125. void connectToHost(const QString &hostName, quint16 port = 80);
  126. Q_SIGNALS:
  127. #ifndef QT_NO_NETWORKPROXY
  128. void proxyAuthenticationRequired(const QNetworkProxy &proxy, QAuthenticator *authenticator);
  129. #endif
  130. void authenticationRequired(QNetworkReply *reply, QAuthenticator *authenticator);
  131. void finished(QNetworkReply *reply);
  132. #ifndef QT_NO_SSL
  133. void encrypted(QNetworkReply *reply);
  134. void sslErrors(QNetworkReply *reply, const QList<QSslError> &errors);
  135. void preSharedKeyAuthenticationRequired(QNetworkReply *reply, QSslPreSharedKeyAuthenticator *authenticator);
  136. #endif
  137. #ifndef QT_NO_BEARERMANAGEMENT
  138. void networkSessionConnected();
  139. void networkAccessibleChanged(QNetworkAccessManager::NetworkAccessibility accessible);
  140. #endif
  141. protected:
  142. virtual QNetworkReply *createRequest(Operation op, const QNetworkRequest &request,
  143. QIODevice *outgoingData = Q_NULLPTR);
  144. protected Q_SLOTS:
  145. QStringList supportedSchemesImplementation() const;
  146. private:
  147. friend class QNetworkReplyImplPrivate;
  148. friend class QNetworkReplyHttpImpl;
  149. friend class QNetworkReplyHttpImplPrivate;
  150. Q_DECLARE_PRIVATE(QNetworkAccessManager)
  151. Q_PRIVATE_SLOT(d_func(), void _q_replyFinished())
  152. Q_PRIVATE_SLOT(d_func(), void _q_replyEncrypted())
  153. Q_PRIVATE_SLOT(d_func(), void _q_replySslErrors(QList<QSslError>))
  154. Q_PRIVATE_SLOT(d_func(), void _q_replyPreSharedKeyAuthenticationRequired(QSslPreSharedKeyAuthenticator*))
  155. #ifndef QT_NO_BEARERMANAGEMENT
  156. Q_PRIVATE_SLOT(d_func(), void _q_networkSessionClosed())
  157. Q_PRIVATE_SLOT(d_func(), void _q_networkSessionStateChanged(QNetworkSession::State))
  158. Q_PRIVATE_SLOT(d_func(), void _q_onlineStateChanged(bool))
  159. Q_PRIVATE_SLOT(d_func(), void _q_configurationChanged(const QNetworkConfiguration &))
  160. Q_PRIVATE_SLOT(d_func(), void _q_networkSessionFailed(QNetworkSession::SessionError))
  161. #endif
  162. };
  163. QT_END_NAMESPACE
  164. #endif