aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/python/pipsupport.h
blob: 0bcb56b5fe7af38987f49c200efe5dd58ba4d7a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0

#pragma once

#include <utils/filepath.h>
#include <utils/qtcprocess.h>

#include <QTimer>
#include <QUrl>

QT_BEGIN_NAMESPACE
namespace QtTaskTree { class Group; }
QT_END_NAMESPACE

namespace Python::Internal {

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 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;
};

class PipInstallerData
{
public:
    QString packagesDisplayName() const;

    Utils::FilePath python;
    Utils::FilePath workingDirectory;
    Utils::FilePath requirementsFile;
    Utils::FilePath targetPath;
    QList<PipPackage> packages;
    bool upgrade = false;
    bool silent = false;
};

QtTaskTree::Group pipInstallerTask(const PipInstallerData &data);

} // Python::Internal