2009-06-24 09:54:56 +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-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
|
|
|
|
2022-02-02 16:17:28 +01:00
|
|
|
#include <QFile>
|
2009-06-24 09:54:56 +02:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2020-04-13 13:44:48 +02:00
|
|
|
|
|
|
|
class ErrorItem;
|
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
|
|
|
/**
|
2021-08-07 20:51:18 +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,
|
|
|
|
};
|
|
|
|
|
2022-07-28 22:51:45 +02:00
|
|
|
explicit Report(QString filename);
|
2022-03-13 20:07:58 +01:00
|
|
|
~Report() override;
|
2009-06-24 09:54:56 +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.
|
|
|
|
*/
|
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
|
|
|
/**
|
2021-08-07 20:51:18 +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
|
|
|
/**
|
2021-08-07 20:51:18 +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
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +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
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +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
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Write error to report.
|
|
|
|
* @param error Error data.
|
|
|
|
*/
|
2017-07-28 11:12:05 +02:00
|
|
|
virtual void writeError(const ErrorItem &error) = 0;
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @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:
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Filename of the report.
|
|
|
|
*/
|
2009-06-24 09:54:56 +02:00
|
|
|
QString mFilename;
|
|
|
|
|
|
|
|
/**
|
2021-08-07 20:51:18 +02:00
|
|
|
* @brief Fileobject for the report file.
|
|
|
|
*/
|
2009-06-24 09:54:56 +02:00
|
|
|
QFile mFile;
|
|
|
|
};
|
2009-07-17 10:49:01 +02:00
|
|
|
/// @}
|
2009-06-24 22:49:38 +02:00
|
|
|
#endif // REPORT_H
|