cppcheck/gui/checkthread.cpp

469 lines
16 KiB
C++
Raw Permalink Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2023-01-28 10:16:34 +01:00
* Copyright (C) 2007-2023 Cppcheck team.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "checkthread.h"
#include "analyzerinfo.h"
2022-02-02 16:17:28 +01:00
#include "common.h"
#include "cppcheck.h"
#include "erroritem.h"
#include "errorlogger.h"
#include "errortypes.h"
#include "filesettings.h"
#include "settings.h"
#include "standards.h"
2022-02-02 16:17:28 +01:00
#include "threadresult.h"
#include "utils.h"
2022-02-02 16:17:28 +01:00
#include <algorithm>
#include <cstddef>
#include <iterator>
#include <list>
#include <ostream>
#include <set>
#include <string>
#include <utility>
#include <vector>
#include <QByteArray>
#include <QChar>
#include <QDebug>
#include <QDir>
#include <QFile>
#include <QIODevice>
#include <QProcess>
#include <QRegularExpression>
2017-10-12 17:02:25 +02:00
#include <QSettings>
#include <QTextStream>
#include <QVariant>
#if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0))
#include <QCharRef>
#endif
2017-08-04 15:10:27 +02:00
// NOLINTNEXTLINE(performance-unnecessary-value-param) - used as callback so we need to preserve the signature
static int executeCommand(std::string exe, std::vector<std::string> args, std::string redirect, std::string &output) // cppcheck-suppress passedByValueCallback
{
output.clear();
QStringList args2;
for (const 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();
} else
output = process.readAllStandardOutput().toStdString();
if (startsWith(redirect, "2> ")) {
std::ofstream fout(redirect.substr(3));
fout << process.readAllStandardError().toStdString();
}
return process.exitCode();
}
CheckThread::CheckThread(ThreadResult &result) :
2010-04-15 20:08:51 +02:00
mResult(result),
mCppcheck(result, true, executeCommand)
{}
2017-07-28 05:26:11 +02:00
void CheckThread::check(const Settings &settings)
{
2016-11-19 20:38:50 +01:00
mFiles.clear();
mCppcheck.settings() = settings;
start();
}
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();
}
// cppcheck-suppress unusedFunction - TODO: false positive
void CheckThread::run()
{
mState = Running;
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";
std::list<std::pair<std::string, std::size_t>> files2;
std::transform(mFiles.cbegin(), mFiles.cend(), std::back_inserter(files2), [&](const QString& file) {
return std::pair<std::string, std::size_t>{file.toStdString(), 0};
});
mCppcheck.analyseWholeProgram(mCppcheck.settings().buildDir, files2, {});
2016-11-19 20:38:50 +01:00
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) {
qDebug() << "Checking file" << file;
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);
if (mState == Running)
2017-07-28 12:39:28 +02:00
file = mResult.getNextFile();
}
2016-08-18 21:58:50 +02:00
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
}
if (mState == Running)
mState = Ready;
2009-06-02 22:13:29 +02:00
else
mState = Stopped;
2017-07-28 13:43:49 +02:00
emit done();
}
void CheckThread::runAddonsAndTools(const FileSettings *fileSettings, const QString &fileName)
2017-08-03 18:04:15 +02:00
{
for (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
if (!fileSettings->cfg.empty() && !startsWith(fileSettings->cfg,"Debug"))
continue;
QStringList args;
for (std::list<std::string>::const_iterator incIt = fileSettings->includePaths.cbegin(); incIt != fileSettings->includePaths.cend(); ++incIt)
args << ("-I" + QString::fromStdString(*incIt));
for (std::list<std::string>::const_iterator i = fileSettings->systemIncludePaths.cbegin(); i != fileSettings->systemIncludePaths.cend(); ++i)
args << "-isystem" << QString::fromStdString(*i);
for (const QString& def : QString::fromStdString(fileSettings->defines).split(";")) {
args << ("-D" + def);
2017-08-03 18:04:15 +02:00
}
for (const std::string& U : fileSettings->undefs) {
args << QString::fromStdString("-U" + U);
}
2017-10-12 17:02:25 +02:00
const QString clangPath = CheckThread::clangTidyCmd();
if (!clangPath.isEmpty()) {
QDir dir(clangPath + "/../lib/clang");
for (const 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/
for (QString includePath : mClangIncludePaths) {
2017-08-12 12:04:42 +02:00
if (!includePath.isEmpty()) {
includePath.replace("\\", "/");
args << "-isystem" << includePath.trimmed();
}
}
args << "-U__STDC__" << "-fno-ms-compatibility";
#endif
if (!fileSettings->standard.empty())
args << ("-std=" + QString::fromStdString(fileSettings->standard));
2017-09-22 22:00:00 +02:00
else {
// TODO: pass C or C++ standard based on file type
const std::string std = mCppcheck.settings().standards.getCPP();
if (!std.empty()) {
args << ("-std=" + QString::fromStdString(std));
}
2017-09-22 22:00:00 +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);
process.waitForFinished();
const QByteArray &ba = process.readAllStandardOutput();
2022-04-15 18:49:24 +02:00
#if (QT_VERSION >= QT_VERSION_CHECK(6, 0, 0))
const quint16 chksum = qChecksum(QByteArrayView(ba));
#else
const quint16 chksum = qChecksum(ba.data(), ba.length());
2022-04-15 18:49:24 +02:00
#endif
QFile f1(analyzerInfoFile + '.' + addon + "-E");
if (f1.open(QIODevice::ReadOnly | QIODevice::Text)) {
QTextStream in1(&f1);
const quint16 oldchksum = in1.readAll().toInt();
if (oldchksum == chksum) {
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());
continue;
}
}
f1.close();
}
f1.open(QIODevice::WriteOnly | QIODevice::Text);
QTextStream out1(&f1);
out1 << chksum;
QFile::remove(analyzerInfoFile + '.' + addon + "-results");
}
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, "--");
} else {
2017-09-22 18:57:53 +02:00
args.insert(0,"-checks=*,-clang-analyzer-*,-llvm*");
args.insert(1, fileName);
args.insert(2, "--");
}
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);
for (const QString& arg : args) {
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);
const QString errout(process.readAllStandardOutput() + "\n\n\n" + process.readAllStandardError());
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
}
}
}
void CheckThread::stop()
{
mState = Stopping;
2020-12-04 18:47:43 +01:00
Settings::terminate();
}
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;
static const QRegularExpression r1("^(.+):([0-9]+):([0-9]+): (note|warning|error|fatal error): (.*)$");
static const QRegularExpression 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();
if (line.startsWith("Assertion failed:")) {
ErrorItem e;
e.errorPath.append(QErrorPathItem());
e.errorPath.last().file = file0;
e.errorPath.last().line = 1;
e.errorPath.last().column = 1;
e.errorId = tool + "-internal-error";
e.file0 = file0;
e.message = line;
e.severity = Severity::information;
errorItems.append(e);
continue;
}
const QRegularExpressionMatch r1MatchRes = r1.match(line);
if (!r1MatchRes.hasMatch())
2017-08-03 17:20:29 +02:00
continue;
if (r1MatchRes.captured(4) != "note") {
2017-08-06 12:14:15 +02:00
errorItems.append(errorItem);
errorItem = ErrorItem();
errorItem.file0 = r1MatchRes.captured(1);
2017-08-06 12:14:15 +02:00
}
errorItem.errorPath.append(QErrorPathItem());
errorItem.errorPath.last().file = r1MatchRes.captured(1);
errorItem.errorPath.last().line = r1MatchRes.captured(2).toInt();
errorItem.errorPath.last().column = r1MatchRes.captured(3).toInt();
if (r1MatchRes.captured(4) == "warning")
errorItem.severity = Severity::warning;
else if (r1MatchRes.captured(4) == "error" || r1MatchRes.captured(4) == "fatal error")
errorItem.severity = Severity::error;
2017-08-06 12:14:15 +02:00
QString message,id;
const QRegularExpressionMatch r2MatchRes = r2.match(r1MatchRes.captured(5));
if (r2MatchRes.hasMatch()) {
message = r2MatchRes.captured(1);
const QString id1(r2MatchRes.captured(2));
if (id1.startsWith("clang"))
id = id1;
else
id = tool + '-' + r2MatchRes.captured(2);
if (tool == CLANG_TIDY) {
if (id1.startsWith("performance"))
errorItem.severity = Severity::performance;
else if (id1.startsWith("portability"))
errorItem.severity = Severity::portability;
else if (id1.startsWith("misc") && !id1.contains("unused"))
errorItem.severity = Severity::warning;
else
errorItem.severity = Severity::style;
}
2017-08-04 15:10:27 +02:00
} else {
message = r1MatchRes.captured(5);
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);
for (const ErrorItem &e : errorItems) {
2017-08-06 12:14:15 +02:00
if (e.errorPath.isEmpty())
continue;
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;
std::transform(e.errorPath.cbegin(), e.errorPath.cend(), std::back_inserter(callstack), [](const QErrorPathItem& path) {
return ErrorMessage::FileLocation(path.file.toStdString(), path.info.toStdString(), path.line, path.column);
});
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();
ErrorMessage errmsg(callstack, f0, e.severity, msg, id, Certainty::normal);
2017-08-03 17:20:29 +02:00
mResult.reportErr(errmsg);
}
}
2017-10-11 23:02:00 +02:00
2019-08-09 19:00:09 +02:00
bool CheckThread::isSuppressed(const Suppressions::ErrorMessage &errorMessage) const
{
return std::any_of(mSuppressions.cbegin(), mSuppressions.cend(), [&](const Suppressions::Suppression& s) {
return s.isSuppressed(errorMessage);
});
2019-08-09 19:00:09 +02:00
}
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();
}