43 lines
1.1 KiB
C++
43 lines
1.1 KiB
C++
#ifndef ORACLEIMPORTER_H
|
|
#define ORACLEIMPORTER_H
|
|
|
|
#include <carddatabase.h>
|
|
#include <QHttp>
|
|
|
|
class QProgressDialog;
|
|
class QBuffer;
|
|
|
|
class SetToDownload {
|
|
private:
|
|
QString shortName, longName, url;
|
|
public:
|
|
const QString &getShortName() const { return shortName; }
|
|
const QString &getLongName() const { return longName; }
|
|
const QString &getUrl() const { return url; }
|
|
SetToDownload(const QString &_shortName, const QString &_longName, const QString &_url)
|
|
: shortName(_shortName), longName(_longName), url(_url) { }
|
|
};
|
|
|
|
class OracleImporter : public CardDatabase {
|
|
Q_OBJECT
|
|
private:
|
|
QList<SetToDownload> setsToDownload;
|
|
QString pictureUrl;
|
|
QString dataDir;
|
|
int setIndex;
|
|
int reqId;
|
|
QBuffer *buffer;
|
|
QHttp *http;
|
|
QProgressDialog *progressDialog;
|
|
QString normalizeName(QString);
|
|
QString getURLFromName(QString);
|
|
private slots:
|
|
void httpRequestFinished(int requestId, bool error);
|
|
void readResponseHeader(const QHttpResponseHeader &responseHeader);
|
|
public:
|
|
OracleImporter(const QString &_dataDir);
|
|
void importOracleFile(CardSet *set);
|
|
void downloadNextFile();
|
|
};
|
|
|
|
#endif
|