2009-02-19 23:21:18 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and Cppcheck team.
|
2009-02-19 23:21:18 +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/>.
|
2009-02-19 23:21:18 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef THREADEXECUTOR_H
|
|
|
|
#define THREADEXECUTOR_H
|
|
|
|
|
2012-02-19 17:22:59 +01:00
|
|
|
#include <map>
|
2009-02-19 23:21:18 +01:00
|
|
|
#include <string>
|
2009-03-01 20:34:32 +01:00
|
|
|
#include <list>
|
2009-02-19 23:21:18 +01:00
|
|
|
#include "errorlogger.h"
|
|
|
|
|
2011-03-04 23:27:29 +01:00
|
|
|
#if (defined(__GNUC__) || defined(__sun)) && !defined(__MINGW32__)
|
|
|
|
#define THREADING_MODEL_FORK
|
2012-12-12 19:09:37 +01:00
|
|
|
#elif defined(_WIN32)
|
|
|
|
#define THREADING_MODEL_WIN
|
|
|
|
#include <Windows.h>
|
2011-03-04 23:27:29 +01:00
|
|
|
#endif
|
|
|
|
|
2012-04-26 15:29:39 +02:00
|
|
|
class Settings;
|
|
|
|
|
2011-02-01 07:33:02 +01:00
|
|
|
/// @addtogroup CLI
|
|
|
|
/// @{
|
|
|
|
|
2009-02-19 23:21:18 +01:00
|
|
|
/**
|
|
|
|
* This class will take a list of filenames and settings and check then
|
|
|
|
* all files using threads.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ThreadExecutor : public ErrorLogger {
|
2009-02-19 23:21:18 +01:00
|
|
|
public:
|
2012-07-08 23:39:46 +02:00
|
|
|
ThreadExecutor(const std::map<std::string, std::size_t> &files, Settings &settings, ErrorLogger &_errorLogger);
|
2009-02-19 23:21:18 +01:00
|
|
|
virtual ~ThreadExecutor();
|
|
|
|
unsigned int check();
|
2012-12-12 19:09:37 +01:00
|
|
|
|
2009-02-19 23:21:18 +01:00
|
|
|
virtual void reportOut(const std::string &outmsg);
|
|
|
|
virtual void reportErr(const ErrorLogger::ErrorMessage &msg);
|
2012-06-18 23:15:48 +02:00
|
|
|
virtual void reportInfo(const ErrorLogger::ErrorMessage &msg);
|
2011-04-27 22:27:02 +02:00
|
|
|
|
2010-06-14 22:18:09 +02:00
|
|
|
/**
|
|
|
|
* @brief Add content to a file, to be used in unit testing.
|
|
|
|
*
|
|
|
|
* @param path File name (used as a key to link with real file).
|
|
|
|
* @param content If the file would be a real file, this should be
|
|
|
|
* the content of the file.
|
|
|
|
*/
|
|
|
|
void addFileContent(const std::string &path, const std::string &content);
|
2009-02-19 23:21:18 +01:00
|
|
|
|
2009-02-20 20:40:42 +01:00
|
|
|
private:
|
2012-07-08 23:39:46 +02:00
|
|
|
const std::map<std::string, std::size_t> &_files;
|
2011-02-16 02:12:15 +01:00
|
|
|
Settings &_settings;
|
2009-02-19 23:21:18 +01:00
|
|
|
ErrorLogger &_errorLogger;
|
|
|
|
unsigned int _fileCount;
|
2009-02-20 20:40:42 +01:00
|
|
|
|
2012-12-12 19:09:37 +01:00
|
|
|
#if defined(THREADING_MODEL_FORK)
|
2012-02-19 17:22:59 +01:00
|
|
|
|
2010-06-14 22:18:09 +02:00
|
|
|
/** @brief Key is file name, and value is the content of the file */
|
|
|
|
std::map<std::string, std::string> _fileContents;
|
2009-02-20 20:40:42 +01:00
|
|
|
private:
|
2012-10-19 19:26:42 +02:00
|
|
|
enum PipeSignal {REPORT_OUT='1',REPORT_ERROR='2', REPORT_INFO='3', CHILD_END='4'};
|
2012-01-03 21:21:17 +01:00
|
|
|
|
2010-07-07 14:42:39 +02:00
|
|
|
/**
|
|
|
|
* Read from the pipe, parse and handle what ever is in there.
|
|
|
|
*@return -1 in case of error
|
|
|
|
* 0 if there is nothing in the pipe to be read
|
|
|
|
* 1 if we did read something
|
|
|
|
*/
|
2011-03-05 04:43:22 +01:00
|
|
|
int handleRead(int rpipe, unsigned int &result);
|
2012-01-03 21:21:17 +01:00
|
|
|
void writeToPipe(PipeSignal type, const std::string &data);
|
2011-03-05 04:43:22 +01:00
|
|
|
/**
|
|
|
|
* Write end of status pipe, different for each child.
|
|
|
|
* Not used in master process.
|
|
|
|
*/
|
2009-03-01 20:34:32 +01:00
|
|
|
std::list<std::string> _errorList;
|
2012-05-14 20:46:23 +02:00
|
|
|
int _wpipe;
|
2012-01-03 21:21:17 +01:00
|
|
|
|
2012-12-12 19:09:37 +01:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @return true if support for threads exist.
|
|
|
|
*/
|
|
|
|
static bool isEnabled() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
#elif defined(THREADING_MODEL_WIN)
|
|
|
|
|
|
|
|
private:
|
|
|
|
enum MessageType {REPORT_ERROR, REPORT_INFO};
|
|
|
|
|
|
|
|
std::map<std::string, std::string> _fileContents;
|
|
|
|
std::map<std::string, std::size_t>::const_iterator _itNextFile;
|
2012-12-13 18:47:13 +01:00
|
|
|
unsigned int _processedFiles;
|
|
|
|
unsigned int _totalFiles;
|
|
|
|
size_t _processedSize;
|
|
|
|
size_t _totalFileSize;
|
2012-12-12 19:09:37 +01:00
|
|
|
CRITICAL_SECTION _fileSync;
|
|
|
|
|
|
|
|
std::list<std::string> _errorList;
|
|
|
|
CRITICAL_SECTION _errorSync;
|
|
|
|
|
|
|
|
CRITICAL_SECTION _reportSync;
|
|
|
|
|
|
|
|
void report(const ErrorLogger::ErrorMessage &msg, MessageType msgType);
|
|
|
|
|
|
|
|
static unsigned __stdcall threadProc(void*);
|
|
|
|
|
2009-02-20 20:40:42 +01:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
* @return true if support for threads exist.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
static bool isEnabled() {
|
2009-02-20 20:40:42 +01:00
|
|
|
return true;
|
|
|
|
}
|
2009-02-19 23:21:18 +01:00
|
|
|
#else
|
|
|
|
public:
|
2009-02-20 20:40:42 +01:00
|
|
|
/**
|
|
|
|
* @return true if support for threads exist.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
static bool isEnabled() {
|
2009-02-20 20:40:42 +01:00
|
|
|
return false;
|
2009-02-19 23:21:18 +01:00
|
|
|
}
|
|
|
|
#endif
|
2009-02-20 20:40:42 +01:00
|
|
|
|
2009-09-13 09:03:48 +02:00
|
|
|
private:
|
|
|
|
/** disabled copy constructor */
|
|
|
|
ThreadExecutor(const ThreadExecutor &);
|
|
|
|
|
|
|
|
/** disabled assignment operator */
|
|
|
|
void operator=(const ThreadExecutor &);
|
2009-02-19 23:21:18 +01:00
|
|
|
};
|
|
|
|
|
2011-02-01 07:33:02 +01:00
|
|
|
/// @}
|
|
|
|
|
2009-02-19 23:21:18 +01:00
|
|
|
#endif // THREADEXECUTOR_H
|