cppcheck/gui/checkstatistics.cpp

95 lines
2.4 KiB
C++
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2012-01-01 00:05:37 +01:00
* Copyright (C) 2007-2012 Daniel Marjamäki and 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/>.
*/
#include <QDebug>
#include "checkstatistics.h"
CheckStatistics::CheckStatistics(QObject *parent)
: QObject(parent)
{
Clear();
}
void CheckStatistics::AddItem(ShowTypes::ShowType type)
{
2011-10-13 20:53:06 +02:00
switch (type) {
case ShowTypes::ShowStyle:
mStyle++;
break;
case ShowTypes::ShowWarnings:
mWarning++;
break;
case ShowTypes::ShowPerformance:
mPerformance++;
break;
case ShowTypes::ShowPortability:
mPortability++;
break;
case ShowTypes::ShowErrors:
mError++;
break;
case ShowTypes::ShowInformation:
2010-12-26 11:35:31 +01:00
mInformation++;
break;
case ShowTypes::ShowNone:
default:
qDebug() << "Unknown error type - not added to statistics.";
break;
}
}
void CheckStatistics::Clear()
{
mStyle = 0;
mWarning = 0;
mPerformance = 0;
mPortability = 0;
2010-12-26 11:35:31 +01:00
mInformation = 0;
mError = 0;
}
unsigned CheckStatistics::GetCount(ShowTypes::ShowType type) const
{
unsigned count = 0;
2011-10-13 20:53:06 +02:00
switch (type) {
case ShowTypes::ShowStyle:
count = mStyle;
break;
case ShowTypes::ShowWarnings:
count = mWarning;
break;
case ShowTypes::ShowPerformance:
count = mPerformance;
break;
case ShowTypes::ShowPortability:
count = mPortability;
break;
case ShowTypes::ShowErrors:
count = mError;
break;
case ShowTypes::ShowInformation:
2010-12-26 11:35:31 +01:00
count = mInformation;
break;
case ShowTypes::ShowNone:
default:
2010-12-15 18:45:53 +01:00
qDebug() << "Unknown error type - returning zero statistics.";
break;
}
return count;
}