2010-04-13 19:25:08 +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-04-13 19:25:08 +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/>.
|
|
|
|
*/
|
|
|
|
|
2013-09-04 20:59:49 +02:00
|
|
|
//---------------------------------------------------------------------------
|
2010-04-17 09:23:54 +02:00
|
|
|
#ifndef settingsH
|
|
|
|
#define settingsH
|
2013-09-04 20:59:49 +02:00
|
|
|
//---------------------------------------------------------------------------
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
#include <list>
|
2012-04-06 10:49:21 +02:00
|
|
|
#include <vector>
|
2010-04-13 19:25:08 +02:00
|
|
|
#include <string>
|
2011-02-08 09:45:17 +01:00
|
|
|
#include <set>
|
2012-06-10 14:19:09 +02:00
|
|
|
#include "config.h"
|
2013-07-08 18:26:18 +02:00
|
|
|
#include "library.h"
|
2011-08-22 18:54:23 +02:00
|
|
|
#include "suppressions.h"
|
2011-10-22 09:45:48 +02:00
|
|
|
#include "standards.h"
|
2015-11-28 12:30:03 +01:00
|
|
|
#include "errorlogger.h"
|
2014-01-03 10:24:57 +01:00
|
|
|
#include "timer.h"
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/// @addtogroup Core
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief This is just a container for general settings so that we don't need
|
|
|
|
* to pass individual values to functions or constructors now or in the
|
|
|
|
* future when we might have even more detailed settings.
|
|
|
|
*/
|
2012-06-10 14:19:09 +02:00
|
|
|
class CPPCHECKLIB Settings {
|
2010-04-13 19:25:08 +02:00
|
|
|
private:
|
|
|
|
/** @brief Code to append in the checks */
|
|
|
|
std::string _append;
|
|
|
|
|
|
|
|
/** @brief enable extra checks by id */
|
2011-08-19 22:32:57 +02:00
|
|
|
std::set<std::string> _enabled;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief terminate checking */
|
2016-01-03 16:18:17 +01:00
|
|
|
bool _terminated;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
Settings();
|
|
|
|
|
|
|
|
/** @brief Is --debug given? */
|
2010-08-27 20:28:00 +02:00
|
|
|
bool debug;
|
|
|
|
|
2015-07-28 12:46:32 +02:00
|
|
|
/** @brief Is --debug-normal given? */
|
|
|
|
bool debugnormal;
|
|
|
|
|
2010-08-27 20:28:00 +02:00
|
|
|
/** @brief Is --debug-warnings given? */
|
|
|
|
bool debugwarnings;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2014-07-14 15:51:45 +02:00
|
|
|
/** @brief Is --dump given? */
|
|
|
|
bool dump;
|
|
|
|
|
2014-03-16 12:04:13 +01:00
|
|
|
/** @brief Is --exception-handling given */
|
|
|
|
bool exceptionHandling;
|
|
|
|
|
2011-04-10 12:52:59 +02:00
|
|
|
/** @brief Inconclusive checks */
|
2010-04-17 09:23:54 +02:00
|
|
|
bool inconclusive;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2015-01-07 19:26:16 +01:00
|
|
|
/** @brief Collect unmatched suppressions in one run.
|
|
|
|
* This delays the reporting until all files are checked.
|
|
|
|
* It is needed by checks that analyse the whole code base. */
|
|
|
|
bool jointSuppressionReport;
|
|
|
|
|
2011-04-10 13:23:45 +02:00
|
|
|
/**
|
2011-04-10 15:55:08 +02:00
|
|
|
* When this flag is false (default) then experimental
|
|
|
|
* heuristics and checks are disabled.
|
|
|
|
*
|
|
|
|
* It should not be possible to enable this from any client.
|
2011-04-10 13:23:45 +02:00
|
|
|
*/
|
2011-04-10 15:55:08 +02:00
|
|
|
bool experimental;
|
2011-04-10 13:23:45 +02:00
|
|
|
|
2010-04-13 19:25:08 +02:00
|
|
|
/** @brief Is --quiet given? */
|
2015-07-25 17:39:44 +02:00
|
|
|
bool quiet;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief Is --inline-suppr given? */
|
2016-01-03 16:18:17 +01:00
|
|
|
bool inlineSuppressions;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief Is --verbose given? */
|
2016-01-03 16:18:17 +01:00
|
|
|
bool verbose;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief Request termination of checking */
|
2014-11-20 14:20:09 +01:00
|
|
|
void terminate() {
|
2016-01-03 16:18:17 +01:00
|
|
|
_terminated = true;
|
2010-04-13 19:25:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief termination requested? */
|
2014-11-20 14:20:09 +01:00
|
|
|
bool terminated() const {
|
2016-01-03 16:18:17 +01:00
|
|
|
return _terminated;
|
2010-04-13 19:25:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/** @brief Force checking the files with "too many" configurations (--force). */
|
2016-01-03 16:18:17 +01:00
|
|
|
bool force;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2012-04-06 10:49:21 +02:00
|
|
|
/** @brief Use relative paths in output. */
|
2016-01-03 16:18:17 +01:00
|
|
|
bool relativePaths;
|
2012-04-06 10:49:21 +02:00
|
|
|
|
|
|
|
/** @brief Paths used as base for conversion to relative paths. */
|
2016-01-03 16:18:17 +01:00
|
|
|
std::vector<std::string> basePaths;
|
2012-04-06 10:49:21 +02:00
|
|
|
|
2010-12-15 18:45:53 +01:00
|
|
|
/** @brief write XML results (--xml) */
|
2016-01-03 16:18:17 +01:00
|
|
|
bool xml;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2010-12-15 18:45:53 +01:00
|
|
|
/** @brief XML version (--xmlver=..) */
|
2016-01-03 16:18:17 +01:00
|
|
|
int xml_version;
|
2010-12-01 21:24:17 +01:00
|
|
|
|
2010-04-13 19:25:08 +02:00
|
|
|
/** @brief How many processes/threads should do checking at the same
|
|
|
|
time. Default is 1. (-j N) */
|
2016-01-03 16:18:17 +01:00
|
|
|
unsigned int jobs;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2014-03-25 18:35:59 +01:00
|
|
|
/** @brief Load average value */
|
2016-01-03 16:18:17 +01:00
|
|
|
unsigned int loadAverage;
|
2014-03-25 18:35:59 +01:00
|
|
|
|
2010-04-13 19:25:08 +02:00
|
|
|
/** @brief If errors are found, this value is returned from main().
|
|
|
|
Default value is 0. */
|
2016-01-03 16:18:17 +01:00
|
|
|
int exitCode;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief The output format in which the errors are printed in text mode,
|
|
|
|
e.g. "{severity} {file}:{line} {message} {id}" */
|
2016-01-03 16:18:17 +01:00
|
|
|
std::string outputFormat;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief show timing information (--showtime=file|summary|top5) */
|
2016-01-03 16:18:17 +01:00
|
|
|
SHOWTIME_MODES showtime;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2016-01-02 11:48:36 +01:00
|
|
|
/** @brief Using -E for debugging purposes */
|
|
|
|
bool preprocessOnly;
|
|
|
|
|
2010-04-13 19:25:08 +02:00
|
|
|
/** @brief List of include paths, e.g. "my/includes/" which should be used
|
|
|
|
for finding include files inside source files. (-I) */
|
2016-01-03 16:18:17 +01:00
|
|
|
std::list<std::string> includePaths;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief assign append code (--append) */
|
2011-11-12 10:43:26 +01:00
|
|
|
bool append(const std::string &filename);
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/** @brief get append code (--append) */
|
2011-11-13 22:31:04 +01:00
|
|
|
const std::string &append() const;
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2011-10-22 11:11:54 +02:00
|
|
|
/** @brief Maximum number of configurations to check before bailing.
|
2011-10-05 07:37:43 +02:00
|
|
|
Default is 12. (--max-configs=N) */
|
2016-01-03 16:18:17 +01:00
|
|
|
unsigned int maxConfigs;
|
2011-10-05 07:37:43 +02:00
|
|
|
|
2010-04-13 19:25:08 +02:00
|
|
|
/**
|
|
|
|
* @brief Returns true if given id is in the list of
|
|
|
|
* enabled extra checks (--enable)
|
|
|
|
* @param str id for the extra check, e.g. "style"
|
|
|
|
* @return true if the check is enabled.
|
|
|
|
*/
|
2014-04-02 18:04:20 +02:00
|
|
|
template<typename T>
|
2014-11-20 14:20:09 +01:00
|
|
|
bool isEnabled(T&& str) const {
|
2014-04-02 18:04:20 +02:00
|
|
|
return bool(_enabled.find(str) != _enabled.end());
|
|
|
|
}
|
2010-04-13 19:25:08 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Enable extra checks by id. See isEnabled()
|
|
|
|
* @param str single id or list of id values to be enabled
|
|
|
|
* or empty string to enable all. e.g. "style,possibleError"
|
2010-07-23 13:29:16 +02:00
|
|
|
* @return error message. empty upon success
|
2010-04-13 19:25:08 +02:00
|
|
|
*/
|
2010-07-23 13:29:16 +02:00
|
|
|
std::string addEnabled(const std::string &str);
|
2010-04-13 19:25:08 +02:00
|
|
|
|
2014-09-10 17:12:16 +02:00
|
|
|
/**
|
|
|
|
* @brief Disables all severities, except from error.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
void clearEnabled() {
|
2014-09-10 17:12:16 +02:00
|
|
|
_enabled.clear();
|
|
|
|
}
|
|
|
|
|
2012-09-11 08:53:27 +02:00
|
|
|
enum Language {
|
2012-10-03 19:19:49 +02:00
|
|
|
None, C, CPP
|
2012-09-11 08:53:27 +02:00
|
|
|
};
|
|
|
|
|
2012-09-10 18:51:32 +02:00
|
|
|
/** @brief Name of the language that is enforced. Empty per default. */
|
2012-09-11 08:53:27 +02:00
|
|
|
Language enforcedLang;
|
2012-09-10 18:51:32 +02:00
|
|
|
|
2010-04-13 19:25:08 +02:00
|
|
|
/** @brief suppress message (--suppressions) */
|
|
|
|
Suppressions nomsg;
|
|
|
|
|
|
|
|
/** @brief suppress exitcode */
|
|
|
|
Suppressions nofail;
|
2010-05-16 07:38:29 +02:00
|
|
|
|
|
|
|
/** @brief defines given by the user */
|
|
|
|
std::string userDefines;
|
2010-05-21 19:35:18 +02:00
|
|
|
|
2011-11-30 20:24:01 +01:00
|
|
|
/** @brief undefines given by the user */
|
|
|
|
std::set<std::string> userUndefs;
|
|
|
|
|
2012-12-27 16:52:31 +01:00
|
|
|
/** @brief forced includes given by the user */
|
|
|
|
std::list<std::string> userIncludes;
|
|
|
|
|
2014-03-10 15:49:02 +01:00
|
|
|
/** @brief include paths excluded from checking the configuration */
|
|
|
|
std::set<std::string> configExcludePaths;
|
|
|
|
|
|
|
|
|
2012-01-02 07:42:39 +01:00
|
|
|
/** @brief --report-progress */
|
|
|
|
bool reportProgress;
|
2010-08-12 21:03:33 +02:00
|
|
|
|
2013-07-08 18:26:18 +02:00
|
|
|
/** Library (--library) */
|
|
|
|
Library library;
|
2013-07-02 07:18:19 +02:00
|
|
|
|
2010-12-12 11:56:22 +01:00
|
|
|
/** Rule */
|
2012-06-10 14:19:09 +02:00
|
|
|
class CPPCHECKLIB Rule {
|
2010-12-12 11:56:22 +01:00
|
|
|
public:
|
2012-02-18 14:44:04 +01:00
|
|
|
Rule()
|
2015-11-28 12:30:03 +01:00
|
|
|
: tokenlist("simple") // use simple tokenlist
|
|
|
|
, id("rule") // default id
|
|
|
|
, severity(Severity::style) { // default severity
|
2010-12-12 11:56:22 +01:00
|
|
|
}
|
|
|
|
|
2013-06-09 14:58:56 +02:00
|
|
|
std::string tokenlist;
|
2010-12-12 11:56:22 +01:00
|
|
|
std::string pattern;
|
|
|
|
std::string id;
|
|
|
|
std::string summary;
|
2015-11-28 12:30:03 +01:00
|
|
|
Severity::SeverityType severity;
|
2010-12-12 11:56:22 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Extra rules
|
|
|
|
*/
|
2015-10-09 21:56:19 +02:00
|
|
|
std::list<Rule> rules;
|
2011-05-02 14:58:16 +02:00
|
|
|
|
|
|
|
/** Is the 'configuration checking' wanted? */
|
2011-05-02 21:28:33 +02:00
|
|
|
bool checkConfiguration;
|
2011-08-14 09:45:27 +02:00
|
|
|
|
2013-07-08 18:26:18 +02:00
|
|
|
/** Check for incomplete info in library files? */
|
|
|
|
bool checkLibrary;
|
|
|
|
|
2011-10-22 09:45:48 +02:00
|
|
|
/** Struct contains standards settings */
|
|
|
|
Standards standards;
|
2011-10-16 12:54:58 +02:00
|
|
|
|
2016-01-05 13:16:00 +01:00
|
|
|
unsigned int char_bit; /// bits in char
|
|
|
|
unsigned int short_bit; /// bits in short
|
|
|
|
unsigned int int_bit; /// bits in int
|
|
|
|
unsigned int long_bit; /// bits in long
|
|
|
|
unsigned int long_long_bit; /// bits in long long
|
|
|
|
|
2011-09-18 01:40:52 +02:00
|
|
|
/** size of standard types */
|
|
|
|
unsigned int sizeof_bool;
|
|
|
|
unsigned int sizeof_short;
|
|
|
|
unsigned int sizeof_int;
|
|
|
|
unsigned int sizeof_long;
|
|
|
|
unsigned int sizeof_long_long;
|
|
|
|
unsigned int sizeof_float;
|
|
|
|
unsigned int sizeof_double;
|
|
|
|
unsigned int sizeof_long_double;
|
2012-11-11 16:16:17 +01:00
|
|
|
unsigned int sizeof_wchar_t;
|
2011-09-18 01:40:52 +02:00
|
|
|
unsigned int sizeof_size_t;
|
|
|
|
unsigned int sizeof_pointer;
|
|
|
|
|
2016-01-01 17:33:59 +01:00
|
|
|
char defaultSign; // unsigned:'u', signed:'s', unknown:'\0'
|
|
|
|
|
2011-10-13 20:53:06 +02:00
|
|
|
enum PlatformType {
|
2016-01-01 16:39:41 +01:00
|
|
|
Unspecified, // No platform specified
|
|
|
|
Native, // whatever system this code was compiled on
|
2011-09-24 20:51:03 +02:00
|
|
|
Win32A,
|
|
|
|
Win32W,
|
2011-09-18 01:40:52 +02:00
|
|
|
Win64,
|
|
|
|
Unix32,
|
|
|
|
Unix64
|
|
|
|
};
|
|
|
|
|
2011-09-18 19:06:54 +02:00
|
|
|
/** platform type */
|
|
|
|
PlatformType platformType;
|
|
|
|
|
2011-09-18 01:40:52 +02:00
|
|
|
/** set the platform type for predefined platforms */
|
|
|
|
bool platform(PlatformType type);
|
|
|
|
|
|
|
|
/** set the platform type for user specified platforms */
|
|
|
|
bool platformFile(const std::string &filename);
|
2013-09-26 16:20:01 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns true if platform type is Windows
|
|
|
|
* @return true if Windows platform type.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
bool isWindowsPlatform() const {
|
2013-09-26 16:20:01 +02:00
|
|
|
return platformType == Win32A ||
|
|
|
|
platformType == Win32W ||
|
|
|
|
platformType == Win64;
|
|
|
|
}
|
2014-03-10 15:49:02 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief return true if a file is to be excluded from configuration checking
|
|
|
|
* @return true for the file to be excluded.
|
|
|
|
*/
|
2014-11-20 14:20:09 +01:00
|
|
|
bool configurationExcluded(const std::string &file) const {
|
2014-03-10 15:49:02 +01:00
|
|
|
for (std::set<std::string>::const_iterator i=configExcludePaths.begin(); i!=configExcludePaths.end(); ++i) {
|
|
|
|
if (file.length()>=i->length() && file.compare(0,i->length(),*i)==0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2010-04-13 19:25:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/// @}
|
2013-09-04 20:59:49 +02:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
#endif // settingsH
|