cppcheck/gui/threadresult.cpp

129 lines
3.5 KiB
C++
Raw 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 "threadresult.h"
#include "common.h"
#include "erroritem.h"
2010-10-31 12:16:55 +01:00
#include "errorlogger.h"
#include "errortypes.h"
#include "importproject.h"
#include <numeric>
2022-02-02 16:17:28 +01:00
#include <QFile>
#include <QMutexLocker>
2022-02-02 16:17:28 +01:00
void ThreadResult::reportOut(const std::string &outmsg, Color /*c*/)
{
2017-07-28 12:39:28 +02:00
emit log(QString::fromStdString(outmsg));
}
2017-07-28 12:39:28 +02:00
void ThreadResult::fileChecked(const QString &file)
{
std::lock_guard<std::mutex> locker(mutex);
mProgress += QFile(file).size();
2021-08-07 20:51:18 +02:00
mFilesChecked++;
2011-10-13 20:53:06 +02:00
if (mMaxProgress > 0) {
const int value = static_cast<int>(PROGRESS_MAX * mProgress / mMaxProgress);
const QString description = tr("%1 of %2 files checked").arg(mFilesChecked).arg(mTotalFiles);
2017-07-28 12:39:28 +02:00
emit progress(value, description);
}
}
2020-05-23 07:16:49 +02:00
void ThreadResult::reportErr(const ErrorMessage &msg)
{
std::lock_guard<std::mutex> locker(mutex);
2017-05-21 08:25:55 +02:00
const ErrorItem item(msg);
if (msg.severity != Severity::debug)
2017-07-28 12:39:28 +02:00
emit error(item);
else
2017-07-28 12:39:28 +02:00
emit debugError(item);
}
2017-07-28 12:39:28 +02:00
QString ThreadResult::getNextFile()
{
std::lock_guard<std::mutex> locker(mutex);
if (mFiles.isEmpty()) {
2017-08-03 12:39:31 +02:00
return QString();
}
return mFiles.takeFirst();
}
FileSettings ThreadResult::getNextFileSettings()
2016-08-18 21:58:50 +02:00
{
std::lock_guard<std::mutex> locker(mutex);
2016-08-18 21:58:50 +02:00
if (mFileSettings.empty()) {
return FileSettings();
2016-08-18 21:58:50 +02:00
}
const FileSettings fs = mFileSettings.front();
2016-08-18 21:58:50 +02:00
mFileSettings.pop_front();
return fs;
}
2017-07-28 12:39:28 +02:00
void ThreadResult::setFiles(const QStringList &files)
{
std::lock_guard<std::mutex> locker(mutex);
mFiles = files;
mProgress = 0;
mFilesChecked = 0;
mTotalFiles = files.size();
// Determine the total size of all of the files to check, so that we can
// show an accurate progress estimate
quint64 sizeOfFiles = std::accumulate(files.begin(), files.end(), 0, [](quint64 total, const QString& file) {
return total + QFile(file).size();
});
mMaxProgress = sizeOfFiles;
}
2017-07-28 12:39:28 +02:00
void ThreadResult::setProject(const ImportProject &prj)
2016-08-18 21:58:50 +02:00
{
std::lock_guard<std::mutex> locker(mutex);
2016-08-18 21:58:50 +02:00
mFiles.clear();
mFileSettings = prj.fileSettings;
mProgress = 0;
mFilesChecked = 0;
mTotalFiles = prj.fileSettings.size();
// Determine the total size of all of the files to check, so that we can
// show an accurate progress estimate
mMaxProgress = std::accumulate(prj.fileSettings.begin(), prj.fileSettings.end(), quint64{ 0 }, [](quint64 v, const FileSettings& fs) {
return v + QFile(QString::fromStdString(fs.filename)).size();
});
2016-08-18 21:58:50 +02:00
}
2017-07-28 12:39:28 +02:00
void ThreadResult::clearFiles()
{
std::lock_guard<std::mutex> locker(mutex);
mFiles.clear();
2016-08-18 21:58:50 +02:00
mFileSettings.clear();
mFilesChecked = 0;
mTotalFiles = 0;
}
2017-07-28 12:39:28 +02:00
int ThreadResult::getFileCount() const
{
std::lock_guard<std::mutex> locker(mutex);
2016-08-18 21:58:50 +02:00
return mFiles.size() + mFileSettings.size();
}