2010-11-30 22:50:40 +01:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2023-06-21 16:41:22 +02:00
|
|
|
* Copyright (C) 2007-2023 Cppcheck team.
|
2010-11-30 22:50:40 +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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CHECKSTATISTICS_H
|
|
|
|
#define CHECKSTATISTICS_H
|
|
|
|
|
2022-02-02 16:17:28 +01:00
|
|
|
#include "showtypes.h"
|
|
|
|
|
2021-04-03 21:30:50 +02:00
|
|
|
#include <QMap>
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QObject>
|
2021-04-03 21:30:50 +02:00
|
|
|
#include <QString>
|
2023-04-08 16:08:47 +02:00
|
|
|
#include <QStringList>
|
2021-04-03 21:30:50 +02:00
|
|
|
|
2023-08-31 18:28:47 +02:00
|
|
|
#include <set>
|
|
|
|
#include <string>
|
2023-10-09 10:07:20 +02:00
|
|
|
#include <utility>
|
2023-08-31 18:28:47 +02:00
|
|
|
|
2010-11-30 22:50:40 +01:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A class for check statistics.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class CheckStatistics : public QObject {
|
2010-11-30 22:50:40 +01:00
|
|
|
public:
|
2019-06-30 21:39:22 +02:00
|
|
|
explicit CheckStatistics(QObject *parent = nullptr);
|
2010-11-30 22:50:40 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Add new checked item to statistics.
|
|
|
|
*
|
|
|
|
* @param tool Tool.
|
|
|
|
* @param type Type of the item to add.
|
|
|
|
*/
|
2017-08-09 20:53:17 +02:00
|
|
|
void addItem(const QString &tool, ShowTypes::ShowType type);
|
2010-11-30 22:50:40 +01:00
|
|
|
|
2023-08-31 18:28:47 +02:00
|
|
|
/**
|
|
|
|
* @brief Add checker to statistics
|
|
|
|
*/
|
|
|
|
void addChecker(const QString& checker);
|
|
|
|
|
2010-11-30 22:50:40 +01:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Clear the statistics.
|
|
|
|
*
|
|
|
|
*/
|
2017-07-28 05:23:25 +02:00
|
|
|
void clear();
|
2010-11-30 22:50:40 +01:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Return statistics for given type.
|
|
|
|
*
|
|
|
|
* @param tool Tool.
|
|
|
|
* @param type Type for which the statistics are returned.
|
|
|
|
* @return Number of items of given type.
|
|
|
|
*/
|
2017-08-09 20:53:17 +02:00
|
|
|
unsigned getCount(const QString &tool, ShowTypes::ShowType type) const;
|
|
|
|
|
2023-08-31 18:28:47 +02:00
|
|
|
std::set<std::string> getActiveCheckers() const {
|
|
|
|
return mActiveCheckers;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getNumberOfActiveCheckers() const {
|
|
|
|
return mActiveCheckers.size();
|
|
|
|
}
|
|
|
|
|
2017-08-09 20:53:17 +02:00
|
|
|
/** Get tools with results */
|
|
|
|
QStringList getTools() const;
|
2010-11-30 22:50:40 +01:00
|
|
|
|
2023-08-31 18:28:47 +02:00
|
|
|
void setCheckersReport(QString report) {
|
|
|
|
mCheckersReport = std::move(report);
|
|
|
|
}
|
|
|
|
QString getCheckersReport() const {
|
|
|
|
return mCheckersReport;
|
|
|
|
}
|
|
|
|
|
2010-11-30 22:50:40 +01:00
|
|
|
private:
|
2017-08-09 20:53:17 +02:00
|
|
|
QMap<QString, unsigned> mStyle;
|
|
|
|
QMap<QString, unsigned> mWarning;
|
|
|
|
QMap<QString, unsigned> mPerformance;
|
|
|
|
QMap<QString, unsigned> mPortability;
|
|
|
|
QMap<QString, unsigned> mInformation;
|
|
|
|
QMap<QString, unsigned> mError;
|
2023-08-31 18:28:47 +02:00
|
|
|
std::set<std::string> mActiveCheckers;
|
|
|
|
QString mCheckersReport;
|
2010-11-30 22:50:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/// @}
|
|
|
|
|
|
|
|
#endif // CHECKSTATISTICS_H
|