2022-08-19 15:59:36 +02:00
|
|
|
// Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0
|
2014-09-25 11:11:58 +02:00
|
|
|
|
2018-03-14 12:58:12 +01:00
|
|
|
#include "clangtoolsplugin.h"
|
2014-09-25 11:11:58 +02:00
|
|
|
|
2019-09-25 15:07:59 +02:00
|
|
|
#include "clangtool.h"
|
2018-01-17 15:08:30 +01:00
|
|
|
#include "clangtoolsconstants.h"
|
2018-05-07 17:04:26 +02:00
|
|
|
#include "clangtoolsprojectsettings.h"
|
2019-09-25 15:07:59 +02:00
|
|
|
#include "clangtoolsprojectsettingswidget.h"
|
2020-07-22 14:52:06 +02:00
|
|
|
#include "documentclangtoolrunner.h"
|
2020-08-25 06:18:26 +02:00
|
|
|
#include "documentquickfixfactory.h"
|
2019-08-27 16:09:39 +02:00
|
|
|
#include "settingswidget.h"
|
2014-09-25 11:11:58 +02:00
|
|
|
|
2015-02-04 15:19:30 +01:00
|
|
|
#ifdef WITH_TESTS
|
2022-06-22 14:31:33 +02:00
|
|
|
#include "readexporteddiagnosticstest.h"
|
2018-05-08 17:33:29 +02:00
|
|
|
#include "clangtoolspreconfiguredsessiontests.h"
|
2018-04-24 15:30:19 +02:00
|
|
|
#include "clangtoolsunittests.h"
|
2015-02-04 15:19:30 +01:00
|
|
|
#endif
|
|
|
|
|
|
2022-02-23 17:11:20 +01:00
|
|
|
#include <utils/mimeutils.h>
|
2017-06-16 15:21:17 +02:00
|
|
|
#include <utils/qtcassert.h>
|
|
|
|
|
|
2020-05-14 09:09:41 +02:00
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
2014-09-25 11:11:58 +02:00
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
|
|
|
|
#include <coreplugin/actionmanager/command.h>
|
|
|
|
|
#include <coreplugin/coreconstants.h>
|
2020-05-14 09:09:41 +02:00
|
|
|
#include <coreplugin/editormanager/editormanager.h>
|
|
|
|
|
#include <coreplugin/icontext.h>
|
|
|
|
|
#include <coreplugin/icore.h>
|
2017-06-16 15:21:17 +02:00
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
#include <cppeditor/cppeditorconstants.h>
|
|
|
|
|
#include <cppeditor/cppmodelmanager.h>
|
2018-08-29 15:58:13 +02:00
|
|
|
|
2020-05-14 09:09:41 +02:00
|
|
|
#include <texteditor/texteditor.h>
|
|
|
|
|
|
2017-06-16 15:21:17 +02:00
|
|
|
#include <projectexplorer/kitinformation.h>
|
2015-02-19 18:08:38 +01:00
|
|
|
#include <projectexplorer/projectpanelfactory.h>
|
2017-06-16 15:21:17 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2021-04-12 12:58:52 +02:00
|
|
|
#include <projectexplorer/taskhub.h>
|
2014-09-25 11:11:58 +02:00
|
|
|
|
|
|
|
|
#include <QAction>
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
#include <QMenu>
|
2020-05-14 09:09:41 +02:00
|
|
|
#include <QMessageBox>
|
|
|
|
|
#include <QToolBar>
|
2014-09-25 11:11:58 +02:00
|
|
|
|
2019-08-23 15:25:57 +02:00
|
|
|
using namespace Core;
|
2016-07-22 15:53:01 +02:00
|
|
|
using namespace ProjectExplorer;
|
2014-09-25 11:11:58 +02:00
|
|
|
|
2018-03-14 12:58:12 +01:00
|
|
|
namespace ClangTools {
|
2014-09-25 11:11:58 +02:00
|
|
|
namespace Internal {
|
|
|
|
|
|
2019-11-25 10:09:21 +01:00
|
|
|
static ProjectPanelFactory *m_projectPanelFactoryInstance = nullptr;
|
|
|
|
|
|
|
|
|
|
ProjectPanelFactory *projectPanelFactory()
|
|
|
|
|
{
|
|
|
|
|
return m_projectPanelFactoryInstance;
|
|
|
|
|
}
|
|
|
|
|
|
2018-03-14 12:58:12 +01:00
|
|
|
class ClangToolsPluginPrivate
|
2014-09-25 11:11:58 +02:00
|
|
|
{
|
2018-02-07 10:03:16 +01:00
|
|
|
public:
|
2020-08-25 06:18:26 +02:00
|
|
|
ClangToolsPluginPrivate()
|
|
|
|
|
: quickFixFactory(
|
|
|
|
|
[this](const Utils::FilePath &filePath) { return runnerForFilePath(filePath); })
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
DocumentClangToolRunner *runnerForFilePath(const Utils::FilePath &filePath)
|
|
|
|
|
{
|
2022-10-07 14:46:06 +02:00
|
|
|
for (DocumentClangToolRunner *runner : std::as_const(documentRunners)) {
|
2020-08-25 06:18:26 +02:00
|
|
|
if (runner->filePath() == filePath)
|
|
|
|
|
return runner;
|
|
|
|
|
}
|
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
|
|
|
|
|
2019-09-25 15:07:59 +02:00
|
|
|
ClangTool clangTool;
|
2018-04-30 16:07:59 +02:00
|
|
|
ClangToolsOptionsPage optionsPage;
|
2020-07-22 14:52:06 +02:00
|
|
|
QMap<Core::IDocument *, DocumentClangToolRunner *> documentRunners;
|
2020-08-25 06:18:26 +02:00
|
|
|
DocumentQuickFixFactory quickFixFactory;
|
2018-02-07 10:03:16 +01:00
|
|
|
};
|
2014-09-25 11:11:58 +02:00
|
|
|
|
2018-03-14 12:58:12 +01:00
|
|
|
ClangToolsPlugin::~ClangToolsPlugin()
|
2014-09-25 11:11:58 +02:00
|
|
|
{
|
2018-02-07 10:03:16 +01:00
|
|
|
delete d;
|
2014-09-25 11:11:58 +02:00
|
|
|
}
|
|
|
|
|
|
2018-03-14 12:58:12 +01:00
|
|
|
bool ClangToolsPlugin::initialize(const QStringList &arguments, QString *errorString)
|
2014-09-25 11:11:58 +02:00
|
|
|
{
|
2019-07-23 10:58:00 +02:00
|
|
|
Q_UNUSED(arguments)
|
|
|
|
|
Q_UNUSED(errorString)
|
2016-01-21 20:24:55 +02:00
|
|
|
|
2021-04-12 12:58:52 +02:00
|
|
|
TaskHub::addCategory(taskCategory(), tr("Clang Tools"));
|
|
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
// Import tidy/clazy diagnostic configs from CppEditor now
|
2019-09-25 15:46:15 +02:00
|
|
|
// instead of at opening time of the settings page
|
|
|
|
|
ClangToolsSettings::instance();
|
|
|
|
|
|
2018-03-14 12:58:12 +01:00
|
|
|
d = new ClangToolsPluginPrivate;
|
2018-02-07 10:03:16 +01:00
|
|
|
|
2020-05-14 09:09:41 +02:00
|
|
|
registerAnalyzeActions();
|
|
|
|
|
|
|
|
|
|
auto panelFactory = m_projectPanelFactoryInstance = new ProjectPanelFactory;
|
|
|
|
|
panelFactory->setPriority(100);
|
|
|
|
|
panelFactory->setId(Constants::PROJECT_PANEL_ID);
|
|
|
|
|
panelFactory->setDisplayName(tr("Clang Tools"));
|
2022-04-14 15:51:18 +02:00
|
|
|
panelFactory->setCreateWidgetFunction(
|
|
|
|
|
[](Project *project) { return new ClangToolsProjectSettingsWidget(project); });
|
2020-05-14 09:09:41 +02:00
|
|
|
ProjectPanelFactory::registerFactory(panelFactory);
|
|
|
|
|
|
2020-07-22 14:52:06 +02:00
|
|
|
connect(Core::EditorManager::instance(),
|
|
|
|
|
&Core::EditorManager::currentEditorChanged,
|
|
|
|
|
this,
|
|
|
|
|
&ClangToolsPlugin::onCurrentEditorChanged);
|
|
|
|
|
|
2020-05-14 09:09:41 +02:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-22 14:52:06 +02:00
|
|
|
void ClangToolsPlugin::onCurrentEditorChanged()
|
|
|
|
|
{
|
|
|
|
|
for (Core::IEditor *editor : Core::EditorManager::visibleEditors()) {
|
|
|
|
|
IDocument *document = editor->document();
|
|
|
|
|
if (d->documentRunners.contains(document))
|
|
|
|
|
continue;
|
|
|
|
|
auto runner = new DocumentClangToolRunner(document);
|
|
|
|
|
connect(runner, &DocumentClangToolRunner::destroyed, this, [this, document]() {
|
|
|
|
|
d->documentRunners.remove(document);
|
|
|
|
|
});
|
|
|
|
|
d->documentRunners[document] = runner;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-05-14 09:09:41 +02:00
|
|
|
void ClangToolsPlugin::registerAnalyzeActions()
|
|
|
|
|
{
|
2019-09-25 15:07:59 +02:00
|
|
|
ActionManager::registerAction(d->clangTool.startAction(), Constants::RUN_ON_PROJECT);
|
2020-03-26 13:20:58 +01:00
|
|
|
Command *cmd = ActionManager::registerAction(d->clangTool.startOnCurrentFileAction(),
|
|
|
|
|
Constants::RUN_ON_CURRENT_FILE);
|
2021-08-30 10:58:08 +02:00
|
|
|
ActionContainer *mtoolscpp = ActionManager::actionContainer(CppEditor::Constants::M_TOOLS_CPP);
|
2020-03-26 13:20:58 +01:00
|
|
|
if (mtoolscpp)
|
|
|
|
|
mtoolscpp->addAction(cmd);
|
|
|
|
|
|
|
|
|
|
Core::ActionContainer *mcontext = Core::ActionManager::actionContainer(
|
|
|
|
|
CppEditor::Constants::M_CONTEXT);
|
|
|
|
|
if (mcontext)
|
2020-05-14 09:09:41 +02:00
|
|
|
mcontext->addAction(cmd, CppEditor::Constants::G_CONTEXT_FIRST);
|
|
|
|
|
|
|
|
|
|
// add button to tool bar of C++ source files
|
|
|
|
|
connect(EditorManager::instance(), &EditorManager::editorOpened, this, [this, cmd](IEditor *editor) {
|
|
|
|
|
if (editor->document()->filePath().isEmpty()
|
|
|
|
|
|| !Utils::mimeTypeForName(editor->document()->mimeType()).inherits("text/x-c++src"))
|
|
|
|
|
return;
|
|
|
|
|
auto *textEditor = qobject_cast<TextEditor::BaseTextEditor *>(editor);
|
|
|
|
|
if (!textEditor)
|
|
|
|
|
return;
|
|
|
|
|
TextEditor::TextEditorWidget *widget = textEditor->editorWidget();
|
|
|
|
|
if (!widget)
|
|
|
|
|
return;
|
|
|
|
|
const QIcon icon = Utils::Icon({{":/debugger/images/debugger_singleinstructionmode.png",
|
|
|
|
|
Utils::Theme::IconsBaseColor}})
|
|
|
|
|
.icon();
|
|
|
|
|
QAction *action = widget->toolBar()->addAction(icon, tr("Analyze File"), [this, editor]() {
|
|
|
|
|
d->clangTool.startTool(editor->document()->filePath());
|
|
|
|
|
});
|
|
|
|
|
cmd->augmentActionWithShortcutToolTip(action);
|
|
|
|
|
});
|
2014-09-25 11:11:58 +02:00
|
|
|
}
|
|
|
|
|
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<QObject *> ClangToolsPlugin::createTestObjects() const
|
2015-02-04 15:19:30 +01:00
|
|
|
{
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<QObject *> tests;
|
2015-02-04 15:19:30 +01:00
|
|
|
#ifdef WITH_TESTS
|
2018-05-08 17:33:29 +02:00
|
|
|
tests << new PreconfiguredSessionTests;
|
2018-04-24 15:30:19 +02:00
|
|
|
tests << new ClangToolsUnitTests;
|
2022-06-22 14:31:33 +02:00
|
|
|
tests << new ReadExportedDiagnosticsTest;
|
2015-02-04 15:19:30 +01:00
|
|
|
#endif
|
|
|
|
|
return tests;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-25 11:11:58 +02:00
|
|
|
} // namespace Internal
|
2018-03-14 12:58:12 +01:00
|
|
|
} // namespace ClangTools
|