2009-03-01 08:38:21 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2015-11-18 20:04:50 +01:00
|
|
|
* Copyright (C) 2007-2015 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
|
|
|
*/
|
|
|
|
|
2010-10-31 12:16:55 +01:00
|
|
|
#include <QString>
|
2009-03-01 08:38:21 +01:00
|
|
|
#include <QDebug>
|
2010-10-31 12:16:55 +01:00
|
|
|
#include "checkthread.h"
|
|
|
|
#include "threadresult.h"
|
|
|
|
#include "cppcheck.h"
|
2009-03-01 08:38:21 +01: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),
|
2011-02-23 09:31:18 +01:00
|
|
|
mCppcheck(result, true)
|
2009-03-01 08:38:21 +01:00
|
|
|
{
|
|
|
|
//ctor
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckThread::~CheckThread()
|
|
|
|
{
|
|
|
|
//dtor
|
|
|
|
}
|
|
|
|
|
2010-12-08 14:08:27 +01:00
|
|
|
void CheckThread::Check(const Settings &settings)
|
2009-03-01 08:38:21 +01:00
|
|
|
{
|
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
|
|
|
}
|
|
|
|
|
|
|
|
void CheckThread::run()
|
|
|
|
{
|
2009-06-02 01:01:53 +02:00
|
|
|
mState = Running;
|
2009-03-01 21:44:42 +01:00
|
|
|
QString file;
|
|
|
|
file = mResult.GetNextFile();
|
2009-03-01 08:38:21 +01:00
|
|
|
|
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());
|
2009-03-02 20:56:51 +01:00
|
|
|
emit FileChecked(file);
|
|
|
|
|
2010-04-02 07:30:58 +02:00
|
|
|
if (mState == Running)
|
2009-06-02 01:01:53 +02:00
|
|
|
file = mResult.GetNextFile();
|
2009-03-01 21:44:42 +01: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
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
emit Done();
|
2009-03-01 08:38:21 +01:00
|
|
|
}
|
|
|
|
|
2009-06-02 01:01:53 +02:00
|
|
|
void CheckThread::stop()
|
|
|
|
{
|
|
|
|
mState = Stopping;
|
2010-02-01 19:24:36 +01:00
|
|
|
mCppcheck.terminate();
|
2009-06-02 01:01:53 +02:00
|
|
|
}
|