downloader.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #ifndef INCLUDEILEDOWNLOADER_H
  2. #define INCLUDEILEDOWNLOADER_H
  3. #include <QObject>
  4. #include <QNetworkAccessManager>
  5. #include <QNetworkRequest>
  6. #include <QNetworkReply>
  7. #include <QFile>
  8. #include <QTime>
  9. #include <QByteArray>
  10. class Downloader : public QObject
  11. {
  12. Q_OBJECT
  13. public:
  14. struct Status {
  15. bool running;
  16. double percent;
  17. quint64 total_bytes;
  18. quint64 downloaded_bytes;
  19. quint64 current_speed;
  20. quint64 average_speed;
  21. quint64 elapsed_time;
  22. };
  23. friend Status operator+(const Status& a, const Status &b) {
  24. Status result = {
  25. a.running || b.running,
  26. (a.percent + b.percent) / 2.0,
  27. a.total_bytes + b.total_bytes,
  28. a.downloaded_bytes + b.downloaded_bytes,
  29. a.average_speed + b.average_speed,
  30. qMax(a.elapsed_time, b.elapsed_time)
  31. };
  32. return result;
  33. }
  34. explicit Downloader(QObject *parent = 0);
  35. private:
  36. Q_DISABLE_COPY(Downloader)
  37. public:
  38. virtual ~Downloader();
  39. QUrl getUrl();
  40. void setUrl(const QUrl& _url);
  41. void waitForDownloaded();
  42. bool isStarted();
  43. double getPercent();
  44. quint64 getBytesTotal();
  45. quint64 getBytesDownloaded();
  46. quint64 getElapsedTime();
  47. quint64 getCurrentSpeed();
  48. quint64 getAverageSpeed();
  49. Status getDownloadStatus();
  50. static QString getSizeFormatted(quint64 bytes);
  51. static QString getSpeedFormatted(quint64 speed_bytes_per_sec);
  52. static QString getElapsedTimeFormatted(quint64 elapsed_time_secs);
  53. signals:
  54. void downloadFinished(Downloader* this_downloader_ptr);
  55. void progressChanged(Downloader* this_downloader_ptr, Status status);
  56. public slots:
  57. void start();
  58. void updateDownloadSpeedLimit(int bytes_per_sec);
  59. void stop();
  60. private slots:
  61. void onDownloadProgressChanged(qint64 bytesReceived, qint64 bytesTotal);
  62. void onDownloadFinished(QNetworkReply* pReply);
  63. void onReadyRead();
  64. public:
  65. QFile* targetFile {nullptr};
  66. QByteArray* targetBytearray {nullptr};
  67. private:
  68. QTime downloadTime;
  69. quint64 download_speed; // bytes per second
  70. quint64 average_speed;
  71. quint64 speed_update_ticks;
  72. quint64 bytes_total;
  73. quint64 bytes_downloaded;
  74. quint64 bytesReceivedBeforeSecond; // Нужны для подсчёта текущей скорости скачивания, а не
  75. quint64 timeElapsedBeforeSecond; // средней за всё время.
  76. bool busy;
  77. QUrl url;
  78. QNetworkReply* m_CurrentReply {nullptr};
  79. QNetworkAccessManager m_WebCtrl;
  80. unsigned download_speed_limit {0};
  81. };
  82. #endif // INCLUDEILEDOWNLOADER_H