2009-07-06 11:30:49 +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.
|
2009-07-06 11:30:49 +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-07-06 11:30:49 +02:00
|
|
|
*/
|
|
|
|
|
2010-10-31 12:16:55 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2010-07-17 20:07:09 +02:00
|
|
|
#include <QDir>
|
2009-07-06 11:30:49 +02:00
|
|
|
#include <QTextStream>
|
2010-10-31 12:16:55 +01:00
|
|
|
#include "report.h"
|
2009-07-06 11:30:49 +02:00
|
|
|
#include "csvreport.h"
|
|
|
|
|
2012-10-27 12:22:56 +02:00
|
|
|
CsvReport::CsvReport(const QString &filename) :
|
|
|
|
Report(filename)
|
2009-07-06 11:30:49 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CsvReport::~CsvReport()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CsvReport::Create()
|
|
|
|
{
|
2011-10-13 20:53:06 +02:00
|
|
|
if (Report::Create()) {
|
2009-07-06 11:30:49 +02:00
|
|
|
mTxtWriter.setDevice(Report::GetFile());
|
2012-10-21 10:33:11 +02:00
|
|
|
return true;
|
2009-07-06 11:30:49 +02:00
|
|
|
}
|
2012-10-21 10:33:11 +02:00
|
|
|
return false;
|
2009-07-06 11:30:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CsvReport::WriteHeader()
|
|
|
|
{
|
|
|
|
// No header for CSV report
|
|
|
|
}
|
|
|
|
|
|
|
|
void CsvReport::WriteFooter()
|
|
|
|
{
|
|
|
|
// No footer for CSV report
|
|
|
|
}
|
|
|
|
|
2010-07-10 17:20:45 +02:00
|
|
|
void CsvReport::WriteError(const ErrorItem &error)
|
2009-07-06 11:30:49 +02:00
|
|
|
{
|
|
|
|
/*
|
|
|
|
Error as CSV line
|
|
|
|
gui/test.cpp,23,error,Mismatching allocation and deallocation: k
|
|
|
|
*/
|
|
|
|
|
2010-07-17 20:07:09 +02:00
|
|
|
const QString file = QDir::toNativeSeparators(error.files[error.files.size() - 1]);
|
2012-10-21 10:33:11 +02:00
|
|
|
QString line = QString("%1,%2,").arg(file).arg(error.lines[error.lines.size() - 1]);
|
2011-03-07 20:10:30 +01:00
|
|
|
line += QString("%1,%2").arg(GuiSeverity::toString(error.severity)).arg(error.summary);
|
2009-07-06 11:30:49 +02:00
|
|
|
|
|
|
|
mTxtWriter << line << endl;
|
|
|
|
}
|