THREADING_MODEL_WIN: replace Win32 API calls with std::async, std::mutex (#3408)

This commit is contained in:
chrchr-github 2021-08-24 20:39:43 +02:00 committed by GitHub
parent 37ef29889b
commit 5868d01e80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 33 additions and 67 deletions

View File

@ -32,6 +32,8 @@
#include <cstring> #include <cstring>
#include <iostream> #include <iostream>
#include <utility> #include <utility>
#include <future>
#include <numeric>
#ifdef __SVR4 // Solaris #ifdef __SVR4 // Solaris
#include <sys/loadavg.h> #include <sys/loadavg.h>
@ -385,7 +387,8 @@ void ThreadExecutor::addFileContent(const std::string &path, const std::string &
unsigned int ThreadExecutor::check() unsigned int ThreadExecutor::check()
{ {
HANDLE *threadHandles = new HANDLE[mSettings.jobs]; std::vector<std::future<unsigned int>> threadFutures;
threadFutures.reserve(mSettings.jobs);
mItNextFile = mFiles.begin(); mItNextFile = mFiles.begin();
mItNextFileSettings = mSettings.project.fileSettings.begin(); mItNextFileSettings = mSettings.project.fileSettings.begin();
@ -398,69 +401,34 @@ unsigned int ThreadExecutor::check()
mTotalFileSize += i->second; mTotalFileSize += i->second;
} }
InitializeCriticalSection(&mFileSync);
InitializeCriticalSection(&mErrorSync);
InitializeCriticalSection(&mReportSync);
for (unsigned int i = 0; i < mSettings.jobs; ++i) { for (unsigned int i = 0; i < mSettings.jobs; ++i) {
threadHandles[i] = (HANDLE)_beginthreadex(nullptr, 0, threadProc, this, 0, nullptr); try {
if (!threadHandles[i]) { threadFutures.emplace_back(std::async(std::launch::async, threadProc, this));
std::cerr << "#### ThreadExecutor::check error, errno :" << errno << std::endl; }
catch (const std::system_error &e) {
std::cerr << "#### ThreadExecutor::check exception :" << e.what() << std::endl;
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
} }
const DWORD waitResult = WaitForMultipleObjects(mSettings.jobs, threadHandles, TRUE, INFINITE); return std::accumulate(threadFutures.begin(), threadFutures.end(), 0U, [](unsigned int v, std::future<unsigned int>& f) {
if (waitResult != WAIT_OBJECT_0) { return v + f.get();
if (waitResult == WAIT_FAILED) { });
std::cerr << "#### ThreadExecutor::check wait failed, result: " << waitResult << " error: " << GetLastError() << std::endl;
exit(EXIT_FAILURE);
} else {
std::cerr << "#### ThreadExecutor::check wait failed, result: " << waitResult << std::endl;
exit(EXIT_FAILURE);
}
} }
unsigned int result = 0; unsigned int __stdcall ThreadExecutor::threadProc(ThreadExecutor* threadExecutor)
for (unsigned int i = 0; i < mSettings.jobs; ++i) {
DWORD exitCode;
if (!GetExitCodeThread(threadHandles[i], &exitCode)) {
std::cerr << "#### ThreadExecutor::check get exit code failed, error:" << GetLastError() << std::endl;
exit(EXIT_FAILURE);
}
result += exitCode;
if (!CloseHandle(threadHandles[i])) {
std::cerr << "#### ThreadExecutor::check close handle failed, error:" << GetLastError() << std::endl;
exit(EXIT_FAILURE);
}
}
DeleteCriticalSection(&mFileSync);
DeleteCriticalSection(&mErrorSync);
DeleteCriticalSection(&mReportSync);
delete[] threadHandles;
return result;
}
unsigned int __stdcall ThreadExecutor::threadProc(void *args)
{ {
unsigned int result = 0; unsigned int result = 0;
ThreadExecutor *threadExecutor = static_cast<ThreadExecutor*>(args);
std::map<std::string, std::size_t>::const_iterator &itFile = threadExecutor->mItNextFile; std::map<std::string, std::size_t>::const_iterator &itFile = threadExecutor->mItNextFile;
std::list<ImportProject::FileSettings>::const_iterator &itFileSettings = threadExecutor->mItNextFileSettings; std::list<ImportProject::FileSettings>::const_iterator &itFileSettings = threadExecutor->mItNextFileSettings;
// guard static members of CppCheck against concurrent access // guard static members of CppCheck against concurrent access
EnterCriticalSection(&threadExecutor->mFileSync); threadExecutor->mFileSync.lock();
for (;;) { for (;;) {
if (itFile == threadExecutor->mFiles.end() && itFileSettings == threadExecutor->mSettings.project.fileSettings.end()) { if (itFile == threadExecutor->mFiles.end() && itFileSettings == threadExecutor->mSettings.project.fileSettings.end()) {
LeaveCriticalSection(&threadExecutor->mFileSync); threadExecutor->mFileSync.unlock();
break; break;
} }
@ -473,7 +441,7 @@ unsigned int __stdcall ThreadExecutor::threadProc(void *args)
fileSize = itFile->second; fileSize = itFile->second;
++itFile; ++itFile;
LeaveCriticalSection(&threadExecutor->mFileSync); threadExecutor->mFileSync.unlock();
const std::map<std::string, std::string>::const_iterator fileContent = threadExecutor->mFileContents.find(file); const std::map<std::string, std::string>::const_iterator fileContent = threadExecutor->mFileContents.find(file);
if (fileContent != threadExecutor->mFileContents.end()) { if (fileContent != threadExecutor->mFileContents.end()) {
@ -486,20 +454,19 @@ unsigned int __stdcall ThreadExecutor::threadProc(void *args)
} else { // file settings.. } else { // file settings..
const ImportProject::FileSettings &fs = *itFileSettings; const ImportProject::FileSettings &fs = *itFileSettings;
++itFileSettings; ++itFileSettings;
LeaveCriticalSection(&threadExecutor->mFileSync); threadExecutor->mFileSync.unlock();
result += fileChecker.check(fs); result += fileChecker.check(fs);
if (threadExecutor->mSettings.clangTidy) if (threadExecutor->mSettings.clangTidy)
fileChecker.analyseClangTidy(fs); fileChecker.analyseClangTidy(fs);
} }
EnterCriticalSection(&threadExecutor->mFileSync); threadExecutor->mFileSync.lock();
threadExecutor->mProcessedSize += fileSize; threadExecutor->mProcessedSize += fileSize;
threadExecutor->mProcessedFiles++; threadExecutor->mProcessedFiles++;
if (!threadExecutor->mSettings.quiet) { if (!threadExecutor->mSettings.quiet) {
EnterCriticalSection(&threadExecutor->mReportSync); std::lock_guard<std::mutex> lg(threadExecutor->mReportSync);
CppCheckExecutor::reportStatus(threadExecutor->mProcessedFiles, threadExecutor->mTotalFiles, threadExecutor->mProcessedSize, threadExecutor->mTotalFileSize); CppCheckExecutor::reportStatus(threadExecutor->mProcessedFiles, threadExecutor->mTotalFiles, threadExecutor->mProcessedSize, threadExecutor->mTotalFileSize);
LeaveCriticalSection(&threadExecutor->mReportSync);
} }
} }
return result; return result;
@ -507,11 +474,9 @@ unsigned int __stdcall ThreadExecutor::threadProc(void *args)
void ThreadExecutor::reportOut(const std::string &outmsg, Color c) void ThreadExecutor::reportOut(const std::string &outmsg, Color c)
{ {
EnterCriticalSection(&mReportSync); std::lock_guard<std::mutex> lg(mReportSync);
mErrorLogger.reportOut(outmsg, c); mErrorLogger.reportOut(outmsg, c);
LeaveCriticalSection(&mReportSync);
} }
void ThreadExecutor::reportErr(const ErrorMessage &msg) void ThreadExecutor::reportErr(const ErrorMessage &msg)
{ {
@ -537,15 +502,17 @@ void ThreadExecutor::report(const ErrorMessage &msg, MessageType msgType)
bool reportError = false; bool reportError = false;
const std::string errmsg = msg.toString(mSettings.verbose); const std::string errmsg = msg.toString(mSettings.verbose);
EnterCriticalSection(&mErrorSync); {
std::lock_guard<std::mutex> lg(mErrorSync);
if (std::find(mErrorList.begin(), mErrorList.end(), errmsg) == mErrorList.end()) { if (std::find(mErrorList.begin(), mErrorList.end(), errmsg) == mErrorList.end()) {
mErrorList.emplace_back(errmsg); mErrorList.emplace_back(errmsg);
reportError = true; reportError = true;
} }
LeaveCriticalSection(&mErrorSync); }
if (reportError) { if (reportError) {
EnterCriticalSection(&mReportSync); std::lock_guard<std::mutex> lg(mReportSync);
switch (msgType) { switch (msgType) {
case MessageType::REPORT_ERROR: case MessageType::REPORT_ERROR:
@ -555,8 +522,6 @@ void ThreadExecutor::report(const ErrorMessage &msg, MessageType msgType)
mErrorLogger.reportInfo(msg); mErrorLogger.reportInfo(msg);
break; break;
} }
LeaveCriticalSection(&mReportSync);
} }
} }

View File

@ -27,6 +27,7 @@
#include <list> #include <list>
#include <map> #include <map>
#include <string> #include <string>
#include <mutex>
#if ((defined(__GNUC__) || defined(__sun)) && !defined(__MINGW32__) && !defined(__CYGWIN__)) || defined(__CPPCHECK__) #if ((defined(__GNUC__) || defined(__sun)) && !defined(__MINGW32__) && !defined(__CYGWIN__)) || defined(__CPPCHECK__)
#define THREADING_MODEL_FORK #define THREADING_MODEL_FORK
@ -129,16 +130,16 @@ private:
std::size_t mTotalFiles; std::size_t mTotalFiles;
std::size_t mProcessedSize; std::size_t mProcessedSize;
std::size_t mTotalFileSize; std::size_t mTotalFileSize;
CRITICAL_SECTION mFileSync; std::mutex mFileSync;
std::list<std::string> mErrorList; std::list<std::string> mErrorList;
CRITICAL_SECTION mErrorSync; std::mutex mErrorSync;
CRITICAL_SECTION mReportSync; std::mutex mReportSync;
void report(const ErrorMessage &msg, MessageType msgType); void report(const ErrorMessage &msg, MessageType msgType);
static unsigned __stdcall threadProc(void*); static unsigned __stdcall threadProc(ThreadExecutor *threadExecutor);
public: public:
/** /**