Files
qt-creator/src/plugins/python/pipsupport.h
Lucie Gérard a7956df3ca Use SPDX license identifiers
Replace the current license disclaimer in files by
a SPDX-License-Identifier.

Task-number: QTBUG-67283
Change-Id: I708fd1f9f2b73d60f57cc3568646929117825813
Reviewed-by: Eike Ziller <eike.ziller@qt.io>
2022-08-26 12:27:18 +00:00

78 lines
1.7 KiB
C++

// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
#pragma once
#include <utils/filepath.h>
#include <utils/qtcprocess.h>
#include <QFutureWatcher>
#include <QTimer>
#include <QUrl>
namespace Python::Internal {
class PipPackageInfo;
class PipPackage
{
public:
explicit PipPackage(const QString &packageName = {},
const QString &displayName = {},
const QString &version = {})
: packageName(packageName)
, displayName(displayName.isEmpty() ? packageName : displayName)
, version(version)
{}
QString packageName;
QString displayName;
QString version;
PipPackageInfo info(const Utils::FilePath &python) const;
};
class PipPackageInfo
{
public:
QString name;
QString version;
QString summary;
QUrl homePage;
QString author;
QString authorEmail;
QString license;
Utils::FilePath location;
QStringList requiresPackage;
QStringList requiredByPackage;
Utils::FilePaths files;
void parseField(const QString &field, const QStringList &value);
};
class PipInstallTask : public QObject
{
Q_OBJECT
public:
explicit PipInstallTask(const Utils::FilePath &python);
void setPackage(const PipPackage &package);
void run();
signals:
void finished(bool success);
private:
void cancel();
void handleDone();
void handleOutput();
void handleError();
const Utils::FilePath m_python;
PipPackage m_package;
Utils::QtcProcess m_process;
QFutureInterface<void> m_future;
QFutureWatcher<void> m_watcher;
QTimer m_killTimer;
};
} // Python::Internal