forked from qt-creator/qt-creator
StudioWelcome: Allow to download examples
Change-Id: If46eb9bc2f24a6c1057fd3db34596c4619ddcb7b Reviewed-by: Henning Gründl <henning.gruendl@qt.io> Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
347
src/plugins/studiowelcome/examplecheckout.cpp
Normal file
347
src/plugins/studiowelcome/examplecheckout.cpp
Normal file
@@ -0,0 +1,347 @@
|
||||
/****************************************************************************
|
||||
**
|
||||
** Copyright (C) 2021 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.
|
||||
**
|
||||
****************************************************************************/
|
||||
#include "examplecheckout.h"
|
||||
|
||||
#include <coreplugin/documentmanager.h>
|
||||
#include <coreplugin/icore.h>
|
||||
|
||||
#include <utils/archive.h>
|
||||
#include <utils/networkaccessmanager.h>
|
||||
#include <utils/qtcassert.h>
|
||||
|
||||
#include <QDialog>
|
||||
#include <QFileDialog>
|
||||
#include <QFileInfo>
|
||||
#include <QHBoxLayout>
|
||||
#include <QNetworkAccessManager>
|
||||
#include <QNetworkReply>
|
||||
#include <QNetworkRequest>
|
||||
#include <QQuickItem>
|
||||
#include <QQuickWidget>
|
||||
|
||||
ExampleCheckout::ExampleCheckout(QObject *) {}
|
||||
|
||||
void ExampleCheckout::checkoutExample(const QUrl &url)
|
||||
{
|
||||
FileDownloader::registerQmlType();
|
||||
static bool once = []() {
|
||||
FileDownloader::registerQmlType();
|
||||
FileExtractor::registerQmlType();
|
||||
return true;
|
||||
}();
|
||||
|
||||
QTC_ASSERT(once, ;);
|
||||
|
||||
m_dialog.reset(new QDialog(Core::ICore::dialogParent()));
|
||||
m_dialog->setModal(true);
|
||||
m_dialog->setFixedSize(620, 300);
|
||||
QHBoxLayout *layout = new QHBoxLayout(m_dialog.get());
|
||||
layout->setContentsMargins(2, 2, 2, 2);
|
||||
|
||||
auto widget = new QQuickWidget(m_dialog.get());
|
||||
|
||||
layout->addWidget(widget);
|
||||
widget->engine()->addImportPath("qrc:/studiofonts");
|
||||
|
||||
widget->engine()->addImportPath(Core::ICore::resourcePath()
|
||||
+ "/qmldesigner/propertyEditorQmlSources/imports");
|
||||
|
||||
widget->setSource(QUrl("qrc:/qml/downloaddialog/main.qml"));
|
||||
|
||||
m_dialog->setWindowFlag(Qt::Tool, true);
|
||||
widget->setResizeMode(QQuickWidget::SizeRootObjectToView);
|
||||
|
||||
rootObject = widget->rootObject();
|
||||
|
||||
QTC_ASSERT(rootObject, qWarning() << "QML error"; return );
|
||||
|
||||
rootObject->setProperty("url", url);
|
||||
|
||||
m_dialog->show();
|
||||
|
||||
rootObject = widget->rootObject();
|
||||
|
||||
connect(rootObject, SIGNAL(canceled()), this, SLOT(handleCancel()));
|
||||
connect(rootObject, SIGNAL(accepted()), this, SLOT(handleAccepted()));
|
||||
}
|
||||
|
||||
QString ExampleCheckout::extractionFolder() const
|
||||
{
|
||||
return m_extrationFolder;
|
||||
}
|
||||
|
||||
ExampleCheckout::~ExampleCheckout() {}
|
||||
|
||||
void ExampleCheckout::handleCancel()
|
||||
{
|
||||
m_dialog->close();
|
||||
m_dialog.release()->deleteLater();
|
||||
deleteLater();
|
||||
}
|
||||
|
||||
void ExampleCheckout::handleAccepted()
|
||||
{
|
||||
QQmlProperty property(rootObject, "path");
|
||||
m_extrationFolder = property.read().toString();
|
||||
m_dialog->close();
|
||||
emit finishedSucessfully();
|
||||
m_dialog.release()->deleteLater();
|
||||
deleteLater();
|
||||
}
|
||||
|
||||
void FileDownloader::registerQmlType()
|
||||
{
|
||||
qmlRegisterType<FileDownloader>("ExampleCheckout", 1, 0, "FileDownloader");
|
||||
}
|
||||
|
||||
FileDownloader::FileDownloader(QObject *parent)
|
||||
: QObject(parent)
|
||||
{}
|
||||
|
||||
FileDownloader::~FileDownloader()
|
||||
{
|
||||
m_tempFile.remove();
|
||||
}
|
||||
|
||||
void FileDownloader::start()
|
||||
{
|
||||
m_tempFile.setFileName(QDir::tempPath() + "/" + name() + ".XXXXXX" + ".zip");
|
||||
|
||||
m_tempFile.open(QIODevice::WriteOnly);
|
||||
|
||||
auto request = QNetworkRequest(m_url);
|
||||
request.setAttribute(QNetworkRequest::RedirectPolicyAttribute, true);
|
||||
QNetworkReply *reply = Utils::NetworkAccessManager::instance()->get(request);
|
||||
|
||||
QNetworkReply::connect(reply, &QNetworkReply::readyRead, [this, reply]() {
|
||||
m_tempFile.write(reply->readAll());
|
||||
});
|
||||
|
||||
QNetworkReply::connect(reply,
|
||||
&QNetworkReply::downloadProgress,
|
||||
this,
|
||||
[this](qint64 current, qint64 max) {
|
||||
if (max == 0)
|
||||
return;
|
||||
|
||||
m_progress = current * 100 / max;
|
||||
emit progressChanged();
|
||||
});
|
||||
|
||||
QNetworkReply::connect(reply, &QNetworkReply::finished, [this, reply]() {
|
||||
if (reply->error()) {
|
||||
m_tempFile.remove();
|
||||
if (m_url != reply->url()) {
|
||||
m_url = reply->url();
|
||||
start();
|
||||
} else {
|
||||
emit downloadFailed();
|
||||
}
|
||||
} else {
|
||||
m_tempFile.flush();
|
||||
m_tempFile.close();
|
||||
m_finished = true;
|
||||
emit finishedChanged();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
void FileDownloader::setUrl(const QUrl &url)
|
||||
{
|
||||
m_url = url;
|
||||
|
||||
emit nameChanged();
|
||||
}
|
||||
|
||||
QUrl FileDownloader::url() const
|
||||
{
|
||||
return m_url;
|
||||
}
|
||||
|
||||
bool FileDownloader::finished() const
|
||||
{
|
||||
return m_finished;
|
||||
}
|
||||
|
||||
bool FileDownloader::error() const
|
||||
{
|
||||
return m_error;
|
||||
}
|
||||
|
||||
QString FileDownloader::name() const
|
||||
{
|
||||
const QFileInfo fileInfo(m_url.path());
|
||||
return fileInfo.baseName();
|
||||
}
|
||||
|
||||
QString FileDownloader::completeBaseName() const
|
||||
{
|
||||
const QFileInfo fileInfo(m_url.path());
|
||||
return fileInfo.completeBaseName();
|
||||
}
|
||||
|
||||
int FileDownloader::progress() const
|
||||
{
|
||||
return m_progress;
|
||||
}
|
||||
|
||||
QString FileDownloader::tempFile() const
|
||||
{
|
||||
return QFileInfo(m_tempFile).canonicalFilePath();
|
||||
}
|
||||
|
||||
FileExtractor::FileExtractor(QObject *parent)
|
||||
: QObject(parent)
|
||||
{
|
||||
if (Core::DocumentManager::instance())
|
||||
m_targetPath = Core::DocumentManager::projectsDirectory();
|
||||
else
|
||||
m_targetPath = Utils::FilePath::fromString("/temp/");
|
||||
|
||||
m_timer.setInterval(500);
|
||||
m_timer.setSingleShot(false);
|
||||
}
|
||||
|
||||
FileExtractor::~FileExtractor() {}
|
||||
|
||||
void FileExtractor::registerQmlType()
|
||||
{
|
||||
qmlRegisterType<FileExtractor>("ExampleCheckout", 1, 0, "FileExtractor");
|
||||
}
|
||||
|
||||
QString FileExtractor::targetPath() const
|
||||
{
|
||||
return m_targetPath.toUserOutput();
|
||||
}
|
||||
|
||||
void FileExtractor::browse()
|
||||
{
|
||||
const QString path = QFileDialog::getExistingDirectory(Core::ICore::dialogParent(),
|
||||
(tr("Choose Directory")),
|
||||
m_targetPath.toString());
|
||||
|
||||
if (!path.isEmpty())
|
||||
m_targetPath = Utils::FilePath::fromString(path);
|
||||
|
||||
emit targetPathChanged();
|
||||
emit targetFolderExistsChanged();
|
||||
}
|
||||
|
||||
void FileExtractor::setSourceFile(QString &sourceFilePath)
|
||||
{
|
||||
m_sourceFile = Utils::FilePath::fromString(sourceFilePath);
|
||||
emit targetFolderExistsChanged();
|
||||
}
|
||||
|
||||
void FileExtractor::setArchiveName(QString &filePath)
|
||||
{
|
||||
m_archiveName = filePath;
|
||||
}
|
||||
|
||||
const QString FileExtractor::detailedText()
|
||||
{
|
||||
return m_detailedText;
|
||||
}
|
||||
|
||||
bool FileExtractor::finished() const
|
||||
{
|
||||
return m_finished;
|
||||
}
|
||||
|
||||
QString FileExtractor::currentFile() const
|
||||
{
|
||||
return m_currentFile;
|
||||
}
|
||||
|
||||
QString FileExtractor::size() const
|
||||
{
|
||||
return m_size;
|
||||
}
|
||||
|
||||
QString FileExtractor::count() const
|
||||
{
|
||||
return m_count;
|
||||
}
|
||||
|
||||
bool FileExtractor::targetFolderExists() const
|
||||
{
|
||||
const QString targetFolder = m_targetPath.toString() + "/" + m_archiveName;
|
||||
return QFileInfo(targetFolder).exists();
|
||||
}
|
||||
|
||||
QString FileExtractor::archiveName() const
|
||||
{
|
||||
return m_archiveName;
|
||||
}
|
||||
|
||||
QString FileExtractor::sourceFile() const
|
||||
{
|
||||
return m_sourceFile.toString();
|
||||
}
|
||||
|
||||
void FileExtractor::extract()
|
||||
{
|
||||
Utils::Archive *archive = Utils::Archive::unarchive(m_sourceFile, m_targetPath);
|
||||
archive->setParent(this);
|
||||
QTC_ASSERT(archive, return );
|
||||
|
||||
m_timer.start();
|
||||
const QString targetFolder = m_targetPath.toString() + "/" + m_archiveName;
|
||||
qint64 bytesBefore = QStorageInfo(m_targetPath.toFileInfo().dir()).bytesAvailable();
|
||||
|
||||
QTimer::connect(&m_timer, &QTimer::timeout, [this, bytesBefore, targetFolder]() {
|
||||
static QHash<QString, int> hash;
|
||||
QDirIterator it(targetFolder, {"*.*"}, QDir::Files, QDirIterator::Subdirectories);
|
||||
|
||||
int count = 0;
|
||||
while (it.hasNext()) {
|
||||
if (!hash.contains(it.fileName())) {
|
||||
m_currentFile = it.fileName();
|
||||
hash.insert(m_currentFile, 0);
|
||||
emit currentFileChanged();
|
||||
}
|
||||
it.next();
|
||||
count++;
|
||||
}
|
||||
|
||||
m_size = QString::number(bytesBefore
|
||||
- QStorageInfo(m_targetPath.toFileInfo().dir()).bytesAvailable());
|
||||
|
||||
m_count = QString::number(count);
|
||||
emit sizeChanged();
|
||||
});
|
||||
|
||||
QObject::connect(archive, &Utils::Archive::outputReceived, this, [this](const QString &output) {
|
||||
m_detailedText += output;
|
||||
emit detailedTextChanged();
|
||||
});
|
||||
|
||||
QObject::connect(archive, &Utils::Archive::finished, [this](bool ret) {
|
||||
m_finished = ret;
|
||||
m_timer.stop();
|
||||
emit finishedChanged();
|
||||
QTC_ASSERT(ret, ;);
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user