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 REPORT_H
|
|
|
|
#define REPORT_H
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
|
|
|
#include <QFile>
|
2010-07-10 19:30:31 +02:00
|
|
|
#include "erroritem.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 A base class for reports.
|
|
|
|
*/
|
2011-10-13 20:53:06 +02:00
|
|
|
class Report : public QObject {
|
2009-06-24 09:54:56 +02:00
|
|
|
public:
|
2011-10-13 20:53:06 +02:00
|
|
|
enum Type {
|
2009-07-06 11:30:49 +02:00
|
|
|
TXT,
|
2011-02-03 20:40:35 +01:00
|
|
|
XMLV2,
|
2009-07-06 11:30:49 +02:00
|
|
|
CSV,
|
|
|
|
};
|
|
|
|
|
2015-03-08 18:18:09 +01:00
|
|
|
explicit Report(const QString &filename);
|
2009-06-24 09:54:56 +02:00
|
|
|
virtual ~Report();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Create the report (file).
|
|
|
|
* @return true if succeeded, false if file could not be created.
|
|
|
|
*/
|
2017-07-28 11:12:05 +02:00
|
|
|
virtual bool create();
|
2009-06-24 09:54:56 +02:00
|
|
|
|
2010-07-10 15:37:36 +02:00
|
|
|
/**
|
|
|
|
* @brief Open the existing report (file).
|
|
|
|
* @return true if succeeded, false if file could not be created.
|
|
|
|
*/
|
2017-07-28 11:12:05 +02:00
|
|
|
virtual bool open();
|
2010-07-10 15:37:36 +02:00
|
|
|
|
2009-06-24 09:54:56 +02:00
|
|
|
/**
|
|
|
|
* @brief Close the report (file).
|
|
|
|
*/
|
2018-04-02 18:30:12 +02:00
|
|
|
void close();
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Write report header.
|
|
|
|
*/
|
2017-07-28 11:12:05 +02:00
|
|
|
virtual void writeHeader() = 0;
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Write report footer.
|
|
|
|
*/
|
2017-07-28 11:12:05 +02:00
|
|
|
virtual void writeFooter() = 0;
|
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
|
|
|
*/
|
2017-07-28 11:12:05 +02:00
|
|
|
virtual void writeError(const ErrorItem &error) = 0;
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Get the file object where the report is written to.
|
|
|
|
*/
|
2017-07-28 11:12:05 +02:00
|
|
|
QFile* getFile();
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Filename of the report.
|
|
|
|
*/
|
|
|
|
QString mFilename;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Fileobject for the report file.
|
|
|
|
*/
|
|
|
|
QFile mFile;
|
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-06-24 22:49:38 +02:00
|
|
|
#endif // REPORT_H
|