2009-03-01 21:44:42 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 Cppcheck team.
|
2009-03-01 21:44:42 +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-03-01 21:44:42 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef THREADHANDLER_H
|
|
|
|
#define THREADHANDLER_H
|
|
|
|
|
2022-02-02 16:17:28 +01:00
|
|
|
#include "suppressions.h"
|
|
|
|
#include "threadresult.h"
|
|
|
|
|
|
|
|
#include <set>
|
|
|
|
|
2012-02-14 21:16:11 +01:00
|
|
|
#include <QDateTime>
|
2022-02-01 17:26:16 +01:00
|
|
|
#include <QElapsedTimer>
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QStringList>
|
2012-10-07 12:25:34 +02:00
|
|
|
|
|
|
|
class ResultsView;
|
|
|
|
class CheckThread;
|
|
|
|
class QSettings;
|
|
|
|
class Settings;
|
2020-05-10 16:45:45 +02:00
|
|
|
class ImportProject;
|
2022-04-13 12:24:00 +02:00
|
|
|
class ErrorItem;
|
2009-03-01 21:44:42 +01:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief This class handles creating threadresult and starting threads
|
|
|
|
*
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class ThreadHandler : public QObject {
|
2009-03-01 21:44:42 +01:00
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2019-06-30 21:39:22 +02:00
|
|
|
explicit ThreadHandler(QObject *parent = nullptr);
|
2022-03-13 20:07:58 +01:00
|
|
|
~ThreadHandler() override;
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set the number of threads to use
|
|
|
|
* @param count The number of threads to use
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void setThreadCount(const int count);
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Initialize the threads (connect all signals to resultsview's slots)
|
|
|
|
*
|
|
|
|
* @param view View to show error results
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void initialize(ResultsView *view);
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Load settings
|
|
|
|
* @param settings QSettings to load settings from
|
|
|
|
*/
|
2021-04-18 21:42:27 +02:00
|
|
|
void loadSettings(const QSettings &settings);
|
2009-05-23 18:29:24 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Save settings
|
|
|
|
* @param settings QSettings to save settings to
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void saveSettings(QSettings &settings) const;
|
2009-03-01 21:44:42 +01:00
|
|
|
|
2020-05-17 16:50:02 +02:00
|
|
|
void setAddonsAndTools(const QStringList &addonsAndTools) {
|
2017-09-22 15:41:27 +02:00
|
|
|
mAddonsAndTools = addonsAndTools;
|
2017-08-03 12:30:28 +02:00
|
|
|
}
|
|
|
|
|
2018-04-09 06:43:48 +02:00
|
|
|
void setSuppressions(const QList<Suppressions::Suppression> &s) {
|
2017-08-11 07:45:29 +02:00
|
|
|
mSuppressions = s;
|
|
|
|
}
|
|
|
|
|
2017-08-12 12:04:42 +02:00
|
|
|
void setClangIncludePaths(const QStringList &s) {
|
|
|
|
mClangIncludePaths = s;
|
|
|
|
}
|
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Clear all files from cppcheck
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void clearFiles();
|
2009-03-01 21:44:42 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set files to check
|
|
|
|
*
|
|
|
|
* @param files files to check
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void setFiles(const QStringList &files);
|
2009-03-01 21:44:42 +01:00
|
|
|
|
2016-08-18 21:58:50 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set project to check
|
|
|
|
*
|
|
|
|
* @param prj project to check
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void setProject(const ImportProject &prj);
|
2016-08-18 21:58:50 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Start the threads to check the files
|
|
|
|
*
|
|
|
|
* @param settings Settings for checking
|
|
|
|
*/
|
2017-08-03 22:12:12 +02:00
|
|
|
void check(const Settings &settings);
|
2015-12-23 10:28:07 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set files to check
|
|
|
|
*
|
|
|
|
* @param all true if all files, false if modified files
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void setCheckFiles(bool all);
|
2015-12-23 10:28:07 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set selected files to check
|
|
|
|
*
|
|
|
|
* @param files list of files to be checked
|
|
|
|
*/
|
2020-03-07 11:33:08 +01:00
|
|
|
void setCheckFiles(const QStringList& files);
|
2009-03-01 21:44:42 +01:00
|
|
|
|
2009-06-04 16:02:35 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Is checking running?
|
|
|
|
*
|
|
|
|
* @return true if check is running, false otherwise.
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
bool isChecking() const;
|
2009-03-01 21:44:42 +01:00
|
|
|
|
2009-10-13 10:19:00 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Have we checked files already?
|
|
|
|
*
|
|
|
|
* @return true check has been previously run and recheck can be done
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
bool hasPreviousFiles() const;
|
2009-10-13 10:19:00 +02:00
|
|
|
|
2010-07-07 11:25:47 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return count of files we checked last time.
|
|
|
|
*
|
|
|
|
* @return count of files that were checked last time.
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
int getPreviousFilesCount() const;
|
2010-07-07 11:25:47 +02:00
|
|
|
|
2010-09-01 08:12:24 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return the time elapsed while scanning the previous time.
|
|
|
|
*
|
|
|
|
* @return the time elapsed in milliseconds.
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
int getPreviousScanDuration() const;
|
2010-09-01 08:12:24 +02:00
|
|
|
|
2012-02-14 21:16:11 +01:00
|
|
|
/**
|
|
|
|
* @brief Get files that should be rechecked because they have been
|
|
|
|
* changed.
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
QStringList getReCheckFiles(bool all) const;
|
2012-02-14 21:16:11 +01:00
|
|
|
|
2015-12-23 10:28:07 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Get start time of last check
|
|
|
|
*
|
|
|
|
* @return start time of last check
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
QDateTime getCheckStartTime() const;
|
2015-12-23 10:28:07 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Set start time of check
|
|
|
|
*
|
|
|
|
* @param checkStartTime saved start time of the last check
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void setCheckStartTime(QDateTime checkStartTime);
|
2015-12-23 10:28:07 +01:00
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
signals:
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Signal that all threads are done
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void done();
|
2009-07-02 19:23:44 +02:00
|
|
|
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-08-19 22:55:13 +02:00
|
|
|
void log(const QString &msg);
|
|
|
|
|
2022-09-16 18:59:15 +02:00
|
|
|
// NOLINTNEXTLINE(readability-inconsistent-declaration-parameter-name) - caused by generated MOC code
|
2017-08-19 22:55:13 +02:00
|
|
|
void debugError(const ErrorItem &item);
|
|
|
|
|
2009-07-02 19:23:44 +02:00
|
|
|
public slots:
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot to stop all threads
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void stop();
|
2009-07-02 19:23:44 +02:00
|
|
|
protected slots:
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Slot that a single thread is done
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
void threadDone();
|
2009-03-01 21:44:42 +01:00
|
|
|
protected:
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief List of files checked last time (used when rechecking)
|
|
|
|
*
|
|
|
|
*/
|
2009-03-22 16:42:00 +01:00
|
|
|
QStringList mLastFiles;
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2012-02-14 21:16:11 +01:00
|
|
|
/** @brief date and time when current checking started */
|
|
|
|
QDateTime mCheckStartTime;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief when was the files checked the last time (used when rechecking)
|
|
|
|
*/
|
|
|
|
QDateTime mLastCheckTime;
|
|
|
|
|
2010-09-01 08:12:24 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Timer used for measuring scan duration
|
|
|
|
*
|
|
|
|
*/
|
2022-02-01 17:26:16 +01:00
|
|
|
QElapsedTimer mTimer;
|
2010-09-01 08:12:24 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief The previous scan duration in milliseconds.
|
|
|
|
*
|
|
|
|
*/
|
2010-09-01 08:12:24 +02:00
|
|
|
int mScanDuration;
|
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Function to delete all threads
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 13:13:10 +02:00
|
|
|
void removeThreads();
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Thread results are stored here
|
|
|
|
*
|
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
ThreadResult mResults;
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief List of threads currently in use
|
|
|
|
*
|
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
QList<CheckThread *> mThreads;
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief The amount of threads currently running
|
|
|
|
*
|
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
int mRunningThreadCount;
|
2016-11-19 20:38:50 +01:00
|
|
|
|
|
|
|
bool mAnalyseWholeProgram;
|
2017-08-03 12:30:28 +02:00
|
|
|
|
2017-09-22 15:41:27 +02:00
|
|
|
QStringList mAddonsAndTools;
|
2018-04-09 06:43:48 +02:00
|
|
|
QList<Suppressions::Suppression> mSuppressions;
|
2017-08-12 12:04:42 +02:00
|
|
|
QStringList mClangIncludePaths;
|
2009-03-01 21:44:42 +01:00
|
|
|
private:
|
2012-02-14 21:16:11 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Check if a file needs to be rechecked. Recursively checks
|
|
|
|
* included headers. Used by GetReCheckFiles()
|
|
|
|
*/
|
2017-07-28 12:39:28 +02:00
|
|
|
bool needsReCheck(const QString &filename, std::set<QString> &modified, std::set<QString> &unmodified) const;
|
2009-03-01 21:44:42 +01:00
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-03-01 21:44:42 +01:00
|
|
|
#endif // THREADHANDLER_H
|