2009-03-01 08:38:21 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2021-03-21 20:58:32 +01:00
|
|
|
* Copyright (C) 2007-2021 Cppcheck team.
|
2009-03-01 08:38:21 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-03-01 08:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2021-04-03 21:30:50 +02:00
|
|
|
#include "checkthread.h"
|
|
|
|
|
2009-03-01 08:38:21 +01:00
|
|
|
#include <QDebug>
|
2017-08-03 12:30:28 +02:00
|
|
|
#include <QDir>
|
2019-12-17 08:40:59 +01:00
|
|
|
#include <QFile>
|
2017-08-03 12:30:28 +02:00
|
|
|
#include <QProcess>
|
2017-10-12 17:02:25 +02:00
|
|
|
#include <QSettings>
|
2017-08-06 12:14:15 +02:00
|
|
|
#include "erroritem.h"
|
2010-10-31 12:16:55 +01:00
|
|
|
#include "threadresult.h"
|
|
|
|
#include "cppcheck.h"
|
2017-09-22 15:41:27 +02:00
|
|
|
#include "common.h"
|
2017-08-04 15:10:27 +02:00
|
|
|
|
2020-05-19 16:04:25 +02:00
|
|
|
static bool executeCommand(std::string exe, std::vector<std::string> args, std::string redirect, std::string *output)
|
|
|
|
{
|
|
|
|
output->clear();
|
|
|
|
|
|
|
|
QStringList args2;
|
|
|
|
for (std::string arg: args)
|
|
|
|
args2 << QString::fromStdString(arg);
|
|
|
|
|
|
|
|
QProcess process;
|
|
|
|
process.start(QString::fromStdString(exe), args2);
|
|
|
|
process.waitForFinished();
|
|
|
|
|
2020-05-19 19:17:23 +02:00
|
|
|
if (redirect == "2>&1") {
|
|
|
|
QString s1 = process.readAllStandardOutput();
|
|
|
|
QString s2 = process.readAllStandardError();
|
|
|
|
*output = (s1 + "\n" + s2).toStdString();
|
2020-05-19 20:14:29 +02:00
|
|
|
} else
|
2020-05-19 16:04:25 +02:00
|
|
|
*output = process.readAllStandardOutput().toStdString();
|
|
|
|
|
|
|
|
if (redirect.compare(0,3,"2> ") == 0) {
|
|
|
|
std::ofstream fout(redirect.substr(3));
|
|
|
|
fout << process.readAllStandardError().toStdString();
|
|
|
|
}
|
2020-05-19 19:17:23 +02:00
|
|
|
return process.exitCode() == 0;
|
2020-05-19 16:04:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
CheckThread::CheckThread(ThreadResult &result) :
|
2010-04-15 20:08:51 +02:00
|
|
|
mState(Ready),
|
|
|
|
mResult(result),
|
2020-05-19 16:04:25 +02:00
|
|
|
mCppcheck(result, true, executeCommand),
|
2016-12-09 20:48:32 +01:00
|
|
|
mAnalyseWholeProgram(false)
|
2009-03-01 08:38:21 +01:00
|
|
|
{
|
|
|
|
//ctor
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckThread::~CheckThread()
|
|
|
|
{
|
|
|
|
//dtor
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:26:11 +02:00
|
|
|
void CheckThread::check(const Settings &settings)
|
2009-03-01 08:38:21 +01:00
|
|
|
{
|
2016-11-19 20:38:50 +01:00
|
|
|
mFiles.clear();
|
2012-04-06 14:19:26 +02:00
|
|
|
mCppcheck.settings() = settings;
|
2009-03-01 21:44:42 +01:00
|
|
|
start();
|
2009-03-01 08:38:21 +01:00
|
|
|
}
|
|
|
|
|
2017-07-28 05:26:11 +02:00
|
|
|
void CheckThread::analyseWholeProgram(const QStringList &files)
|
2016-11-19 20:38:50 +01:00
|
|
|
{
|
|
|
|
mFiles = files;
|
2016-12-09 20:48:32 +01:00
|
|
|
mAnalyseWholeProgram = true;
|
2016-11-19 20:38:50 +01:00
|
|
|
start();
|
|
|
|
}
|
|
|
|
|
2009-03-01 08:38:21 +01:00
|
|
|
void CheckThread::run()
|
|
|
|
{
|
2009-06-02 01:01:53 +02:00
|
|
|
mState = Running;
|
2009-03-01 08:38:21 +01:00
|
|
|
|
2016-12-09 20:48:32 +01:00
|
|
|
if (!mFiles.isEmpty() || mAnalyseWholeProgram) {
|
|
|
|
mAnalyseWholeProgram = false;
|
2016-11-19 20:38:50 +01:00
|
|
|
qDebug() << "Whole program analysis";
|
|
|
|
const std::string &buildDir = mCppcheck.settings().buildDir;
|
|
|
|
if (!buildDir.empty()) {
|
|
|
|
std::map<std::string,std::size_t> files2;
|
2020-03-07 11:33:08 +01:00
|
|
|
for (const QString& file : mFiles)
|
2016-11-19 20:38:50 +01:00
|
|
|
files2[file.toStdString()] = 0;
|
|
|
|
mCppcheck.analyseWholeProgram(buildDir, files2);
|
|
|
|
}
|
|
|
|
mFiles.clear();
|
2017-07-28 13:43:49 +02:00
|
|
|
emit done();
|
2016-11-19 20:38:50 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-28 12:39:28 +02:00
|
|
|
QString file = mResult.getNextFile();
|
2011-10-13 20:53:06 +02:00
|
|
|
while (!file.isEmpty() && mState == Running) {
|
2009-03-02 20:56:51 +01:00
|
|
|
qDebug() << "Checking file" << file;
|
2011-04-24 18:10:25 +02:00
|
|
|
mCppcheck.check(file.toStdString());
|
2017-10-11 23:02:00 +02:00
|
|
|
runAddonsAndTools(nullptr, file);
|
2017-07-28 13:43:49 +02:00
|
|
|
emit fileChecked(file);
|
2009-03-02 20:56:51 +01:00
|
|
|
|
2010-04-02 07:30:58 +02:00
|
|
|
if (mState == Running)
|
2017-07-28 12:39:28 +02:00
|
|
|
file = mResult.getNextFile();
|
2009-03-01 21:44:42 +01:00
|
|
|
}
|
2016-08-18 21:58:50 +02:00
|
|
|
|
2017-07-28 12:39:28 +02:00
|
|
|
ImportProject::FileSettings fileSettings = mResult.getNextFileSettings();
|
2016-08-18 21:58:50 +02:00
|
|
|
while (!fileSettings.filename.empty() && mState == Running) {
|
|
|
|
file = QString::fromStdString(fileSettings.filename);
|
|
|
|
qDebug() << "Checking file" << file;
|
|
|
|
mCppcheck.check(fileSettings);
|
2017-10-11 23:02:00 +02:00
|
|
|
runAddonsAndTools(&fileSettings, QString::fromStdString(fileSettings.filename));
|
2017-07-28 13:43:49 +02:00
|
|
|
emit fileChecked(file);
|
2016-08-18 21:58:50 +02:00
|
|
|
|
|
|
|
if (mState == Running)
|
2017-07-28 12:39:28 +02:00
|
|
|
fileSettings = mResult.getNextFileSettings();
|
2016-08-18 21:58:50 +02:00
|
|
|
}
|
|
|
|
|
2010-04-02 07:30:58 +02:00
|
|
|
if (mState == Running)
|
2009-06-02 01:01:53 +02:00
|
|
|
mState = Ready;
|
2009-06-02 22:13:29 +02:00
|
|
|
else
|
2009-06-02 01:01:53 +02:00
|
|
|
mState = Stopped;
|
2009-03-01 08:38:21 +01:00
|
|
|
|
2017-07-28 13:43:49 +02:00
|
|
|
emit done();
|
2009-03-01 08:38:21 +01:00
|
|
|
}
|
|
|
|
|
2017-10-11 23:02:00 +02:00
|
|
|
void CheckThread::runAddonsAndTools(const ImportProject::FileSettings *fileSettings, const QString &fileName)
|
2017-08-03 18:04:15 +02:00
|
|
|
{
|
2017-09-22 15:41:27 +02:00
|
|
|
foreach (const QString addon, mAddonsAndTools) {
|
|
|
|
if (addon == CLANG_ANALYZER || addon == CLANG_TIDY) {
|
2017-08-03 18:04:15 +02:00
|
|
|
if (!fileSettings)
|
|
|
|
continue;
|
2017-08-04 15:10:27 +02:00
|
|
|
|
2017-08-10 11:16:19 +02:00
|
|
|
if (!fileSettings->cfg.empty() && fileSettings->cfg.compare(0,5,"Debug") != 0)
|
2017-08-08 20:12:03 +02:00
|
|
|
continue;
|
|
|
|
|
2017-08-04 20:08:01 +02:00
|
|
|
QStringList args;
|
2019-11-20 15:37:09 +01:00
|
|
|
for (std::list<std::string>::const_iterator incIt = fileSettings->includePaths.begin(); incIt != fileSettings->includePaths.end(); ++incIt)
|
|
|
|
args << ("-I" + QString::fromStdString(*incIt));
|
2017-08-03 21:39:20 +02:00
|
|
|
for (std::list<std::string>::const_iterator i = fileSettings->systemIncludePaths.begin(); i != fileSettings->systemIncludePaths.end(); ++i)
|
2017-08-04 20:08:01 +02:00
|
|
|
args << "-isystem" << QString::fromStdString(*i);
|
2019-11-20 15:37:09 +01:00
|
|
|
foreach (QString def, QString::fromStdString(fileSettings->defines).split(";")) {
|
|
|
|
args << ("-D" + def);
|
2017-08-03 18:04:15 +02:00
|
|
|
}
|
2018-10-09 15:05:05 +02:00
|
|
|
foreach (const std::string& U, fileSettings->undefs) {
|
|
|
|
args << QString::fromStdString("-U" + U);
|
|
|
|
}
|
2017-08-07 23:00:24 +02:00
|
|
|
|
2017-10-12 17:02:25 +02:00
|
|
|
const QString clangPath = CheckThread::clangTidyCmd();
|
|
|
|
if (!clangPath.isEmpty()) {
|
|
|
|
QDir dir(clangPath + "/../lib/clang");
|
2017-08-07 23:00:24 +02:00
|
|
|
foreach (QString ver, dir.entryList()) {
|
|
|
|
QString includePath = dir.absolutePath() + '/' + ver + "/include";
|
|
|
|
if (ver[0] != '.' && QDir(includePath).exists()) {
|
|
|
|
args << "-isystem" << includePath;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
// To create compile_commands.json in windows see:
|
|
|
|
// https://bitsmaker.gitlab.io/post/clang-tidy-from-vs2015/
|
|
|
|
|
2017-08-12 12:04:42 +02:00
|
|
|
foreach (QString includePath, mClangIncludePaths) {
|
|
|
|
if (!includePath.isEmpty()) {
|
|
|
|
includePath.replace("\\", "/");
|
|
|
|
args << "-isystem" << includePath.trimmed();
|
2017-08-07 23:00:24 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-08 20:12:03 +02:00
|
|
|
args << "-U__STDC__" << "-fno-ms-compatibility";
|
2017-08-07 23:00:24 +02:00
|
|
|
#endif
|
|
|
|
|
2017-08-03 21:39:20 +02:00
|
|
|
if (!fileSettings->standard.empty())
|
2017-08-07 23:00:24 +02:00
|
|
|
args << ("-std=" + QString::fromStdString(fileSettings->standard));
|
2017-09-22 22:00:00 +02:00
|
|
|
else {
|
|
|
|
switch (mCppcheck.settings().standards.cpp) {
|
|
|
|
case Standards::CPP03:
|
|
|
|
args << "-std=c++03";
|
|
|
|
break;
|
|
|
|
case Standards::CPP11:
|
|
|
|
args << "-std=c++11";
|
|
|
|
break;
|
|
|
|
case Standards::CPP14:
|
|
|
|
args << "-std=c++14";
|
|
|
|
break;
|
2019-04-12 12:12:12 +02:00
|
|
|
case Standards::CPP17:
|
|
|
|
args << "-std=c++17";
|
|
|
|
break;
|
2019-05-05 10:44:09 +02:00
|
|
|
case Standards::CPP20:
|
|
|
|
args << "-std=c++20";
|
|
|
|
break;
|
2019-11-20 08:37:46 +01:00
|
|
|
}
|
2017-09-22 22:00:00 +02:00
|
|
|
}
|
2017-08-06 15:16:21 +02:00
|
|
|
|
|
|
|
QString analyzerInfoFile;
|
|
|
|
|
|
|
|
const std::string &buildDir = mCppcheck.settings().buildDir;
|
|
|
|
if (!buildDir.empty()) {
|
|
|
|
analyzerInfoFile = QString::fromStdString(AnalyzerInformation::getAnalyzerInfoFile(buildDir, fileSettings->filename, fileSettings->cfg));
|
|
|
|
|
|
|
|
QStringList args2(args);
|
|
|
|
args2.insert(0,"-E");
|
|
|
|
args2 << fileName;
|
|
|
|
QProcess process;
|
2017-10-12 17:02:25 +02:00
|
|
|
process.start(clangCmd(),args2);
|
2017-08-06 15:16:21 +02:00
|
|
|
process.waitForFinished();
|
|
|
|
const QByteArray &ba = process.readAllStandardOutput();
|
2017-08-07 09:28:35 +02:00
|
|
|
const quint16 chksum = qChecksum(ba.data(), ba.length());
|
2017-08-06 15:16:21 +02:00
|
|
|
|
|
|
|
QFile f1(analyzerInfoFile + '.' + addon + "-E");
|
|
|
|
if (f1.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
|
|
QTextStream in1(&f1);
|
2017-08-07 09:28:35 +02:00
|
|
|
const quint16 oldchksum = in1.readAll().toInt();
|
|
|
|
if (oldchksum == chksum) {
|
2017-08-06 15:16:21 +02:00
|
|
|
QFile f2(analyzerInfoFile + '.' + addon + "-results");
|
|
|
|
if (f2.open(QIODevice::ReadOnly | QIODevice::Text)) {
|
|
|
|
QTextStream in2(&f2);
|
2017-08-09 20:53:17 +02:00
|
|
|
parseClangErrors(addon, fileName, in2.readAll());
|
2017-08-06 15:16:21 +02:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
f1.close();
|
|
|
|
}
|
|
|
|
f1.open(QIODevice::WriteOnly | QIODevice::Text);
|
|
|
|
QTextStream out1(&f1);
|
2017-08-07 09:28:35 +02:00
|
|
|
out1 << chksum;
|
2017-08-06 15:16:21 +02:00
|
|
|
|
|
|
|
QFile::remove(analyzerInfoFile + '.' + addon + "-results");
|
|
|
|
}
|
|
|
|
|
2017-09-22 15:41:27 +02:00
|
|
|
if (addon == CLANG_ANALYZER) {
|
2017-09-22 18:57:53 +02:00
|
|
|
/*
|
2021-08-07 20:51:18 +02:00
|
|
|
// Using clang
|
|
|
|
args.insert(0,"--analyze");
|
|
|
|
args.insert(1, "-Xanalyzer");
|
|
|
|
args.insert(2, "-analyzer-output=text");
|
|
|
|
args << fileName;
|
|
|
|
*/
|
2017-09-22 18:57:53 +02:00
|
|
|
// Using clang-tidy
|
|
|
|
args.insert(0,"-checks=-*,clang-analyzer-*");
|
|
|
|
args.insert(1, fileName);
|
|
|
|
args.insert(2, "--");
|
2017-08-06 15:16:21 +02:00
|
|
|
} else {
|
2017-09-22 18:57:53 +02:00
|
|
|
args.insert(0,"-checks=*,-clang-analyzer-*,-llvm*");
|
2017-08-06 15:16:21 +02:00
|
|
|
args.insert(1, fileName);
|
|
|
|
args.insert(2, "--");
|
|
|
|
}
|
2017-08-04 20:08:01 +02:00
|
|
|
|
2017-08-06 12:14:15 +02:00
|
|
|
{
|
2017-10-12 17:02:25 +02:00
|
|
|
const QString cmd(clangTidyCmd());
|
2017-08-08 12:10:20 +02:00
|
|
|
QString debug(cmd.contains(" ") ? ('\"' + cmd + '\"') : cmd);
|
2017-08-06 12:14:15 +02:00
|
|
|
foreach (QString arg, args) {
|
2017-08-07 23:00:24 +02:00
|
|
|
if (arg.contains(" "))
|
|
|
|
debug += " \"" + arg + '\"';
|
|
|
|
else
|
|
|
|
debug += ' ' + arg;
|
2017-08-06 12:14:15 +02:00
|
|
|
}
|
|
|
|
qDebug() << debug;
|
2017-08-08 12:10:20 +02:00
|
|
|
|
|
|
|
if (!analyzerInfoFile.isEmpty()) {
|
|
|
|
QFile f(analyzerInfoFile + '.' + addon + "-cmd");
|
|
|
|
if (f.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
|
|
|
QTextStream out(&f);
|
|
|
|
out << debug;
|
|
|
|
}
|
|
|
|
}
|
2017-08-06 12:14:15 +02:00
|
|
|
}
|
2017-08-03 18:04:15 +02:00
|
|
|
|
|
|
|
QProcess process;
|
2017-10-12 17:02:25 +02:00
|
|
|
process.start(clangTidyCmd(), args);
|
2017-08-03 18:04:15 +02:00
|
|
|
process.waitForFinished(600*1000);
|
2017-08-12 09:15:10 +02:00
|
|
|
const QString errout(process.readAllStandardOutput() + "\n\n\n" + process.readAllStandardError());
|
2017-08-06 15:16:21 +02:00
|
|
|
if (!analyzerInfoFile.isEmpty()) {
|
|
|
|
QFile f(analyzerInfoFile + '.' + addon + "-results");
|
|
|
|
if (f.open(QIODevice::WriteOnly | QIODevice::Text)) {
|
|
|
|
QTextStream out(&f);
|
|
|
|
out << errout;
|
|
|
|
}
|
2017-08-06 12:14:15 +02:00
|
|
|
}
|
2017-08-12 12:04:42 +02:00
|
|
|
|
2017-08-09 20:53:17 +02:00
|
|
|
parseClangErrors(addon, fileName, errout);
|
2017-08-03 18:04:15 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-02 01:01:53 +02:00
|
|
|
void CheckThread::stop()
|
|
|
|
{
|
|
|
|
mState = Stopping;
|
2020-12-04 18:47:43 +01:00
|
|
|
Settings::terminate();
|
2009-06-02 01:01:53 +02:00
|
|
|
}
|
2017-08-03 12:30:28 +02:00
|
|
|
|
2017-08-09 20:53:17 +02:00
|
|
|
void CheckThread::parseClangErrors(const QString &tool, const QString &file0, QString err)
|
2017-08-03 17:20:29 +02:00
|
|
|
{
|
2017-08-06 12:14:15 +02:00
|
|
|
QList<ErrorItem> errorItems;
|
|
|
|
ErrorItem errorItem;
|
2017-08-10 22:46:23 +02:00
|
|
|
QRegExp r1("(.+):([0-9]+):([0-9]+): (note|warning|error|fatal error): (.*)");
|
2017-08-06 12:14:15 +02:00
|
|
|
QRegExp r2("(.*)\\[([a-zA-Z0-9\\-_\\.]+)\\]");
|
2017-08-03 17:20:29 +02:00
|
|
|
QTextStream in(&err, QIODevice::ReadOnly);
|
|
|
|
while (!in.atEnd()) {
|
|
|
|
QString line = in.readLine();
|
2017-08-12 09:15:10 +02:00
|
|
|
|
|
|
|
if (line.startsWith("Assertion failed:")) {
|
|
|
|
ErrorItem e;
|
|
|
|
e.errorPath.append(QErrorPathItem());
|
2019-08-18 12:19:05 +02:00
|
|
|
e.errorPath.last().file = file0;
|
|
|
|
e.errorPath.last().line = 1;
|
|
|
|
e.errorPath.last().column = 1;
|
2017-08-12 09:15:10 +02:00
|
|
|
e.errorId = tool + "-internal-error";
|
|
|
|
e.file0 = file0;
|
|
|
|
e.message = line;
|
|
|
|
e.severity = Severity::information;
|
|
|
|
errorItems.append(e);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2017-08-06 12:14:15 +02:00
|
|
|
if (!r1.exactMatch(line))
|
2017-08-03 17:20:29 +02:00
|
|
|
continue;
|
2017-08-10 22:46:23 +02:00
|
|
|
if (r1.cap(4) != "note") {
|
2017-08-06 12:14:15 +02:00
|
|
|
errorItems.append(errorItem);
|
|
|
|
errorItem = ErrorItem();
|
2017-08-10 22:46:23 +02:00
|
|
|
errorItem.file0 = r1.cap(1);
|
2017-08-06 12:14:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
errorItem.errorPath.append(QErrorPathItem());
|
|
|
|
errorItem.errorPath.last().file = r1.cap(1);
|
|
|
|
errorItem.errorPath.last().line = r1.cap(2).toInt();
|
2019-08-18 12:19:05 +02:00
|
|
|
errorItem.errorPath.last().column = r1.cap(3).toInt();
|
2017-08-10 22:46:23 +02:00
|
|
|
if (r1.cap(4) == "warning")
|
2017-08-06 12:14:15 +02:00
|
|
|
errorItem.severity = Severity::SeverityType::warning;
|
2017-08-10 22:46:23 +02:00
|
|
|
else if (r1.cap(4) == "error" || r1.cap(4) == "fatal error")
|
2017-08-06 12:14:15 +02:00
|
|
|
errorItem.severity = Severity::SeverityType::error;
|
|
|
|
|
|
|
|
QString message,id;
|
2017-08-10 22:46:23 +02:00
|
|
|
if (r2.exactMatch(r1.cap(5))) {
|
2017-08-06 12:14:15 +02:00
|
|
|
message = r2.cap(1);
|
2017-09-22 22:32:02 +02:00
|
|
|
const QString id1(r2.cap(2));
|
|
|
|
if (id1.startsWith("clang"))
|
|
|
|
id = id1;
|
|
|
|
else
|
|
|
|
id = tool + '-' + r2.cap(2);
|
|
|
|
if (tool == CLANG_TIDY) {
|
|
|
|
if (id1.startsWith("performance"))
|
|
|
|
errorItem.severity = Severity::SeverityType::performance;
|
|
|
|
else if (id1.startsWith("portability"))
|
|
|
|
errorItem.severity = Severity::SeverityType::portability;
|
|
|
|
else if (id1.startsWith("cert") || (id1.startsWith("misc") && !id1.contains("unused")))
|
|
|
|
errorItem.severity = Severity::SeverityType::warning;
|
|
|
|
else
|
|
|
|
errorItem.severity = Severity::SeverityType::style;
|
|
|
|
}
|
2017-08-04 15:10:27 +02:00
|
|
|
} else {
|
2017-08-10 22:46:23 +02:00
|
|
|
message = r1.cap(5);
|
2017-09-22 15:41:27 +02:00
|
|
|
id = CLANG_ANALYZER;
|
2017-08-04 15:10:27 +02:00
|
|
|
}
|
|
|
|
|
2017-08-06 12:14:15 +02:00
|
|
|
if (errorItem.errorPath.size() == 1) {
|
|
|
|
errorItem.message = message;
|
|
|
|
errorItem.errorId = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
errorItem.errorPath.last().info = message;
|
|
|
|
}
|
|
|
|
errorItems.append(errorItem);
|
|
|
|
|
|
|
|
foreach (const ErrorItem &e, errorItems) {
|
|
|
|
if (e.errorPath.isEmpty())
|
|
|
|
continue;
|
2018-04-09 06:43:48 +02:00
|
|
|
Suppressions::ErrorMessage errorMessage;
|
|
|
|
errorMessage.setFileName(e.errorPath.back().file.toStdString());
|
|
|
|
errorMessage.lineNumber = e.errorPath.back().line;
|
|
|
|
errorMessage.errorId = e.errorId.toStdString();
|
|
|
|
errorMessage.symbolNames = e.symbolNames.toStdString();
|
|
|
|
|
2019-08-09 19:00:09 +02:00
|
|
|
if (isSuppressed(errorMessage))
|
2017-08-11 07:45:29 +02:00
|
|
|
continue;
|
2019-08-09 19:00:09 +02:00
|
|
|
|
2020-05-23 07:16:49 +02:00
|
|
|
std::list<ErrorMessage::FileLocation> callstack;
|
2017-08-06 12:14:15 +02:00
|
|
|
foreach (const QErrorPathItem &path, e.errorPath) {
|
2020-05-23 07:16:49 +02:00
|
|
|
callstack.push_back(ErrorMessage::FileLocation(path.file.toStdString(), path.info.toStdString(), path.line, path.column));
|
2017-08-06 12:14:15 +02:00
|
|
|
}
|
2017-08-11 07:45:29 +02:00
|
|
|
const std::string f0 = file0.toStdString();
|
|
|
|
const std::string msg = e.message.toStdString();
|
|
|
|
const std::string id = e.errorId.toStdString();
|
2021-02-24 22:00:06 +01:00
|
|
|
ErrorMessage errmsg(callstack, f0, e.severity, msg, id, Certainty::normal);
|
2017-08-03 17:20:29 +02:00
|
|
|
mResult.reportErr(errmsg);
|
2017-08-03 12:30:28 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-11 23:02:00 +02:00
|
|
|
|
2019-08-09 19:00:09 +02:00
|
|
|
bool CheckThread::isSuppressed(const Suppressions::ErrorMessage &errorMessage) const
|
|
|
|
{
|
|
|
|
foreach (const Suppressions::Suppression &suppression, mSuppressions) {
|
|
|
|
if (suppression.isSuppressed(errorMessage))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-10-12 17:02:25 +02:00
|
|
|
QString CheckThread::clangCmd()
|
|
|
|
{
|
|
|
|
QString path = QSettings().value(SETTINGS_CLANG_PATH,QString()).toString();
|
|
|
|
if (!path.isEmpty())
|
|
|
|
path += '/';
|
|
|
|
path += "clang";
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
path += ".exe";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QProcess process;
|
|
|
|
process.start(path, QStringList() << "--version");
|
|
|
|
process.waitForFinished();
|
|
|
|
if (process.exitCode() == 0)
|
|
|
|
return path;
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
// Try to autodetect clang
|
|
|
|
if (QFileInfo("C:/Program Files/LLVM/bin/clang.exe").exists())
|
|
|
|
return "C:/Program Files/LLVM/bin/clang.exe";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString CheckThread::clangTidyCmd()
|
|
|
|
{
|
|
|
|
QString path = QSettings().value(SETTINGS_CLANG_PATH,QString()).toString();
|
|
|
|
if (!path.isEmpty())
|
|
|
|
path += '/';
|
|
|
|
path += "clang-tidy";
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
path += ".exe";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
QProcess process;
|
|
|
|
process.start(path, QStringList() << "--version");
|
|
|
|
process.waitForFinished();
|
|
|
|
if (process.exitCode() == 0)
|
|
|
|
return path;
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
// Try to autodetect clang-tidy
|
|
|
|
if (QFileInfo("C:/Program Files/LLVM/bin/clang-tidy.exe").exists())
|
|
|
|
return "C:/Program Files/LLVM/bin/clang-tidy.exe";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return QString();
|
|
|
|
}
|