core: Simplify core initialization logic
[quassel.git] / src / qtui / monoapplication.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "monoapplication.h"
22 #include "coreapplication.h"
23 #include "client.h"
24 #include "core.h"
25 #include "qtui.h"
26
27 class InternalPeer;
28
29 MonolithicApplication::MonolithicApplication(int &argc, char **argv)
30     : QtUiApplication(argc, argv)
31 {
32 #if defined(HAVE_KDE4) || defined(Q_OS_MAC)
33     Quassel::disableCrashHandler();
34 #endif /* HAVE_KDE4 || Q_OS_MAC */
35
36     Quassel::setRunMode(Quassel::Monolithic);
37 }
38
39
40 bool MonolithicApplication::init()
41 {
42     if (!QtUiApplication::init())
43         return false;
44
45     connect(Client::coreConnection(), SIGNAL(startInternalCore()), SLOT(startInternalCore()));
46
47     return true;
48 }
49
50
51 MonolithicApplication::~MonolithicApplication()
52 {
53     // Client needs to be destroyed first
54     Client::destroy();
55     _core.reset();
56     Quassel::destroy();
57 }
58
59
60 void MonolithicApplication::startInternalCore()
61 {
62     if (!_core) {
63         _core.reset(new Core{});  // FIXME C++14: std::make_unique
64         Core::instance()->init();
65     }
66     connect(Client::coreConnection(), SIGNAL(connectToInternalCore(InternalPeer*)), Core::instance(), SLOT(setupInternalClientSession(InternalPeer*)));
67     connect(Core::instance(), SIGNAL(sessionState(Protocol::SessionState)), Client::coreConnection(), SLOT(internalSessionStateReceived(Protocol::SessionState)));
68 }