Some updates...
This commit is contained in:
parent
cfef4b025b
commit
1f420ee5cf
@ -346,6 +346,7 @@ set(APP_SOURCES
|
|||||||
src/network-web/webfactory.cpp
|
src/network-web/webfactory.cpp
|
||||||
src/network-web/webbrowser.cpp
|
src/network-web/webbrowser.cpp
|
||||||
src/network-web/webview.cpp
|
src/network-web/webview.cpp
|
||||||
|
src/network-web/downloader.cpp
|
||||||
|
|
||||||
# MAIN sources.
|
# MAIN sources.
|
||||||
src/application.cpp
|
src/application.cpp
|
||||||
@ -418,6 +419,7 @@ set(APP_HEADERS
|
|||||||
src/network-web/webfactory.h
|
src/network-web/webfactory.h
|
||||||
src/network-web/webbrowser.h
|
src/network-web/webbrowser.h
|
||||||
src/network-web/webview.h
|
src/network-web/webview.h
|
||||||
|
src/network-web/downloader.h
|
||||||
|
|
||||||
# MAIN headers.
|
# MAIN headers.
|
||||||
src/application.h
|
src/application.h
|
||||||
@ -470,7 +472,6 @@ if(WIN32 OR OS2)
|
|||||||
src/qtsingleapplication/qtlocalpeer.cpp
|
src/qtsingleapplication/qtlocalpeer.cpp
|
||||||
src/qtsingleapplication/qtsinglecoreapplication.cpp
|
src/qtsingleapplication/qtsinglecoreapplication.cpp
|
||||||
|
|
||||||
src/updater/detector.cpp
|
|
||||||
src/updater/main.cpp
|
src/updater/main.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -478,8 +479,6 @@ if(WIN32 OR OS2)
|
|||||||
# QTSINGLEAPPLICATION headers.
|
# QTSINGLEAPPLICATION headers.
|
||||||
src/qtsingleapplication/qtlocalpeer.h
|
src/qtsingleapplication/qtlocalpeer.h
|
||||||
src/qtsingleapplication/qtsinglecoreapplication.h
|
src/qtsingleapplication/qtsinglecoreapplication.h
|
||||||
|
|
||||||
src/updater/detector.h
|
|
||||||
)
|
)
|
||||||
endif(WIN32 OR OS2)
|
endif(WIN32 OR OS2)
|
||||||
|
|
||||||
|
@ -145,7 +145,7 @@ QPair<FeedsModelFeed*, QNetworkReply::NetworkError> FeedsModelFeed::guessFeed(co
|
|||||||
}
|
}
|
||||||
|
|
||||||
QByteArray feed_contents;
|
QByteArray feed_contents;
|
||||||
if ((result.second = NetworkFactory::downloadFile(url,
|
if ((result.second = NetworkFactory::downloadFeedFile(url,
|
||||||
Settings::instance()->value(APP_CFG_FEEDS, "feed_update_timeout", DOWNLOAD_TIMEOUT).toInt(),
|
Settings::instance()->value(APP_CFG_FEEDS, "feed_update_timeout", DOWNLOAD_TIMEOUT).toInt(),
|
||||||
feed_contents,
|
feed_contents,
|
||||||
!username.isEmpty(),
|
!username.isEmpty(),
|
||||||
@ -349,7 +349,7 @@ QVariant FeedsModelFeed::data(int column, int role) const {
|
|||||||
void FeedsModelFeed::update() {
|
void FeedsModelFeed::update() {
|
||||||
QByteArray feed_contents;
|
QByteArray feed_contents;
|
||||||
int download_timeout = Settings::instance()->value(APP_CFG_FEEDS, "feed_update_timeout", DOWNLOAD_TIMEOUT).toInt();
|
int download_timeout = Settings::instance()->value(APP_CFG_FEEDS, "feed_update_timeout", DOWNLOAD_TIMEOUT).toInt();
|
||||||
QNetworkReply::NetworkError download_result = NetworkFactory::downloadFile(url(),
|
QNetworkReply::NetworkError download_result = NetworkFactory::downloadFeedFile(url(),
|
||||||
download_timeout,
|
download_timeout,
|
||||||
feed_contents,
|
feed_contents,
|
||||||
passwordProtected(),
|
passwordProtected(),
|
||||||
|
@ -116,7 +116,7 @@ void FormUpdate::startUpdate() {
|
|||||||
// On Windows/OS2 we can update the application right away.
|
// On Windows/OS2 we can update the application right away.
|
||||||
// Download the files.
|
// Download the files.
|
||||||
QByteArray output;
|
QByteArray output;
|
||||||
QNetworkReply::NetworkError download_result = NetworkFactory::downloadFile(url_file,
|
QNetworkReply::NetworkError download_result = NetworkFactory::downloadFeedFile(url_file,
|
||||||
10 * DOWNLOAD_TIMEOUT,
|
10 * DOWNLOAD_TIMEOUT,
|
||||||
output);
|
output);
|
||||||
|
|
||||||
|
@ -170,7 +170,7 @@ QPair<UpdateInfo, QNetworkReply::NetworkError> SystemFactory::checkForUpdates()
|
|||||||
QPair<UpdateInfo, QNetworkReply::NetworkError> result;
|
QPair<UpdateInfo, QNetworkReply::NetworkError> result;
|
||||||
QByteArray releases_xml;
|
QByteArray releases_xml;
|
||||||
|
|
||||||
result.second = NetworkFactory::downloadFile(RELEASES_LIST,
|
result.second = NetworkFactory::downloadFeedFile(RELEASES_LIST,
|
||||||
5000,
|
5000,
|
||||||
releases_xml);
|
releases_xml);
|
||||||
|
|
||||||
|
8
src/network-web/downloader.cpp
Normal file
8
src/network-web/downloader.cpp
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
#include "network-web/downloader.h"
|
||||||
|
|
||||||
|
|
||||||
|
Downloader::Downloader(QObject *parent) : QObject(parent) {
|
||||||
|
}
|
||||||
|
|
||||||
|
Downloader::~Downloader() {
|
||||||
|
}
|
24
src/network-web/downloader.h
Normal file
24
src/network-web/downloader.h
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
#ifndef DOWNLOADER_H
|
||||||
|
#define DOWNLOADER_H
|
||||||
|
|
||||||
|
#include <QObject>
|
||||||
|
|
||||||
|
|
||||||
|
class Downloader : public QObject {
|
||||||
|
Q_OBJECT
|
||||||
|
|
||||||
|
public:
|
||||||
|
// Constructors and destructors.
|
||||||
|
explicit Downloader(QObject *parent = 0);
|
||||||
|
virtual ~Downloader();
|
||||||
|
|
||||||
|
// TODO: zakladni downloader s timeoutem a signalem kerej informuje o prubehu
|
||||||
|
// stahovani
|
||||||
|
|
||||||
|
signals:
|
||||||
|
|
||||||
|
public slots:
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // DOWNLOADER_H
|
@ -25,7 +25,6 @@
|
|||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QIcon>
|
#include <QIcon>
|
||||||
#include <QPixmap>
|
#include <QPixmap>
|
||||||
#include <QTextDocument>
|
|
||||||
|
|
||||||
|
|
||||||
NetworkFactory::NetworkFactory() {
|
NetworkFactory::NetworkFactory() {
|
||||||
@ -105,7 +104,7 @@ QNetworkReply::NetworkError NetworkFactory::downloadIcon(const QString &url,
|
|||||||
#endif
|
#endif
|
||||||
QByteArray icon_data;
|
QByteArray icon_data;
|
||||||
|
|
||||||
QNetworkReply::NetworkError network_result = downloadFile(google_s2_with_url,
|
QNetworkReply::NetworkError network_result = downloadFeedFile(google_s2_with_url,
|
||||||
timeout,
|
timeout,
|
||||||
icon_data);
|
icon_data);
|
||||||
|
|
||||||
@ -118,7 +117,7 @@ QNetworkReply::NetworkError NetworkFactory::downloadIcon(const QString &url,
|
|||||||
return network_result;
|
return network_result;
|
||||||
}
|
}
|
||||||
|
|
||||||
QNetworkReply::NetworkError NetworkFactory::downloadFile(const QString &url,
|
QNetworkReply::NetworkError NetworkFactory::downloadFeedFile(const QString &url,
|
||||||
int timeout,
|
int timeout,
|
||||||
QByteArray &output,
|
QByteArray &output,
|
||||||
bool protected_contents,
|
bool protected_contents,
|
||||||
@ -171,7 +170,10 @@ QNetworkReply::NetworkError NetworkFactory::downloadFile(const QString &url,
|
|||||||
timer.stop();
|
timer.stop();
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
reply->deleteLater();
|
if (reply != NULL) {
|
||||||
|
delete reply;
|
||||||
|
reply = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
// Timer already fired. Download is NOT successful.
|
// Timer already fired. Download is NOT successful.
|
||||||
return QNetworkReply::TimeoutError;
|
return QNetworkReply::TimeoutError;
|
||||||
@ -184,6 +186,9 @@ QNetworkReply::NetworkError NetworkFactory::downloadFile(const QString &url,
|
|||||||
// Communication indicates that HTTP redirection is needed.
|
// Communication indicates that HTTP redirection is needed.
|
||||||
// Setup redirection URL and download again.
|
// Setup redirection URL and download again.
|
||||||
request.setUrl(redirection_url);
|
request.setUrl(redirection_url);
|
||||||
|
|
||||||
|
delete reply;
|
||||||
|
reply = NULL;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// No redirection is indicated. Final file is obtained
|
// No redirection is indicated. Final file is obtained
|
||||||
@ -203,6 +208,10 @@ QNetworkReply::NetworkError NetworkFactory::downloadFile(const QString &url,
|
|||||||
reply_error);
|
reply_error);
|
||||||
|
|
||||||
// Delete needed stuff and exit.
|
// Delete needed stuff and exit.
|
||||||
reply->deleteLater();
|
if (reply != NULL) {
|
||||||
|
delete reply;
|
||||||
|
reply = NULL;
|
||||||
|
}
|
||||||
|
|
||||||
return reply_error;
|
return reply_error;
|
||||||
}
|
}
|
||||||
|
@ -41,7 +41,7 @@ class NetworkFactory {
|
|||||||
|
|
||||||
// Performs SYNCHRONOUS download of file with given URL
|
// Performs SYNCHRONOUS download of file with given URL
|
||||||
// and given timeout.
|
// and given timeout.
|
||||||
static QNetworkReply::NetworkError downloadFile(const QString &url,
|
static QNetworkReply::NetworkError downloadFeedFile(const QString &url,
|
||||||
int timeout,
|
int timeout,
|
||||||
QByteArray &output,
|
QByteArray &output,
|
||||||
bool protected_contents = false,
|
bool protected_contents = false,
|
||||||
|
@ -1,3 +1,20 @@
|
|||||||
|
// This file is part of RSS Guard.
|
||||||
|
//
|
||||||
|
// Copyright (C) 2011-2014 by Martin Rotter <rotter.martinos@gmail.com>
|
||||||
|
//
|
||||||
|
// RSS Guard is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as published by
|
||||||
|
// the Free Software Foundation, either version 3 of the License, or
|
||||||
|
// (at your option) any later version.
|
||||||
|
//
|
||||||
|
// RSS Guard is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#ifndef DEFINITIONS_H_IN
|
#ifndef DEFINITIONS_H_IN
|
||||||
#define DEFINITIONS_H_IN
|
#define DEFINITIONS_H_IN
|
||||||
|
|
||||||
|
@ -1,14 +0,0 @@
|
|||||||
#include "updater/detector.h"
|
|
||||||
|
|
||||||
|
|
||||||
Detector::Detector(QObject *parent) : QObject(parent) {
|
|
||||||
}
|
|
||||||
|
|
||||||
void Detector::handleMessage(const QString &message) {
|
|
||||||
if (message == "app_is_running") {
|
|
||||||
qDebug("Another instance of RSS Guard/Updater was starting...");
|
|
||||||
}
|
|
||||||
else if (message == "app_quit") {
|
|
||||||
// zprava na vypnuti, tu ignorujeme.
|
|
||||||
}
|
|
||||||
}
|
|
@ -1,17 +0,0 @@
|
|||||||
#ifndef DETECTOR_H
|
|
||||||
#define DETECTOR_H
|
|
||||||
|
|
||||||
#include <QObject>
|
|
||||||
|
|
||||||
|
|
||||||
class Detector : public QObject {
|
|
||||||
Q_OBJECT
|
|
||||||
|
|
||||||
public:
|
|
||||||
explicit Detector(QObject *parent = 0);
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
void handleMessage(const QString& message);
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // DETECTOR_H
|
|
@ -16,7 +16,6 @@
|
|||||||
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
// along with RSS Guard. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
#include "qtsingleapplication/qtsinglecoreapplication.h"
|
#include "qtsingleapplication/qtsinglecoreapplication.h"
|
||||||
#include "updater/detector.h"
|
|
||||||
#include "updater/definitions.h"
|
#include "updater/definitions.h"
|
||||||
|
|
||||||
#include <QTranslator>
|
#include <QTranslator>
|
||||||
@ -125,15 +124,9 @@ int main(int argc, char *argv[]) {
|
|||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
Detector detector;
|
|
||||||
|
|
||||||
qDebug().nospace() << "Running updater in thread: \'" <<
|
qDebug().nospace() << "Running updater in thread: \'" <<
|
||||||
QThread::currentThreadId() << "\'.";
|
QThread::currentThreadId() << "\'.";
|
||||||
|
|
||||||
// Setup single-instance behavior.
|
|
||||||
QObject::connect(&application, SIGNAL(messageReceived(QString)),
|
|
||||||
&detector, SLOT(handleMessage(QString)));
|
|
||||||
|
|
||||||
QString extractor_program(EXECUTABLE_7ZA);
|
QString extractor_program(EXECUTABLE_7ZA);
|
||||||
QStringList arguments;
|
QStringList arguments;
|
||||||
QString output_temp_directory = temp_directory + QDir::separator() + RSSGUARD_LOW_NAME;
|
QString output_temp_directory = temp_directory + QDir::separator() + RSSGUARD_LOW_NAME;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user