2014-09-25 11:11:58 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** This file is part of Qt Creator.
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
2014-09-25 11:11:58 +02:00
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-14 10:59:10 +01:00
|
|
|
** a written agreement between you and The Qt Company. For licensing terms
|
|
|
|
|
** and conditions see https://www.qt.io/terms-conditions. For further
|
|
|
|
|
** information use the contact form at https://www.qt.io/contact-us.
|
2014-09-25 11:11:58 +02:00
|
|
|
**
|
2016-01-14 10:59:10 +01:00
|
|
|
** GNU General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
|
** General Public License version 3 as published by the Free Software
|
|
|
|
|
** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
|
|
|
|
|
** included in the packaging of this file. Please review the following
|
|
|
|
|
** information to ensure the GNU General Public License requirements will
|
|
|
|
|
** be met: https://www.gnu.org/licenses/gpl-3.0.html.
|
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"
|
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
|
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
|
|
|
|
|
|
2020-05-14 09:09:41 +02:00
|
|
|
#include <utils/mimetypes/mimedatabase.h>
|
|
|
|
|
#include <utils/mimetypes/mimetype.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
|
|
|
|
2018-08-29 15:58:13 +02:00
|
|
|
#include <cpptools/cpptoolsconstants.h>
|
|
|
|
|
#include <cpptools/cppmodelmanager.h>
|
|
|
|
|
|
2020-05-14 09:09:41 +02:00
|
|
|
#include <texteditor/texteditor.h>
|
|
|
|
|
|
2020-03-26 13:20:58 +01:00
|
|
|
#include <cppeditor/cppeditorconstants.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>
|
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:
|
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;
|
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
|
|
|
|
2019-09-25 15:46:15 +02:00
|
|
|
// Import tidy/clazy diagnostic configs from CppTools now
|
|
|
|
|
// 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"));
|
|
|
|
|
panelFactory->setCreateWidgetFunction([](Project *project) { return new ProjectSettingsWidget(project); });
|
|
|
|
|
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);
|
|
|
|
|
ActionContainer *mtoolscpp = ActionManager::actionContainer(CppTools::Constants::M_TOOLS_CPP);
|
|
|
|
|
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;
|
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
|