2019-12-23 16:13:23 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2020 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
|
|
|
|
**
|
|
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#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>
|
|
|
|
|
|
2021-09-15 15:16:56 +02:00
|
|
|
namespace Utils { class FilePath; }
|
|
|
|
|
|
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();
|
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;
|
2019-12-23 16:13:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // Internal
|
|
|
|
|
} // Android
|
|
|
|
|
|
|
|
|
|
#endif // ANDROIDSDKDOWNLOADER_H
|