2009-06-24 09:54:56 +02:00
|
|
|
/*
|
|
|
|
* Cppcheck - A tool for static C/C++ code analysis
|
2013-01-01 17:29:08 +01:00
|
|
|
* Copyright (C) 2007-2013 Daniel Marjamäki and 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
|
|
|
*/
|
|
|
|
|
2010-10-31 12:16:55 +01:00
|
|
|
#include <QObject>
|
|
|
|
#include <QString>
|
2009-06-24 09:54:56 +02:00
|
|
|
#include <QFile>
|
|
|
|
#include "report.h"
|
|
|
|
|
2012-10-27 12:22:56 +02:00
|
|
|
Report::Report(const QString &filename) :
|
2010-04-15 20:08:51 +02:00
|
|
|
mFilename(filename)
|
2009-06-24 09:54:56 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
Report::~Report()
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Report::Create()
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-07-10 15:37:36 +02:00
|
|
|
bool Report::Open()
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-06-24 09:54:56 +02:00
|
|
|
void Report::Close()
|
|
|
|
{
|
2010-04-02 07:30:58 +02:00
|
|
|
if (mFile.isOpen())
|
2009-06-24 09:54:56 +02:00
|
|
|
mFile.close();
|
|
|
|
}
|
|
|
|
|
|
|
|
QFile* Report::GetFile()
|
|
|
|
{
|
|
|
|
return &mFile;
|
|
|
|
}
|