2009-06-24 09:54:56 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2018-06-10 22:07:21 +02:00
|
|
|
* Copyright (C) 2007-2018 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
|
|
|
*/
|
|
|
|
|
2009-06-24 22:49:38 +02:00
|
|
|
#ifndef TXT_REPORT_H
|
|
|
|
#define TXT_REPORT_H
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QTextStream>
|
2009-06-24 22:49:38 +02:00
|
|
|
#include "report.h"
|
2009-06-24 09:54:56 +02:00
|
|
|
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @addtogroup GUI
|
|
|
|
/// @{
|
|
|
|
|
|
|
|
|
2009-06-24 09:54:56 +02:00
|
|
|
/**
|
|
|
|
* @brief Text file report.
|
|
|
|
* This report mimics the output of the command line cppcheck.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class TxtReport : public Report {
|
2011-06-15 10:28:47 +02:00
|
|
|
Q_OBJECT
|
|
|
|
|
2009-06-24 09:54:56 +02:00
|
|
|
public:
|
2015-03-08 18:18:09 +01:00
|
|
|
explicit TxtReport(const QString &filename);
|
2009-07-06 11:33:10 +02:00
|
|
|
virtual ~TxtReport();
|
2009-06-24 09:54:56 +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-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Write report header.
|
|
|
|
*/
|
2018-05-15 16:37:40 +02:00
|
|
|
virtual void writeHeader() override;
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Write report footer.
|
|
|
|
*/
|
2018-05-15 16:37:40 +02:00
|
|
|
virtual void writeFooter() override;
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Write error to report.
|
2010-07-10 17:20:45 +02:00
|
|
|
* @param error Error data.
|
2009-06-24 09:54:56 +02:00
|
|
|
*/
|
2018-05-15 16:37:40 +02:00
|
|
|
virtual void writeError(const ErrorItem &error) override;
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Text stream writer for writing the report in text format.
|
|
|
|
*/
|
|
|
|
QTextStream mTxtWriter;
|
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-06-24 22:49:38 +02:00
|
|
|
#endif // TXT_REPORT_H
|