2010-08-31 20:32:26 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2016-01-01 14:34:45 +01:00
|
|
|
* Copyright (C) 2007-2016 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CMDLINE_PARSER_H
|
|
|
|
#define CMDLINE_PARSER_H
|
|
|
|
|
|
|
|
#include <string>
|
2017-05-27 04:33:47 +02:00
|
|
|
#include <vector>
|
2010-08-31 20:32:26 +02:00
|
|
|
|
|
|
|
class Settings;
|
|
|
|
|
2010-09-06 19:50:48 +02:00
|
|
|
/// @addtogroup CLI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The command line parser.
|
|
|
|
* The command line parser parses options and parameters user gives to
|
|
|
|
* cppcheck command line.
|
|
|
|
*
|
|
|
|
* The parser takes a pointer to Settings instance which it will update
|
|
|
|
* based on options user has given. Couple of options are handled as
|
|
|
|
* class internal options.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class CmdLineParser {
|
2010-08-31 20:32:26 +02:00
|
|
|
public:
|
2010-09-06 19:50:48 +02:00
|
|
|
/**
|
|
|
|
* The constructor.
|
2010-12-15 18:45:53 +01:00
|
|
|
* @param settings Settings instance that will be modified according to
|
2010-09-06 19:50:48 +02:00
|
|
|
* options user has given.
|
|
|
|
*/
|
2011-10-31 23:40:37 +01:00
|
|
|
explicit CmdLineParser(Settings *settings);
|
2010-09-06 19:50:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parse given command line.
|
|
|
|
* @return true if command line was ok, false if there was an error.
|
|
|
|
*/
|
2010-08-31 20:32:26 +02:00
|
|
|
bool ParseFromArgs(int argc, const char* const argv[]);
|
2010-09-06 19:50:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return if user wanted to see program version.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
bool GetShowVersion() const {
|
2010-08-31 20:32:26 +02:00
|
|
|
return _showVersion;
|
|
|
|
}
|
2010-09-06 19:50:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return if user wanted to see list of error messages.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
bool GetShowErrorMessages() const {
|
2010-08-31 20:32:26 +02:00
|
|
|
return _showErrorMessages;
|
|
|
|
}
|
2010-09-06 19:50:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the path names user gave to command line.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
const std::vector<std::string>& GetPathNames() const {
|
2010-08-31 20:32:26 +02:00
|
|
|
return _pathnames;
|
|
|
|
}
|
|
|
|
|
2010-09-06 21:31:06 +02:00
|
|
|
/**
|
|
|
|
* Return if help is shown to user.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
bool GetShowHelp() const {
|
2010-09-06 21:31:06 +02:00
|
|
|
return _showHelp;
|
|
|
|
}
|
|
|
|
|
2011-01-27 09:30:53 +01:00
|
|
|
/**
|
|
|
|
* Return if we should exit after printing version, help etc.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
bool ExitAfterPrinting() const {
|
2011-01-27 09:30:53 +01:00
|
|
|
return _exitAfterPrint;
|
|
|
|
}
|
|
|
|
|
2011-01-31 14:25:51 +01:00
|
|
|
/**
|
|
|
|
* Return a list of paths user wants to ignore.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
const std::vector<std::string>& GetIgnoredPaths() const {
|
2011-01-31 14:25:51 +01:00
|
|
|
return _ignoredPaths;
|
|
|
|
}
|
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
protected:
|
2010-09-06 19:50:48 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Print help text to the console.
|
|
|
|
*/
|
2012-09-11 19:19:11 +02:00
|
|
|
static void PrintHelp();
|
2010-08-31 20:32:26 +02:00
|
|
|
|
2010-09-10 17:39:36 +02:00
|
|
|
/**
|
|
|
|
* Print message (to console?).
|
|
|
|
*/
|
2012-09-11 19:19:11 +02:00
|
|
|
static void PrintMessage(const std::string &message);
|
2015-11-20 12:01:04 +01:00
|
|
|
static void PrintMessage(const char* message);
|
2010-09-10 17:39:36 +02:00
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
private:
|
2012-05-14 20:46:23 +02:00
|
|
|
std::vector<std::string> _pathnames;
|
|
|
|
std::vector<std::string> _ignoredPaths;
|
2010-08-31 20:32:26 +02:00
|
|
|
Settings *_settings;
|
|
|
|
bool _showHelp;
|
|
|
|
bool _showVersion;
|
|
|
|
bool _showErrorMessages;
|
2011-01-27 09:30:53 +01:00
|
|
|
bool _exitAfterPrint;
|
2010-08-31 20:32:26 +02:00
|
|
|
};
|
|
|
|
|
2010-09-06 19:50:48 +02:00
|
|
|
/// @}
|
|
|
|
|
2010-08-31 20:32:26 +02:00
|
|
|
#endif // CMDLINE_PARSER_H
|