2013-11-15 13:41:26 +01:00
|
|
|
/************************************************************************
|
2013-09-23 14:08:06 +02:00
|
|
|
**
|
2013-11-15 13:50:05 +01:00
|
|
|
** @file vapplication.cpp
|
2014-04-30 07:38:52 +02:00
|
|
|
** @author Roman Telezhynskyi <dismine(at)gmail.com>
|
2013-11-15 13:50:05 +01:00
|
|
|
** @date November 15, 2013
|
2013-09-23 14:08:06 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** @brief
|
|
|
|
** @copyright
|
|
|
|
** This source code is part of the Valentine project, a pattern making
|
|
|
|
** program, whose allow create and modeling patterns of clothing.
|
2015-02-27 11:27:48 +01:00
|
|
|
** Copyright (C) 2013-2015 Valentina project
|
2013-11-15 13:41:26 +01:00
|
|
|
** <https://bitbucket.org/dismine/valentina> All Rights Reserved.
|
2013-09-23 14:08:06 +02:00
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
** Valentina is free software: you can redistribute it and/or modify
|
2013-09-23 14:08:06 +02:00
|
|
|
** 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.
|
|
|
|
**
|
2013-10-27 13:36:29 +01:00
|
|
|
** Valentina is distributed in the hope that it will be useful,
|
2013-09-23 14:08:06 +02:00
|
|
|
** 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 Valentina. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
**
|
2013-11-15 13:41:26 +01:00
|
|
|
*************************************************************************/
|
2013-09-23 14:08:06 +02:00
|
|
|
|
|
|
|
#include "vapplication.h"
|
2015-08-28 18:38:02 +02:00
|
|
|
#include "../ifc/exception/vexceptionobjecterror.h"
|
2015-07-10 11:24:47 +02:00
|
|
|
#include "../ifc/exception/vexceptionbadid.h"
|
|
|
|
#include "../ifc/exception/vexceptionconversionerror.h"
|
|
|
|
#include "../ifc/exception/vexceptionemptyparameter.h"
|
|
|
|
#include "../ifc/exception/vexceptionwrongid.h"
|
|
|
|
#include "../vwidgets/vmaingraphicsview.h"
|
2014-11-15 16:52:27 +01:00
|
|
|
#include "../version.h"
|
2015-06-15 13:43:41 +02:00
|
|
|
#include "../vmisc/logging.h"
|
2015-08-25 12:35:50 +02:00
|
|
|
#include "../qmuparser/qmuparsererror.h"
|
2013-09-23 14:08:06 +02:00
|
|
|
|
2013-11-21 13:05:26 +01:00
|
|
|
#include <QDebug>
|
2014-05-12 11:35:33 +02:00
|
|
|
#include <QDir>
|
2014-07-04 16:52:11 +02:00
|
|
|
#include <QProcess>
|
2014-10-23 23:44:50 +02:00
|
|
|
#include <QTemporaryFile>
|
2014-06-08 20:10:57 +02:00
|
|
|
#include <QUndoStack>
|
2014-10-03 12:32:12 +02:00
|
|
|
#include <QtCore/qmath.h>
|
2014-10-23 21:16:40 +02:00
|
|
|
#include <QTemporaryFile>
|
2014-11-20 13:18:43 +01:00
|
|
|
#include <QFile>
|
|
|
|
#include <QStandardPaths>
|
|
|
|
#include <QMessageBox>
|
2014-11-28 19:33:28 +01:00
|
|
|
#include <QThread>
|
|
|
|
#include <QDateTime>
|
2015-08-27 18:03:43 +02:00
|
|
|
#include <QtXmlPatterns>
|
2015-10-18 21:30:51 +02:00
|
|
|
#include <QIcon>
|
2015-08-27 17:55:17 +02:00
|
|
|
|
2015-10-20 16:32:01 +02:00
|
|
|
#if defined(Q_CC_CLANG)
|
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Wmissing-prototypes"
|
|
|
|
#elif defined(Q_CC_INTEL)
|
|
|
|
#pragma warning( push )
|
|
|
|
#pragma warning( disable: 1418 )
|
|
|
|
#endif
|
|
|
|
|
2014-11-20 18:52:51 +01:00
|
|
|
Q_LOGGING_CATEGORY(vApp, "v.application")
|
2014-11-20 13:18:43 +01:00
|
|
|
|
2015-10-20 16:32:01 +02:00
|
|
|
#if defined(Q_CC_CLANG)
|
|
|
|
#pragma clang diagnostic pop
|
|
|
|
#elif defined(Q_CC_INTEL)
|
|
|
|
#pragma warning( pop )
|
|
|
|
#endif
|
|
|
|
|
2015-09-14 13:53:49 +02:00
|
|
|
constexpr auto DAYS_TO_KEEP_LOGS = 3;
|
|
|
|
|
2014-11-20 13:18:43 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
inline void noisyFailureMsgHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg)
|
|
|
|
{
|
|
|
|
// Why on earth didn't Qt want to make failed signal/slot connections qWarning?
|
|
|
|
if ((type == QtDebugMsg) && msg.contains("::connect"))
|
|
|
|
{
|
|
|
|
type = QtWarningMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is another one that doesn't make sense as just a debug message. pretty serious
|
|
|
|
// sign of a problem
|
|
|
|
// http://www.developer.nokia.com/Community/Wiki/QPainter::begin:Paint_device_returned_engine_%3D%3D_0_(Known_Issue)
|
|
|
|
if ((type == QtDebugMsg) && msg.contains("QPainter::begin") && msg.contains("Paint device returned engine"))
|
|
|
|
{
|
|
|
|
type = QtWarningMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
// This qWarning about "Cowardly refusing to send clipboard message to hung application..."
|
|
|
|
// is something that can easily happen if you are debugging and the application is paused.
|
|
|
|
// As it is so common, not worth popping up a dialog.
|
|
|
|
if ((type == QtWarningMsg) && QString(msg).contains("QClipboard::event")
|
|
|
|
&& QString(msg).contains("Cowardly refusing"))
|
|
|
|
{
|
|
|
|
type = QtDebugMsg;
|
|
|
|
}
|
|
|
|
|
|
|
|
// only the GUI thread should display message boxes. If you are
|
|
|
|
// writing a multithreaded application and the error happens on
|
|
|
|
// a non-GUI thread, you'll have to queue the message to the GUI
|
|
|
|
QCoreApplication *instance = QCoreApplication::instance();
|
|
|
|
const bool isGuiThread = instance && (QThread::currentThread() == instance->thread());
|
|
|
|
|
|
|
|
{
|
2014-11-28 14:49:06 +01:00
|
|
|
QString debugdate = "[" + QDateTime::currentDateTime().toString("yyyy.MM.dd hh:mm:ss");
|
2015-09-28 20:54:41 +02:00
|
|
|
|
2014-11-20 13:18:43 +01:00
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case QtDebugMsg:
|
2014-11-28 14:49:06 +01:00
|
|
|
debugdate += QString(":DEBUG:%1(%2)] %3: %4: %5").arg(context.file).arg(context.line)
|
2015-08-25 19:53:03 +02:00
|
|
|
.arg(context.function).arg(context.category).arg(msg);
|
2015-10-01 16:59:01 +02:00
|
|
|
vStdOut() << QApplication::translate("vNoisyHandler", "DEBUG:") << msg << "\n";
|
2014-11-20 13:18:43 +01:00
|
|
|
break;
|
|
|
|
case QtWarningMsg:
|
2014-11-28 14:49:06 +01:00
|
|
|
debugdate += QString(":WARNING:%1(%2)] %3: %4: %5").arg(context.file).arg(context.line)
|
2015-08-25 19:53:03 +02:00
|
|
|
.arg(context.function).arg(context.category).arg(msg);
|
2015-10-01 16:59:01 +02:00
|
|
|
vStdErr() << QApplication::translate("vNoisyHandler", "WARNING:") << msg << "\n";
|
2014-11-20 13:18:43 +01:00
|
|
|
break;
|
|
|
|
case QtCriticalMsg:
|
2014-11-28 14:49:06 +01:00
|
|
|
debugdate += QString(":CRITICAL:%1(%2)] %3: %4: %5").arg(context.file).arg(context.line)
|
2015-08-25 19:53:03 +02:00
|
|
|
.arg(context.function).arg(context.category).arg(msg);
|
2015-10-01 16:59:01 +02:00
|
|
|
vStdErr() << QApplication::translate("vNoisyHandler", "CRITICAL:") << msg << "\n";
|
2014-11-20 13:18:43 +01:00
|
|
|
break;
|
|
|
|
case QtFatalMsg:
|
2014-11-28 14:49:06 +01:00
|
|
|
debugdate += QString(":FATAL:%1(%2)] %3: %4: %5").arg(context.file).arg(context.line)
|
2015-08-25 19:53:03 +02:00
|
|
|
.arg(context.function).arg(context.category).arg(msg);
|
2015-10-01 16:59:01 +02:00
|
|
|
vStdErr() << QApplication::translate("vNoisyHandler", "FATAL:") << msg << "\n";
|
2014-11-20 13:18:43 +01:00
|
|
|
break;
|
2015-10-01 16:59:01 +02:00
|
|
|
#if QT_VERSION > QT_VERSION_CHECK(5, 4, 2)
|
|
|
|
case QtInfoMsg:
|
|
|
|
debugdate += QString(":INFO:%1(%2)] %3: %4: %5").arg(context.file).arg(context.line)
|
|
|
|
.arg(context.function).arg(context.category).arg(msg);
|
|
|
|
vStdOut() << QApplication::translate("vNoisyHandler", "INFO:") << msg << "\n";
|
|
|
|
break;
|
|
|
|
#endif
|
2014-11-20 13:18:43 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
(*qApp->LogFile()) << debugdate << endl;
|
2015-09-28 20:54:41 +02:00
|
|
|
}
|
2014-11-20 13:18:43 +01:00
|
|
|
|
2015-09-28 20:54:41 +02:00
|
|
|
if (isGuiThread)
|
|
|
|
{
|
|
|
|
//fixme: trying to make sure there are no save/load dialogs are opened, because error message during them will
|
|
|
|
//lead to crash
|
|
|
|
const bool topWinAllowsPop = (qApp->activeModalWidget() == nullptr) ||
|
|
|
|
!qApp->activeModalWidget()->inherits("QFileDialog");
|
|
|
|
|
|
|
|
QMessageBox messageBox;
|
|
|
|
switch (type)
|
2014-11-28 18:55:27 +01:00
|
|
|
{
|
2015-09-28 20:54:41 +02:00
|
|
|
case QtWarningMsg:
|
2015-10-01 16:59:01 +02:00
|
|
|
messageBox.setWindowTitle(QApplication::translate("vNoisyHandler", "Warning."));
|
2015-09-28 20:54:41 +02:00
|
|
|
messageBox.setIcon(QMessageBox::Warning);
|
|
|
|
break;
|
|
|
|
case QtCriticalMsg:
|
2015-10-01 16:59:01 +02:00
|
|
|
messageBox.setWindowTitle(QApplication::translate("vNoisyHandler", "Critical error."));
|
2015-09-28 20:54:41 +02:00
|
|
|
messageBox.setIcon(QMessageBox::Critical);
|
|
|
|
break;
|
|
|
|
case QtFatalMsg:
|
2015-10-01 16:59:01 +02:00
|
|
|
messageBox.setWindowTitle(QApplication::translate("vNoisyHandler", "Fatal error."));
|
2015-09-28 20:54:41 +02:00
|
|
|
messageBox.setIcon(QMessageBox::Critical);
|
|
|
|
break;
|
2015-10-01 16:59:01 +02:00
|
|
|
#if QT_VERSION > QT_VERSION_CHECK(5, 4, 2)
|
|
|
|
case QtInfoMsg:
|
|
|
|
messageBox.setWindowTitle(QApplication::translate("vNoisyHandler", "Information."));
|
|
|
|
messageBox.setIcon(QMessageBox::Information);
|
|
|
|
break;
|
|
|
|
#endif
|
2015-09-28 20:54:41 +02:00
|
|
|
case QtDebugMsg:
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2015-08-25 19:53:03 +02:00
|
|
|
|
2015-09-28 20:54:41 +02:00
|
|
|
if (type == QtWarningMsg || type == QtCriticalMsg || type == QtFatalMsg)
|
|
|
|
{
|
2015-08-25 19:53:03 +02:00
|
|
|
if (VApplication::CheckGUI())
|
|
|
|
{
|
|
|
|
if (topWinAllowsPop)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
messageBox.setText(msg);
|
2015-08-25 19:53:03 +02:00
|
|
|
messageBox.setStandardButtons(QMessageBox::Ok);
|
|
|
|
messageBox.setWindowModality(Qt::ApplicationModal);
|
|
|
|
messageBox.setModal(true);
|
2015-10-01 16:59:01 +02:00
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
QApplication::setOverrideCursor(Qt::ArrowCursor);
|
|
|
|
#endif
|
2015-08-25 19:53:03 +02:00
|
|
|
messageBox.exec();
|
2015-10-01 16:59:01 +02:00
|
|
|
#ifndef QT_NO_CURSOR
|
|
|
|
QApplication::restoreOverrideCursor();
|
|
|
|
#endif
|
2015-08-25 19:53:03 +02:00
|
|
|
}
|
|
|
|
}
|
2014-11-28 18:55:27 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 13:18:43 +01:00
|
|
|
if (QtFatalMsg == type)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (type != QtDebugMsg)
|
|
|
|
{
|
|
|
|
abort(); // be NOISY unless overridden!
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2013-11-21 13:05:26 +01:00
|
|
|
|
2014-11-15 17:29:10 +01:00
|
|
|
#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
2014-11-15 16:52:27 +01:00
|
|
|
const QString VApplication::GistFileName = QStringLiteral("gist.json");
|
2014-11-15 17:29:10 +01:00
|
|
|
#endif // defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
2014-03-19 19:27:11 +01:00
|
|
|
|
2014-03-26 05:39:07 +01:00
|
|
|
#define DefWidth 1.2//mm
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief VApplication constructor.
|
|
|
|
* @param argc number arguments.
|
|
|
|
* @param argv command line.
|
|
|
|
*/
|
2014-03-19 19:27:11 +01:00
|
|
|
VApplication::VApplication(int &argc, char **argv)
|
2015-06-18 19:23:24 +02:00
|
|
|
: VAbstractApplication(argc, argv),
|
2015-09-28 17:34:29 +02:00
|
|
|
trVars(nullptr),
|
|
|
|
autoSaveTimer(nullptr),
|
2015-09-14 13:53:49 +02:00
|
|
|
lockLog(),
|
2015-04-05 16:31:28 +02:00
|
|
|
out(nullptr)
|
2014-03-19 19:27:11 +01:00
|
|
|
{
|
2015-09-29 19:12:23 +02:00
|
|
|
setApplicationDisplayName(VER_PRODUCTNAME_STR);
|
|
|
|
setApplicationName(VER_INTERNALNAME_STR);
|
|
|
|
setOrganizationName(VER_COMPANYNAME_STR);
|
|
|
|
setOrganizationDomain(VER_COMPANYDOMAIN_STR);
|
|
|
|
// Setting the Application version
|
|
|
|
setApplicationVersion(APP_VERSION_STR);
|
|
|
|
|
|
|
|
OpenSettings();
|
|
|
|
|
2015-09-28 17:34:29 +02:00
|
|
|
// making sure will create new instance...just in case we will ever do 2 objects of VApplication
|
|
|
|
VCommandLine::Reset();
|
|
|
|
LoadTranslation(QLocale::system().name());// By default the console version uses system locale
|
2015-08-25 19:53:03 +02:00
|
|
|
VCommandLine::Get(*this);
|
2014-06-04 13:30:45 +02:00
|
|
|
undoStack = new QUndoStack(this);
|
2014-03-19 19:27:11 +01:00
|
|
|
}
|
|
|
|
|
2014-11-20 13:18:43 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VApplication::~VApplication()
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vApp, "Application closing.");
|
2014-11-20 13:18:43 +01:00
|
|
|
qInstallMessageHandler(0); // Resore the message handler
|
2015-06-11 12:15:57 +02:00
|
|
|
delete trVars;
|
2015-08-25 19:53:03 +02:00
|
|
|
VCommandLine::Reset();
|
2014-11-20 13:18:43 +01:00
|
|
|
}
|
|
|
|
|
2014-07-04 16:52:11 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief NewValentina start Valentina in new process, send path to pattern file in argument.
|
|
|
|
* @param fileName path to pattern file.
|
|
|
|
*/
|
|
|
|
void VApplication::NewValentina(const QString &fileName)
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vApp, "Open new detached process.");
|
2014-10-23 11:13:18 +02:00
|
|
|
if (fileName.isEmpty())
|
|
|
|
{
|
2015-10-01 17:34:03 +02:00
|
|
|
qCDebug(vApp, "New process without arguments. program = %s", qUtf8Printable(qApp->applicationFilePath()));
|
2014-11-26 19:34:43 +01:00
|
|
|
// Path can contain spaces.
|
2014-11-28 16:16:39 +01:00
|
|
|
if (QProcess::startDetached("\""+qApp->applicationFilePath()+"\""))
|
2014-11-26 19:34:43 +01:00
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vApp, "The process was started successfully.");
|
2014-11-26 19:34:43 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCWarning(vApp, "Could not run process. The operation timed out or an error occurred.");
|
2014-11-26 19:34:43 +01:00
|
|
|
}
|
2014-10-23 11:13:18 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-28 16:16:39 +01:00
|
|
|
const QString run = QString("\"%1\" \"%2\"").arg(qApp->applicationFilePath()).arg(fileName);
|
2015-10-01 17:34:03 +02:00
|
|
|
qCDebug(vApp, "New process with arguments. program = %s", qUtf8Printable(run));
|
2015-03-02 18:11:43 +01:00
|
|
|
if (QProcess::startDetached(run))
|
2014-11-26 19:34:43 +01:00
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vApp, "The process was started successfully.");
|
2014-11-26 19:34:43 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCWarning(vApp, "Could not run process. The operation timed out or an error occurred.");
|
2014-11-26 19:34:43 +01:00
|
|
|
}
|
2014-10-23 11:13:18 +02:00
|
|
|
}
|
2014-07-04 16:52:11 +02:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-06-13 19:02:41 +02:00
|
|
|
/**
|
|
|
|
* @brief notify Reimplemented from QApplication::notify().
|
|
|
|
* @param receiver receiver.
|
|
|
|
* @param event event.
|
|
|
|
* @return value that is returned from the receiver's event handler.
|
|
|
|
*/
|
2014-03-26 05:39:07 +01:00
|
|
|
// reimplemented from QApplication so we can throw exceptions in slots
|
2013-11-04 21:35:15 +01:00
|
|
|
bool VApplication::notify(QObject *receiver, QEvent *event)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2014-03-19 19:27:11 +01:00
|
|
|
return QApplication::notify(receiver, event);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
catch (const VExceptionObjectError &e)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s\n\n%s\n\n%s", qUtf8Printable(tr("Error parsing file. Program will be terminated.")),
|
|
|
|
qUtf8Printable(e.ErrorMessage()), qUtf8Printable(e.DetailedInformation()));
|
2015-10-11 11:06:14 +02:00
|
|
|
exit(V_EX_DATAERR);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
catch (const VExceptionBadId &e)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s\n\n%s\n\n%s", qUtf8Printable(tr("Error bad id. Program will be terminated.")),
|
|
|
|
qUtf8Printable(e.ErrorMessage()), qUtf8Printable(e.DetailedInformation()));
|
2015-10-11 11:06:14 +02:00
|
|
|
exit(V_EX_DATAERR);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
catch (const VExceptionConversionError &e)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s\n\n%s\n\n%s", qUtf8Printable(tr("Error can't convert value. Program will be terminated.")),
|
|
|
|
qUtf8Printable(e.ErrorMessage()), qUtf8Printable(e.DetailedInformation()));
|
2015-10-11 11:06:14 +02:00
|
|
|
exit(V_EX_DATAERR);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
catch (const VExceptionEmptyParameter &e)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s\n\n%s\n\n%s", qUtf8Printable(tr("Error empty parameter. Program will be terminated.")),
|
|
|
|
qUtf8Printable(e.ErrorMessage()), qUtf8Printable(e.DetailedInformation()));
|
2015-10-11 11:06:14 +02:00
|
|
|
exit(V_EX_DATAERR);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2014-03-03 18:32:38 +01:00
|
|
|
catch (const VExceptionWrongId &e)
|
2013-11-04 21:35:15 +01:00
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s\n\n%s\n\n%s", qUtf8Printable(tr("Error wrong id. Program will be terminated.")),
|
|
|
|
qUtf8Printable(e.ErrorMessage()), qUtf8Printable(e.DetailedInformation()));
|
2015-10-11 11:06:14 +02:00
|
|
|
exit(V_EX_DATAERR);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
catch (const VException &e)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s\n\n%s\n\n%s", qUtf8Printable(tr("Something's wrong!!")),
|
|
|
|
qUtf8Printable(e.ErrorMessage()), qUtf8Printable(e.DetailedInformation()));
|
2014-03-03 16:42:14 +01:00
|
|
|
return true;
|
2013-10-10 20:45:58 +02:00
|
|
|
}
|
2015-08-25 12:35:50 +02:00
|
|
|
// These last two cases special. I found that we can't show here modal dialog with error message.
|
|
|
|
// Somehow program doesn't waite untile an error dialog will be closed. But if ignore this program will hang.
|
|
|
|
catch (const qmu::QmuParserError &e)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s", qUtf8Printable(tr("Parser error: %1. Program will be terminated.").arg(e.GetMsg())));
|
2015-10-11 11:06:14 +02:00
|
|
|
exit(V_EX_DATAERR);
|
2015-08-25 12:35:50 +02:00
|
|
|
}
|
2013-11-04 21:35:15 +01:00
|
|
|
catch (std::exception& e)
|
|
|
|
{
|
2015-10-01 16:59:01 +02:00
|
|
|
qCCritical(vApp, "%s", qUtf8Printable(tr("Exception thrown: %1. Program will be terminated.").arg(e.what())));
|
2015-10-11 11:06:14 +02:00
|
|
|
exit(V_EX_SOFTWARE);
|
2013-09-23 14:08:06 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
2014-03-19 19:27:11 +01:00
|
|
|
|
2015-01-26 16:02:57 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2014-03-19 19:27:11 +01:00
|
|
|
QString VApplication::translationsPath() const
|
2015-01-26 16:02:57 +01:00
|
|
|
{
|
2014-10-24 16:23:41 +02:00
|
|
|
const QString trPath = QStringLiteral("/translations");
|
2014-03-26 05:39:07 +01:00
|
|
|
#ifdef Q_OS_WIN
|
2014-10-24 16:23:41 +02:00
|
|
|
return QApplication::applicationDirPath() + trPath;
|
2015-08-08 10:22:51 +02:00
|
|
|
#elif defined(Q_OS_MAC)
|
|
|
|
QDir dirBundle(QApplication::applicationDirPath() + QStringLiteral("/../Resources") + trPath);
|
|
|
|
if (dirBundle.exists())
|
2015-01-26 16:02:57 +01:00
|
|
|
{
|
2015-08-08 10:22:51 +02:00
|
|
|
return dirBundle.absolutePath();
|
2015-01-26 16:02:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-24 16:23:41 +02:00
|
|
|
QDir dir(QApplication::applicationDirPath() + trPath);
|
2014-06-10 22:14:16 +02:00
|
|
|
if (dir.exists())
|
2015-01-26 16:02:57 +01:00
|
|
|
{
|
2014-05-12 11:35:33 +02:00
|
|
|
return dir.absolutePath();
|
2015-01-26 16:02:57 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-03-19 19:27:11 +01:00
|
|
|
return QStringLiteral("/usr/share/valentina/translations");
|
2015-01-26 16:02:57 +01:00
|
|
|
}
|
|
|
|
}
|
2015-08-08 10:22:51 +02:00
|
|
|
#else // Unix
|
|
|
|
QDir dir(QApplication::applicationDirPath() + trPath);
|
|
|
|
if (dir.exists())
|
|
|
|
{
|
|
|
|
return dir.absolutePath();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return QStringLiteral("/usr/share/valentina/translations");
|
|
|
|
}
|
2014-05-12 11:35:33 +02:00
|
|
|
#endif
|
2015-01-26 16:02:57 +01:00
|
|
|
}
|
|
|
|
|
2014-05-02 13:11:30 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-08-18 12:36:17 +02:00
|
|
|
QString VApplication::TapeFilePath() const
|
2014-03-19 19:27:11 +01:00
|
|
|
{
|
2015-08-18 12:36:17 +02:00
|
|
|
const QString tape = QStringLiteral("tape");
|
2014-03-26 05:39:07 +01:00
|
|
|
#ifdef Q_OS_WIN
|
2015-08-18 12:36:17 +02:00
|
|
|
QFileInfo tapeFile(QApplication::applicationDirPath() + "/" + tape + ".exe");
|
|
|
|
if (tapeFile.exists())
|
|
|
|
{
|
2015-08-28 21:54:17 +02:00
|
|
|
return tapeFile.absoluteFilePath();
|
2015-08-27 17:39:02 +02:00
|
|
|
}
|
2015-08-18 12:36:17 +02:00
|
|
|
else
|
2015-08-25 19:53:03 +02:00
|
|
|
{
|
2015-08-18 12:36:17 +02:00
|
|
|
return QApplication::applicationDirPath() + "/../../tape/bin/" + tape + ".exe";
|
|
|
|
}
|
|
|
|
#elif defined(Q_OS_MAC)
|
|
|
|
QFileInfo tapeFile(QApplication::applicationDirPath() + "/" + tape);
|
|
|
|
if (tapeFile.exists())
|
|
|
|
{
|
|
|
|
return tapeFile.absoluteFilePath();
|
2015-08-25 19:53:03 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-08-18 12:36:17 +02:00
|
|
|
QFileInfo file(QApplication::applicationDirPath() + "/../../tape/bin/" + tape);
|
|
|
|
if (file.exists())
|
|
|
|
{
|
|
|
|
return file.absoluteFilePath();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return tape;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else // Unix
|
|
|
|
QFileInfo file(QApplication::applicationDirPath() + "/../../tape/bin/" + tape);
|
|
|
|
if (file.exists())
|
|
|
|
{
|
|
|
|
return file.absoluteFilePath();
|
2015-08-25 19:53:03 +02:00
|
|
|
}
|
2015-08-27 20:33:38 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
QFileInfo tapeFile(QApplication::applicationDirPath() + "/" + tape);
|
|
|
|
if (tapeFile.exists())
|
|
|
|
{
|
|
|
|
return tapeFile.absoluteFilePath();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return tape;
|
|
|
|
}
|
|
|
|
}
|
2014-05-12 11:35:33 +02:00
|
|
|
#endif
|
2014-03-19 19:27:11 +01:00
|
|
|
}
|
2014-03-26 05:39:07 +01:00
|
|
|
|
2014-11-20 13:18:43 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VApplication::LogDirPath() const
|
|
|
|
{
|
|
|
|
#if defined(Q_OS_WIN) || defined(Q_OS_OSX)
|
|
|
|
const QString logDirPath = QStandardPaths::locate(QStandardPaths::GenericDataLocation, QString(),
|
|
|
|
QStandardPaths::LocateDirectory) + "Valentina";
|
|
|
|
#else
|
|
|
|
const QString logDirPath = QStandardPaths::locate(QStandardPaths::ConfigLocation, QString(),
|
|
|
|
QStandardPaths::LocateDirectory) + organizationName();
|
|
|
|
#endif
|
|
|
|
return logDirPath;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VApplication::LogPath() const
|
|
|
|
{
|
2014-11-28 14:49:06 +01:00
|
|
|
return QString("%1/valentina-pid%2.log").arg(LogDirPath()).arg(qApp->applicationPid());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::CreateLogDir() const
|
|
|
|
{
|
|
|
|
QDir logDir(LogDirPath());
|
|
|
|
if (logDir.exists() == false)
|
|
|
|
{
|
|
|
|
logDir.mkpath("."); // Create directory for log if need
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::BeginLogging()
|
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
VlpCreateLock(lockLog, LogPath()+".lock", [this](){return new QFile(LogPath());});
|
2015-08-25 19:53:03 +02:00
|
|
|
|
2015-09-14 13:53:49 +02:00
|
|
|
if (lockLog->IsLocked())
|
|
|
|
{
|
|
|
|
if (lockLog->GetProtected()->open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text))
|
2014-11-28 14:49:06 +01:00
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
out.reset(new QTextStream(lockLog->GetProtected().get()));
|
|
|
|
qInstallMessageHandler(noisyFailureMsgHandler);
|
2015-10-01 17:34:03 +02:00
|
|
|
qCDebug(vApp, "Log file %s was locked.", qUtf8Printable(LogPath()));
|
2014-11-28 14:49:06 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
qCDebug(vApp, "Error opening log file \'%s\'. All debug output redirected to console.",
|
2015-10-01 17:34:03 +02:00
|
|
|
qUtf8Printable(LogPath()));
|
2014-11-28 14:49:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-10-01 17:34:03 +02:00
|
|
|
qCDebug(vApp, "Failed to lock %s", qUtf8Printable(LogPath()));
|
2014-11-28 14:49:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::ClearOldLogs() const
|
|
|
|
{
|
|
|
|
QStringList filters{"*.log"};
|
|
|
|
QDir logsDir(LogDirPath());
|
|
|
|
logsDir.setNameFilters(filters);
|
|
|
|
logsDir.setCurrent(LogDirPath());
|
|
|
|
|
|
|
|
const QStringList allFiles = logsDir.entryList(QDir::NoDotAndDotDot | QDir::Files);
|
|
|
|
if (allFiles.isEmpty() == false)
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vApp, "Clearing old logs");
|
2015-09-14 13:53:49 +02:00
|
|
|
for (int i = 0, sz = allFiles.size(); i < sz; ++i)
|
2014-11-28 14:49:06 +01:00
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
auto fn = allFiles.at(i);
|
|
|
|
QFileInfo info(fn);
|
|
|
|
if (info.created().daysTo(QDateTime::currentDateTime()) >= DAYS_TO_KEEP_LOGS)
|
2015-04-05 16:31:28 +02:00
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
VLockGuard<QFile> tmp(info.absoluteFilePath() + ".lock", [&fn](){return new QFile(fn);});
|
|
|
|
if (tmp.GetProtected() != nullptr)
|
2015-04-05 16:31:28 +02:00
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
if (tmp.GetProtected()->remove())
|
|
|
|
{
|
2015-10-01 17:34:03 +02:00
|
|
|
qCDebug(vApp, "Deleted %s", qUtf8Printable(info.absoluteFilePath()));
|
2015-09-14 13:53:49 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-10-01 17:34:03 +02:00
|
|
|
qCDebug(vApp, "Could not delete %s", qUtf8Printable(info.absoluteFilePath()));
|
2015-09-14 13:53:49 +02:00
|
|
|
}
|
2015-04-05 16:31:28 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-10-01 17:34:03 +02:00
|
|
|
qCDebug(vApp, "Failed to lock %s", qUtf8Printable(info.absoluteFilePath()));
|
2015-04-05 16:31:28 +02:00
|
|
|
}
|
|
|
|
}
|
2014-11-28 14:49:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-04-01 19:08:35 +02:00
|
|
|
qCDebug(vApp, "There are no old logs.");
|
2014-11-28 14:49:06 +01:00
|
|
|
}
|
2014-11-20 13:18:43 +01:00
|
|
|
}
|
|
|
|
|
2015-06-11 14:24:38 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::InitOptions()
|
|
|
|
{
|
|
|
|
#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
|
|
|
// Catch and send report
|
|
|
|
VApplication::DrMingw();
|
|
|
|
this->CollectReports();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Run creation log after sending crash report
|
|
|
|
StartLogging();
|
|
|
|
|
|
|
|
qDebug()<<"Version:"<<APP_VERSION_STR;
|
|
|
|
qDebug()<<"Build revision:"<<BUILD_REVISION;
|
|
|
|
qDebug()<<buildCompatibilityString();
|
|
|
|
qDebug()<<"Built on"<<__DATE__<<"at"<<__TIME__;
|
|
|
|
qDebug()<<"Command-line arguments:"<<this->arguments();
|
|
|
|
qDebug()<<"Process ID:"<<this->applicationPid();
|
|
|
|
|
2015-09-28 17:34:29 +02:00
|
|
|
if (VApplication::CheckGUI())// By default console version uses system locale
|
|
|
|
{
|
|
|
|
LoadTranslation(ValentinaSettings()->GetLocale());
|
|
|
|
}
|
2015-06-11 14:24:38 +02:00
|
|
|
|
|
|
|
static const char * GENERIC_ICON_TO_CHECK = "document-open";
|
|
|
|
if (QIcon::hasThemeIcon(GENERIC_ICON_TO_CHECK) == false)
|
|
|
|
{
|
2015-08-25 19:53:03 +02:00
|
|
|
//If there is no default working icon theme then we should
|
|
|
|
//use an icon theme that we provide via a .qrc file
|
|
|
|
//This case happens under Windows and Mac OS X
|
|
|
|
//This does not happen under GNOME or KDE
|
|
|
|
QIcon::setThemeName("win.icon.theme");
|
2015-06-11 14:24:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-09 15:11:50 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QStringList VApplication::LabelLanguages()
|
|
|
|
{
|
2014-10-17 22:26:30 +02:00
|
|
|
QStringList list = QStringList() << "de" // German
|
|
|
|
<< "en" // English
|
|
|
|
<< "fr" // French
|
|
|
|
<< "ru" // Russian
|
|
|
|
<< "uk" // Ukrainian
|
|
|
|
<< "hr" // Croatian
|
|
|
|
<< "sr" // Serbian
|
|
|
|
<< "bs"; // Bosnian
|
2014-09-09 15:11:50 +02:00
|
|
|
return list;
|
|
|
|
}
|
2014-09-18 11:30:33 +02:00
|
|
|
|
2014-11-20 13:18:43 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::StartLogging()
|
|
|
|
{
|
2014-11-28 14:49:06 +01:00
|
|
|
CreateLogDir();
|
2015-10-12 13:52:48 +02:00
|
|
|
// cppcheck-suppress leakReturnValNotUsed
|
2014-11-28 14:49:06 +01:00
|
|
|
BeginLogging();
|
2015-10-12 13:52:48 +02:00
|
|
|
// cppcheck-suppress leakReturnValNotUsed
|
2014-11-28 14:49:06 +01:00
|
|
|
ClearOldLogs();
|
2014-11-29 13:12:43 +01:00
|
|
|
#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
|
|
|
ClearOldReports();
|
|
|
|
#endif // defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
2014-11-20 13:18:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QTextStream *VApplication::LogFile()
|
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
return out.get();
|
2014-11-20 13:18:43 +01:00
|
|
|
}
|
|
|
|
|
2015-06-11 12:15:57 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const VTranslateVars *VApplication::TrVars()
|
|
|
|
{
|
|
|
|
return trVars;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::InitTrVars()
|
|
|
|
{
|
2015-07-24 14:06:53 +02:00
|
|
|
trVars = new VTranslateVars(ValentinaSettings()->GetOsSeparator());
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
/**
|
|
|
|
* @brief OpenSettings get acsses to application settings.
|
|
|
|
*
|
|
|
|
* Because we can create object in constructor we open file separately.
|
|
|
|
*/
|
|
|
|
void VApplication::OpenSettings()
|
|
|
|
{
|
|
|
|
settings = new VSettings(QSettings::IniFormat, QSettings::UserScope, QApplication::organizationName(),
|
|
|
|
QApplication::applicationName(), this);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
VSettings *VApplication::ValentinaSettings()
|
|
|
|
{
|
|
|
|
SCASSERT(settings != nullptr);
|
|
|
|
return qobject_cast<VSettings *>(settings);
|
2015-06-11 12:15:57 +02:00
|
|
|
}
|
2015-08-25 21:27:21 +02:00
|
|
|
|
2015-08-25 19:53:03 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
bool VApplication::CheckGUI()
|
|
|
|
{
|
|
|
|
return (VCommandLine::instance != nullptr) && VCommandLine::instance->IsGuiEnabled();
|
|
|
|
}
|
2015-08-25 21:27:21 +02:00
|
|
|
|
2015-08-25 19:53:03 +02:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
const VCommandLinePtr VApplication::CommandLine() const
|
|
|
|
{
|
|
|
|
return VCommandLine::instance;
|
|
|
|
}
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
2015-06-11 12:15:57 +02:00
|
|
|
|
2014-11-15 16:52:27 +01:00
|
|
|
#if defined(Q_OS_WIN) && defined(Q_CC_GNU)
|
2014-11-29 13:12:43 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::ClearOldReports() const
|
|
|
|
{
|
|
|
|
const QString reportsDir = QString("%1/reports").arg(qApp->applicationDirPath());
|
|
|
|
QDir reports(reportsDir);
|
|
|
|
if (reports.exists())
|
|
|
|
{
|
|
|
|
QStringList filters{"*.log", "*.RPT"};
|
|
|
|
QDir logsDir(reportsDir);
|
|
|
|
logsDir.setNameFilters(filters);
|
|
|
|
logsDir.setCurrent(reportsDir);
|
|
|
|
|
|
|
|
const QStringList allFiles = logsDir.entryList(QDir::NoDotAndDotDot | QDir::Files);
|
|
|
|
if (allFiles.isEmpty() == false)
|
|
|
|
{
|
|
|
|
const QDateTime now = QDateTime::currentDateTime();
|
|
|
|
for (int i = 0; i < allFiles.size(); ++i)
|
|
|
|
{
|
|
|
|
QFileInfo info(allFiles.at(i));
|
|
|
|
if (info.created().daysTo(now) > 30)
|
|
|
|
{
|
|
|
|
QFile(allFiles.at(i)).remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-30 16:30:47 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::GatherLogs() const
|
|
|
|
{
|
|
|
|
QTextStream *out = nullptr;
|
|
|
|
QFile *log = new QFile(QString("%1/valentina.log").arg(LogDirPath()));
|
|
|
|
if (log->open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text))
|
|
|
|
{
|
|
|
|
out = new QTextStream(log);
|
|
|
|
|
|
|
|
QStringList filters{"*.log"};
|
|
|
|
QDir logsDir(LogDirPath());
|
|
|
|
logsDir.setNameFilters(filters);
|
|
|
|
logsDir.setCurrent(LogDirPath());
|
|
|
|
|
|
|
|
const QStringList allFiles = logsDir.entryList(QDir::NoDotAndDotDot | QDir::Files);
|
|
|
|
if (allFiles.isEmpty() == false)
|
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
for (int i = 0, sz = allFiles.size(); i < sz; ++i)
|
2014-11-30 16:30:47 +01:00
|
|
|
{
|
2015-09-14 13:53:49 +02:00
|
|
|
auto fn = allFiles.at(i);
|
|
|
|
QFileInfo info(fn);
|
2014-11-30 16:30:47 +01:00
|
|
|
if (info.fileName() == "valentina.log")
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2015-09-14 13:53:49 +02:00
|
|
|
|
|
|
|
VLockGuard<QFile> tmp(info.absoluteFilePath() + ".lock", [&fn](){return new QFile(fn);});
|
|
|
|
|
|
|
|
if (tmp.IsLocked())
|
2014-11-30 16:30:47 +01:00
|
|
|
{
|
|
|
|
*out <<"--------------------------" << endl;
|
2015-09-14 13:53:49 +02:00
|
|
|
if (tmp.GetProtected()->open(QIODevice::ReadOnly | QIODevice::Text))
|
2014-11-30 16:30:47 +01:00
|
|
|
{
|
2015-09-18 22:38:11 +02:00
|
|
|
QTextStream in(tmp.GetProtected().get());
|
2014-11-30 16:30:47 +01:00
|
|
|
while (!in.atEnd())
|
|
|
|
{
|
|
|
|
*out << in.readLine() << endl;
|
|
|
|
}
|
2015-09-14 13:53:49 +02:00
|
|
|
tmp.GetProtected()->close();
|
2014-11-30 16:30:47 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2015-09-19 20:02:10 +02:00
|
|
|
*out << "Log file error:" + tmp.GetProtected()->errorString() << endl;
|
2014-11-30 16:30:47 +01:00
|
|
|
}
|
|
|
|
}
|
2014-12-25 16:50:46 +01:00
|
|
|
else
|
|
|
|
{
|
2015-10-03 06:50:38 +02:00
|
|
|
qCDebug(vApp, "Failed to lock %s", qUtf8Printable(info.absoluteFilePath()));
|
2014-12-25 16:50:46 +01:00
|
|
|
}
|
2014-11-30 16:30:47 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
*out << "Could not find logs.";
|
|
|
|
}
|
|
|
|
log->close();
|
|
|
|
}
|
|
|
|
delete out;
|
|
|
|
delete log;
|
|
|
|
}
|
|
|
|
|
2014-11-15 16:52:27 +01:00
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
// Catch exception and create report. Use if program build with Mingw compiler.
|
|
|
|
// See more about catcher https://github.com/jrfonseca/drmingw/blob/master/README.md
|
|
|
|
void VApplication::DrMingw()
|
|
|
|
{
|
|
|
|
QFile drmingw("exchndl.dll");
|
2015-03-02 18:11:43 +01:00
|
|
|
if (drmingw.exists())
|
2014-11-15 16:52:27 +01:00
|
|
|
{// If don't want create reports just delete exchndl.dll from installer
|
|
|
|
LoadLibrary(L"exchndl.dll");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::CollectReports() const
|
|
|
|
{
|
|
|
|
// Seek file "binary_name.RPT"
|
|
|
|
const QString reportName = QString("%1/%2.RPT").arg(applicationDirPath())
|
2015-08-25 19:53:03 +02:00
|
|
|
.arg(QFileInfo(arguments().at(0)).baseName());
|
2014-11-15 16:52:27 +01:00
|
|
|
QFile reportFile(reportName);
|
|
|
|
if (reportFile.exists())
|
|
|
|
{ // Hooray we have found crash
|
|
|
|
if (settings == nullptr)
|
|
|
|
{
|
|
|
|
return;// Settings was not opened.
|
|
|
|
}
|
|
|
|
|
2014-11-22 17:15:47 +01:00
|
|
|
if (settings->GetSendReportState())
|
2014-11-15 16:52:27 +01:00
|
|
|
{ // Try send report
|
|
|
|
// Remove gist.json file before close app.
|
|
|
|
connect(this, &VApplication::aboutToQuit, this, &VApplication::CleanGist, Qt::UniqueConnection);
|
|
|
|
SendReport(reportName);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // Just collect report to /reports directory
|
|
|
|
CollectReport(reportName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::CollectReport(const QString &reportName) const
|
|
|
|
{
|
|
|
|
const QString reportsDir = QString("%1/reports").arg(qApp->applicationDirPath());
|
|
|
|
QDir reports(reportsDir);
|
|
|
|
if (reports.exists() == false)
|
|
|
|
{
|
|
|
|
reports.mkpath("."); // Create directory for reports if need
|
|
|
|
}
|
|
|
|
|
|
|
|
const QDateTime now = QDateTime::currentDateTime();
|
2014-11-20 13:18:43 +01:00
|
|
|
const QString timestamp = now.toString(QLatin1String("yyyy.MM.dd-hh_mm_ss"));
|
|
|
|
QString filename = QString("%1/reports/crash-%2.RPT").arg(qApp->applicationDirPath()).arg(timestamp);
|
2014-11-15 16:52:27 +01:00
|
|
|
|
|
|
|
QFile reportFile(reportName);
|
|
|
|
reportFile.copy(filename); // Collect new crash
|
|
|
|
reportFile.remove(); // Clear after yourself
|
2014-11-20 13:18:43 +01:00
|
|
|
|
|
|
|
filename = QString("%1/reports/log-%2.log").arg(qApp->applicationDirPath()).arg(timestamp);
|
2015-10-12 13:52:48 +02:00
|
|
|
// cppcheck-suppress leakReturnValNotUsed
|
2014-11-30 16:30:47 +01:00
|
|
|
GatherLogs();
|
|
|
|
QFile logFile(QString("%1/valentina.log").arg(LogDirPath()));
|
2014-11-20 13:18:43 +01:00
|
|
|
logFile.copy(filename); // Collect log
|
2014-11-15 16:52:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::CleanGist() const
|
|
|
|
{
|
|
|
|
QFile gistFile(GistFileName);
|
|
|
|
if (gistFile.exists())
|
|
|
|
{
|
|
|
|
gistFile.remove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
void VApplication::SendReport(const QString &reportName) const
|
|
|
|
{
|
|
|
|
QString content;
|
|
|
|
QFile reportFile(reportName);
|
2014-11-20 13:18:43 +01:00
|
|
|
if (reportFile.open(QIODevice::ReadOnly | QIODevice::Text))
|
2014-11-15 16:52:27 +01:00
|
|
|
{
|
2014-11-20 13:18:43 +01:00
|
|
|
content = ReadFileForSending(reportFile);
|
|
|
|
reportFile.close();
|
2014-11-15 16:52:27 +01:00
|
|
|
}
|
2014-11-20 13:18:43 +01:00
|
|
|
else
|
2014-11-15 16:52:27 +01:00
|
|
|
{
|
2014-11-26 18:02:34 +01:00
|
|
|
content = "RPT file error:" + reportFile.errorString() + "\r\n";
|
2014-11-15 16:52:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Additional information
|
|
|
|
content.append(QString("-------------------------------")+"\r\n");
|
|
|
|
content.append(QString("Version:%1").arg(APP_VERSION)+"\r\n");
|
2015-02-18 11:17:56 +01:00
|
|
|
content.append(QString("Build revision:%1").arg(BUILD_REVISION)+"\r\n");
|
2014-11-15 16:52:27 +01:00
|
|
|
content.append(QString("Based on Qt %2 (32 bit)").arg(QT_VERSION_STR)+"\r\n");
|
|
|
|
content.append(QString("Built on %3 at %4").arg(__DATE__).arg(__TIME__)+"\r\n");
|
2015-02-18 14:29:44 +01:00
|
|
|
content.append(QString("Web site:http://www.valentina-project.org/ ")+"\r\n");
|
2014-11-20 13:18:43 +01:00
|
|
|
content.append("\r\n");
|
2014-11-15 16:52:27 +01:00
|
|
|
|
|
|
|
// Creating json with report
|
|
|
|
// Example:
|
|
|
|
//{
|
|
|
|
// "description":"Crash report",
|
|
|
|
// "public":"true",
|
|
|
|
// "files":{
|
2014-11-20 13:18:43 +01:00
|
|
|
// "valentina.RPT":{
|
2014-11-15 16:52:27 +01:00
|
|
|
// "content":"Report text here"
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
//}
|
|
|
|
|
|
|
|
// Useful to know when crash was created
|
|
|
|
const QDateTime now = QDateTime::currentDateTime();
|
|
|
|
const QString timestamp = now.toString(QLatin1String("yyyy/MM/dd hh:mm:ss:zzz"));
|
|
|
|
const QString report = QString("Crash report was created %2").arg(timestamp);
|
|
|
|
|
|
|
|
QJsonObject reportObject;
|
|
|
|
reportObject.insert(QStringLiteral("description"), QJsonValue(report));
|
|
|
|
reportObject.insert(QStringLiteral("public"), QJsonValue(QString("true")));
|
|
|
|
|
2014-11-26 18:02:34 +01:00
|
|
|
content.append(QString("\r\n-------------------------------\r\n"));
|
2014-11-20 13:18:43 +01:00
|
|
|
content.append(QString("Log:")+"\r\n");
|
|
|
|
|
2015-10-12 13:52:48 +02:00
|
|
|
// cppcheck-suppress leakReturnValNotUsed
|
2014-11-30 16:30:47 +01:00
|
|
|
GatherLogs();
|
|
|
|
QFile logFile(QString("%1/valentina.log").arg(LogDirPath()));
|
2014-11-20 13:18:43 +01:00
|
|
|
if (logFile.open(QIODevice::ReadOnly | QIODevice::Text))
|
|
|
|
{
|
2014-12-27 20:12:45 +01:00
|
|
|
const QString logContent = ReadFileForSending(logFile);
|
|
|
|
if (logContent.isEmpty())
|
|
|
|
{
|
|
|
|
content.append("Log file is empty.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
content.append(logContent);
|
|
|
|
}
|
2014-11-20 13:18:43 +01:00
|
|
|
logFile.close();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-11-26 18:02:34 +01:00
|
|
|
content.append("\r\n Log file error:" + logFile.errorString() + "\r\n");
|
2014-11-20 13:18:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
const QString contentSection = QStringLiteral("content");
|
2014-11-15 16:52:27 +01:00
|
|
|
QJsonObject contentObject;
|
2014-11-20 13:18:43 +01:00
|
|
|
contentObject.insert(contentSection, QJsonValue(content));
|
2014-11-15 16:52:27 +01:00
|
|
|
|
2014-11-20 13:18:43 +01:00
|
|
|
const QString filesSection = QStringLiteral("files");
|
2014-11-15 16:52:27 +01:00
|
|
|
QJsonObject fileObject;
|
|
|
|
fileObject.insert(QFileInfo(reportName).fileName(), QJsonValue(contentObject));
|
2014-11-20 13:18:43 +01:00
|
|
|
reportObject.insert(filesSection, QJsonValue(fileObject));
|
2014-11-15 16:52:27 +01:00
|
|
|
|
|
|
|
QFile gistFile(GistFileName);
|
|
|
|
if (!gistFile.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text))
|
|
|
|
{
|
|
|
|
qDebug("Couldn't open gist file.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Save data to file
|
|
|
|
QJsonDocument saveRep(reportObject);
|
|
|
|
gistFile.write(saveRep.toJson());
|
|
|
|
gistFile.close();
|
|
|
|
|
2015-02-22 19:46:08 +01:00
|
|
|
const QString curl = QString("%1/curl.exe").arg(qApp->applicationDirPath());
|
|
|
|
QFile curlFile(curl);
|
2014-11-15 16:52:27 +01:00
|
|
|
if (curlFile.exists())
|
|
|
|
{// Trying send report
|
2015-02-22 19:46:08 +01:00
|
|
|
// Change token if need
|
2015-09-13 09:40:41 +02:00
|
|
|
const QStringList token = QStringList()<<"eb"<<"78"<<"63"<<"4e"<<"de"<<"77"<<"f7"<<"e6"<<"01"<<"4a"<<"c3"<<"60"
|
|
|
|
<<"96"<<"b0"<<"2d"<<"54"<<"fb"<<"8e"<<"af"<<"ec";
|
2015-02-22 19:46:08 +01:00
|
|
|
|
|
|
|
const QString arg = QString("curl.exe -k -H \"Authorization: bearer ")+token.join("")+
|
|
|
|
QString("\" -H \"Accept: application/json\" -H \"Content-type: application/json\" -X POST "
|
|
|
|
"--data @gist.json https://api.github.com/gists");
|
2015-09-16 15:47:32 +02:00
|
|
|
QProcess proc;
|
|
|
|
proc.start(arg);
|
|
|
|
proc.waitForFinished(10000); // 10 sec
|
2014-11-15 16:52:27 +01:00
|
|
|
reportFile.remove();// Clear after yourself
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{// We can not send than just collect
|
|
|
|
CollectReport(reportName);
|
|
|
|
}
|
2015-02-22 19:46:08 +01:00
|
|
|
curlFile.close();
|
2014-11-15 16:52:27 +01:00
|
|
|
}
|
2014-11-20 13:18:43 +01:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------------------------------------
|
|
|
|
QString VApplication::ReadFileForSending(QFile &file) const
|
|
|
|
{
|
|
|
|
QString content;
|
|
|
|
QTextStream in(&file);
|
|
|
|
while (!in.atEnd())
|
|
|
|
{
|
|
|
|
content.append(in.readLine()+"\r\n");// Windows end of line
|
|
|
|
}
|
|
|
|
return content;
|
|
|
|
}
|
2014-11-15 16:52:27 +01:00
|
|
|
#endif //defined(Q_OS_WIN) && defined(Q_CC_GNU)
|