2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2019-12-23 16:13:23 +02:00
|
|
|
|
|
|
|
|
#ifndef ANDROIDSDKDOWNLOADER_H
|
|
|
|
|
#define ANDROIDSDKDOWNLOADER_H
|
|
|
|
|
|
2020-03-16 20:14:56 +02:00
|
|
|
#include "androidconfigurations.h"
|
|
|
|
|
|
2019-12-23 16:13:23 +02:00
|
|
|
#include <QNetworkReply>
|
|
|
|
|
#include <QObject>
|
|
|
|
|
#include <QProgressDialog>
|
|
|
|
|
|
2022-03-24 10:29:02 +01:00
|
|
|
namespace Utils {
|
|
|
|
|
class Archive;
|
|
|
|
|
class FilePath;
|
|
|
|
|
}
|
2021-09-15 15:16:56 +02:00
|
|
|
|
2019-12-23 16:13:23 +02:00
|
|
|
namespace Android {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
|
|
|
|
class AndroidSdkDownloader : public QObject
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
|
|
public:
|
2020-03-16 20:14:56 +02:00
|
|
|
AndroidSdkDownloader();
|
2022-03-24 10:29:02 +01:00
|
|
|
~AndroidSdkDownloader();
|
2020-11-28 15:44:37 +02:00
|
|
|
void downloadAndExtractSdk();
|
2019-12-23 16:13:23 +02:00
|
|
|
static QString dialogTitle();
|
|
|
|
|
|
|
|
|
|
void cancel();
|
|
|
|
|
|
|
|
|
|
signals:
|
|
|
|
|
void sdkPackageWriteFinished();
|
|
|
|
|
void sdkExtracted();
|
|
|
|
|
void sdkDownloaderError(const QString &error);
|
|
|
|
|
|
|
|
|
|
private:
|
2021-12-20 00:09:00 +01:00
|
|
|
static Utils::FilePath getSaveFilename(const QUrl &url);
|
2021-09-15 15:16:56 +02:00
|
|
|
bool saveToDisk(const Utils::FilePath &filename, QIODevice *data);
|
2019-12-23 16:13:23 +02:00
|
|
|
static bool isHttpRedirect(QNetworkReply *m_reply);
|
|
|
|
|
|
|
|
|
|
bool verifyFileIntegrity();
|
|
|
|
|
void cancelWithError(const QString &error);
|
|
|
|
|
void logError(const QString &error);
|
|
|
|
|
|
|
|
|
|
void downloadFinished(QNetworkReply *m_reply);
|
|
|
|
|
#if QT_CONFIG(ssl)
|
|
|
|
|
void sslErrors(const QList<QSslError> &errors);
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
QNetworkAccessManager m_manager;
|
2020-02-10 16:02:24 +02:00
|
|
|
QNetworkReply *m_reply = nullptr;
|
2021-09-15 15:16:56 +02:00
|
|
|
Utils::FilePath m_sdkFilename;
|
2020-02-10 16:02:24 +02:00
|
|
|
QProgressDialog *m_progressDialog = nullptr;
|
2020-11-28 15:44:37 +02:00
|
|
|
AndroidConfig &m_androidConfig;
|
2022-03-24 10:29:02 +01:00
|
|
|
std::unique_ptr<Utils::Archive> m_archive;
|
2019-12-23 16:13:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // Internal
|
|
|
|
|
} // Android
|
|
|
|
|
|
|
|
|
|
#endif // ANDROIDSDKDOWNLOADER_H
|