2009-03-01 21:44:42 +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-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
|
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QStringList>
|
2012-02-14 21:16:11 +01:00
|
|
|
#include <QDateTime>
|
|
|
|
#include <set>
|
2009-03-01 21:44:42 +01:00
|
|
|
#include "threadresult.h"
|
2012-10-07 12:25:34 +02:00
|
|
|
|
|
|
|
class ResultsView;
|
|
|
|
class CheckThread;
|
|
|
|
class QSettings;
|
|
|
|
class Settings;
|
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
|
|
|
/**
|
|
|
|
* @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:
|
2009-06-20 18:55:23 +02:00
|
|
|
ThreadHandler(QObject *parent = 0);
|
2009-03-01 21:44:42 +01:00
|
|
|
virtual ~ThreadHandler();
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Set the number of threads to use
|
|
|
|
* @param count The number of threads to use
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
void SetThreadCount(const int count);
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Initialize the threads (connect all signals to resultsview's slots)
|
|
|
|
*
|
|
|
|
* @param view View to show error results
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
void Initialize(ResultsView *view);
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Load settings
|
|
|
|
* @param settings QSettings to load settings from
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
void LoadSettings(QSettings &settings);
|
2009-05-23 18:29:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Save settings
|
|
|
|
* @param settings QSettings to save settings to
|
|
|
|
*/
|
2012-10-27 12:10:32 +02:00
|
|
|
void SaveSettings(QSettings &settings) const;
|
2009-03-01 21:44:42 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Clear all files from cppcheck
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void ClearFiles();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Set files to check
|
|
|
|
*
|
|
|
|
* @param files files to check
|
|
|
|
*/
|
|
|
|
void SetFiles(const QStringList &files);
|
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Start the threads to check the files
|
|
|
|
*
|
|
|
|
* @param settings Settings for checking
|
2010-12-15 18:45:53 +01:00
|
|
|
* @param recheck Should we reuse the files we checked earlier
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2010-12-08 13:55:56 +01:00
|
|
|
void Check(const Settings &settings, bool recheck);
|
2009-03-01 21:44:42 +01:00
|
|
|
|
2009-06-04 16:02:35 +02:00
|
|
|
/**
|
|
|
|
* @brief Is checking running?
|
|
|
|
*
|
|
|
|
* @return true if check is running, false otherwise.
|
|
|
|
*/
|
|
|
|
bool IsChecking() const;
|
2009-03-01 21:44:42 +01:00
|
|
|
|
2009-10-13 10:19:00 +02:00
|
|
|
/**
|
|
|
|
* @brief Have we checked files already?
|
|
|
|
*
|
|
|
|
* @return true check has been previously run and recheck can be done
|
|
|
|
*/
|
|
|
|
bool HasPreviousFiles() const;
|
|
|
|
|
2010-07-07 11:25:47 +02:00
|
|
|
/**
|
|
|
|
* @brief Return count of files we checked last time.
|
|
|
|
*
|
|
|
|
* @return count of files that were checked last time.
|
|
|
|
*/
|
|
|
|
int GetPreviousFilesCount() const;
|
|
|
|
|
2010-09-01 08:12:24 +02:00
|
|
|
/**
|
|
|
|
* @brief Return the time elapsed while scanning the previous time.
|
|
|
|
*
|
|
|
|
* @return the time elapsed in milliseconds.
|
|
|
|
*/
|
|
|
|
int GetPreviousScanDuration() const;
|
|
|
|
|
2012-02-14 21:16:11 +01:00
|
|
|
/**
|
|
|
|
* @brief Get files that should be rechecked because they have been
|
|
|
|
* changed.
|
|
|
|
*/
|
|
|
|
QStringList GetReCheckFiles() const;
|
|
|
|
|
2009-03-01 21:44:42 +01:00
|
|
|
signals:
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Signal that all threads are done
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
void Done();
|
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
|
|
|
/**
|
|
|
|
* @brief Slot to stop all threads
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
void Stop();
|
2009-07-02 19:23:44 +02:00
|
|
|
protected slots:
|
|
|
|
|
|
|
|
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Slot that a single thread is done
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
void ThreadDone();
|
|
|
|
protected:
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief List of files checked last time (used when rechecking)
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
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
|
|
|
/**
|
|
|
|
* @brief Timer used for measuring scan duration
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
QTime mTime;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief The previous scan duration in milliseconds.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
int mScanDuration;
|
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Function to delete all threads
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-02 20:56:51 +01:00
|
|
|
void RemoveThreads();
|
2009-05-23 18:29:24 +02:00
|
|
|
|
2009-05-28 17:30:20 +02:00
|
|
|
/**
|
|
|
|
* @brief Thread results are stored here
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
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
|
|
|
/**
|
|
|
|
* @brief List of threads currently in use
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
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
|
|
|
/**
|
|
|
|
* @brief The amount of threads currently running
|
|
|
|
*
|
2009-05-23 18:29:24 +02:00
|
|
|
*/
|
2009-03-01 21:44:42 +01:00
|
|
|
int mRunningThreadCount;
|
|
|
|
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()
|
|
|
|
*/
|
|
|
|
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
|