2010-07-11 00:04:53 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2016-01-01 14:34:45 +01:00
|
|
|
* Copyright (C) 2007-2016 Cppcheck team.
|
2010-07-11 00:04:53 +02: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 "erroritem.h"
|
|
|
|
|
2017-05-21 08:25:55 +02:00
|
|
|
QErrorPathItem::QErrorPathItem(const ErrorLogger::ErrorMessage::FileLocation &loc)
|
|
|
|
: file(QString::fromStdString(loc.getfile(false)))
|
|
|
|
, line(loc.line)
|
|
|
|
, col(loc.col)
|
|
|
|
, info(QString::fromStdString(loc.getinfo()))
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-03-07 22:43:59 +01:00
|
|
|
ErrorItem::ErrorItem()
|
|
|
|
: severity(Severity::none)
|
2011-04-16 17:42:32 +02:00
|
|
|
, inconclusive(false)
|
2017-05-21 08:25:55 +02:00
|
|
|
, cwe(-1)
|
2011-03-07 22:43:59 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-05-21 08:25:55 +02:00
|
|
|
ErrorItem::ErrorItem(const ErrorLogger::ErrorMessage &errmsg)
|
|
|
|
: errorId(QString::fromStdString(errmsg._id))
|
|
|
|
, severity(errmsg._severity)
|
|
|
|
, inconclusive(errmsg._inconclusive)
|
|
|
|
, summary(QString::fromStdString(errmsg.shortMessage()))
|
|
|
|
, message(QString::fromStdString(errmsg.verboseMessage()))
|
|
|
|
, cwe(errmsg._cwe.id)
|
2010-07-11 00:04:53 +02:00
|
|
|
{
|
2017-05-21 08:25:55 +02:00
|
|
|
for (std::list<ErrorLogger::ErrorMessage::FileLocation>::const_iterator loc = errmsg._callStack.begin();
|
|
|
|
loc != errmsg._callStack.end();
|
|
|
|
++loc) {
|
|
|
|
errorPath << QErrorPathItem(*loc);
|
|
|
|
}
|
2010-07-11 00:04:53 +02:00
|
|
|
}
|
2010-08-28 19:37:21 +02:00
|
|
|
|
2017-05-21 08:25:55 +02:00
|
|
|
|
2010-08-28 19:37:21 +02:00
|
|
|
QString ErrorItem::ToString() const
|
|
|
|
{
|
2017-05-21 08:25:55 +02:00
|
|
|
QString str = errorPath.back().file + " - " + errorId + " - ";
|
2011-04-16 13:04:20 +02:00
|
|
|
if (inconclusive)
|
|
|
|
str += "inconclusive ";
|
|
|
|
str += GuiSeverity::toString(severity) +"\n";
|
2011-01-27 07:47:28 +01:00
|
|
|
str += summary + "\n";
|
|
|
|
str += message + "\n";
|
2017-05-21 08:25:55 +02:00
|
|
|
for (int i = 0; i < errorPath.size(); i++) {
|
|
|
|
str += " " + errorPath[i].file + ": " + QString::number(errorPath[i].line) + "\n";
|
2011-01-27 07:47:28 +01:00
|
|
|
}
|
2010-08-28 19:37:21 +02:00
|
|
|
return str;
|
|
|
|
}
|