X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcore%2Fcoreapplication.cpp;h=e73a09fb09696b2693c1bcd645c564097a484849;hp=3d8b15967a4b7b1a80b05da40ca0b56da367cef7;hb=f88bfa81380ceb2c4afce5b15f753570a1ef063d;hpb=10f9c27ee5d92ece2931947cd341c7f7b548f580 diff --git a/src/core/coreapplication.cpp b/src/core/coreapplication.cpp index 3d8b1596..e73a09fb 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-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -15,69 +15,37 @@ * 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 "core.h" #include "coreapplication.h" -#include "core.h" -CoreApplicationInternal::CoreApplicationInternal() - : _coreCreated(false) +CoreApplication::CoreApplication(int &argc, char **argv) + : QCoreApplication(argc, argv) { - Q_INIT_RESOURCE(sql); +#ifdef Q_OS_MAC + Quassel::disableCrashHandler(); +#endif /* Q_OS_MAC */ - // 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")); + Quassel::setRunMode(Quassel::CoreOnly); } -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() +{ + _core.reset(); + Quassel::destroy(); } -/*****************************************************************************/ - -CoreApplication::CoreApplication(int &argc, char **argv) : QCoreApplication(argc, argv), Quassel() { - setRunMode(Quassel::CoreOnly); - _internal = new CoreApplicationInternal(); -} -CoreApplication::~CoreApplication() { - delete _internal; -} +void CoreApplication::init() +{ + if (!Quassel::init()) { + throw ExitException{EXIT_FAILURE, tr("Could not initialize Quassel!")}; + } -bool CoreApplication::init() { - if(Quassel::init()) - return _internal->init(); - return false; + _core.reset(new Core{}); // FIXME C++14: std::make_unique + _core->init(); }