2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* UpdaterWindow
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2011-12-16 16:31:58 +00:00
|
|
|
void ParseUpdateXML(QIODevice * dev);
|
|
|
|
|
|
|
|
protected slots:
|
2011-12-19 06:46:31 +00:00
|
|
|
//! \brief Network reply completed
|
2011-12-16 16:31:58 +00:00
|
|
|
void replyFinished(QNetworkReply * reply);
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
|
|
//! \brief Update the progress bars as data is received
|
2011-12-16 16:31:58 +00:00
|
|
|
void downloadProgress(qint64 bytesReceived, qint64 bytesTotal);
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
|
|
//! \brief Save incomming data
|
2011-12-16 16:31:58 +00:00
|
|
|
void dataReceived();
|
2011-12-19 06:46:31 +00:00
|
|
|
|
|
|
|
//! \brief Request a file to download
|
2011-12-16 16:31:58 +00:00
|
|
|
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
|
|
|
|
|
|
|
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();
|
|
|
|
|
2011-12-19 06:46:31 +00:00
|
|
|
//! \brief Start processing the download que, and applying the updates
|
2011-12-16 16:31:58 +00:00
|
|
|
void on_upgradeButton_clicked();
|
|
|
|
|
2011-12-19 06:46:31 +00:00
|
|
|
//! \brief Selects the next file in the download queue
|
2011-12-16 16:31:58 +00:00
|
|
|
void upgradeNext();
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
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;
|
|
|
|
QNetworkReply * reply;
|
|
|
|
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
|