cppcheck/gui/checkthread.cpp

380 lines
14 KiB
C++
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2016-01-01 14:34:45 +01:00
* Copyright (C) 2007-2016 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/>.
*/
2010-10-31 12:16:55 +01:00
#include <QString>
#include <QDebug>
#include <QDir>
#include <QFileInfo>
#include <QProcess>
2010-10-31 12:16:55 +01:00
#include "checkthread.h"
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-08-04 15:10:27 +02:00
static const char CLANG[] = "clang";
static const char CLANGTIDY[] = "clang-tidy";
CheckThread::CheckThread(ThreadResult &result) :
2010-04-15 20:08:51 +02:00
mState(Ready),
mResult(result),
2016-12-09 20:48:32 +01:00
mCppcheck(result, true),
mAnalyseWholeProgram(false)
{
//ctor
}
CheckThread::~CheckThread()
{
//dtor
}
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();
}
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";
const std::string &buildDir = mCppcheck.settings().buildDir;
if (!buildDir.empty()) {
std::map<std::string,std::size_t> files2;
for (QString file : mFiles)
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-08-03 18:04:15 +02:00
const QString addonPath = getAddonPath();
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-08-03 18:04:15 +02:00
runAddons(addonPath, 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
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-08-03 18:04:15 +02:00
runAddons(addonPath, &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();
}
2017-08-03 18:04:15 +02:00
void CheckThread::runAddons(const QString &addonPath, const ImportProject::FileSettings *fileSettings, const QString &fileName)
{
QString dumpFile;
2017-08-03 18:04:15 +02:00
foreach (const QString addon, mAddons) {
2017-08-04 15:10:27 +02:00
if (addon == CLANG || addon == CLANGTIDY) {
2017-08-03 18:04:15 +02:00
if (!fileSettings)
continue;
2017-08-04 15:10:27 +02:00
if (!fileSettings->cfg.empty() && fileSettings->cfg.find("Debug") != std::string::npos)
continue;
QStringList args;
2017-08-03 18:04:15 +02:00
for (std::list<std::string>::const_iterator I = fileSettings->includePaths.begin(); I != fileSettings->includePaths.end(); ++I)
args << ("-I" + QString::fromStdString(*I));
for (std::list<std::string>::const_iterator i = fileSettings->systemIncludePaths.begin(); i != fileSettings->systemIncludePaths.end(); ++i)
args << "-isystem" << QString::fromStdString(*i);
2017-08-03 18:04:15 +02:00
foreach (QString D, QString::fromStdString(fileSettings->defines).split(";")) {
args << ("-D" + D);
2017-08-03 18:04:15 +02:00
}
if (!mClangPath.isEmpty()) {
QDir dir(mClangPath + "/../lib/clang");
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/
foreach (QString s, mVsIncludePaths.split(";")) {
if (!s.isEmpty()) {
s.replace("\\", "/");
args << "-isystem" << s;
}
}
args << "-U__STDC__" << "-fno-ms-compatibility";
#endif
if (!fileSettings->standard.empty())
args << ("-std=" + QString::fromStdString(fileSettings->standard));
else if (!mVsIncludePaths.isEmpty() && fileName.endsWith(".cpp"))
args << "-std=c++14";
QString analyzerInfoFile;
const std::string &buildDir = mCppcheck.settings().buildDir;
if (!buildDir.empty()) {
analyzerInfoFile = QString::fromStdString(AnalyzerInformation::getAnalyzerInfoFile(buildDir, fileSettings->filename, fileSettings->cfg));
const QString cmd(mClangPath.isEmpty() ? QString("clang") : (mClangPath + "/clang.exe"));
QStringList args2(args);
args2.insert(0,"-E");
args2 << fileName;
QProcess process;
process.start(cmd,args2);
process.waitForFinished();
const QByteArray &ba = process.readAllStandardOutput();
const quint16 chksum = qChecksum(ba.data(), ba.length());
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);
parseClangErrors(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) {
args.insert(0,"--analyze");
args.insert(1, "-Xanalyzer");
args.insert(2, "-analyzer-output=text");
args << fileName;
} else {
args.insert(0,"-checks=*,-clang*,-llvm*");
args.insert(1, fileName);
args.insert(2, "--");
}
const QString cmd(mClangPath.isEmpty() ? addon : (mClangPath + '/' + addon + ".exe"));
2017-08-06 12:14:15 +02:00
{
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) {
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;
process.start(cmd, args);
2017-08-03 18:04:15 +02:00
process.waitForFinished(600*1000);
const QString errout(addon == CLANG ? process.readAllStandardError() : process.readAllStandardOutput());
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
}
parseClangErrors(fileName, errout);
2017-08-03 18:04:15 +02:00
} else {
QString a;
if (QFileInfo(addonPath + '/' + addon + ".py").exists())
a = addonPath + '/' + addon + ".py";
else if (QFileInfo(addonPath + '/' + addon + '/' + addon + ".py").exists())
a = addonPath + '/' + addon + '/' + addon + ".py";
else
continue;
if (dumpFile.isEmpty()) {
2017-08-03 18:04:15 +02:00
const std::string buildDir = mCppcheck.settings().buildDir;
mCppcheck.settings().buildDir.clear();
mCppcheck.settings().dump = true;
if (!buildDir.empty()) {
mCppcheck.settings().dumpFile = AnalyzerInformation::getAnalyzerInfoFile(buildDir, fileName.toStdString(), fileSettings ? fileSettings->cfg : std::string()) + ".dump";
dumpFile = QString::fromStdString(mCppcheck.settings().dumpFile);
} else {
dumpFile = fileName + ".dump";
}
2017-08-03 18:04:15 +02:00
if (fileSettings)
mCppcheck.check(*fileSettings);
else
mCppcheck.check(fileName.toStdString());
mCppcheck.settings().dump = false;
mCppcheck.settings().dumpFile.clear();
2017-08-03 18:04:15 +02:00
mCppcheck.settings().buildDir = buildDir;
}
QString cmd = "python " + a + ' ' + dumpFile;
qDebug() << cmd;
QProcess process;
process.start(cmd);
process.waitForFinished();
parseAddonErrors(process.readAllStandardError(), addon);
}
}
}
void CheckThread::stop()
{
mState = Stopping;
mCppcheck.terminate();
}
2017-08-03 18:04:15 +02:00
QString CheckThread::getAddonPath() const
{
if (QFileInfo(mDataDir + "/threadsafety.py").exists())
return mDataDir;
else if (QDir(mDataDir + "/addons").exists())
return mDataDir + "/addons";
else if (mDataDir.endsWith("/cfg")) {
if (QDir(mDataDir.mid(0,mDataDir.size()-3) + "addons").exists())
return mDataDir.mid(0,mDataDir.size()-3) + "addons";
}
return QString();
}
2017-08-03 17:20:29 +02:00
void CheckThread::parseAddonErrors(QString err, QString tool)
{
QTextStream in(&err, QIODevice::ReadOnly);
while (!in.atEnd()) {
QString line = in.readLine();
2017-08-03 17:20:29 +02:00
QRegExp r1("\\[([^:]+):([0-9]+)\\](.*)");
if (!r1.exactMatch(line))
continue;
const std::string &filename = r1.cap(1).toStdString();
const int lineNumber = r1.cap(2).toInt();
std::string message, id;
QRegExp r2("(.*)\\[([a-zA-Z0-9\\-\\._]+)\\]");
if (r2.exactMatch(r1.cap(3))) {
message = r2.cap(1).toStdString();
id = tool.toStdString() + '-' + r2.cap(2).toStdString();
} else {
2017-08-03 17:20:29 +02:00
message = r1.cap(3).toStdString();
id = tool.toStdString();
}
2017-08-03 17:20:29 +02:00
std::list<ErrorLogger::ErrorMessage::FileLocation> callstack;
callstack.push_back(ErrorLogger::ErrorMessage::FileLocation(filename, lineNumber));
ErrorLogger::ErrorMessage errmsg(callstack, filename, Severity::style, message, id, false);
mResult.reportErr(errmsg);
}
}
2017-08-06 12:14:15 +02:00
void CheckThread::parseClangErrors(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;
QRegExp r1("(.+):([0-9]+):[0-9]+: (note|warning|error|fatal error): (.*)");
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-06 12:14:15 +02:00
if (!r1.exactMatch(line))
2017-08-03 17:20:29 +02:00
continue;
2017-08-06 12:14:15 +02:00
if (r1.cap(3) != "note") {
errorItems.append(errorItem);
errorItem = ErrorItem();
}
errorItem.errorPath.append(QErrorPathItem());
errorItem.errorPath.last().file = r1.cap(1);
errorItem.errorPath.last().line = r1.cap(2).toInt();
if (r1.cap(3) == "warning")
errorItem.severity = Severity::SeverityType::warning;
else if (r1.cap(3) == "error" || r1.cap(3) == "fatal error")
errorItem.severity = Severity::SeverityType::error;
QString message,id;
if (r2.exactMatch(r1.cap(4))) {
message = r2.cap(1);
id = r2.cap(2);
2017-08-04 15:10:27 +02:00
} else {
2017-08-06 12:14:15 +02:00
message = r1.cap(4);
2017-08-04 15:10:27 +02:00
id = CLANG;
}
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;
2017-08-03 17:20:29 +02:00
std::list<ErrorLogger::ErrorMessage::FileLocation> callstack;
2017-08-06 12:14:15 +02:00
foreach (const QErrorPathItem &path, e.errorPath) {
callstack.push_back(ErrorLogger::ErrorMessage::FileLocation(path.file.toStdString(), path.info.toStdString(), path.line));
}
ErrorLogger::ErrorMessage errmsg(callstack, file0.toStdString(), errorItem.severity, errorItem.message.toStdString(), errorItem.errorId.toStdString(), false);
2017-08-03 17:20:29 +02:00
mResult.reportErr(errmsg);
}
}