forked from qt-creator/qt-creator
Instead of relying on the DebuggerRunWorkerFactory to match for all RunConfiguration, every plugin needs to create a WorkerFactory for its own RunConfiguration. Similar to the SimpleTargetRunnerFactory there is now a SimpleDebugRunnerFactory which makes the setup easy. Change-Id: I25aaabcd70f7ac649baeab4eb4c7e88d53dac91e Reviewed-by: hjk <hjk@qt.io>
106 lines
3.1 KiB
C++
106 lines
3.1 KiB
C++
// Copyright (C) 2016 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0
|
|
|
|
#include "pythonplugin.h"
|
|
|
|
#include "pythonbuildconfiguration.h"
|
|
#include "pythonconstants.h"
|
|
#include "pythoneditor.h"
|
|
#include "pythonkitaspect.h"
|
|
#include "pythonproject.h"
|
|
#include "pythonrunconfiguration.h"
|
|
#include "pythonsettings.h"
|
|
#include "pythontr.h"
|
|
#include "pythonwizardpage.h"
|
|
|
|
#include <debugger/debuggerruncontrol.h>
|
|
|
|
#include <extensionsystem/iplugin.h>
|
|
|
|
#include <projectexplorer/buildtargetinfo.h>
|
|
#include <projectexplorer/jsonwizard/jsonwizardfactory.h>
|
|
#include <projectexplorer/kitmanager.h>
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
|
#include <projectexplorer/projectmanager.h>
|
|
#include <projectexplorer/taskhub.h>
|
|
|
|
#include <utils/fsengine/fileiconprovider.h>
|
|
#include <utils/theme/theme.h>
|
|
|
|
using namespace Debugger;
|
|
using namespace ProjectExplorer;
|
|
using namespace Utils;
|
|
|
|
namespace Python::Internal {
|
|
|
|
static QObject *m_instance = nullptr;
|
|
|
|
QObject *pluginInstance()
|
|
{
|
|
return m_instance;
|
|
}
|
|
|
|
class PythonPluginPrivate
|
|
{
|
|
public:
|
|
PythonOutputFormatterFactory outputFormatterFactory;
|
|
PythonRunConfigurationFactory runConfigFactory;
|
|
PySideBuildStepFactory buildStepFactory;
|
|
PythonBuildConfigurationFactory buildConfigFactory;
|
|
SimpleTargetRunnerFactory runWorkerFactory{{runConfigFactory.runConfigurationId()}};
|
|
SimpleDebugRunnerFactory debugRunWorkerFactory{{runConfigFactory.runConfigurationId()}, {ProjectExplorer::Constants::DAP_PY_DEBUG_RUN_MODE}};
|
|
PythonSettings settings;
|
|
PythonWizardPageFactory pythonWizardPageFactory;
|
|
};
|
|
|
|
class PythonPlugin final : public ExtensionSystem::IPlugin
|
|
{
|
|
Q_OBJECT
|
|
Q_PLUGIN_METADATA(IID "org.qt-project.Qt.QtCreatorPlugin" FILE "Python.json")
|
|
|
|
public:
|
|
PythonPlugin()
|
|
{
|
|
m_instance = this;
|
|
}
|
|
|
|
~PythonPlugin() final
|
|
{
|
|
m_instance = nullptr;
|
|
delete d;
|
|
}
|
|
|
|
private:
|
|
void initialize() final
|
|
{
|
|
d = new PythonPluginPrivate;
|
|
|
|
setupPythonEditorFactory(this);
|
|
|
|
KitManager::setIrrelevantAspects(KitManager::irrelevantAspects()
|
|
+ QSet<Id>{PythonKitAspect::id()});
|
|
|
|
ProjectManager::registerProjectType<PythonProject>(Constants::C_PY_PROJECT_MIME_TYPE);
|
|
ProjectManager::registerProjectType<PythonProject>(Constants::C_PY_PROJECT_MIME_TYPE_LEGACY);
|
|
}
|
|
|
|
void extensionsInitialized() final
|
|
{
|
|
// Add MIME overlay icons (these icons displayed at Project dock panel)
|
|
const QString imageFile = Utils::creatorTheme()->imageFile(Theme::IconOverlayPro,
|
|
ProjectExplorer::Constants::FILEOVERLAY_PY);
|
|
FileIconProvider::registerIconOverlayForSuffix(imageFile, "py");
|
|
|
|
TaskHub::addCategory({PythonErrorTaskCategory,
|
|
"Python",
|
|
Tr::tr("Issues parsed from Python runtime output."),
|
|
true});
|
|
}
|
|
|
|
PythonPluginPrivate *d = nullptr;
|
|
};
|
|
|
|
} // Python::Internal
|
|
|
|
#include "pythonplugin.moc"
|