2010-08-31 20:32:26 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2011-01-09 20:33:36 +01:00
|
|
|
* Copyright (C) 2007-2011 Daniel Marjamäki and Cppcheck team.
|
2010-08-31 20:32:26 +02:00
|
|
|
*
|
|
|
|
* 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 <iostream>
|
|
|
|
#include <sstream>
|
|
|
|
#include <fstream>
|
|
|
|
#include <string>
|
2010-09-05 10:47:31 +02:00
|
|
|
#include <cstring>
|
2010-08-31 20:32:26 +02:00
|
|
|
#include "cppcheck.h"
|
|
|
|
#include "timer.h"
|
|
|
|
#include "settings.h"
|
2010-09-05 10:47:31 +02:00
|
|
|
#include "cmdlineparser.h"
|
2011-01-11 20:03:18 +01:00
|
|
|
#include "path.h"
|
2011-02-03 13:43:42 +01:00
|
|
|
#include "filelister.h"
|
2010-08-31 20:32:26 +02:00
|
|
|
|
2011-02-14 19:37:58 +01:00
|
|
|
#ifdef HAVE_RULES
|
2010-12-12 11:56:22 +01:00
|
|
|
// xml is used in rules
|
2011-02-10 21:35:48 +01:00
|
|
|
#include <tinyxml.h>
|
2011-02-12 08:06:59 +01:00
|
|
|
#endif
|
2010-08-31 20:32:26 +02:00
|
|
|
|
|
|
|
static void AddFilesToList(const std::string& FileList, std::vector<std::string>& PathNames)
|
|
|
|
{
|
|
|
|
// to keep things initially simple, if the file can't be opened, just be
|
|
|
|
// silent and move on
|
|
|
|
// ideas : we could also require this should be an xml file, with the filenames
|
|
|
|
// specified in an xml structure
|
|
|
|
// we could elaborate this then, to also include the I-paths, ...
|
|
|
|
// basically for everything that makes the command line very long
|
|
|
|
// xml is a bonus then, since we can easily extend it
|
|
|
|
// we need a good parser then -> suggestion : TinyXml
|
|
|
|
// drawback : creates a dependency
|
|
|
|
std::ifstream Files(FileList.c_str());
|
|
|
|
if (Files)
|
|
|
|
{
|
|
|
|
std::string FileName;
|
|
|
|
while (std::getline(Files, FileName)) // next line
|
|
|
|
{
|
|
|
|
if (!FileName.empty())
|
|
|
|
{
|
|
|
|
PathNames.push_back(FileName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CmdLineParser::CmdLineParser(Settings *settings)
|
|
|
|
: _settings(settings)
|
|
|
|
, _showHelp(false)
|
|
|
|
, _showVersion(false)
|
|
|
|
, _showErrorMessages(false)
|
2011-01-27 09:30:53 +01:00
|
|
|
, _exitAfterPrint(false)
|
2010-08-31 20:32:26 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2010-09-10 17:39:36 +02:00
|
|
|
void CmdLineParser::PrintMessage(const std::string &message)
|
|
|
|
{
|
|
|
|
std::cout << message << std::endl;
|
|
|
|
}
|
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
bool CmdLineParser::ParseFromArgs(int argc, const char* const argv[])
|
|
|
|
{
|
|
|
|
for (int i = 1; i < argc; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(argv[i], "--version") == 0)
|
|
|
|
{
|
|
|
|
_showVersion = true;
|
2011-01-27 09:30:53 +01:00
|
|
|
_exitAfterPrint = true;
|
2010-08-31 20:32:26 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
// Flag used for various purposes during debugging
|
|
|
|
else if (strcmp(argv[i], "--debug") == 0)
|
|
|
|
_settings->debug = _settings->debugwarnings = true;
|
|
|
|
|
|
|
|
// Show debug warnings
|
|
|
|
else if (strcmp(argv[i], "--debug-warnings") == 0)
|
|
|
|
_settings->debugwarnings = true;
|
|
|
|
|
|
|
|
// Inconclusive checking - keep this for compatibility but don't
|
|
|
|
// handle it
|
|
|
|
else if (strcmp(argv[i], "-a") == 0 || strcmp(argv[i], "--all") == 0)
|
|
|
|
;
|
|
|
|
|
|
|
|
// Checking coding style
|
|
|
|
else if (strcmp(argv[i], "-s") == 0 || strcmp(argv[i], "--style") == 0)
|
|
|
|
{
|
|
|
|
const std::string errmsg = _settings->addEnabled("style");
|
|
|
|
if (!errmsg.empty())
|
|
|
|
{
|
2010-09-18 16:11:46 +02:00
|
|
|
PrintMessage(errmsg);
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-12-04 13:13:44 +01:00
|
|
|
// Filter errors
|
2011-01-29 18:04:52 +01:00
|
|
|
else if (strncmp(argv[i], "--exitcode-suppressions", 23) == 0)
|
2010-12-04 13:13:44 +01:00
|
|
|
{
|
2011-01-29 18:04:52 +01:00
|
|
|
std::string filename;
|
2010-12-04 13:13:44 +01:00
|
|
|
|
2011-01-29 18:04:52 +01:00
|
|
|
// exitcode-suppressions filename.txt
|
|
|
|
// Deprecated
|
|
|
|
if (strcmp(argv[i], "--exitcode-suppressions") == 0)
|
2010-12-04 13:13:44 +01:00
|
|
|
{
|
2011-01-29 18:04:52 +01:00
|
|
|
++i;
|
|
|
|
|
|
|
|
if (i >= argc || strncmp(argv[i], "-", 1) == 0 ||
|
|
|
|
strncmp(argv[i], "--", 2) == 0)
|
|
|
|
{
|
|
|
|
PrintMessage("cppcheck: No filename specified for the --exitcode-suppressions option");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
filename = argv[i];
|
|
|
|
}
|
|
|
|
// exitcode-suppressions=filename.txt
|
|
|
|
else
|
|
|
|
{
|
|
|
|
filename = 24 + argv[i];
|
2010-12-04 13:13:44 +01:00
|
|
|
}
|
|
|
|
|
2011-01-29 18:04:52 +01:00
|
|
|
std::ifstream f(filename.c_str());
|
2010-12-04 13:13:44 +01:00
|
|
|
if (!f.is_open())
|
|
|
|
{
|
2011-01-29 18:04:52 +01:00
|
|
|
PrintMessage("cppcheck: Couldn't open the file \"" + std::string(filename) + "\"");
|
2010-12-04 13:13:44 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const std::string errmsg(_settings->nofail.parseFile(f));
|
|
|
|
if (!errmsg.empty())
|
|
|
|
{
|
|
|
|
PrintMessage(errmsg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
// Filter errors
|
2011-01-28 12:18:07 +01:00
|
|
|
else if (strncmp(argv[i], "--suppressions-list=", 20) == 0)
|
|
|
|
{
|
|
|
|
std::string filename = argv[i];
|
|
|
|
filename = filename.substr(20);
|
|
|
|
std::ifstream f(filename.c_str());
|
|
|
|
if (!f.is_open())
|
|
|
|
{
|
|
|
|
std::string message("cppcheck: Couldn't open the file \"");
|
|
|
|
message += std::string(filename);
|
|
|
|
message += "\"";
|
|
|
|
PrintMessage(message);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const std::string errmsg(_settings->nomsg.parseFile(f));
|
|
|
|
if (!errmsg.empty())
|
|
|
|
{
|
|
|
|
PrintMessage(errmsg);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Filter errors
|
|
|
|
// This is deprecated, see --supressions-list above
|
|
|
|
else if (strcmp(argv[i], "--suppressions") == 0 &&
|
|
|
|
strlen(argv[i]) == 14)
|
2010-08-31 20:32:26 +02:00
|
|
|
{
|
|
|
|
++i;
|
|
|
|
|
|
|
|
if (i >= argc)
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("cppcheck: No file specified for the --suppressions option");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ifstream f(argv[i]);
|
|
|
|
if (!f.is_open())
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
std::string message("cppcheck: Couldn't open the file \"");
|
|
|
|
message += std::string(argv[i]);
|
|
|
|
message += "\"";
|
|
|
|
PrintMessage(message);
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const std::string errmsg(_settings->nomsg.parseFile(f));
|
|
|
|
if (!errmsg.empty())
|
|
|
|
{
|
2010-09-18 16:11:46 +02:00
|
|
|
PrintMessage(errmsg);
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enables inline suppressions.
|
|
|
|
else if (strcmp(argv[i], "--inline-suppr") == 0)
|
|
|
|
_settings->_inlineSuppressions = true;
|
|
|
|
|
|
|
|
// Verbose error messages (configuration info)
|
|
|
|
else if (strcmp(argv[i], "-v") == 0 || strcmp(argv[i], "--verbose") == 0)
|
|
|
|
_settings->_verbose = true;
|
|
|
|
|
|
|
|
// Force checking of files that have "too many" configurations
|
|
|
|
else if (strcmp(argv[i], "-f") == 0 || strcmp(argv[i], "--force") == 0)
|
|
|
|
_settings->_force = true;
|
|
|
|
|
|
|
|
// Write results in results.xml
|
|
|
|
else if (strcmp(argv[i], "--xml") == 0)
|
|
|
|
_settings->_xml = true;
|
|
|
|
|
2011-02-02 13:04:50 +01:00
|
|
|
// Define the XML file version (and enable XML output)
|
|
|
|
else if (strncmp(argv[i], "--xml-version=", 14) == 0)
|
2010-12-02 17:32:51 +01:00
|
|
|
{
|
2011-02-02 13:04:50 +01:00
|
|
|
std::string numberString(argv[i]);
|
|
|
|
numberString = numberString.substr(14);
|
|
|
|
|
|
|
|
std::istringstream iss(numberString);
|
|
|
|
if (!(iss >> _settings->_xml_version))
|
|
|
|
{
|
|
|
|
PrintMessage("cppcheck: argument to '--xml-version' is not a number");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_settings->_xml_version < 0 || _settings->_xml_version > 2)
|
|
|
|
{
|
|
|
|
// We only have xml versions 1 and 2
|
|
|
|
PrintMessage("cppcheck: --xml-version can only be 1 or 2.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Enable also XML if version is set
|
2010-12-02 17:32:51 +01:00
|
|
|
_settings->_xml = true;
|
|
|
|
}
|
2010-12-01 21:24:17 +01:00
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
// Only print something when there are errors
|
|
|
|
else if (strcmp(argv[i], "-q") == 0 || strcmp(argv[i], "--quiet") == 0)
|
|
|
|
_settings->_errorsOnly = true;
|
|
|
|
|
|
|
|
// Check if there are unused functions
|
|
|
|
else if (strcmp(argv[i], "--unused-functions") == 0)
|
|
|
|
{
|
|
|
|
const std::string errmsg = _settings->addEnabled("unusedFunctions");
|
|
|
|
if (!errmsg.empty())
|
|
|
|
{
|
2010-09-18 16:11:46 +02:00
|
|
|
PrintMessage(errmsg);
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append userdefined code to checked source code
|
|
|
|
else if (strncmp(argv[i], "--append=", 9) == 0)
|
|
|
|
_settings->append(9 + argv[i]);
|
|
|
|
|
|
|
|
else if (strncmp(argv[i], "--enable=", 9) == 0)
|
|
|
|
{
|
|
|
|
const std::string errmsg = _settings->addEnabled(argv[i] + 9);
|
|
|
|
if (!errmsg.empty())
|
|
|
|
{
|
2010-09-18 16:11:46 +02:00
|
|
|
PrintMessage(errmsg);
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// --error-exitcode=1
|
|
|
|
else if (strncmp(argv[i], "--error-exitcode=", 17) == 0)
|
|
|
|
{
|
|
|
|
std::string temp = argv[i];
|
|
|
|
temp = temp.substr(17);
|
|
|
|
std::istringstream iss(temp);
|
|
|
|
if (!(iss >> _settings->_exitCode))
|
|
|
|
{
|
|
|
|
_settings->_exitCode = 0;
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("cppcheck: Argument must be an integer. Try something like '--error-exitcode=1'");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// User define
|
|
|
|
else if (strncmp(argv[i], "-D", 2) == 0)
|
|
|
|
{
|
2011-01-17 20:03:22 +01:00
|
|
|
std::string define;
|
|
|
|
|
|
|
|
// "-D define"
|
2010-09-08 17:42:28 +02:00
|
|
|
if (strcmp(argv[i], "-D") == 0)
|
2011-01-17 20:03:22 +01:00
|
|
|
{
|
|
|
|
++i;
|
2011-01-17 20:19:27 +01:00
|
|
|
if (i >= argc || strncmp(argv[i], "-", 1) == 0 ||
|
|
|
|
strncmp(argv[i], "--", 2) == 0)
|
2011-01-17 20:03:22 +01:00
|
|
|
{
|
|
|
|
PrintMessage("cppcheck: argument to '-D' is missing");
|
|
|
|
return false;
|
|
|
|
}
|
2011-01-17 20:19:27 +01:00
|
|
|
|
2011-01-17 20:03:22 +01:00
|
|
|
define = argv[i];
|
|
|
|
}
|
|
|
|
// "-Ddefine"
|
2010-09-08 17:42:28 +02:00
|
|
|
else
|
2011-01-17 20:03:22 +01:00
|
|
|
{
|
|
|
|
define = 2 + argv[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!_settings->userDefines.empty())
|
|
|
|
_settings->userDefines += ";";
|
|
|
|
_settings->userDefines += define;
|
2010-08-31 20:32:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Include paths
|
2011-01-09 09:29:38 +01:00
|
|
|
else if (strncmp(argv[i], "-I", 2) == 0)
|
2010-08-31 20:32:26 +02:00
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
|
|
|
// "-I path/"
|
|
|
|
if (strcmp(argv[i], "-I") == 0)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i >= argc)
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("cppcheck: argument to '-I' is missing");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
path = argv[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// "-Ipath/"
|
|
|
|
else
|
|
|
|
{
|
2011-01-09 09:29:38 +01:00
|
|
|
path = 2 + argv[i];
|
2010-08-31 20:32:26 +02:00
|
|
|
}
|
2011-01-11 20:03:18 +01:00
|
|
|
path = Path::fromNativeSeparators(path);
|
2010-08-31 20:32:26 +02:00
|
|
|
|
|
|
|
// If path doesn't end with / or \, add it
|
2011-01-11 20:03:18 +01:00
|
|
|
if (path[path.length()-1] != '/')
|
2010-08-31 20:32:26 +02:00
|
|
|
path += '/';
|
|
|
|
|
|
|
|
_settings->_includePaths.push_back(path);
|
|
|
|
}
|
|
|
|
|
|
|
|
// file list specified
|
|
|
|
else if (strncmp(argv[i], "--file-list=", 12) == 0)
|
|
|
|
{
|
|
|
|
// open this file and read every input file (1 file name per line)
|
|
|
|
AddFilesToList(12 + argv[i], _pathnames);
|
|
|
|
}
|
|
|
|
|
2011-01-31 14:25:51 +01:00
|
|
|
// Ignored paths
|
|
|
|
else if (strncmp(argv[i], "-i", 2) == 0)
|
|
|
|
{
|
|
|
|
std::string path;
|
|
|
|
|
|
|
|
// "-i path/"
|
|
|
|
if (strcmp(argv[i], "-i") == 0)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i >= argc)
|
|
|
|
{
|
|
|
|
PrintMessage("cppcheck: argument to '-i' is missing");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
path = argv[i];
|
|
|
|
}
|
|
|
|
|
2011-02-03 13:43:42 +01:00
|
|
|
// "-ipath/"
|
2011-01-31 14:25:51 +01:00
|
|
|
else
|
|
|
|
{
|
|
|
|
path = 2 + argv[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!path.empty())
|
|
|
|
{
|
|
|
|
path = Path::fromNativeSeparators(path);
|
|
|
|
|
2011-02-03 13:43:42 +01:00
|
|
|
// If not "known" filename extension then assume it is path
|
|
|
|
if (!FileLister::acceptFile(path))
|
|
|
|
{
|
|
|
|
// If path doesn't end with / or \, add it
|
|
|
|
if (path[path.length()-1] != '/')
|
|
|
|
path += '/';
|
|
|
|
}
|
2011-01-31 14:25:51 +01:00
|
|
|
_ignoredPaths.push_back(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
// Report progress
|
|
|
|
else if (strcmp(argv[i], "--report-progress") == 0)
|
|
|
|
{
|
|
|
|
_settings->reportProgress = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Output formatter
|
|
|
|
else if (strcmp(argv[i], "--template") == 0)
|
|
|
|
{
|
|
|
|
// "--template path/"
|
|
|
|
++i;
|
|
|
|
if (i >= argc)
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("cppcheck: argument to '--template' is missing");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
_settings->_outputFormat = argv[i];
|
|
|
|
if (_settings->_outputFormat == "gcc")
|
|
|
|
_settings->_outputFormat = "{file}:{line}: {severity}: {message}";
|
|
|
|
else if (_settings->_outputFormat == "vs")
|
|
|
|
_settings->_outputFormat = "{file}({line}): {severity}: {message}";
|
|
|
|
}
|
|
|
|
|
|
|
|
// Checking threads
|
|
|
|
else if (strcmp(argv[i], "-j") == 0 ||
|
|
|
|
strncmp(argv[i], "-j", 2) == 0)
|
|
|
|
{
|
|
|
|
std::string numberString;
|
|
|
|
|
|
|
|
// "-j 3"
|
|
|
|
if (strcmp(argv[i], "-j") == 0)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
if (i >= argc)
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("cppcheck: argument to '-j' is missing");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
numberString = argv[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
// "-j3"
|
|
|
|
else if (strncmp(argv[i], "-j", 2) == 0)
|
|
|
|
{
|
|
|
|
numberString = argv[i];
|
|
|
|
numberString = numberString.substr(2);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::istringstream iss(numberString);
|
|
|
|
if (!(iss >> _settings->_jobs))
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("cppcheck: argument to '-j' is not a number");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-11-20 21:33:46 +01:00
|
|
|
if (_settings->_jobs > 10000)
|
2010-08-31 20:32:26 +02:00
|
|
|
{
|
2010-11-21 09:06:43 +01:00
|
|
|
// This limit is here just to catch typos. If someone has
|
|
|
|
// need for more jobs, this value should be increased.
|
2010-11-20 21:33:46 +01:00
|
|
|
PrintMessage("cppcheck: argument for '-j' is allowed to be 10000 at max");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// deprecated: auto deallocated classes..
|
|
|
|
else if (strcmp(argv[i], "--auto-dealloc") == 0)
|
|
|
|
{
|
|
|
|
++i;
|
|
|
|
}
|
|
|
|
|
|
|
|
// print all possible error messages..
|
|
|
|
else if (strcmp(argv[i], "--errorlist") == 0)
|
|
|
|
{
|
|
|
|
_showErrorMessages = true;
|
2010-12-29 12:43:29 +01:00
|
|
|
_settings->_xml = true;
|
2011-01-27 09:30:53 +01:00
|
|
|
_exitAfterPrint = true;
|
2010-08-31 20:32:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// documentation..
|
|
|
|
else if (strcmp(argv[i], "--doc") == 0)
|
|
|
|
{
|
|
|
|
std::ostringstream doc;
|
|
|
|
// Get documentation..
|
|
|
|
for (std::list<Check *>::iterator it = Check::instances().begin(); it != Check::instances().end(); ++it)
|
|
|
|
{
|
|
|
|
doc << "===" << (*it)->name() << "===\n"
|
|
|
|
<< (*it)->classInfo() << "\n\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string doc2(doc.str());
|
|
|
|
while (doc2.find("\n\n\n") != std::string::npos)
|
|
|
|
doc2.erase(doc2.find("\n\n\n"), 1);
|
|
|
|
std::cout << doc2;
|
2011-01-27 09:30:53 +01:00
|
|
|
_exitAfterPrint = true;
|
2010-08-31 20:32:26 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// --test-2-pass Experimental 2-pass checking of files
|
|
|
|
// This command line flag will be removed
|
|
|
|
else if (strcmp(argv[i], "--test-2-pass") == 0)
|
|
|
|
{
|
|
|
|
_settings->test_2_pass = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// show timing information..
|
|
|
|
else if (strncmp(argv[i], "--showtime=", 11) == 0)
|
|
|
|
{
|
|
|
|
const std::string showtimeMode = argv[i] + 11;
|
|
|
|
if (showtimeMode == "file")
|
|
|
|
_settings->_showtime = SHOWTIME_FILE;
|
|
|
|
else if (showtimeMode == "summary")
|
|
|
|
_settings->_showtime = SHOWTIME_SUMMARY;
|
|
|
|
else if (showtimeMode == "top5")
|
|
|
|
_settings->_showtime = SHOWTIME_TOP5;
|
|
|
|
else
|
|
|
|
_settings->_showtime = SHOWTIME_NONE;
|
|
|
|
}
|
|
|
|
|
2011-02-14 19:37:58 +01:00
|
|
|
#ifdef HAVE_RULES
|
2010-12-12 11:56:22 +01:00
|
|
|
// Rule given at command line
|
|
|
|
else if (strncmp(argv[i], "--rule=", 7) == 0)
|
|
|
|
{
|
|
|
|
Settings::Rule rule;
|
|
|
|
rule.pattern = 7 + argv[i];
|
|
|
|
_settings->rules.push_back(rule);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Rule file
|
|
|
|
else if (strncmp(argv[i], "--rule-file=", 12) == 0)
|
|
|
|
{
|
|
|
|
TiXmlDocument doc;
|
|
|
|
if (doc.LoadFile(12+argv[i]))
|
|
|
|
{
|
2011-02-02 16:35:15 +01:00
|
|
|
TiXmlElement *node = doc.FirstChildElement();
|
2011-02-03 13:43:42 +01:00
|
|
|
for (; node && node->ValueStr() == "rule"; node = node->NextSiblingElement())
|
|
|
|
{
|
2010-12-12 11:56:22 +01:00
|
|
|
Settings::Rule rule;
|
|
|
|
|
2011-02-02 16:35:15 +01:00
|
|
|
TiXmlElement *pattern = node->FirstChildElement("pattern");
|
2010-12-12 11:56:22 +01:00
|
|
|
if (pattern)
|
|
|
|
{
|
|
|
|
rule.pattern = pattern->GetText();
|
|
|
|
}
|
|
|
|
|
2011-02-02 16:35:15 +01:00
|
|
|
TiXmlElement *message = node->FirstChildElement("message");
|
2010-12-12 11:56:22 +01:00
|
|
|
if (message)
|
|
|
|
{
|
|
|
|
TiXmlElement *severity = message->FirstChildElement("severity");
|
|
|
|
if (severity)
|
|
|
|
rule.severity = severity->GetText();
|
|
|
|
|
|
|
|
TiXmlElement *id = message->FirstChildElement("id");
|
|
|
|
if (id)
|
|
|
|
rule.id = id->GetText();
|
|
|
|
|
|
|
|
TiXmlElement *summary = message->FirstChildElement("summary");
|
|
|
|
if (summary)
|
|
|
|
rule.summary = summary->GetText();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!rule.pattern.empty())
|
|
|
|
_settings->rules.push_back(rule);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-02-12 08:06:59 +01:00
|
|
|
#endif
|
2010-12-12 11:56:22 +01:00
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
// Print help
|
|
|
|
else if (strcmp(argv[i], "-h") == 0 || strcmp(argv[i], "--help") == 0)
|
|
|
|
{
|
|
|
|
_pathnames.clear();
|
|
|
|
_showHelp = true;
|
2011-01-27 09:30:53 +01:00
|
|
|
_exitAfterPrint = true;
|
2010-08-31 20:32:26 +02:00
|
|
|
break;
|
|
|
|
}
|
2010-09-06 19:15:21 +02:00
|
|
|
|
2010-09-06 19:12:40 +02:00
|
|
|
else if (strncmp(argv[i], "-", 1) == 0 || strncmp(argv[i], "--", 2) == 0)
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
std::string message("cppcheck: error: unrecognized command line option \"");
|
|
|
|
message += argv[i];
|
|
|
|
message += "\"";
|
|
|
|
PrintMessage(message);
|
2010-09-06 19:12:40 +02:00
|
|
|
return false;
|
|
|
|
}
|
2010-09-06 19:15:21 +02:00
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
else
|
2011-01-13 22:20:58 +01:00
|
|
|
_pathnames.push_back(Path::fromNativeSeparators(argv[i]));
|
2010-08-31 20:32:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (_settings->isEnabled("unusedFunctions") && _settings->_jobs > 1)
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("unusedFunctions check can't be used with -j option, so it was disabled.");
|
2010-08-31 20:32:26 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: Make the _settings.test_2_pass thread safe
|
|
|
|
if (_settings->test_2_pass && _settings->_jobs > 1)
|
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("--test-2-pass doesn't work with -j option yet.");
|
2010-08-31 20:32:26 +02:00
|
|
|
}
|
|
|
|
|
2010-09-06 21:31:06 +02:00
|
|
|
if (argc <= 1)
|
|
|
|
_showHelp = true;
|
|
|
|
|
|
|
|
if (_showHelp)
|
|
|
|
{
|
2010-08-31 20:32:26 +02:00
|
|
|
PrintHelp();
|
2011-01-27 10:14:08 +01:00
|
|
|
return true;
|
2010-09-06 21:31:06 +02:00
|
|
|
}
|
2011-01-27 10:14:08 +01:00
|
|
|
|
|
|
|
// Print error only if we have "real" command and expect files
|
|
|
|
if (!_exitAfterPrint && _pathnames.empty())
|
2010-08-31 20:32:26 +02:00
|
|
|
{
|
2010-09-10 17:39:36 +02:00
|
|
|
PrintMessage("cppcheck: No C or C++ source files found.");
|
2010-08-31 20:32:26 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CmdLineParser::PrintHelp()
|
|
|
|
{
|
|
|
|
std::cout << "Cppcheck - A tool for static C/C++ code analysis\n"
|
|
|
|
"\n"
|
|
|
|
"Syntax:\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" cppcheck [OPTIONS] [files or paths]\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
"\n"
|
|
|
|
"If path is given instead of filename, *.cpp, *.cxx, *.cc, *.c++ and *.c files\n"
|
|
|
|
"are checked recursively from given directory.\n\n"
|
|
|
|
"Options:\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" --append=<file> This allows you to provide information about\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" functions by providing an implementation for these.\n"
|
|
|
|
" -D<ID> By default Cppcheck checks all configurations.\n"
|
|
|
|
" Use -D to limit the checking. When -D is used the\n"
|
|
|
|
" checking is limited to the given configuration.\n"
|
|
|
|
" Example: -DDEBUG=1 -D__cplusplus\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" --enable=<id> Enable additional checks. The available ids are:\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" * all - enable all checks\n"
|
|
|
|
" * style - Check coding style\n"
|
2011-01-05 21:20:21 +01:00
|
|
|
" * information - Enable information messages\n"
|
2010-09-06 19:15:21 +02:00
|
|
|
" * unusedFunction - check for unused functions\n"
|
|
|
|
" * missingInclude - check for missing includes\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" Several ids can be given if you separate them with commas.\n"
|
|
|
|
" --error-exitcode=<n> If errors are found, integer [n] is returned instead\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" of default 0. EXIT_FAILURE is returned\n"
|
|
|
|
" if arguments are not valid or if no input files are\n"
|
|
|
|
" provided. Note that your operating system can\n"
|
|
|
|
" modify this value, e.g. 256 can become 0.\n"
|
2011-01-28 07:52:18 +01:00
|
|
|
" --errorlist Print a list of all error messages in XML format.\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" --exitcode-suppressions=<file>\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" Used when certain messages should be displayed but\n"
|
|
|
|
" should not cause a non-zero exitcode.\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" --file-list=<file> Specify the files to check in a text file. One Filename per line.\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" -f, --force Force checking on files that have \"too many\"\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" configurations.\n"
|
|
|
|
" -h, --help Print this help.\n"
|
|
|
|
" -I <dir> Give include path. Give several -I parameters to give\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" several paths. First given path is checked first. If\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" paths are relative to source files, this is not needed.\n"
|
|
|
|
" -i <dir> Give path to ignore. Give several -i parameters to ignore\n"
|
2011-02-03 13:43:42 +01:00
|
|
|
" several paths. Give directory name or filename with path\n"
|
|
|
|
" as parameter. Directory name is matched to all parts of the\n"
|
2011-02-04 20:57:34 +01:00
|
|
|
" path.\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" --inline-suppr Enable inline suppressions. Use them by placing one or\n"
|
2011-01-20 20:29:06 +01:00
|
|
|
" more comments, like: // cppcheck-suppress warningId\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" on the lines before the warning to suppress.\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" -j <jobs> Start [jobs] threads to do the checking simultaneously.\n"
|
|
|
|
" -q, --quiet Only print error messages.\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" --report-progress Report progress messages while checking a file.\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" --rule=<rule> Match regular expression.\n"
|
|
|
|
" --rule-file=<file> Use given rule file. For more information, see: \n"
|
|
|
|
" https://sourceforge.net/projects/cppcheck/files/Articles/\n"
|
|
|
|
" -s, --style Deprecated, use --enable=style\n"
|
|
|
|
" --suppressions-list=<file>\n"
|
2011-01-28 12:18:07 +01:00
|
|
|
" Suppress warnings listed in the file. Filename and line\n"
|
|
|
|
" are optional in the suppression file. The format of the\n"
|
|
|
|
" single line in the suppression file is:\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" [error id]:[filename]:[line]\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" --template '<text>' Format the error messages. E.g.\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" '{file}:{line},{severity},{id},{message}' or\n"
|
|
|
|
" '{file}({line}):({severity}) {message}'\n"
|
|
|
|
" Pre-defined templates: gcc, vs\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" -v, --verbose More detailed error reports.\n"
|
|
|
|
" --version Print out version number.\n"
|
2010-08-31 20:32:26 +02:00
|
|
|
" --xml Write results in xml to error stream.\n"
|
2011-02-05 21:59:26 +01:00
|
|
|
" --xml-version=<version>\n"
|
2011-02-02 12:28:14 +01:00
|
|
|
" Select the XML file version. Currently versions 1 and 2\n"
|
|
|
|
" are available. The default version is 1."
|
2010-08-31 20:32:26 +02:00
|
|
|
"\n"
|
|
|
|
"Example usage:\n"
|
|
|
|
" # Recursively check the current folder. Print the progress on the screen and\n"
|
|
|
|
" write errors in a file:\n"
|
|
|
|
" cppcheck . 2> err.txt\n"
|
|
|
|
" # Recursively check ../myproject/ and don't print progress:\n"
|
|
|
|
" cppcheck --quiet ../myproject/\n"
|
|
|
|
" # Check only files one.cpp and two.cpp and give all information there is:\n"
|
|
|
|
" cppcheck -v -s one.cpp two.cpp\n"
|
|
|
|
" # Check f.cpp and search include files from inc1/ and inc2/:\n"
|
|
|
|
" cppcheck -I inc1/ -I inc2/ f.cpp\n"
|
|
|
|
"\n"
|
|
|
|
"For more information:\n"
|
|
|
|
" http://cppcheck.sf.net/manual.pdf\n";
|
|
|
|
}
|