qhttpclientresponse.hpp 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /** HTTP response received by client.
  2. * https://github.com/azadkuh/qhttp
  3. *
  4. * @author amir zamani
  5. * @version 2.0.0
  6. * @date 2014-07-11
  7. */
  8. #ifndef QHTTPCLIENT_RESPONSE_HPP
  9. #define QHTTPCLIENT_RESPONSE_HPP
  10. ///////////////////////////////////////////////////////////////////////////////
  11. #include "qhttpabstracts.hpp"
  12. #include <QUrl>
  13. ///////////////////////////////////////////////////////////////////////////////
  14. namespace qhttp {
  15. namespace client {
  16. ///////////////////////////////////////////////////////////////////////////////
  17. /** a class for reading incoming HTTP response from a server.
  18. * the life cycle of this class and the memory management is handled by QHttpClient.
  19. * @sa QHttpClient
  20. */
  21. class QHTTP_API QHttpResponse : public QHttpAbstractInput
  22. {
  23. Q_OBJECT
  24. public:
  25. virtual ~QHttpResponse();
  26. public: // QHttpAbstractInput methods:
  27. /** @see QHttpAbstractInput::headers(). */
  28. const THeaderHash& headers() const override;
  29. /** @see QHttpAbstractInput::httpVersion(). */
  30. const QString& httpVersion() const override;
  31. /** @see QHttpAbstractInput::isSuccessful(). */
  32. bool isSuccessful() const override;
  33. /** @see QHttpAbstractInput::collectData(). */
  34. void collectData(int atMost = -1) override;
  35. /** @see QHttpAbstractInput::collectedData(). */
  36. const QByteArray& collectedData()const override;
  37. public:
  38. /** The status code of this response. */
  39. TStatusCode status() const ;
  40. /** The server status message as string.
  41. * may be slightly different than: @code qhttp::Stringify::toString(status()); @endcode
  42. * depending on implementation of HTTP server. */
  43. const QString& statusString() const;
  44. /** returns parent QHttpClient object. */
  45. QHttpClient* connection() const;
  46. protected:
  47. explicit QHttpResponse(QHttpClient*);
  48. explicit QHttpResponse(QHttpResponsePrivate&, QHttpClient*);
  49. friend class QHttpClientPrivate;
  50. Q_DECLARE_PRIVATE(QHttpResponse)
  51. QScopedPointer<QHttpResponsePrivate> d_ptr;
  52. };
  53. ///////////////////////////////////////////////////////////////////////////////
  54. } // namespace client
  55. } // namespace qhttp
  56. ///////////////////////////////////////////////////////////////////////////////
  57. #endif // define QHTTPCLIENT_RESPONSE_HPP