X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreapplication.cpp;h=864c5a8277321808ef1bdca44130e2133fd315bd;hp=f0c84f32480446e03917f3aacd392581c530ed32;hb=a65f42197839da536975b3e2858eedcef420035f;hpb=17331c42de77ff91ce297354f9ba9eed6ecb4256 diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index f0c84f32..864c5a82 100644 --- a/src/core/coreapplication.cpp +++ b/src/core/coreapplication.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-09 by the Quassel Project * + * Copyright (C) 2005-2019 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,66 +15,35 @@ * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * ***************************************************************************/ #include "coreapplication.h" -#include "core.h" -#include "logger.h" - -CoreApplicationInternal::CoreApplicationInternal() - : _coreCreated(false) +CoreApplication::CoreApplication(int &argc, char **argv) + : QCoreApplication(argc, argv) { - + Quassel::setRunMode(Quassel::CoreOnly); + Quassel::registerQuitHandler([this]() { + connect(_core.get(), SIGNAL(shutdownComplete()), this, SLOT(onShutdownComplete())); + _core->shutdown(); + }); } -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(); +void CoreApplication::init() +{ + if (!Quassel::init()) { + throw ExitException{EXIT_FAILURE, tr("Could not initialize Quassel!")}; + } - return true; + _core.reset(new Core{}); // FIXME C++14: std::make_unique + _core->init(); } -/*****************************************************************************/ -CoreApplication::CoreApplication(int &argc, char **argv) - : QCoreApplication(argc, argv), Quassel() +void CoreApplication::onShutdownComplete() { - setRunMode(Quassel::CoreOnly); - _internal = new CoreApplicationInternal(); -} - -CoreApplication::~CoreApplication() { - delete _internal; -} - -bool CoreApplication::init() { - if(Quassel::init() && _internal->init()) { - qInstallMsgHandler(Logger::logMessage); - return true; - } - return false; + connect(_core.get(), SIGNAL(destroyed()), QCoreApplication::instance(), SLOT(quit())); + _core.release()->deleteLater(); }