1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
/*
* Cppcheck - A tool for static C/C++ code analysis
* Copyright (C) 2007-2025 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"
#include "errorlogger.h"
#include "errortypes.h"
#include "importproject.h"
#include "path.h"
#include <algorithm>
#include <cstddef>
#include <iterator>
#include <numeric>
#include <utility>
#include <QFile>
void ThreadResult::reportOut(const std::string &outmsg, Color /*c*/)
{
emit log(QString::fromStdString(outmsg));
}
void ThreadResult::fileChecked(const QString &file)
{
std::lock_guard<std::mutex> locker(mutex);
mProgress += QFile(file).size();
mFilesChecked++;
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);
emit progress(value, description);
}
}
void ThreadResult::reportErr(const ErrorMessage &msg)
{
std::lock_guard<std::mutex> locker(mutex);
const ErrorItem item(msg);
if (msg.severity != Severity::debug)
emit error(item);
else
emit debugError(item);
}
void ThreadResult::getNextFile(const FileWithDetails*& file)
{
std::lock_guard<std::mutex> locker(mutex);
file = nullptr;
if (mItNextFile == mFiles.cend()) {
return;
}
file = &(*mItNextFile);
++mItNextFile;
}
void ThreadResult::getNextFileSettings(const FileSettings*& fs)
{
std::lock_guard<std::mutex> locker(mutex);
fs = nullptr;
if (mItNextFileSettings == mFileSettings.cend()) {
return;
}
fs = &(*mItNextFileSettings);
++mItNextFileSettings;
}
void ThreadResult::setFiles(std::list<FileWithDetails> files)
{
std::lock_guard<std::mutex> locker(mutex);
mTotalFiles = files.size();
mFiles = std::move(files);
mItNextFile = mFiles.cbegin();
mProgress = 0;
mFilesChecked = 0;
// Determine the total size of all of the files to check, so that we can
// show an accurate progress estimate
quint64 sizeOfFiles = std::accumulate(mFiles.cbegin(), mFiles.cend(), 0, [](quint64 total, const FileWithDetails& file) {
return total + file.size();
});
mMaxProgress = sizeOfFiles;
}
void ThreadResult::setProject(const ImportProject &prj)
{
std::lock_guard<std::mutex> locker(mutex);
mFiles.clear();
mItNextFile = mFiles.cbegin();
mFileSettings = prj.fileSettings;
mItNextFileSettings = mFileSettings.cbegin();
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();
});
}
void ThreadResult::clearFiles()
{
std::lock_guard<std::mutex> locker(mutex);
mFiles.clear();
mFileSettings.clear();
mItNextFileSettings = mFileSettings.cend();
mFilesChecked = 0;
mTotalFiles = 0;
}
int ThreadResult::getFileCount() const
{
std::lock_guard<std::mutex> locker(mutex);
return mFiles.size() + mFileSettings.size();
}
|