Avoid copying Settings in CppCheckExecutor
This commit is contained in:
parent
25167b58a9
commit
6643e14d3c
|
@ -33,7 +33,7 @@
|
||||||
#include "pathmatch.h"
|
#include "pathmatch.h"
|
||||||
|
|
||||||
CppCheckExecutor::CppCheckExecutor()
|
CppCheckExecutor::CppCheckExecutor()
|
||||||
: time1(0), errorlist(false)
|
: time1(0), errorlist(false), _settings(0)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -43,9 +43,9 @@ CppCheckExecutor::~CppCheckExecutor()
|
||||||
|
|
||||||
bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* const argv[])
|
bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* const argv[])
|
||||||
{
|
{
|
||||||
CmdLineParser parser(&_settings);
|
Settings& settings = cppcheck->settings();
|
||||||
|
CmdLineParser parser(&settings);
|
||||||
bool success = parser.ParseFromArgs(argc, argv);
|
bool success = parser.ParseFromArgs(argc, argv);
|
||||||
cppcheck->settings(_settings); // copy the settings
|
|
||||||
|
|
||||||
if (success) {
|
if (success) {
|
||||||
if (parser.GetShowVersion() && !parser.GetShowErrorMessages()) {
|
if (parser.GetShowVersion() && !parser.GetShowErrorMessages()) {
|
||||||
|
@ -59,9 +59,9 @@ bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* c
|
||||||
|
|
||||||
if (parser.GetShowErrorMessages()) {
|
if (parser.GetShowErrorMessages()) {
|
||||||
errorlist = true;
|
errorlist = true;
|
||||||
std::cout << ErrorLogger::ErrorMessage::getXMLHeader(_settings._xml_version);
|
std::cout << ErrorLogger::ErrorMessage::getXMLHeader(settings._xml_version);
|
||||||
cppcheck->getErrorMessages();
|
cppcheck->getErrorMessages();
|
||||||
std::cout << ErrorLogger::ErrorMessage::getXMLFooter(_settings._xml_version) << std::endl;
|
std::cout << ErrorLogger::ErrorMessage::getXMLFooter(settings._xml_version) << std::endl;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (parser.ExitAfterPrinting())
|
if (parser.ExitAfterPrinting())
|
||||||
|
@ -73,8 +73,8 @@ bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* c
|
||||||
// Check that all include paths exist
|
// Check that all include paths exist
|
||||||
{
|
{
|
||||||
std::list<std::string>::iterator iter;
|
std::list<std::string>::iterator iter;
|
||||||
for (iter = _settings._includePaths.begin();
|
for (iter = settings._includePaths.begin();
|
||||||
iter != _settings._includePaths.end();
|
iter != settings._includePaths.end();
|
||||||
) {
|
) {
|
||||||
const std::string path(Path::toNativeSeparators(*iter));
|
const std::string path(Path::toNativeSeparators(*iter));
|
||||||
if (FileLister::isDirectory(path))
|
if (FileLister::isDirectory(path))
|
||||||
|
@ -83,7 +83,7 @@ bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* c
|
||||||
// If the include path is not found, warn user and remove the
|
// If the include path is not found, warn user and remove the
|
||||||
// non-existing path from the list.
|
// non-existing path from the list.
|
||||||
std::cout << "cppcheck: warning: Couldn't find path given by -I '" << path << '\'' << std::endl;
|
std::cout << "cppcheck: warning: Couldn't find path given by -I '" << path << '\'' << std::endl;
|
||||||
iter = _settings._includePaths.erase(iter);
|
iter = settings._includePaths.erase(iter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -151,16 +151,18 @@ int CppCheckExecutor::check(int argc, const char* const argv[])
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (cppCheck.settings().reportProgress)
|
Settings& settings = cppCheck.settings();
|
||||||
|
_settings = &settings;
|
||||||
|
|
||||||
|
if (settings.reportProgress)
|
||||||
time1 = std::time(0);
|
time1 = std::time(0);
|
||||||
|
|
||||||
_settings = cppCheck.settings();
|
if (settings._xml) {
|
||||||
if (_settings._xml) {
|
reportErr(ErrorLogger::ErrorMessage::getXMLHeader(settings._xml_version));
|
||||||
reportErr(ErrorLogger::ErrorMessage::getXMLHeader(_settings._xml_version));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
unsigned int returnValue = 0;
|
unsigned int returnValue = 0;
|
||||||
if (_settings._jobs == 1) {
|
if (settings._jobs == 1) {
|
||||||
// Single process
|
// Single process
|
||||||
|
|
||||||
size_t totalfilesize = 0;
|
size_t totalfilesize = 0;
|
||||||
|
@ -173,7 +175,7 @@ int CppCheckExecutor::check(int argc, const char* const argv[])
|
||||||
for (std::map<std::string, size_t>::const_iterator i = _files.begin(); i != _files.end(); ++i) {
|
for (std::map<std::string, size_t>::const_iterator i = _files.begin(); i != _files.end(); ++i) {
|
||||||
returnValue += cppCheck.check(i->first);
|
returnValue += cppCheck.check(i->first);
|
||||||
processedsize += i->second;
|
processedsize += i->second;
|
||||||
if (!_settings._errorsOnly)
|
if (!settings._errorsOnly)
|
||||||
reportStatus(c + 1, _files.size(), processedsize, totalfilesize);
|
reportStatus(c + 1, _files.size(), processedsize, totalfilesize);
|
||||||
c++;
|
c++;
|
||||||
}
|
}
|
||||||
|
@ -183,16 +185,15 @@ int CppCheckExecutor::check(int argc, const char* const argv[])
|
||||||
std::cout << "No thread support yet implemented for this platform." << std::endl;
|
std::cout << "No thread support yet implemented for this platform." << std::endl;
|
||||||
} else {
|
} else {
|
||||||
// Multiple processes
|
// Multiple processes
|
||||||
Settings &settings = cppCheck.settings();
|
|
||||||
ThreadExecutor executor(_files, settings, *this);
|
ThreadExecutor executor(_files, settings, *this);
|
||||||
returnValue = executor.check();
|
returnValue = executor.check();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!cppCheck.settings().checkConfiguration) {
|
if (!settings.checkConfiguration) {
|
||||||
if (!_settings._errorsOnly)
|
if (!settings._errorsOnly)
|
||||||
reportUnmatchedSuppressions(cppCheck.settings().nomsg.getUnmatchedGlobalSuppressions());
|
reportUnmatchedSuppressions(settings.nomsg.getUnmatchedGlobalSuppressions());
|
||||||
|
|
||||||
if (_settings.isEnabled("missingInclude") && Preprocessor::missingIncludeFlag) {
|
if (settings.isEnabled("missingInclude") && Preprocessor::missingIncludeFlag) {
|
||||||
const std::list<ErrorLogger::ErrorMessage::FileLocation> callStack;
|
const std::list<ErrorLogger::ErrorMessage::FileLocation> callStack;
|
||||||
ErrorLogger::ErrorMessage msg(callStack,
|
ErrorLogger::ErrorMessage msg(callStack,
|
||||||
Severity::information,
|
Severity::information,
|
||||||
|
@ -208,12 +209,13 @@ int CppCheckExecutor::check(int argc, const char* const argv[])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_settings._xml) {
|
if (settings._xml) {
|
||||||
reportErr(ErrorLogger::ErrorMessage::getXMLFooter(_settings._xml_version));
|
reportErr(ErrorLogger::ErrorMessage::getXMLFooter(settings._xml_version));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
_settings = 0;
|
||||||
if (returnValue)
|
if (returnValue)
|
||||||
return _settings._exitCode;
|
return settings._exitCode;
|
||||||
else
|
else
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -253,7 +255,7 @@ void CppCheckExecutor::reportProgress(const std::string &filename, const char st
|
||||||
ostr << "progress: "
|
ostr << "progress: "
|
||||||
<< stage
|
<< stage
|
||||||
<< ' ' << int(value) << '%';
|
<< ' ' << int(value) << '%';
|
||||||
if (_settings._verbose)
|
if (_settings->_verbose)
|
||||||
ostr << " time=" << str.substr(11, 8);
|
ostr << " time=" << str.substr(11, 8);
|
||||||
|
|
||||||
// Report progress message
|
// Report progress message
|
||||||
|
@ -276,10 +278,10 @@ void CppCheckExecutor::reportStatus(size_t fileindex, size_t filecount, size_t s
|
||||||
void CppCheckExecutor::reportErr(const ErrorLogger::ErrorMessage &msg)
|
void CppCheckExecutor::reportErr(const ErrorLogger::ErrorMessage &msg)
|
||||||
{
|
{
|
||||||
if (errorlist) {
|
if (errorlist) {
|
||||||
reportOut(msg.toXML(false, _settings._xml_version));
|
reportOut(msg.toXML(false, _settings->_xml_version));
|
||||||
} else if (_settings._xml) {
|
} else if (_settings->_xml) {
|
||||||
reportErr(msg.toXML(_settings._verbose, _settings._xml_version));
|
reportErr(msg.toXML(_settings->_verbose, _settings->_xml_version));
|
||||||
} else {
|
} else {
|
||||||
reportErr(msg.toString(_settings._verbose, _settings._outputFormat));
|
reportErr(msg.toString(_settings->_verbose, _settings->_outputFormat));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,12 +20,12 @@
|
||||||
#define CPPCHECKEXECUTOR_H
|
#define CPPCHECKEXECUTOR_H
|
||||||
|
|
||||||
#include "errorlogger.h"
|
#include "errorlogger.h"
|
||||||
#include "settings.h"
|
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
#include <set>
|
#include <set>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
class CppCheck;
|
class CppCheck;
|
||||||
|
class Settings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This class works as an example of how CppCheck can be used in external
|
* This class works as an example of how CppCheck can be used in external
|
||||||
|
@ -100,13 +100,13 @@ protected:
|
||||||
*/
|
*/
|
||||||
bool parseFromArgs(CppCheck *cppcheck, int argc, const char* const argv[]);
|
bool parseFromArgs(CppCheck *cppcheck, int argc, const char* const argv[]);
|
||||||
|
|
||||||
/**
|
|
||||||
* check() will setup this in the beginning of check().
|
|
||||||
*/
|
|
||||||
Settings _settings;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pointer to current settings; set while check() is running.
|
||||||
|
*/
|
||||||
|
const Settings* _settings;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Used to filter out duplicate error messages.
|
* Used to filter out duplicate error messages.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -37,7 +37,7 @@ CheckThread::~CheckThread()
|
||||||
|
|
||||||
void CheckThread::Check(const Settings &settings)
|
void CheckThread::Check(const Settings &settings)
|
||||||
{
|
{
|
||||||
mCppcheck.settings(settings);
|
mCppcheck.settings() = settings;
|
||||||
start();
|
start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -50,11 +50,6 @@ CppCheck::~CppCheck()
|
||||||
S_timerResults.ShowResults();
|
S_timerResults.ShowResults();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CppCheck::settings(const Settings ¤tSettings)
|
|
||||||
{
|
|
||||||
_settings = currentSettings;
|
|
||||||
}
|
|
||||||
|
|
||||||
const char * CppCheck::version()
|
const char * CppCheck::version()
|
||||||
{
|
{
|
||||||
return Version;
|
return Version;
|
||||||
|
|
|
@ -83,14 +83,6 @@ public:
|
||||||
*/
|
*/
|
||||||
void checkFunctionUsage();
|
void checkFunctionUsage();
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Adjust the settings before doing the check. E.g. show only
|
|
||||||
* actual bugs or also coding style issues.
|
|
||||||
*
|
|
||||||
* @param settings New settings which will overwrite the old.
|
|
||||||
*/
|
|
||||||
void settings(const Settings &settings);
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get reference to current settings.
|
* @brief Get reference to current settings.
|
||||||
* @return a reference to current settings
|
* @return a reference to current settings
|
||||||
|
|
|
@ -112,18 +112,17 @@ private:
|
||||||
// Clear the error log
|
// Clear the error log
|
||||||
errout.str("");
|
errout.str("");
|
||||||
|
|
||||||
Settings settings;
|
CppCheck cppCheck(*this, true);
|
||||||
|
Settings& settings = cppCheck.settings();
|
||||||
settings._inlineSuppressions = true;
|
settings._inlineSuppressions = true;
|
||||||
if (!suppression.empty()) {
|
if (!suppression.empty()) {
|
||||||
std::string r = settings.nomsg.addSuppressionLine(suppression);
|
std::string r = settings.nomsg.addSuppressionLine(suppression);
|
||||||
ASSERT_EQUALS("", r);
|
ASSERT_EQUALS("", r);
|
||||||
}
|
}
|
||||||
|
|
||||||
CppCheck cppCheck(*this, true);
|
|
||||||
cppCheck.settings(settings);
|
|
||||||
cppCheck.check("test.cpp", code);
|
cppCheck.check("test.cpp", code);
|
||||||
|
|
||||||
reportUnmatchedSuppressions(cppCheck.settings().nomsg.getUnmatchedGlobalSuppressions());
|
reportUnmatchedSuppressions(settings.nomsg.getUnmatchedGlobalSuppressions());
|
||||||
}
|
}
|
||||||
|
|
||||||
void checkSuppressionThreads(const char code[], const std::string &suppression = "") {
|
void checkSuppressionThreads(const char code[], const std::string &suppression = "") {
|
||||||
|
@ -154,17 +153,16 @@ private:
|
||||||
// Clear the error log
|
// Clear the error log
|
||||||
errout.str("");
|
errout.str("");
|
||||||
|
|
||||||
Settings settings;
|
CppCheck cppCheck(*this, true);
|
||||||
|
Settings& settings = cppCheck.settings();
|
||||||
settings._inlineSuppressions = true;
|
settings._inlineSuppressions = true;
|
||||||
if (!suppression.empty())
|
if (!suppression.empty())
|
||||||
settings.nomsg.addSuppressionLine(suppression);
|
settings.nomsg.addSuppressionLine(suppression);
|
||||||
|
|
||||||
CppCheck cppCheck(*this, true);
|
|
||||||
cppCheck.settings(settings);
|
|
||||||
for (int i = 0; names[i] != NULL; ++i)
|
for (int i = 0; names[i] != NULL; ++i)
|
||||||
cppCheck.check(names[i], codes[i]);
|
cppCheck.check(names[i], codes[i]);
|
||||||
|
|
||||||
reportUnmatchedSuppressions(cppCheck.settings().nomsg.getUnmatchedGlobalSuppressions());
|
reportUnmatchedSuppressions(settings.nomsg.getUnmatchedGlobalSuppressions());
|
||||||
}
|
}
|
||||||
|
|
||||||
void runChecks(void (TestSuppressions::*check)(const char[], const std::string &)) {
|
void runChecks(void (TestSuppressions::*check)(const char[], const std::string &)) {
|
||||||
|
|
Loading…
Reference in New Issue