2009-06-24 09:54:56 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2022-08-28 14:22:12 +02: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
|
|
|
*/
|
|
|
|
|
|
|
|
#include "report.h"
|
|
|
|
|
2022-09-16 07:15:49 +02:00
|
|
|
#include <utility>
|
|
|
|
|
2022-07-28 22:51:45 +02:00
|
|
|
Report::Report(QString filename) :
|
2017-07-28 11:12:05 +02:00
|
|
|
QObject(),
|
2022-07-28 22:51:45 +02:00
|
|
|
mFilename(std::move(filename))
|
2021-08-07 20:51:18 +02:00
|
|
|
{}
|
2009-06-24 09:54:56 +02:00
|
|
|
|
|
|
|
Report::~Report()
|
|
|
|
{
|
2017-07-28 11:12:05 +02:00
|
|
|
close();
|
2009-06-24 09:54:56 +02:00
|
|
|
}
|
|
|
|
|
2017-07-28 11:12:05 +02:00
|
|
|
bool Report::create()
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
bool succeed = false;
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!mFile.isOpen()) {
|
2009-06-24 09:54:56 +02:00
|
|
|
mFile.setFileName(mFilename);
|
|
|
|
succeed = mFile.open(QIODevice::WriteOnly | QIODevice::Text);
|
|
|
|
}
|
|
|
|
return succeed;
|
|
|
|
}
|
|
|
|
|
2017-07-28 11:12:05 +02:00
|
|
|
bool Report::open()
|
2010-07-10 15:37:36 +02:00
|
|
|
{
|
|
|
|
bool succeed = false;
|
2011-10-13 20:53:06 +02:00
|
|
|
if (!mFile.isOpen()) {
|
2010-07-10 15:37:36 +02:00
|
|
|
mFile.setFileName(mFilename);
|
|
|
|
succeed = mFile.open(QIODevice::ReadOnly | QIODevice::Text);
|
|
|
|
}
|
|
|
|
return succeed;
|
|
|
|
}
|
|
|
|
|
2017-07-28 11:12:05 +02:00
|
|
|
void Report::close()
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
2010-04-02 07:30:58 +02:00
|
|
|
if (mFile.isOpen())
|
2009-06-24 09:54:56 +02:00
|
|
|
mFile.close();
|
|
|
|
}
|
|
|
|
|
2017-07-28 11:12:05 +02:00
|
|
|
QFile* Report::getFile()
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
return &mFile;
|
|
|
|
}
|