rssguard/src/core/networkfactory.cpp
2014-02-05 08:51:42 +01:00

101 lines
3.0 KiB
C++

#include "core/networkfactory.h"
#include "core/silentnetworkaccessmanager.h"
#include "core/feedsmodelstandardfeed.h"
#include <QEventLoop>
#include <QTimer>
NetworkFactory::NetworkFactory() {
}
QNetworkReply::NetworkError NetworkFactory::downloadFeedFile(const QString &url,
int timeout,
QByteArray &output,
bool protected_contents,
const QString &username,
const QString &password) {
// Original asynchronous behavior of QNetworkAccessManager
// is replaced by synchronous behavior in order to make
// process of downloading of a file easier to understand.
// Make necessary variables.
SilentNetworkAccessManager manager;
QEventLoop loop;
QTimer timer;
QNetworkRequest request;
QNetworkReply *reply;
QObject originatingObject;
// Set credential information as originating object.
originatingObject.setProperty("protected", protected_contents);
originatingObject.setProperty("username", username);
originatingObject.setProperty("password", password);
request.setOriginatingObject(&originatingObject);
// Set url for this reques.
request.setUrl(url);
// Create necessary connections.
QObject::connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
QObject::connect(&manager, SIGNAL(finished(QNetworkReply*)), &loop, SLOT(quit()));
forever {
// This timer fires just ONCE.
timer.setSingleShot(true);
// Try to open communication channel.
reply = manager.get(request);
// Start the timeout timer.
timer.start(timeout);
// Enter the event loop.
loop.exec();
// At this point one of two things happened:
// a) file download was completed,
// b) communication timed-out.
if (timer.isActive()) {
// Download is complete because timer is still running.
timer.stop();
}
else {
reply->deleteLater();
// Timer already fired. Download is NOT successful.
return QNetworkReply::TimeoutError;
}
// In this phase, some part of downloading process is completed.
QUrl redirection_url = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl();
if (redirection_url.isValid()) {
// Communication indicates that HTTP redirection is needed.
// Setup redirection URL and download again.
request.setUrl(redirection_url);
}
else {
// No redirection is indicated. Final file is obtained
// in our "reply" object.
break;
}
}
// Read the data into output buffer.
output = reply->readAll();
QNetworkReply::NetworkError reply_error = reply->error();
qDebug("File '%s' fetched with status '%s' (code %d).",
qPrintable(url),
qPrintable(reply->errorString()),
reply_error);
// Delete needed stuff and exit.
reply->deleteLater();
return reply_error;
}