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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
#pragma once
#include <projectexplorer/runconfigurationaspects.h>
#include <solutions/tasking/tasktreerunner.h>
#include <utils/filepath.h>
#include <utils/listmodel.h>
namespace Python::Internal {
class PythonSettings : public QObject
{
Q_OBJECT
public:
PythonSettings();
~PythonSettings();
using Interpreter = ProjectExplorer::Interpreter;
static QList<Interpreter> interpreters();
static Interpreter defaultInterpreter();
static Interpreter interpreter(const QString &interpreterId);
static void setInterpreter(const QList<Interpreter> &interpreters, const QString &defaultId);
static void addInterpreter(const Interpreter &interpreter, bool isDefault = false);
static Interpreter addInterpreter(const Utils::FilePath &interpreterPath,
bool isDefault = false,
const QString &nameSuffix = {});
static void setPyLSConfiguration(const QString &configuration);
static bool pylsEnabled();
static void setPylsEnabled(const bool &enabled);
static QString pylsConfiguration();
static PythonSettings *instance();
static void createVirtualEnvironmentInteractive(
const Utils::FilePath &startDirectory,
const Interpreter &defaultInterpreter,
const std::function<void(const Utils::FilePath &)> &callback);
static void createVirtualEnvironment(
const Utils::FilePath &interpreter,
const Utils::FilePath &directory,
const std::function<void(const Utils::FilePath &)> &callback = {});
static QList<Interpreter> detectPythonVenvs(const Utils::FilePath &path);
static void addKitsForInterpreter(const Interpreter &interpreter, bool force);
static void removeKitsForInterpreter(const Interpreter &interpreter);
static bool interpreterIsValid(const Interpreter &interpreter);
signals:
void interpretersChanged(const QList<Interpreter> &interpreters, const QString &defaultId);
void pylsConfigurationChanged(const QString &configuration);
void pylsEnabledChanged(const bool enabled);
void virtualEnvironmentCreated(const Utils::FilePath &venvPython);
public slots:
void detectPythonOnDevice(const Utils::FilePaths &searchPaths,
const QString &deviceName,
const QString &detectionSource,
QString *logMessage);
void removeDetectedPython(const QString &detectionSource, QString *logMessage);
void listDetectedPython(const QString &detectionSource, QString *logMessage);
private:
void disableOutdatedPyls();
void disableOutdatedPylsNow();
void fixupPythonKits();
void initFromSettings(Utils::QtcSettings *settings);
void writeToSettings(Utils::QtcSettings *settings);
QList<Interpreter> m_interpreters;
QString m_defaultInterpreterId;
bool m_pylsEnabled = true;
QString m_pylsConfiguration;
Tasking::TaskTreeRunner m_taskTreeRunner;
static void saveSettings();
};
void setupPythonSettings();
Utils::ListModel<ProjectExplorer::Interpreter> *createInterpreterModel(QObject *parent);
} // Python::Internal
|