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 "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-11-07 21:21:24 +01:00
|
|
|
SingleExecutor::SingleExecutor(CppCheck &cppcheck, const std::list<std::pair<std::string, std::size_t>> &files, const std::list<FileSettings>& fileSettings, const Settings &settings, Suppressions &suppressions, ErrorLogger &errorLogger)
|
2023-11-03 23:24:04 +01:00
|
|
|
: Executor(files, fileSettings, 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-11-06 19:06:22 +01:00
|
|
|
|
2023-11-07 21:21:24 +01:00
|
|
|
for (std::list<std::pair<std::string, std::size_t>>::const_iterator i = mFiles.cbegin(); i != mFiles.cend(); ++i) {
|
2023-11-09 10:17:30 +01:00
|
|
|
result += mCppcheck.check(i->first);
|
|
|
|
processedsize += i->second;
|
|
|
|
++c;
|
|
|
|
if (!mSettings.quiet)
|
|
|
|
reportStatus(c, mFiles.size(), processedsize, totalfilesize);
|
|
|
|
// TODO: call analyseClangTidy()?
|
2023-11-06 19:06:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// filesettings
|
|
|
|
// check all files of the project
|
|
|
|
for (const FileSettings &fs : mFileSettings) {
|
2023-11-09 10:17:30 +01:00
|
|
|
result += mCppcheck.check(fs);
|
|
|
|
++c;
|
|
|
|
if (!mSettings.quiet)
|
|
|
|
reportStatus(c, mFileSettings.size(), c, mFileSettings.size());
|
|
|
|
if (mSettings.clangTidy)
|
|
|
|
mCppcheck.analyseClangTidy(fs);
|
2023-04-08 18:06:38 +02:00
|
|
|
}
|
2023-11-06 19:06:22 +01:00
|
|
|
|
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;
|
|
|
|
}
|