2013-12-10 14:37:32 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2016-01-15 14:57:40 +01:00
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
2013-12-10 14:37:32 +01:00
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
2016-01-15 14:57:40 +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.
|
2013-12-10 14:37:32 +01:00
|
|
|
**
|
2016-01-15 14:57:40 +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.
|
2013-12-10 14:37:32 +01:00
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clangcodemodelplugin.h"
|
2015-01-16 15:43:42 +01:00
|
|
|
|
2015-11-30 09:43:50 +01:00
|
|
|
#include "clangconstants.h"
|
2018-07-10 15:53:51 +02:00
|
|
|
#include "clangutils.h"
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
#ifdef WITH_TESTS
|
2022-06-22 12:05:59 +02:00
|
|
|
# include "test/activationsequenceprocessortest.h"
|
2017-02-28 12:01:31 +01:00
|
|
|
# include "test/clangbatchfileprocessor.h"
|
2021-04-21 14:29:49 +02:00
|
|
|
# include "test/clangdtests.h"
|
2022-05-02 14:03:03 +02:00
|
|
|
# include "test/clangfixittest.h"
|
2015-05-08 15:48:17 +02:00
|
|
|
#endif
|
|
|
|
|
|
2018-07-10 15:53:51 +02:00
|
|
|
#include <coreplugin/actionmanager/actioncontainer.h>
|
|
|
|
|
#include <coreplugin/actionmanager/actionmanager.h>
|
2019-03-13 17:58:06 +01:00
|
|
|
#include <coreplugin/messagemanager.h>
|
2019-03-13 16:05:06 +01:00
|
|
|
#include <coreplugin/progressmanager/progressmanager.h>
|
2018-07-10 15:53:51 +02:00
|
|
|
|
2022-05-19 14:48:09 +02:00
|
|
|
#include <cppeditor/clangdiagnosticconfig.h>
|
2021-08-30 10:58:08 +02:00
|
|
|
#include <cppeditor/cppmodelmanager.h>
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2018-07-10 15:53:51 +02:00
|
|
|
#include <projectexplorer/buildconfiguration.h>
|
2022-06-13 16:52:52 +02:00
|
|
|
#include <projectexplorer/project.h>
|
2016-02-26 17:50:38 +01:00
|
|
|
#include <projectexplorer/projectpanelfactory.h>
|
|
|
|
|
#include <projectexplorer/projectexplorer.h>
|
2022-06-22 15:43:33 +02:00
|
|
|
#include <projectexplorer/projectexplorerconstants.h>
|
2016-02-26 17:50:38 +01:00
|
|
|
#include <projectexplorer/session.h>
|
2018-07-10 15:53:51 +02:00
|
|
|
#include <projectexplorer/target.h>
|
2018-04-12 14:49:07 +02:00
|
|
|
#include <projectexplorer/taskhub.h>
|
2016-02-26 17:50:38 +01:00
|
|
|
|
2015-08-31 16:28:26 +02:00
|
|
|
#include <texteditor/textmark.h>
|
|
|
|
|
|
2022-06-13 16:52:52 +02:00
|
|
|
#include <utils/temporarydirectory.h>
|
|
|
|
|
#include <utils/runextensions.h>
|
|
|
|
|
|
2020-07-06 15:49:35 +02:00
|
|
|
using namespace Utils;
|
|
|
|
|
|
2013-12-10 14:37:32 +01:00
|
|
|
namespace ClangCodeModel {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2019-11-21 16:32:50 +01:00
|
|
|
void ClangCodeModelPlugin::generateCompilationDB()
|
|
|
|
|
{
|
2021-08-30 10:58:08 +02:00
|
|
|
using namespace CppEditor;
|
2018-07-10 15:53:51 +02:00
|
|
|
|
2019-11-21 16:32:50 +01:00
|
|
|
ProjectExplorer::Target *target = ProjectExplorer::SessionManager::startupTarget();
|
|
|
|
|
if (!target)
|
2018-07-10 15:53:51 +02:00
|
|
|
return;
|
|
|
|
|
|
2021-05-07 16:10:07 +02:00
|
|
|
const auto projectInfo = CppModelManager::instance()->projectInfo(target->project());
|
|
|
|
|
if (!projectInfo)
|
|
|
|
|
return;
|
2022-06-13 16:52:52 +02:00
|
|
|
FilePath baseDir = projectInfo->buildRoot();
|
|
|
|
|
if (baseDir == target->project()->projectDirectory())
|
|
|
|
|
baseDir = TemporaryDirectory::masterDirectoryFilePath();
|
2021-05-07 16:10:07 +02:00
|
|
|
|
2020-07-06 15:49:35 +02:00
|
|
|
QFuture<GenerateCompilationDbResult> task
|
2022-05-12 11:08:06 +02:00
|
|
|
= Utils::runAsync(&Internal::generateCompilationDB, projectInfo,
|
2022-06-13 16:52:52 +02:00
|
|
|
baseDir, CompilationDbPurpose::Project,
|
2022-05-19 14:48:09 +02:00
|
|
|
warningsConfigForProject(target->project()),
|
|
|
|
|
globalClangOptions(),
|
2022-05-12 11:08:06 +02:00
|
|
|
FilePath());
|
2019-03-13 16:05:06 +01:00
|
|
|
Core::ProgressManager::addTask(task, tr("Generating Compilation DB"), "generate compilation db");
|
|
|
|
|
m_generatorWatcher.setFuture(task);
|
2018-07-10 15:53:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static bool isDBGenerationEnabled(ProjectExplorer::Project *project)
|
|
|
|
|
{
|
2021-08-30 10:58:08 +02:00
|
|
|
using namespace CppEditor;
|
2018-07-10 15:53:51 +02:00
|
|
|
if (!project)
|
|
|
|
|
return false;
|
2021-08-20 11:21:06 +02:00
|
|
|
const ProjectInfo::ConstPtr projectInfo = CppModelManager::instance()->projectInfo(project);
|
2021-05-07 16:10:07 +02:00
|
|
|
return projectInfo && !projectInfo->projectParts().isEmpty();
|
2018-07-10 15:53:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ClangCodeModelPlugin::~ClangCodeModelPlugin()
|
|
|
|
|
{
|
|
|
|
|
m_generatorWatcher.waitForFinished();
|
|
|
|
|
}
|
2015-11-27 16:02:38 +01:00
|
|
|
|
2013-12-10 14:37:32 +01:00
|
|
|
bool ClangCodeModelPlugin::initialize(const QStringList &arguments, QString *errorMessage)
|
|
|
|
|
{
|
2019-07-23 10:58:00 +02:00
|
|
|
Q_UNUSED(arguments)
|
|
|
|
|
Q_UNUSED(errorMessage)
|
2016-05-10 15:10:15 +02:00
|
|
|
|
2018-04-12 14:49:07 +02:00
|
|
|
ProjectExplorer::TaskHub::addCategory(Constants::TASK_CATEGORY_DIAGNOSTICS,
|
|
|
|
|
tr("Clang Code Model"));
|
|
|
|
|
|
2016-05-10 15:10:15 +02:00
|
|
|
connect(ProjectExplorer::ProjectExplorerPlugin::instance(),
|
|
|
|
|
&ProjectExplorer::ProjectExplorerPlugin::finishedInitialization,
|
|
|
|
|
this,
|
|
|
|
|
&ClangCodeModelPlugin::maybeHandleBatchFileAndExit);
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2021-08-30 10:58:08 +02:00
|
|
|
CppEditor::CppModelManager::instance()->activateClangCodeModel(&m_modelManagerSupportProvider);
|
2013-12-10 14:37:32 +01:00
|
|
|
|
2018-07-10 15:53:51 +02:00
|
|
|
createCompilationDBButton();
|
|
|
|
|
|
2013-12-10 14:37:32 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2018-07-10 15:53:51 +02:00
|
|
|
void ClangCodeModelPlugin::createCompilationDBButton()
|
|
|
|
|
{
|
|
|
|
|
Core::ActionContainer *mbuild =
|
|
|
|
|
Core::ActionManager::actionContainer(ProjectExplorer::Constants::M_BUILDPROJECT);
|
|
|
|
|
// generate compile_commands.json
|
2020-07-06 15:49:35 +02:00
|
|
|
m_generateCompilationDBAction = new ParameterAction(
|
2018-08-20 09:21:19 +02:00
|
|
|
tr("Generate Compilation Database"),
|
|
|
|
|
tr("Generate Compilation Database for \"%1\""),
|
2020-07-06 15:49:35 +02:00
|
|
|
ParameterAction::AlwaysEnabled, this);
|
2018-07-10 15:53:51 +02:00
|
|
|
|
|
|
|
|
ProjectExplorer::Project *startupProject = ProjectExplorer::SessionManager::startupProject();
|
|
|
|
|
m_generateCompilationDBAction->setEnabled(isDBGenerationEnabled(startupProject));
|
|
|
|
|
if (startupProject)
|
|
|
|
|
m_generateCompilationDBAction->setParameter(startupProject->displayName());
|
|
|
|
|
|
|
|
|
|
Core::Command *command = Core::ActionManager::registerAction(m_generateCompilationDBAction,
|
|
|
|
|
Constants::GENERATE_COMPILATION_DB);
|
|
|
|
|
command->setAttribute(Core::Command::CA_UpdateText);
|
|
|
|
|
command->setDescription(m_generateCompilationDBAction->text());
|
|
|
|
|
mbuild->addAction(command, ProjectExplorer::Constants::G_BUILD_BUILD);
|
|
|
|
|
|
2020-07-06 15:49:35 +02:00
|
|
|
connect(&m_generatorWatcher, &QFutureWatcher<GenerateCompilationDbResult>::finished,
|
2019-03-13 17:58:06 +01:00
|
|
|
this, [this] () {
|
2020-07-06 15:49:35 +02:00
|
|
|
const GenerateCompilationDbResult result = m_generatorWatcher.result();
|
2019-03-13 17:58:06 +01:00
|
|
|
QString message;
|
|
|
|
|
if (result.error.isEmpty()) {
|
|
|
|
|
message = tr("Clang compilation database generated at \"%1\".")
|
|
|
|
|
.arg(QDir::toNativeSeparators(result.filePath));
|
|
|
|
|
} else {
|
2019-06-24 16:47:39 +02:00
|
|
|
message = tr("Generating Clang compilation database failed: %1").arg(result.error);
|
2019-03-13 17:58:06 +01:00
|
|
|
}
|
2020-12-15 10:13:13 +01:00
|
|
|
Core::MessageManager::writeFlashing(message);
|
2018-07-10 15:53:51 +02:00
|
|
|
m_generateCompilationDBAction->setEnabled(
|
|
|
|
|
isDBGenerationEnabled(ProjectExplorer::SessionManager::startupProject()));
|
|
|
|
|
});
|
|
|
|
|
connect(m_generateCompilationDBAction, &QAction::triggered, this, [this] {
|
|
|
|
|
if (!m_generateCompilationDBAction->isEnabled())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
m_generateCompilationDBAction->setEnabled(false);
|
|
|
|
|
generateCompilationDB();
|
|
|
|
|
});
|
2021-08-30 10:58:08 +02:00
|
|
|
connect(CppEditor::CppModelManager::instance(), &CppEditor::CppModelManager::projectPartsUpdated,
|
2018-07-10 15:53:51 +02:00
|
|
|
this, [this](ProjectExplorer::Project *project) {
|
|
|
|
|
if (project != ProjectExplorer::SessionManager::startupProject())
|
|
|
|
|
return;
|
|
|
|
|
m_generateCompilationDBAction->setParameter(project->displayName());
|
|
|
|
|
if (!m_generatorWatcher.isRunning())
|
|
|
|
|
m_generateCompilationDBAction->setEnabled(isDBGenerationEnabled(project));
|
|
|
|
|
});
|
|
|
|
|
connect(ProjectExplorer::SessionManager::instance(),
|
|
|
|
|
&ProjectExplorer::SessionManager::startupProjectChanged,
|
|
|
|
|
this,
|
|
|
|
|
[this](ProjectExplorer::Project *project) {
|
2018-08-14 08:07:01 +02:00
|
|
|
m_generateCompilationDBAction->setParameter(project ? project->displayName() : "");
|
2018-07-10 15:53:51 +02:00
|
|
|
if (!m_generatorWatcher.isRunning())
|
|
|
|
|
m_generateCompilationDBAction->setEnabled(isDBGenerationEnabled(project));
|
|
|
|
|
});
|
|
|
|
|
connect(ProjectExplorer::SessionManager::instance(),
|
|
|
|
|
&ProjectExplorer::SessionManager::projectDisplayNameChanged,
|
|
|
|
|
this,
|
|
|
|
|
[this](ProjectExplorer::Project *project) {
|
|
|
|
|
if (project != ProjectExplorer::SessionManager::startupProject())
|
|
|
|
|
return;
|
|
|
|
|
m_generateCompilationDBAction->setParameter(project->displayName());
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-10 15:10:15 +02:00
|
|
|
// For e.g. creation of profile-guided optimization builds.
|
|
|
|
|
void ClangCodeModelPlugin::maybeHandleBatchFileAndExit() const
|
|
|
|
|
{
|
2017-02-27 16:08:04 +01:00
|
|
|
#ifdef WITH_TESTS
|
2016-05-10 15:10:15 +02:00
|
|
|
const QString batchFilePath = QString::fromLocal8Bit(qgetenv("QTC_CLANG_BATCH"));
|
|
|
|
|
if (!batchFilePath.isEmpty() && QTC_GUARD(QFileInfo::exists(batchFilePath))) {
|
|
|
|
|
const bool runSucceeded = runClangBatchFile(batchFilePath);
|
|
|
|
|
QCoreApplication::exit(!runSucceeded);
|
|
|
|
|
}
|
2017-02-27 16:08:04 +01:00
|
|
|
#endif
|
2016-05-10 15:10:15 +02:00
|
|
|
}
|
|
|
|
|
|
2015-05-08 15:48:17 +02:00
|
|
|
#ifdef WITH_TESTS
|
2019-05-27 14:12:11 +02:00
|
|
|
QVector<QObject *> ClangCodeModelPlugin::createTestObjects() const
|
2015-05-08 15:48:17 +02:00
|
|
|
{
|
|
|
|
|
return {
|
2022-06-22 12:05:59 +02:00
|
|
|
new Tests::ActivationSequenceProcessorTest,
|
2021-06-18 16:30:03 +02:00
|
|
|
new Tests::ClangdTestCompletion,
|
2021-09-03 17:14:54 +02:00
|
|
|
new Tests::ClangdTestExternalChanges,
|
2021-05-25 17:27:32 +02:00
|
|
|
new Tests::ClangdTestFindReferences,
|
|
|
|
|
new Tests::ClangdTestFollowSymbol,
|
2021-06-09 09:47:26 +02:00
|
|
|
new Tests::ClangdTestHighlighting,
|
2021-06-01 18:14:12 +02:00
|
|
|
new Tests::ClangdTestLocalReferences,
|
2021-06-04 12:40:26 +02:00
|
|
|
new Tests::ClangdTestTooltips,
|
2022-05-02 14:03:03 +02:00
|
|
|
new Tests::ClangFixItTest,
|
2015-05-08 15:48:17 +02:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2013-12-10 14:37:32 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace Clang
|