cppcheck/gui/report.cpp

64 lines
1.4 KiB
C++
Raw Normal View History

/*
* Cppcheck - A tool for static C/C++ code analysis
2023-01-28 10:16:34 +01:00
* Copyright (C) 2007-2023 Cppcheck team.
*
* 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "report.h"
#include <utility>
#include <QIODevice>
Report::Report(QString filename) :
mFilename(std::move(filename))
2021-08-07 20:51:18 +02:00
{}
Report::~Report()
{
2017-07-28 11:12:05 +02:00
close();
}
2017-07-28 11:12:05 +02:00
bool Report::create()
{
bool succeed = false;
2011-10-13 20:53:06 +02:00
if (!mFile.isOpen()) {
mFile.setFileName(mFilename);
succeed = mFile.open(QIODevice::WriteOnly | QIODevice::Text);
}
return succeed;
}
2017-07-28 11:12:05 +02:00
bool Report::open()
{
bool succeed = false;
2011-10-13 20:53:06 +02:00
if (!mFile.isOpen()) {
mFile.setFileName(mFilename);
succeed = mFile.open(QIODevice::ReadOnly | QIODevice::Text);
}
return succeed;
}
2017-07-28 11:12:05 +02:00
void Report::close()
{
if (mFile.isOpen())
mFile.close();
}
2017-07-28 11:12:05 +02:00
QFile* Report::getFile()
{
return &mFile;
}