2018-01-17 15:08:30 +01:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
|
|
|
|
** Copyright (C) 2016 The Qt Company Ltd.
|
|
|
|
|
** Contact: https://www.qt.io/licensing/
|
|
|
|
|
**
|
|
|
|
|
** 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
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
** 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.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include "clangtidyclazyrunner.h"
|
|
|
|
|
|
2018-05-07 15:40:14 +02:00
|
|
|
#include "clangtoolssettings.h"
|
2019-08-28 08:56:22 +02:00
|
|
|
#include "clangtoolsutils.h"
|
2018-05-07 15:40:14 +02:00
|
|
|
|
2019-08-01 16:08:40 +02:00
|
|
|
#include <coreplugin/icore.h>
|
|
|
|
|
|
2019-09-25 15:46:15 +02:00
|
|
|
#include <cpptools/clangdiagnosticconfigsmodel.h>
|
2019-01-11 15:32:12 +01:00
|
|
|
#include <cpptools/compileroptionsbuilder.h>
|
2018-01-17 15:08:30 +01:00
|
|
|
#include <cpptools/cpptoolsreuse.h>
|
|
|
|
|
|
|
|
|
|
#include <utils/synchronousprocess.h>
|
2018-05-07 15:40:14 +02:00
|
|
|
#include <utils/qtcassert.h>
|
2018-01-17 15:08:30 +01:00
|
|
|
|
|
|
|
|
#include <QDebug>
|
|
|
|
|
#include <QDir>
|
|
|
|
|
#include <QLoggingCategory>
|
|
|
|
|
|
2018-10-12 09:33:30 +03:00
|
|
|
static Q_LOGGING_CATEGORY(LOG, "qtc.clangtools.runner", QtWarningMsg)
|
2018-01-17 15:08:30 +01:00
|
|
|
|
2019-08-01 14:54:15 +02:00
|
|
|
using namespace CppTools;
|
|
|
|
|
|
2018-01-17 15:08:30 +01:00
|
|
|
namespace ClangTools {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2019-12-18 12:23:51 +01:00
|
|
|
static bool isClMode(const QStringList &options)
|
|
|
|
|
{
|
|
|
|
|
return options.contains("--driver-mode=cl");
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-01 16:08:40 +02:00
|
|
|
static QStringList tidyChecksArguments(const ClangDiagnosticConfig diagnosticConfig)
|
|
|
|
|
{
|
|
|
|
|
const ClangDiagnosticConfig::TidyMode tidyMode = diagnosticConfig.clangTidyMode();
|
2019-10-21 14:59:57 +02:00
|
|
|
// The argument "-config={}" stops stating/evaluating the .clang-tidy file.
|
2019-10-24 11:31:42 +02:00
|
|
|
if (tidyMode == ClangDiagnosticConfig::TidyMode::UseDefaultChecks)
|
2019-10-21 14:59:57 +02:00
|
|
|
return {"-config={}"};
|
2019-10-24 11:31:42 +02:00
|
|
|
if (tidyMode == ClangDiagnosticConfig::TidyMode::UseCustomChecks)
|
2019-10-21 14:59:57 +02:00
|
|
|
return {"-config={}", "-checks=" + diagnosticConfig.clangTidyChecks()};
|
2019-08-01 16:08:40 +02:00
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-02 10:33:06 +02:00
|
|
|
static QStringList clazyChecksArguments(const ClangDiagnosticConfig diagnosticConfig)
|
|
|
|
|
{
|
|
|
|
|
const QString clazyChecks = diagnosticConfig.clazyChecks();
|
|
|
|
|
if (!clazyChecks.isEmpty())
|
|
|
|
|
return {"-checks=" + diagnosticConfig.clazyChecks()};
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-01 16:08:40 +02:00
|
|
|
static QStringList mainToolArguments(const QString &mainFilePath, const QString &outputFilePath)
|
|
|
|
|
{
|
|
|
|
|
return {
|
|
|
|
|
"-export-fixes=" + outputFilePath,
|
|
|
|
|
QDir::toNativeSeparators(mainFilePath),
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static QStringList clangArguments(const ClangDiagnosticConfig &diagnosticConfig,
|
|
|
|
|
const QStringList &baseOptions)
|
|
|
|
|
{
|
|
|
|
|
QStringList arguments;
|
|
|
|
|
arguments << ClangDiagnosticConfigsModel::globalDiagnosticOptions()
|
2019-12-18 12:23:51 +01:00
|
|
|
<< (isClMode(baseOptions) ? CppTools::clangArgsForCl(diagnosticConfig.clangOptions())
|
|
|
|
|
: diagnosticConfig.clangOptions())
|
2019-08-01 16:08:40 +02:00
|
|
|
<< baseOptions;
|
|
|
|
|
|
|
|
|
|
if (LOG().isDebugEnabled())
|
|
|
|
|
arguments << QLatin1String("-v");
|
|
|
|
|
|
|
|
|
|
return arguments;
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-01 15:18:32 +02:00
|
|
|
ClangTidyRunner::ClangTidyRunner(const ClangDiagnosticConfig &config, QObject *parent)
|
2019-08-01 14:54:15 +02:00
|
|
|
: ClangToolRunner(parent)
|
|
|
|
|
{
|
2019-08-01 15:18:32 +02:00
|
|
|
setName(tr("Clang-Tidy"));
|
2019-08-01 16:08:40 +02:00
|
|
|
setOutputFileFormat(OutputFileFormat::Yaml);
|
2019-08-28 08:56:22 +02:00
|
|
|
setExecutable(clangTidyExecutable());
|
2019-08-01 14:54:15 +02:00
|
|
|
setArgsCreator([this, config](const QStringList &baseOptions) {
|
2019-08-01 16:08:40 +02:00
|
|
|
return QStringList()
|
|
|
|
|
<< tidyChecksArguments(config)
|
2019-08-29 14:25:49 +02:00
|
|
|
<< mainToolArguments(fileToAnalyze(), outputFilePath())
|
2019-08-01 16:08:40 +02:00
|
|
|
<< "--"
|
|
|
|
|
<< clangArguments(config, baseOptions);
|
2019-08-01 14:54:15 +02:00
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-02 10:33:06 +02:00
|
|
|
ClazyStandaloneRunner::ClazyStandaloneRunner(const ClangDiagnosticConfig &config, QObject *parent)
|
|
|
|
|
: ClangToolRunner(parent)
|
|
|
|
|
{
|
|
|
|
|
setName(tr("Clazy"));
|
|
|
|
|
setOutputFileFormat(OutputFileFormat::Yaml);
|
2019-08-28 08:56:22 +02:00
|
|
|
setExecutable(clazyStandaloneExecutable());
|
2019-08-02 10:33:06 +02:00
|
|
|
setArgsCreator([this, config](const QStringList &baseOptions) {
|
|
|
|
|
return QStringList()
|
|
|
|
|
<< clazyChecksArguments(config)
|
2019-08-29 14:25:49 +02:00
|
|
|
<< mainToolArguments(fileToAnalyze(), outputFilePath())
|
2019-08-02 10:33:06 +02:00
|
|
|
<< "--"
|
|
|
|
|
<< clangArguments(config, baseOptions);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2018-01-17 15:08:30 +01:00
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace ClangTools
|