2009-07-06 11:30:49 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-02-05 11:45:17 +01:00
|
|
|
* Copyright (C) 2007-2022 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CSV_REPORT_H
|
|
|
|
#define CSV_REPORT_H
|
|
|
|
|
2022-02-02 16:17:28 +01:00
|
|
|
#include "report.h"
|
|
|
|
|
2009-07-06 11:30:49 +02:00
|
|
|
#include <QString>
|
|
|
|
#include <QTextStream>
|
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
2009-07-06 11:30:49 +02:00
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief CSV text file report.
|
|
|
|
* This report exports results as CSV (comma separated values). CSV files are
|
|
|
|
* easy to import to many other programs.
|
|
|
|
* @todo This class should be inherited from TxtReport?
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class CsvReport : public Report {
|
2009-07-06 11:30:49 +02:00
|
|
|
public:
|
2015-03-08 18:18:09 +01:00
|
|
|
explicit CsvReport(const QString &filename);
|
2009-07-06 11:33:10 +02:00
|
|
|
virtual ~CsvReport();
|
2009-07-06 11:30:49 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Create the report (file).
|
|
|
|
* @return true if succeeded, false if file could not be created.
|
|
|
|
*/
|
2018-05-15 16:37:40 +02:00
|
|
|
virtual bool create() override;
|
2009-07-06 11:30:49 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Write report header.
|
|
|
|
*/
|
2018-05-15 16:37:40 +02:00
|
|
|
virtual void writeHeader() override;
|
2009-07-06 11:30:49 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Write report footer.
|
|
|
|
*/
|
2018-05-15 16:37:40 +02:00
|
|
|
virtual void writeFooter() override;
|
2009-07-06 11:30:49 +02:00
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Write error to report.
|
|
|
|
* @param error Error data.
|
|
|
|
*/
|
2018-05-15 16:37:40 +02:00
|
|
|
virtual void writeError(const ErrorItem &error) override;
|
2009-07-06 11:30:49 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Text stream writer for writing the report in text format.
|
|
|
|
*/
|
2009-07-06 11:30:49 +02:00
|
|
|
QTextStream mTxtWriter;
|
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-07-06 11:30:49 +02:00
|
|
|
#endif // CSV_REPORT_H
|