Rename variable _files=>mFiles
This commit is contained in:
parent
122ae198b7
commit
0fa8a51815
|
@ -162,10 +162,10 @@ bool CppCheckExecutor::parseFromArgs(CppCheck *cppcheck, int argc, const char* c
|
||||||
// Execute recursiveAddFiles() to each given file parameter
|
// Execute recursiveAddFiles() to each given file parameter
|
||||||
const PathMatch matcher(ignored, caseSensitive);
|
const PathMatch matcher(ignored, caseSensitive);
|
||||||
for (const std::string &pathname : pathnames)
|
for (const std::string &pathname : pathnames)
|
||||||
FileLister::recursiveAddFiles(_files, Path::toNativeSeparators(pathname), _settings->library.markupExtensions(), matcher);
|
FileLister::recursiveAddFiles(mFiles, Path::toNativeSeparators(pathname), _settings->library.markupExtensions(), matcher);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_files.empty() && settings.project.fileSettings.empty()) {
|
if (mFiles.empty() && settings.project.fileSettings.empty()) {
|
||||||
std::cout << "cppcheck: error: could not find or open any of the paths given." << std::endl;
|
std::cout << "cppcheck: error: could not find or open any of the paths given." << std::endl;
|
||||||
if (!ignored.empty())
|
if (!ignored.empty())
|
||||||
std::cout << "cppcheck: Maybe all paths were ignored?" << std::endl;
|
std::cout << "cppcheck: Maybe all paths were ignored?" << std::endl;
|
||||||
|
@ -860,7 +860,7 @@ int CppCheckExecutor::check_internal(CppCheck& cppcheck, int /*argc*/, const cha
|
||||||
|
|
||||||
if (!settings.buildDir.empty()) {
|
if (!settings.buildDir.empty()) {
|
||||||
std::list<std::string> fileNames;
|
std::list<std::string> fileNames;
|
||||||
for (std::map<std::string, std::size_t>::const_iterator i = _files.begin(); i != _files.end(); ++i)
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.begin(); i != mFiles.end(); ++i)
|
||||||
fileNames.push_back(i->first);
|
fileNames.push_back(i->first);
|
||||||
AnalyzerInformation::writeFilesTxt(settings.buildDir, fileNames, settings.project.fileSettings);
|
AnalyzerInformation::writeFilesTxt(settings.buildDir, fileNames, settings.project.fileSettings);
|
||||||
}
|
}
|
||||||
|
@ -871,20 +871,20 @@ int CppCheckExecutor::check_internal(CppCheck& cppcheck, int /*argc*/, const cha
|
||||||
settings.jointSuppressionReport = true;
|
settings.jointSuppressionReport = true;
|
||||||
|
|
||||||
std::size_t totalfilesize = 0;
|
std::size_t totalfilesize = 0;
|
||||||
for (std::map<std::string, std::size_t>::const_iterator i = _files.begin(); i != _files.end(); ++i) {
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.begin(); i != mFiles.end(); ++i) {
|
||||||
totalfilesize += i->second;
|
totalfilesize += i->second;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::size_t processedsize = 0;
|
std::size_t processedsize = 0;
|
||||||
unsigned int c = 0;
|
unsigned int c = 0;
|
||||||
if (settings.project.fileSettings.empty()) {
|
if (settings.project.fileSettings.empty()) {
|
||||||
for (std::map<std::string, std::size_t>::const_iterator i = _files.begin(); i != _files.end(); ++i) {
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.begin(); i != mFiles.end(); ++i) {
|
||||||
if (!_settings->library.markupFile(i->first)
|
if (!_settings->library.markupFile(i->first)
|
||||||
|| !_settings->library.processMarkupAfterCode(i->first)) {
|
|| !_settings->library.processMarkupAfterCode(i->first)) {
|
||||||
returnValue += cppcheck.check(i->first);
|
returnValue += cppcheck.check(i->first);
|
||||||
processedsize += i->second;
|
processedsize += i->second;
|
||||||
if (!settings.quiet)
|
if (!settings.quiet)
|
||||||
reportStatus(c + 1, _files.size(), processedsize, totalfilesize);
|
reportStatus(c + 1, mFiles.size(), processedsize, totalfilesize);
|
||||||
c++;
|
c++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -902,12 +902,12 @@ int CppCheckExecutor::check_internal(CppCheck& cppcheck, int /*argc*/, const cha
|
||||||
|
|
||||||
// second loop to parse all markup files which may not work until all
|
// second loop to parse all markup files which may not work until all
|
||||||
// c/cpp files have been parsed and checked
|
// c/cpp files have been parsed and checked
|
||||||
for (std::map<std::string, std::size_t>::const_iterator i = _files.begin(); i != _files.end(); ++i) {
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.begin(); i != mFiles.end(); ++i) {
|
||||||
if (_settings->library.markupFile(i->first) && _settings->library.processMarkupAfterCode(i->first)) {
|
if (_settings->library.markupFile(i->first) && _settings->library.processMarkupAfterCode(i->first)) {
|
||||||
returnValue += cppcheck.check(i->first);
|
returnValue += cppcheck.check(i->first);
|
||||||
processedsize += i->second;
|
processedsize += i->second;
|
||||||
if (!settings.quiet)
|
if (!settings.quiet)
|
||||||
reportStatus(c + 1, _files.size(), processedsize, totalfilesize);
|
reportStatus(c + 1, mFiles.size(), processedsize, totalfilesize);
|
||||||
c++;
|
c++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -917,17 +917,17 @@ int CppCheckExecutor::check_internal(CppCheck& cppcheck, int /*argc*/, const cha
|
||||||
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
|
||||||
ThreadExecutor executor(_files, settings, *this);
|
ThreadExecutor executor(mFiles, settings, *this);
|
||||||
returnValue = executor.check();
|
returnValue = executor.check();
|
||||||
}
|
}
|
||||||
|
|
||||||
cppcheck.analyseWholeProgram(_settings->buildDir, _files);
|
cppcheck.analyseWholeProgram(_settings->buildDir, mFiles);
|
||||||
|
|
||||||
if (settings.isEnabled(Settings::INFORMATION) || settings.checkConfiguration) {
|
if (settings.isEnabled(Settings::INFORMATION) || settings.checkConfiguration) {
|
||||||
const bool enableUnusedFunctionCheck = cppcheck.isUnusedFunctionCheckEnabled();
|
const bool enableUnusedFunctionCheck = cppcheck.isUnusedFunctionCheckEnabled();
|
||||||
|
|
||||||
if (settings.jointSuppressionReport) {
|
if (settings.jointSuppressionReport) {
|
||||||
for (std::map<std::string, std::size_t>::const_iterator i = _files.begin(); i != _files.end(); ++i) {
|
for (std::map<std::string, std::size_t>::const_iterator i = mFiles.begin(); i != mFiles.end(); ++i) {
|
||||||
const bool err = reportUnmatchedSuppressions(settings.nomsg.getUnmatchedLocalSuppressions(i->first, enableUnusedFunctionCheck));
|
const bool err = reportUnmatchedSuppressions(settings.nomsg.getUnmatchedLocalSuppressions(i->first, enableUnusedFunctionCheck));
|
||||||
if (err && returnValue == 0)
|
if (err && returnValue == 0)
|
||||||
returnValue = settings.exitCode;
|
returnValue = settings.exitCode;
|
||||||
|
|
|
@ -170,7 +170,7 @@ private:
|
||||||
/**
|
/**
|
||||||
* Filename associated with size of file
|
* Filename associated with size of file
|
||||||
*/
|
*/
|
||||||
std::map<std::string, std::size_t> _files;
|
std::map<std::string, std::size_t> mFiles;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Report progress time
|
* Report progress time
|
||||||
|
|
Loading…
Reference in New Issue