2008-12-18 22:28:57 +01:00
|
|
|
/*
|
2009-01-21 21:04:20 +01:00
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2019-02-09 07:24:06 +01:00
|
|
|
* Copyright (C) 2007-2019 Cppcheck team.
|
2008-12-18 22:28:57 +01: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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
|
2009-07-11 16:44:04 +02:00
|
|
|
|
2009-07-13 13:35:33 +02:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @mainpage Cppcheck
|
2019-09-02 15:44:40 +02:00
|
|
|
* @version 1.89.99
|
2009-07-13 13:35:33 +02:00
|
|
|
*
|
|
|
|
* @section overview_sec Overview
|
2009-07-16 15:32:07 +02:00
|
|
|
* Cppcheck is a simple tool for static analysis of C/C++ code.
|
2009-07-13 13:35:33 +02:00
|
|
|
*
|
2013-12-27 15:07:42 +01:00
|
|
|
* When you write a checker you have access to:
|
2015-08-16 21:57:07 +02:00
|
|
|
* - %Token list - the tokenized code
|
|
|
|
* - Syntax tree - Syntax tree of each expression
|
|
|
|
* - %SymbolDatabase - Information about all types/variables/functions/etc
|
2013-12-27 15:07:42 +01:00
|
|
|
* in the current translation unit
|
2015-08-16 21:57:07 +02:00
|
|
|
* - Library - Configuration of functions/types
|
2018-08-18 17:36:40 +02:00
|
|
|
* - Value flow analysis - Data flow analysis that determine possible values for each token
|
2009-07-16 15:32:07 +02:00
|
|
|
*
|
2018-08-18 17:36:40 +02:00
|
|
|
* Use --debug-normal on the command line to see debug output for the token list
|
|
|
|
* and the syntax tree. If both --debug-normal and --verbose is used, the symbol
|
2013-12-27 15:07:42 +01:00
|
|
|
* database is also written.
|
|
|
|
*
|
2018-08-18 17:36:40 +02:00
|
|
|
* The checks are written in C++.
|
2009-07-18 09:11:02 +02:00
|
|
|
*
|
2009-07-16 15:32:07 +02:00
|
|
|
* @section detailed_overview_sec Detailed overview
|
|
|
|
* This happens when you execute cppcheck from the command line:
|
2009-07-18 09:11:02 +02:00
|
|
|
* -# CppCheckExecutor::check this function executes the Cppcheck
|
2018-08-18 17:36:40 +02:00
|
|
|
* -# CmdLineParser::parseFromArgs parse command line arguments
|
2009-07-16 15:32:07 +02:00
|
|
|
* - The Settings class is used to maintain settings
|
|
|
|
* - Use FileLister and command line arguments to get files to check
|
|
|
|
* -# ThreadExecutor create more instances of CppCheck if needed
|
|
|
|
* -# CppCheck::check is called for each file. It checks a single file
|
|
|
|
* -# Preprocess the file (through Preprocessor)
|
|
|
|
* - Comments are removed
|
|
|
|
* - Macros are expanded
|
|
|
|
* -# Tokenize the file (see Tokenizer)
|
|
|
|
* -# Run the runChecks of all check classes.
|
2014-09-01 08:47:46 +02:00
|
|
|
* -# Simplify the tokenlist (Tokenizer::simplifyTokenList2)
|
2009-07-16 15:32:07 +02:00
|
|
|
* -# Run the runSimplifiedChecks of all check classes
|
|
|
|
*
|
2018-08-18 17:36:40 +02:00
|
|
|
* When errors are found, they are reported back to the CppCheckExecutor through the ErrorLogger interface.
|
2009-07-11 16:44:04 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-10-25 21:20:42 +01:00
|
|
|
#include "cppcheckexecutor.h"
|
2008-12-18 22:28:57 +01:00
|
|
|
|
2015-11-29 10:49:10 +01:00
|
|
|
#include <iostream>
|
2014-09-24 21:35:48 +02:00
|
|
|
|
2014-01-07 20:47:04 +01:00
|
|
|
#ifdef _WIN32
|
|
|
|
#include <windows.h>
|
2017-05-27 04:33:47 +02:00
|
|
|
|
2014-06-12 19:58:43 +02:00
|
|
|
static char exename[1024] = {0};
|
2014-01-07 20:47:04 +01:00
|
|
|
#endif
|
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
/**
|
|
|
|
* Main function of cppcheck
|
|
|
|
*
|
|
|
|
* @param argc Passed to CppCheck::parseFromArgs()
|
|
|
|
* @param argv Passed to CppCheck::parseFromArgs()
|
2009-03-06 01:03:31 +01:00
|
|
|
* @return What CppCheckExecutor::check() returns.
|
2008-12-18 22:28:57 +01:00
|
|
|
*/
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2014-03-26 16:43:12 +01:00
|
|
|
// MS Visual C++ memory leak debug tracing
|
|
|
|
#if defined(_MSC_VER) && defined(_DEBUG)
|
2014-03-27 19:54:52 +01:00
|
|
|
_CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | _CRTDBG_LEAK_CHECK_DF);
|
2014-03-26 16:43:12 +01:00
|
|
|
#endif
|
|
|
|
|
2008-12-18 22:28:57 +01:00
|
|
|
CppCheckExecutor exec;
|
2014-01-07 20:47:04 +01:00
|
|
|
#ifdef _WIN32
|
2015-11-30 22:13:49 +01:00
|
|
|
GetModuleFileNameA(nullptr, exename, sizeof(exename)/sizeof(exename[0])-1);
|
2014-01-08 06:06:08 +01:00
|
|
|
argv[0] = exename;
|
2014-01-07 20:47:04 +01:00
|
|
|
#endif
|
2014-09-23 06:10:41 +02:00
|
|
|
|
2014-09-28 09:51:18 +02:00
|
|
|
#ifdef NDEBUG
|
2014-09-23 06:10:41 +02:00
|
|
|
try {
|
2014-09-28 09:51:18 +02:00
|
|
|
#endif
|
2014-09-23 06:10:41 +02:00
|
|
|
return exec.check(argc, argv);
|
2014-09-28 09:51:18 +02:00
|
|
|
#ifdef NDEBUG
|
2014-09-23 06:10:41 +02:00
|
|
|
} catch (const InternalError& e) {
|
2015-11-29 10:49:10 +01:00
|
|
|
std::cout << e.errorMessage << std::endl;
|
2014-09-23 06:10:41 +02:00
|
|
|
} catch (const std::exception& error) {
|
2015-11-29 10:49:10 +01:00
|
|
|
std::cout << error.what() << std::endl;
|
2014-09-23 06:10:41 +02:00
|
|
|
} catch (...) {
|
2015-11-29 10:49:10 +01:00
|
|
|
std::cout << "Unknown exception" << std::endl;
|
2014-09-23 06:10:41 +02:00
|
|
|
}
|
|
|
|
return EXIT_FAILURE;
|
2014-09-28 09:51:18 +02:00
|
|
|
#endif
|
2008-12-18 22:28:57 +01:00
|
|
|
}
|
2013-10-27 12:53:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
// Warn about deprecated compilers
|
2013-10-27 13:40:10 +01:00
|
|
|
#ifdef __clang__
|
2013-10-27 13:34:05 +01:00
|
|
|
# if ( __clang_major__ < 2 || ( __clang_major__ == 2 && __clang_minor__ < 9))
|
2018-04-08 23:03:57 +02:00
|
|
|
# warning "Using Clang 2.8 or earlier. Support for this version has been removed."
|
2013-10-27 13:34:05 +01:00
|
|
|
# endif
|
|
|
|
#elif defined(__GNUC__)
|
2018-04-08 23:03:57 +02:00
|
|
|
# if (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6))
|
|
|
|
# warning "Using GCC 4.5 or earlier. Support for this version has been removed."
|
2013-10-27 12:53:11 +01:00
|
|
|
# endif
|
|
|
|
#elif defined(_MSC_VER)
|
2018-04-08 23:03:57 +02:00
|
|
|
# if (_MSC_VER < 1800)
|
|
|
|
# pragma message("WARNING: Using Visual Studio 2012 or earlier. Support for this version has been removed.")
|
2013-10-27 12:53:11 +01:00
|
|
|
# endif
|
|
|
|
#endif
|