2010-11-30 22:50:40 +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.
|
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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "checkstatistics.h"
|
|
|
|
|
2021-04-03 21:30:50 +02:00
|
|
|
#include <QDebug>
|
|
|
|
|
2010-11-30 22:50:40 +01:00
|
|
|
CheckStatistics::CheckStatistics(QObject *parent)
|
|
|
|
: QObject(parent)
|
|
|
|
{
|
2017-07-28 05:23:25 +02:00
|
|
|
clear();
|
2010-11-30 22:50:40 +01:00
|
|
|
}
|
|
|
|
|
2017-08-10 00:18:04 +02:00
|
|
|
static void addItem(QMap<QString,unsigned> &m, const QString &key)
|
|
|
|
{
|
2017-08-09 20:53:17 +02:00
|
|
|
if (m.contains(key))
|
|
|
|
m[key]++;
|
|
|
|
else
|
|
|
|
m[key] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CheckStatistics::addItem(const QString &tool, ShowTypes::ShowType type)
|
2010-11-30 22:50:40 +01:00
|
|
|
{
|
2017-08-09 20:53:17 +02:00
|
|
|
const QString lower = tool.toLower();
|
2011-10-13 20:53:06 +02:00
|
|
|
switch (type) {
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowStyle:
|
2017-08-09 20:53:17 +02:00
|
|
|
::addItem(mStyle, tool);
|
2010-11-30 22:50:40 +01:00
|
|
|
break;
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowWarnings:
|
2017-08-09 20:53:17 +02:00
|
|
|
::addItem(mWarning, tool);
|
2010-11-30 22:50:40 +01:00
|
|
|
break;
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowPerformance:
|
2017-08-09 20:53:17 +02:00
|
|
|
::addItem(mPerformance, tool);
|
2010-11-30 22:50:40 +01:00
|
|
|
break;
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowPortability:
|
2017-08-09 20:53:17 +02:00
|
|
|
::addItem(mPortability, tool);
|
2010-12-13 10:25:45 +01:00
|
|
|
break;
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowErrors:
|
2017-08-09 20:53:17 +02:00
|
|
|
::addItem(mError, tool);
|
2010-11-30 22:50:40 +01:00
|
|
|
break;
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowInformation:
|
2017-08-09 20:53:17 +02:00
|
|
|
::addItem(mInformation, tool);
|
2010-12-26 11:35:31 +01:00
|
|
|
break;
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowNone:
|
2010-11-30 22:50:40 +01:00
|
|
|
default:
|
|
|
|
qDebug() << "Unknown error type - not added to statistics.";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 05:23:25 +02:00
|
|
|
void CheckStatistics::clear()
|
2010-11-30 22:50:40 +01:00
|
|
|
{
|
2017-08-09 20:53:17 +02:00
|
|
|
mStyle.clear();
|
|
|
|
mWarning.clear();
|
|
|
|
mPerformance.clear();
|
|
|
|
mPortability.clear();
|
|
|
|
mInformation.clear();
|
|
|
|
mError.clear();
|
2010-11-30 22:50:40 +01:00
|
|
|
}
|
|
|
|
|
2017-08-09 20:53:17 +02:00
|
|
|
unsigned CheckStatistics::getCount(const QString &tool, ShowTypes::ShowType type) const
|
2010-11-30 22:50:40 +01:00
|
|
|
{
|
2017-08-09 20:53:17 +02:00
|
|
|
const QString lower = tool.toLower();
|
2011-10-13 20:53:06 +02:00
|
|
|
switch (type) {
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowStyle:
|
2017-08-09 20:53:17 +02:00
|
|
|
return mStyle.value(lower,0);
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowWarnings:
|
2017-08-09 20:53:17 +02:00
|
|
|
return mWarning.value(lower,0);
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowPerformance:
|
2017-08-09 20:53:17 +02:00
|
|
|
return mPerformance.value(lower,0);
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowPortability:
|
2017-08-09 20:53:17 +02:00
|
|
|
return mPortability.value(lower,0);
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowErrors:
|
2017-08-09 20:53:17 +02:00
|
|
|
return mError.value(lower,0);
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowInformation:
|
2017-08-09 20:53:17 +02:00
|
|
|
return mInformation.value(lower,0);
|
2011-10-11 21:14:15 +02:00
|
|
|
case ShowTypes::ShowNone:
|
2010-11-30 22:50:40 +01:00
|
|
|
default:
|
2010-12-15 18:45:53 +01:00
|
|
|
qDebug() << "Unknown error type - returning zero statistics.";
|
2012-10-19 11:08:50 +02:00
|
|
|
return 0;
|
2010-11-30 22:50:40 +01:00
|
|
|
}
|
|
|
|
}
|
2017-08-09 20:53:17 +02:00
|
|
|
|
|
|
|
QStringList CheckStatistics::getTools() const
|
|
|
|
{
|
|
|
|
QSet<QString> ret;
|
2022-02-05 11:33:28 +01:00
|
|
|
for (const QString& tool: mStyle.keys()) ret.insert(tool);
|
|
|
|
for (const QString& tool: mWarning.keys()) ret.insert(tool);
|
|
|
|
for (const QString& tool: mPerformance.keys()) ret.insert(tool);
|
|
|
|
for (const QString& tool: mPortability.keys()) ret.insert(tool);
|
|
|
|
for (const QString& tool: mError.keys()) ret.insert(tool);
|
2022-02-01 17:26:16 +01:00
|
|
|
return QStringList(ret.values());
|
2017-08-09 20:53:17 +02:00
|
|
|
}
|