mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-28 05:34:47 +01:00
55 lines
986 B
C++
55 lines
986 B
C++
#ifndef DOWNLOADER_H
|
|
#define DOWNLOADER_H
|
|
|
|
#include <QNetworkAccessManager>
|
|
#include <QNetworkRequest>
|
|
#include <QNetworkReply>
|
|
#include <QUrl>
|
|
#include <QList>
|
|
#include <QSet>
|
|
|
|
|
|
class Download
|
|
{
|
|
public:
|
|
Download(const QUrl &url, const QString &file)
|
|
{_url = url; _file = file;}
|
|
const QUrl& url() const {return _url;}
|
|
const QString& file() const {return _file;}
|
|
|
|
private:
|
|
QUrl _url;
|
|
QString _file;
|
|
};
|
|
|
|
|
|
class Downloader : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static Downloader& instance()
|
|
{static Downloader i; return i;}
|
|
bool get(const QList<Download> &list);
|
|
|
|
signals:
|
|
void finished();
|
|
|
|
private slots:
|
|
void downloadFinished(QNetworkReply *reply);
|
|
|
|
private:
|
|
Downloader();
|
|
Downloader(Downloader const&);
|
|
void operator=(Downloader const&);
|
|
|
|
bool doDownload(const Download &dl);
|
|
bool saveToDisk(const QString &filename, QIODevice *data);
|
|
|
|
QNetworkAccessManager _manager;
|
|
QList<QNetworkReply *> _currentDownloads;
|
|
QSet<QUrl> _errorDownloads;
|
|
};
|
|
|
|
#endif // DOWNLOADER_H
|