2009-06-24 09:54:56 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2011-01-09 20:33:36 +01:00
|
|
|
* Copyright (C) 2007-2011 Daniel Marjamäki and Cppcheck team.
|
2009-06-24 09:54:56 +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
|
2009-09-27 17:08:31 +02:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-06-24 09:54:56 +02:00
|
|
|
*/
|
|
|
|
|
2010-07-17 20:07:09 +02:00
|
|
|
#include <QDir>
|
2009-06-24 09:54:56 +02:00
|
|
|
#include <QFile>
|
|
|
|
#include <QTextStream>
|
|
|
|
#include "txtreport.h"
|
|
|
|
|
|
|
|
TxtReport::TxtReport(const QString &filename, QObject * parent) :
|
2010-04-15 20:08:51 +02:00
|
|
|
Report(filename, parent)
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TxtReport::~TxtReport()
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool TxtReport::Create()
|
|
|
|
{
|
|
|
|
bool success = false;
|
2010-04-02 07:30:58 +02:00
|
|
|
if (Report::Create())
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
mTxtWriter.setDevice(Report::GetFile());
|
|
|
|
success = true;
|
|
|
|
}
|
|
|
|
return success;
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxtReport::WriteHeader()
|
|
|
|
{
|
|
|
|
// No header for txt report
|
|
|
|
}
|
|
|
|
|
|
|
|
void TxtReport::WriteFooter()
|
|
|
|
{
|
|
|
|
// No footer for txt report
|
|
|
|
}
|
|
|
|
|
2010-07-10 17:20:45 +02:00
|
|
|
void TxtReport::WriteError(const ErrorItem &error)
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
Error example from the core program in text
|
|
|
|
[gui/test.cpp:23] -> [gui/test.cpp:14]: (error) Mismatching allocation and deallocation: k
|
|
|
|
*/
|
|
|
|
|
|
|
|
QString line;
|
|
|
|
|
2010-07-10 17:20:45 +02:00
|
|
|
for (int i = 0; i < error.lines.size(); i++)
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
2010-07-17 20:07:09 +02:00
|
|
|
const QString file = QDir::toNativeSeparators(error.files[i]);
|
|
|
|
line += QString("[%1:%2]").arg(file).arg(error.lines[i]);
|
2010-07-10 17:20:45 +02:00
|
|
|
if (i < error.lines.size() - 1 && error.lines.size() > 0)
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
line += " -> ";
|
|
|
|
}
|
|
|
|
|
2010-07-10 17:20:45 +02:00
|
|
|
if (i == error.lines.size() - 1)
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
line += ": ";
|
|
|
|
}
|
|
|
|
}
|
2011-04-16 13:04:20 +02:00
|
|
|
line += QString("(%1) ").arg(GuiSeverity::toString(error.severity));
|
|
|
|
if (error.inconclusive)
|
|
|
|
{
|
|
|
|
line += tr("inconclusive");
|
|
|
|
line += " ";
|
|
|
|
}
|
|
|
|
line += error.summary;
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
mTxtWriter << line << endl;
|
2009-09-27 17:08:31 +02:00
|
|
|
}
|