UpdaterComponent.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. #ifndef UPDATERCOMPONENT_H
  2. #define UPDATERCOMPONENT_H
  3. #include <QObject>
  4. #include <QNetworkAccessManager>
  5. #include <QNetworkReply>
  6. #include <QCryptographicHash>
  7. #include <QFile>
  8. #include <QThread>
  9. #include <time.h>
  10. #include "ComponentManager.h"
  11. #include "QsLog.h"
  12. #include <time.h>
  13. ///////////////////////////////////////////////////////////////////////////////////////////////////
  14. class Update : public QObject
  15. {
  16. Q_OBJECT
  17. public:
  18. Update(const QString& url = "", const QString& localPath = "",
  19. const QString& hash = "", QObject* parent = NULL) : QObject(parent)
  20. {
  21. m_url = url;
  22. m_localPath = localPath;
  23. m_hash = hash;
  24. m_reply = NULL;
  25. m_openFile = new QFile(m_localPath);
  26. }
  27. ///////////////////////////////////////////////////////////////////////////////////////////////////
  28. bool setReply(QNetworkReply* reply)
  29. {
  30. if (m_reply)
  31. {
  32. disconnect(m_reply, 0, 0, 0);
  33. m_reply->deleteLater();
  34. m_reply = NULL;
  35. m_openFile->close();
  36. }
  37. m_reply = reply;
  38. m_timeStarted = time(NULL);
  39. connect(m_reply, &QNetworkReply::readyRead, this, &Update::write);
  40. connect(m_reply, &QNetworkReply::finished, this, &Update::finished);
  41. if (m_openFile->open(QFile::WriteOnly))
  42. return true;
  43. m_reply->deleteLater();
  44. m_reply = NULL;
  45. return false;
  46. }
  47. ///////////////////////////////////////////////////////////////////////////////////////////////////
  48. void write()
  49. {
  50. m_openFile->write(m_reply->read(m_reply->bytesAvailable()));
  51. QThread::yieldCurrentThread();
  52. }
  53. ///////////////////////////////////////////////////////////////////////////////////////////////////
  54. void finished()
  55. {
  56. m_openFile->close();
  57. m_reply->deleteLater();
  58. m_reply = NULL;
  59. QLOG_DEBUG() << "Update downloaded, took:" << time(NULL) - m_timeStarted << "seconds";
  60. emit fileDone(this);
  61. }
  62. ///////////////////////////////////////////////////////////////////////////////////////////////////
  63. bool isReady()
  64. {
  65. if ((m_reply && m_reply->isRunning()) ||
  66. (m_openFile && m_openFile->isOpen()))
  67. return false;
  68. QFile file(m_localPath);
  69. if (file.exists())
  70. {
  71. QString fileHash = hashFile();
  72. if (!fileHash.isEmpty() && fileHash == m_hash)
  73. return true;
  74. }
  75. return false;
  76. }
  77. ///////////////////////////////////////////////////////////////////////////////////////////////////
  78. QString hashFile()
  79. {
  80. QFile file(m_localPath);
  81. QCryptographicHash hash(QCryptographicHash::Sha1);
  82. if (file.open(QFile::ReadOnly))
  83. {
  84. while (!file.atEnd())
  85. hash.addData(file.read(8192));
  86. QByteArray binhash = hash.result();
  87. return binhash.toHex();
  88. }
  89. return "";
  90. }
  91. /////////////////////////////////////////////////////////////////////////////////////////
  92. void abort()
  93. {
  94. if (m_reply)
  95. m_reply->abort();
  96. }
  97. ///////////////////////////////////////////////////////////////////////////////////////////////////
  98. QString m_url;
  99. QString m_localPath;
  100. QString m_hash;
  101. QNetworkReply* m_reply;
  102. QFile* m_openFile;
  103. time_t m_timeStarted;
  104. signals:
  105. void fileDone(Update* update);
  106. };
  107. ///////////////////////////////////////////////////////////////////////////////////////////////////
  108. class UpdaterComponent : public ComponentBase
  109. {
  110. Q_OBJECT
  111. DEFINE_SINGLETON(UpdaterComponent);
  112. public:
  113. virtual bool componentExport() { return true; }
  114. virtual const char* componentName() { return "updater"; }
  115. virtual bool componentInitialize() { return true; }
  116. Q_INVOKABLE void downloadUpdate(const QVariantMap &updateInfo);
  117. Q_INVOKABLE void doUpdate();
  118. signals:
  119. void downloadError(const QString& error);
  120. void downloadComplete(const QString& version);
  121. void downloadProgress(qint64 bytesReceived, qint64 total);
  122. private slots:
  123. void dlComplete(QNetworkReply *reply);
  124. bool fileComplete(Update *update);
  125. private:
  126. explicit UpdaterComponent(QObject *parent = 0);
  127. bool isDownloading();
  128. void downloadFile(Update *update);
  129. QString m_version;
  130. Update* m_manifest;
  131. Update* m_file;
  132. bool m_hasManifest;
  133. QNetworkAccessManager m_netManager;
  134. };
  135. #endif // UPDATERCOMPONENT_H