OEUpdateManager.cpp 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #include <QProcess>
  2. #include <QDir>
  3. #include "QsLog.h"
  4. #include "OEUpdateManager.h"
  5. #include "SystemComponent.h"
  6. ///////////////////////////////////////////////////////////////////////////////////////////////////
  7. QString OEUpdateManager::HaveUpdate()
  8. {
  9. return "";
  10. }
  11. ///////////////////////////////////////////////////////////////////////////////////////////////////
  12. bool OEUpdateManager::applyUpdate(const QString& version)
  13. {
  14. return true;
  15. }
  16. ///////////////////////////////////////////////////////////////////////////////////////////////////
  17. void OEUpdateManager::doUpdate(const QString& version)
  18. {
  19. // grab the update file
  20. QString packagePath = GetPath("", version, true);
  21. QDir packageDir(packagePath);
  22. QStringList updateFiles = packageDir.entryList(QStringList( "*.tar"), QDir::Files, QDir::Time);
  23. // make sure we remove all the eventually remaining downloads
  24. QDir rootDir(GetPath("", "", false));
  25. foreach(auto updateDir, rootDir.entryList(QStringList("*"), QDir::Dirs | QDir::NoDotAndDotDot))
  26. {
  27. QDir checkDir(rootDir.absolutePath() + updateDir);
  28. if (checkDir != QDir(GetPath("", version, false)))
  29. {
  30. if (!checkDir.removeRecursively())
  31. QLOG_ERROR() << "Failed to remove directory" << checkDir.path();
  32. }
  33. }
  34. if (updateFiles.size())
  35. {
  36. // copy the update files to /storage/.update
  37. QString destUpdatePath = "/storage/.update/" + updateFiles.at(0);
  38. if (packageDir.rename(packagePath + updateFiles.at(0), destUpdatePath))
  39. {
  40. if (isMiniUpdateArchive(destUpdatePath))
  41. {
  42. // if we have a miniupdate, just exit
  43. QLOG_DEBUG() << "Exiting to apply application update " << destUpdatePath;
  44. SystemComponent::Get().exit();
  45. }
  46. else
  47. {
  48. // remove the update package
  49. QDir updateDir(GetPath("", version, false));
  50. if (!updateDir.removeRecursively())
  51. QLOG_ERROR() << "Failed to remove directory" << updateDir.path();
  52. // now reboot to do the update
  53. QLOG_DEBUG() << "Rebooting to apply system update " << destUpdatePath;
  54. QProcess::startDetached("reboot");
  55. }
  56. }
  57. }
  58. }
  59. ///////////////////////////////////////////////////////////////////////////////////////////////////
  60. bool OEUpdateManager::isMiniUpdateArchive(QString archivePath)
  61. {
  62. QProcess process;
  63. process.start("/bin/tar", QStringList() << "-tf" << archivePath);
  64. if (process.waitForFinished(1000) && (process.exitCode() == 0))
  65. {
  66. QByteArray output = process.readAllStandardOutput();
  67. return output.contains(QByteArray("bin/") + Names::MainName().toUtf8());
  68. }
  69. else
  70. {
  71. QLOG_ERROR() << "Unable to list update archive files : " << QString(process.readAllStandardError());
  72. }
  73. return false;
  74. }