2018-05-03 09:59:31 +00:00
|
|
|
|
/* UpdaterWindow
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
|
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2014-04-09 21:01:57 +00:00
|
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
|
#ifndef UPDATEWINDOW_H
|
|
|
|
|
#define UPDATEWINDOW_H
|
|
|
|
|
|
|
|
|
|
#include <QSystemTrayIcon>
|
|
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
|
#include <QTableWidgetItem>
|
|
|
|
|
#include <QMenu>
|
|
|
|
|
#include <QMainWindow>
|
2011-12-17 10:36:28 +00:00
|
|
|
|
#include <QUrl>
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
|
|
|
|
#include "version.h"
|
|
|
|
|
#include "updateparser.h"
|
|
|
|
|
|
|
|
|
|
namespace Ui {
|
2011-12-16 18:15:57 +00:00
|
|
|
|
class UpdaterWindow;
|
2011-12-16 16:31:58 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
/*! \enum RequestMode
|
|
|
|
|
\brief Used in replyFinished() to differentiate the current update task.
|
|
|
|
|
*/
|
2011-12-17 06:59:40 +00:00
|
|
|
|
enum RequestMode { RM_None, RM_CheckUpdates, RM_GetFile };
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \class UpdaterWindow
|
2011-12-19 06:46:31 +00:00
|
|
|
|
\brief Auto-Update Module for SleepyHead
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
This class handles the complete Auto-Update procedure for SleepyHead, it does the network checks,
|
|
|
|
|
parses the update.xml from SourceForge host, checks for any new updates, and provides the UI
|
|
|
|
|
and mechanisms to download and replace the binaries according to what is specified in update.xml.
|
|
|
|
|
*/
|
2011-12-16 18:15:57 +00:00
|
|
|
|
class UpdaterWindow : public QMainWindow
|
2011-12-16 16:31:58 +00:00
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
2014-04-17 05:52:25 +00:00
|
|
|
|
|
|
|
|
|
public:
|
2011-12-16 18:15:57 +00:00
|
|
|
|
explicit UpdaterWindow(QWidget *parent = 0);
|
|
|
|
|
~UpdaterWindow();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
//! Start the
|
2011-12-16 16:31:58 +00:00
|
|
|
|
void checkForUpdates();
|
2011-12-18 10:53:51 +00:00
|
|
|
|
|
|
|
|
|
/*! \fn ParseUpdateXML(QIODevice * dev)
|
|
|
|
|
\brief Parses the update.xml from either QFile or QNetworkReply source
|
|
|
|
|
*/
|
2018-05-03 09:59:31 +00:00
|
|
|
|
//void ParseUpdateXML(QIODevice *dev);
|
2016-03-12 02:51:52 +00:00
|
|
|
|
void ParseUpdatesXML(QIODevice *dev);
|
2016-04-16 13:15:42 +00:00
|
|
|
|
void ParseLatestVersion(QIODevice *dev);
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
protected slots:
|
2016-03-12 07:20:55 +00:00
|
|
|
|
void updateFinished(QNetworkReply *reply);
|
|
|
|
|
|
2018-05-03 09:59:31 +00:00
|
|
|
|
// //! \brief Network reply completed
|
|
|
|
|
//void replyFinished(QNetworkReply *reply);
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
2018-05-03 09:59:31 +00:00
|
|
|
|
////! \brief Update the progress bars as data is received
|
|
|
|
|
//void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
2018-05-03 09:59:31 +00:00
|
|
|
|
////! \brief Save incomming data
|
|
|
|
|
//void dataReceived();
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
2018-05-03 09:59:31 +00:00
|
|
|
|
// //! \brief Request a file to download
|
|
|
|
|
// void requestFile();
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
|
|
|
|
//! \brief Request the update.xml file
|
2011-12-17 09:56:21 +00:00
|
|
|
|
void downloadUpdateXML();
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
private slots:
|
2011-12-19 06:46:31 +00:00
|
|
|
|
//! \brief Just close the Updater window
|
2011-12-16 16:31:58 +00:00
|
|
|
|
void on_CloseButton_clicked();
|
|
|
|
|
|
2018-05-03 09:59:31 +00:00
|
|
|
|
// //! \brief Start processing the download que, and applying the updates
|
|
|
|
|
// void on_upgradeButton_clicked();
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
2018-05-03 09:59:31 +00:00
|
|
|
|
// //! \brief Selects the next file in the download queue
|
|
|
|
|
// void upgradeNext();
|
2011-12-16 16:31:58 +00:00
|
|
|
|
|
2011-12-19 06:46:31 +00:00
|
|
|
|
//! \brief Click on finished, restart if app has been upgraded, otherwise just close the window.
|
2011-12-16 16:31:58 +00:00
|
|
|
|
void on_FinishedButton_clicked();
|
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
|
private:
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
|
|
|
|
//! \brief Holds the results of parsing the update.xml file
|
2011-12-16 16:31:58 +00:00
|
|
|
|
UpdateParser updateparser;
|
|
|
|
|
|
2016-03-12 02:51:52 +00:00
|
|
|
|
// new parser
|
|
|
|
|
UpdatesParser updatesparser;
|
|
|
|
|
|
2011-12-16 18:15:57 +00:00
|
|
|
|
Ui::UpdaterWindow *ui;
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
|
RequestMode requestmode;
|
|
|
|
|
QTime dltime;
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
2011-12-16 16:31:58 +00:00
|
|
|
|
Update *update;
|
|
|
|
|
Release *release;
|
|
|
|
|
QFile file;
|
|
|
|
|
QNetworkAccessManager *netmanager;
|
2014-04-17 05:52:25 +00:00
|
|
|
|
QNetworkReply *reply;
|
2011-12-16 16:31:58 +00:00
|
|
|
|
QList<Update *> updates;
|
|
|
|
|
int current_row;
|
|
|
|
|
bool success;
|
2011-12-17 09:56:21 +00:00
|
|
|
|
QUrl update_url; // for update.xml redirects..
|
2011-12-16 16:31:58 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // UPDATEWINDOW_H
|