2023-04-08 18:06:38 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
|
|
|
* 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 "singleexecutor.h"
|
|
|
|
|
|
|
|
#include "cppcheck.h"
|
2023-11-02 17:42:41 +01:00
|
|
|
#include "filesettings.h"
|
2023-04-08 18:06:38 +02:00
|
|
|
#include "library.h"
|
|
|
|
#include "settings.h"
|
2023-10-05 19:04:06 +02:00
|
|
|
#include "timer.h"
|
2023-04-08 18:06:38 +02:00
|
|
|
|
2023-04-28 12:41:53 +02:00
|
|
|
#include <cassert>
|
2023-04-08 18:06:38 +02:00
|
|
|
#include <list>
|
|
|
|
#include <numeric>
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
class ErrorLogger;
|
|
|
|
|
2023-08-07 18:39:57 +02:00
|
|
|
SingleExecutor::SingleExecutor(CppCheck &cppcheck, const std::map<std::string, std::size_t> &files, const Settings &settings, Suppressions &suppressions, ErrorLogger &errorLogger)
|
|
|
|
: Executor(files, settings, suppressions, errorLogger)
|
2023-04-08 18:06:38 +02:00
|
|
|
, mCppcheck(cppcheck)
|
2023-04-28 12:41:53 +02:00
|
|
|
{
|
|
|
|
assert(mSettings.jobs == 1);
|
|
|
|
}
|
2023-04-08 18:06:38 +02:00
|
|
|
|
|
|
|
// TODO: markup handling is not performed with multiple jobs
|
|
|
|
unsigned int SingleExecutor::check()
|
|
|
|
{
|
|
|
|
unsigned int result = 0;
|
|
|
|
|
|
|
|
const std::size_t totalfilesize = std::accumulate(mFiles.cbegin(), mFiles.cend(), std::size_t(0), [](std::size_t v, const std::pair<std::string, std::size_t>& f) {
|
|
|
|
return v + f.second;
|
|
|
|
});
|
|
|
|
|
|
|
|
std::size_t processedsize = 0;
|
|
|
|
unsigned int c = 0;
|
2023-05-03 17:32:28 +02:00
|
|
|
// TODO: processes either mSettings.project.fileSettings or mFiles - process/thread implementations process both
|
|
|
|
// TODO: thread/process implementations process fileSettings first
|
2023-11-01 21:08:30 +01:00
|
|
|
if (mSettings.fileSettings.empty()) {
|
2023-04-08 18:06:38 +02:00
|
|
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.cbegin(); i != mFiles.cend(); ++i) {
|
|
|
|
if (!mSettings.library.markupFile(i->first)
|
|
|
|
|| !mSettings.library.processMarkupAfterCode(i->first)) {
|
|
|
|
result += mCppcheck.check(i->first);
|
|
|
|
processedsize += i->second;
|
|
|
|
if (!mSettings.quiet)
|
|
|
|
reportStatus(c + 1, mFiles.size(), processedsize, totalfilesize);
|
2023-08-07 20:47:24 +02:00
|
|
|
// TODO: call analyseClangTidy()?
|
2023-04-08 18:06:38 +02:00
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// filesettings
|
|
|
|
// check all files of the project
|
2023-11-02 17:42:41 +01:00
|
|
|
for (const FileSettings &fs : mSettings.fileSettings) {
|
2023-05-03 17:32:28 +02:00
|
|
|
if (!mSettings.library.markupFile(fs.filename)
|
|
|
|
|| !mSettings.library.processMarkupAfterCode(fs.filename)) {
|
|
|
|
result += mCppcheck.check(fs);
|
|
|
|
++c;
|
|
|
|
if (!mSettings.quiet)
|
2023-11-01 21:08:30 +01:00
|
|
|
reportStatus(c, mSettings.fileSettings.size(), c, mSettings.fileSettings.size());
|
2023-05-03 17:32:28 +02:00
|
|
|
if (mSettings.clangTidy)
|
|
|
|
mCppcheck.analyseClangTidy(fs);
|
|
|
|
}
|
2023-04-08 18:06:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// second loop to parse all markup files which may not work until all
|
|
|
|
// c/cpp files have been parsed and checked
|
2023-05-03 17:32:28 +02:00
|
|
|
// TODO: get rid of duplicated code
|
2023-11-01 21:08:30 +01:00
|
|
|
if (mSettings.fileSettings.empty()) {
|
2023-05-03 17:32:28 +02:00
|
|
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.cbegin(); i != mFiles.cend(); ++i) {
|
|
|
|
if (mSettings.library.markupFile(i->first)
|
|
|
|
&& mSettings.library.processMarkupAfterCode(i->first)) {
|
|
|
|
result += mCppcheck.check(i->first);
|
|
|
|
processedsize += i->second;
|
|
|
|
if (!mSettings.quiet)
|
|
|
|
reportStatus(c + 1, mFiles.size(), processedsize, totalfilesize);
|
2023-08-07 20:47:24 +02:00
|
|
|
// TODO: call analyseClangTidy()?
|
2023-05-03 17:32:28 +02:00
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2023-11-02 17:42:41 +01:00
|
|
|
for (const FileSettings &fs : mSettings.fileSettings) {
|
2023-05-03 17:32:28 +02:00
|
|
|
if (mSettings.library.markupFile(fs.filename)
|
|
|
|
&& mSettings.library.processMarkupAfterCode(fs.filename)) {
|
|
|
|
result += mCppcheck.check(fs);
|
|
|
|
++c;
|
|
|
|
if (!mSettings.quiet)
|
2023-11-01 21:08:30 +01:00
|
|
|
reportStatus(c, mSettings.fileSettings.size(), c, mSettings.fileSettings.size());
|
2023-05-03 17:32:28 +02:00
|
|
|
if (mSettings.clangTidy)
|
|
|
|
mCppcheck.analyseClangTidy(fs);
|
|
|
|
}
|
2023-04-08 18:06:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mCppcheck.analyseWholeProgram())
|
|
|
|
result++;
|
|
|
|
|
2023-10-05 19:04:06 +02:00
|
|
|
if (mSettings.showtime == SHOWTIME_MODES::SHOWTIME_SUMMARY || mSettings.showtime == SHOWTIME_MODES::SHOWTIME_TOP5_SUMMARY)
|
|
|
|
CppCheck::printTimerResults(mSettings.showtime);
|
|
|
|
|
2023-04-08 18:06:38 +02:00
|
|
|
return result;
|
|
|
|
}
|