X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreapplication.cpp;h=50670ea96f916a65179090fdbc3b93e8616c2656;hp=d92e46d9df30db2dcb1980e06bdae02fc54866f7;hb=HEAD;hpb=5c6804f291a63f978e328aeddcc8448e3443b45e diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index d92e46d9..50670ea9 100644 --- a/src/core/coreapplication.cpp +++ b/src/core/coreapplication.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-08 by the Quassel IRC Team * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,62 +15,28 @@ * 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" - -CoreApplicationInternal::CoreApplicationInternal() { - // put core-only arguments here - CliParser *parser = Quassel::cliParser(); - parser->addOption("port",'p', tr("The port quasselcore will listen at"), QString("4242")); - parser->addSwitch("norestore", 'n', tr("Don't restore last core's state")); - parser->addOption("logfile", 'l', tr("Path to logfile")); - parser->addOption("loglevel", 'L', tr("Loglevel Debug|Info|Warning|Error"), "Info"); - parser->addOption("datadir", 0, tr("Specify the directory holding datafiles like the Sqlite DB and the SSL Cert")); -} - -CoreApplicationInternal::~CoreApplicationInternal() { - 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 - - if(!Quassel::isOptionSet("norestore")) { - Core::restoreState(); - } - return true; -} - -/*****************************************************************************/ - -CoreApplication::CoreApplication(int &argc, char **argv) : QCoreApplication(argc, argv), Quassel() { - setRunMode(Quassel::CoreOnly); - _internal = new CoreApplicationInternal(); +CoreApplication::CoreApplication(int& argc, char** argv) + : QCoreApplication(argc, argv) +{ + Quassel::registerQuitHandler([this]() { + connect(_core.get(), &Core::shutdownComplete, this, &CoreApplication::onShutdownComplete); + _core->shutdown(); + }); } -CoreApplication::~CoreApplication() { - delete _internal; +void CoreApplication::init() +{ + _core = std::make_unique(); + _core->init(); } -bool CoreApplication::init() { - if(Quassel::init()) - return _internal->init(); - return false; +void CoreApplication::onShutdownComplete() +{ + connect(_core.get(), &QObject::destroyed, QCoreApplication::instance(), &QCoreApplication::quit); + _core.release()->deleteLater(); }