X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fcoreapplication.cpp;h=d662820c774a8dc4009704dbbc2d495dfa3b1fcd;hb=39328183a6a87c6eb10a9dbbffcd5d65bf154a1f;hp=b9422b8bfa2d083bfe9346dc7c655c2bcaff745a;hpb=0a43227b8cd44625f4881cc1545d42c8c8a4876c;p=quassel.git diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index b9422b8b..d662820c 100644 --- a/src/core/coreapplication.cpp +++ b/src/core/coreapplication.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2016 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,77 +20,25 @@ #include "coreapplication.h" -#include "core.h" -#include "logger.h" - -CoreApplicationInternal::CoreApplicationInternal() - : _coreCreated(false) -{ -} - - -CoreApplicationInternal::~CoreApplicationInternal() -{ - if (_coreCreated) { - Core::saveState(); - Core::destroy(); - } -} - - -bool CoreApplicationInternal::init() -{ - /* FIXME - This is an initial check if logfile is writable since the warning would spam stdout if done - in current Logger implementation. Can be dropped whenever the logfile is only opened once. - */ - QFile logFile; - if (!Quassel::optionValue("logfile").isEmpty()) { - logFile.setFileName(Quassel::optionValue("logfile")); - if (!logFile.open(QIODevice::Append | QIODevice::Text)) - qWarning("Warning: Couldn't open logfile '%s' - will log to stdout instead", qPrintable(logFile.fileName())); - else logFile.close(); - } - - Core::instance(); // create and init the core - _coreCreated = true; - - if (!Quassel::isOptionSet("norestore")) - Core::restoreState(); - - return true; -} - - -/*****************************************************************************/ - CoreApplication::CoreApplication(int &argc, char **argv) - : QCoreApplication(argc, argv), Quassel() + : QCoreApplication(argc, argv) { -#ifdef Q_OS_MAC - disableCrashhandler(); -#endif /* Q_OS_MAC */ - - setRunMode(Quassel::CoreOnly); - _internal = new CoreApplicationInternal(); + Quassel::registerQuitHandler([this]() { + connect(_core.get(), SIGNAL(shutdownComplete()), this, SLOT(onShutdownComplete())); + _core->shutdown(); + }); } -CoreApplication::~CoreApplication() +void CoreApplication::init() { - delete _internal; + _core.reset(new Core{}); // FIXME C++14: std::make_unique + _core->init(); } -bool CoreApplication::init() +void CoreApplication::onShutdownComplete() { - if (Quassel::init() && _internal->init()) { -#if QT_VERSION < 0x050000 - qInstallMsgHandler(Logger::logMessage); -#else - qInstallMessageHandler(Logger::logMessage); -#endif - return true; - } - return false; + connect(_core.get(), SIGNAL(destroyed()), QCoreApplication::instance(), SLOT(quit())); + _core.release()->deleteLater(); }