cppcheck/gui/checkstatistics.h

76 lines
1.9 KiB
C
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2021-07-04 08:08:51 +02:00
* Copyright (C) 2007-2021 Cppcheck team.
*
* 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
#include <QObject>
#include <QMap>
#include <QString>
#include "showtypes.h"
/// @addtogroup GUI
/// @{
/**
* A class for check statistics.
*/
2011-10-13 20:53:06 +02:00
class CheckStatistics : public QObject {
public:
explicit CheckStatistics(QObject *parent = nullptr);
/**
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);
/**
2021-08-07 20:51:18 +02:00
* @brief Clear the statistics.
*
*/
2017-07-28 05:23:25 +02:00
void clear();
/**
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;
/** Get tools with results */
QStringList getTools() const;
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;
};
/// @}
#endif // CHECKSTATISTICS_H