cppcheck/gui/checkthread.cpp

106 lines
2.7 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>
2010-10-31 12:16:55 +01:00
#include "checkthread.h"
#include "threadresult.h"
#include "cppcheck.h"
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-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-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-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::stop()
{
mState = Stopping;
mCppcheck.terminate();
}