2009-03-01 08:38:21 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2009-05-30 07:48:12 +02:00
|
|
|
* Copyright (C) 2007-2009 Daniel Marjamäki and 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
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "checkthread.h"
|
|
|
|
#include <QDebug>
|
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
CheckThread::CheckThread(ThreadResult &result) :
|
2009-09-18 20:56:31 +02:00
|
|
|
mState(Ready),
|
2009-03-01 21:44:42 +01:00
|
|
|
mResult(result),
|
2009-05-24 10:53:29 +02:00
|
|
|
mCppcheck(result)
|
2009-03-01 08:38:21 +01:00
|
|
|
{
|
|
|
|
//ctor
|
|
|
|
}
|
|
|
|
|
|
|
|
CheckThread::~CheckThread()
|
|
|
|
{
|
|
|
|
//dtor
|
|
|
|
}
|
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
void CheckThread::Check(Settings settings)
|
2009-03-01 08:38:21 +01:00
|
|
|
{
|
2009-05-24 10:53:29 +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
|
|
|
|
2009-06-02 01:01:53 +02:00
|
|
|
while (!file.isEmpty() && mState == Running)
|
2009-03-01 21:44:42 +01:00
|
|
|
{
|
2009-03-02 20:56:51 +01:00
|
|
|
qDebug() << "Checking file" << file;
|
2009-05-24 10:53:29 +02:00
|
|
|
mCppcheck.addFile(file.toStdString());
|
|
|
|
mCppcheck.check();
|
|
|
|
mCppcheck.clearFiles();
|
2009-03-02 20:56:51 +01:00
|
|
|
emit FileChecked(file);
|
|
|
|
|
2009-06-02 01:01:53 +02:00
|
|
|
if (mState == Running)
|
|
|
|
file = mResult.GetNextFile();
|
2009-03-01 21:44:42 +01:00
|
|
|
}
|
2009-06-02 01:01:53 +02:00
|
|
|
if (mState == Running)
|
|
|
|
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;
|
|
|
|
}
|