qnetworkreply.h
上传用户:detong
上传日期:2022-06-22
资源大小:20675k
文件大小:5k
源码类别:

系统编程

开发平台:

Unix_Linux

  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies).
  4. ** Contact: Qt Software Information (qt-info@nokia.com)
  5. **
  6. ** This file is part of the QtNetwork module of the Qt Toolkit.
  7. **
  8. ** Commercial Usage
  9. ** Licensees holding valid Qt Commercial licenses may use this file in
  10. ** accordance with the Qt Commercial License Agreement provided with the
  11. ** Software or, alternatively, in accordance with the terms contained in
  12. ** a written agreement between you and Nokia.
  13. **
  14. **
  15. ** GNU General Public License Usage
  16. ** Alternatively, this file may be used under the terms of the GNU
  17. ** General Public License versions 2.0 or 3.0 as published by the Free
  18. ** Software Foundation and appearing in the file LICENSE.GPL included in
  19. ** the packaging of this file.  Please review the following information
  20. ** to ensure GNU General Public Licensing requirements will be met:
  21. ** http://www.fsf.org/licensing/licenses/info/GPLv2.html and
  22. ** http://www.gnu.org/copyleft/gpl.html.  In addition, as a special
  23. ** exception, Nokia gives you certain additional rights. These rights
  24. ** are described in the Nokia Qt GPL Exception version 1.3, included in
  25. ** the file GPL_EXCEPTION.txt in this package.
  26. **
  27. ** Qt for Windows(R) Licensees
  28. ** As a special exception, Nokia, as the sole copyright holder for Qt
  29. ** Designer, grants users of the Qt/Eclipse Integration plug-in the
  30. ** right for the Qt/Eclipse Integration to link to functionality
  31. ** provided by Qt Designer and its related libraries.
  32. **
  33. ** If you are unsure which license is appropriate for your use, please
  34. ** contact the sales department at qt-sales@nokia.com.
  35. **
  36. ****************************************************************************/
  37. #ifndef QNETWORKREPLY_H
  38. #define QNETWORKREPLY_H
  39. #include <QtCore/QIODevice>
  40. #include <QtCore/QString>
  41. #include <QtCore/QVariant>
  42. #include <QtNetwork/QNetworkRequest>
  43. #include <QtNetwork/QNetworkAccessManager>
  44. QT_BEGIN_HEADER
  45. QT_BEGIN_NAMESPACE
  46. QT_MODULE(Network)
  47. class QUrl;
  48. class QVariant;
  49. class QAuthenticator;
  50. class QSslConfiguration;
  51. class QSslError;
  52. class QNetworkReplyPrivate;
  53. class Q_NETWORK_EXPORT QNetworkReply: public QIODevice
  54. {
  55.     Q_OBJECT
  56.     Q_ENUMS(NetworkError)
  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.         UnknownNetworkError = 99,
  68.         // proxy errors (101-199):
  69.         ProxyConnectionRefusedError = 101,
  70.         ProxyConnectionClosedError,
  71.         ProxyNotFoundError,
  72.         ProxyTimeoutError,
  73.         ProxyAuthenticationRequiredError,
  74.         UnknownProxyError = 199,
  75.         // content errors (201-299):
  76.         ContentAccessDenied = 201,
  77.         ContentOperationNotPermittedError,
  78.         ContentNotFoundError,
  79.         AuthenticationRequiredError,
  80.         UnknownContentError = 299,
  81.         // protocol errors
  82.         ProtocolUnknownError = 301,
  83.         ProtocolInvalidOperationError,
  84.         ProtocolFailure = 399
  85.     };
  86.     ~QNetworkReply();
  87.     virtual void abort() = 0;
  88.     // reimplemented from QIODevice
  89.     virtual void close();
  90.     virtual bool isSequential() const;
  91.     // like QAbstractSocket:
  92.     qint64 readBufferSize() const;
  93.     virtual void setReadBufferSize(qint64 size);
  94.     QNetworkAccessManager *manager() const;
  95.     QNetworkAccessManager::Operation operation() const;
  96.     QNetworkRequest request() const;
  97.     NetworkError error() const;
  98.     QUrl url() const;
  99.     // "cooked" headers
  100.     QVariant header(QNetworkRequest::KnownHeaders header) const;
  101.     // raw headers:
  102.     bool hasRawHeader(const QByteArray &headerName) const;
  103.     QList<QByteArray> rawHeaderList() const;
  104.     QByteArray rawHeader(const QByteArray &headerName) const;
  105.     // attributes
  106.     QVariant attribute(QNetworkRequest::Attribute code) const;
  107. #ifndef QT_NO_OPENSSL
  108.     QSslConfiguration sslConfiguration() const;
  109.     void setSslConfiguration(const QSslConfiguration &configuration);
  110. #endif
  111. public Q_SLOTS:
  112.     virtual void ignoreSslErrors();
  113. Q_SIGNALS:
  114.     void metaDataChanged();
  115.     void finished();
  116.     void error(QNetworkReply::NetworkError);
  117. #ifndef QT_NO_OPENSSL
  118.     void sslErrors(const QList<QSslError> &errors);
  119. #endif
  120.     void uploadProgress(qint64 bytesSent, qint64 bytesTotal);
  121.     void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
  122. protected:
  123.     QNetworkReply(QObject *parent = 0);
  124.     QNetworkReply(QNetworkReplyPrivate &dd, QObject *parent);
  125.     virtual qint64 writeData(const char *data, qint64 len);
  126.     void setOperation(QNetworkAccessManager::Operation operation);
  127.     void setRequest(const QNetworkRequest &request);
  128.     void setError(NetworkError errorCode, const QString &errorString);
  129.     void setUrl(const QUrl &url);
  130.     void setHeader(QNetworkRequest::KnownHeaders header, const QVariant &value);
  131.     void setRawHeader(const QByteArray &headerName, const QByteArray &value);
  132.     void setAttribute(QNetworkRequest::Attribute code, const QVariant &value);
  133. private:
  134.     Q_DECLARE_PRIVATE(QNetworkReply)
  135. };
  136. QT_END_NAMESPACE
  137. QT_END_HEADER
  138. #endif