QssParser: Interpret "oblique" as italic
[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 "internalpeer.h"
26 #include "qtui.h"
27
28 class InternalPeer;
29
30 MonolithicApplication::MonolithicApplication(int &argc, char **argv)
31     : QtUiApplication(argc, argv)
32 {
33 #if defined(HAVE_KDE4) || defined(Q_OS_MAC)
34     Quassel::disableCrashHandler();
35 #endif /* HAVE_KDE4 || Q_OS_MAC */
36
37     Quassel::setRunMode(Quassel::Monolithic);
38 }
39
40
41 void MonolithicApplication::init()
42 {
43     QtUiApplication::init();
44
45     connect(Client::coreConnection(), SIGNAL(connectToInternalCore(QPointer<InternalPeer>)), this, SLOT(onConnectionRequest(QPointer<InternalPeer>)));
46
47     // If port is set, start internal core directly so external clients can connect
48     // This is useful in case the mono client re-gains remote connection capability,
49     // in which case the internal core would not have to be started by default.
50     if (Quassel::isOptionSet("port")) {
51         startInternalCore();
52     }
53 }
54
55
56 MonolithicApplication::~MonolithicApplication()
57 {
58     // Client needs to be destroyed first
59     Client::destroy();
60     _coreThread.quit();
61     _coreThread.wait();
62     Quassel::destroy();
63 }
64
65
66 void MonolithicApplication::startInternalCore()
67 {
68     if (_core) {
69         // Already started
70         return;
71     }
72
73     // Start internal core in a separate thread, so it doesn't block the UI
74     _core = new Core{};
75     _core->moveToThread(&_coreThread);
76     connect(&_coreThread, SIGNAL(started()), _core, SLOT(initAsync()));
77     connect(&_coreThread, SIGNAL(finished()), _core, SLOT(deleteLater()));
78
79     connect(this, SIGNAL(connectInternalPeer(QPointer<InternalPeer>)), _core, SLOT(connectInternalPeer(QPointer<InternalPeer>)));
80     connect(_core, SIGNAL(sessionState(Protocol::SessionState)), Client::coreConnection(), SLOT(internalSessionStateReceived(Protocol::SessionState)));
81
82     connect(_core, SIGNAL(dbUpgradeInProgress(bool)), Client::instance(), SLOT(onDbUpgradeInProgress(bool)));
83     connect(_core, SIGNAL(exitRequested(int,QString)), Client::instance(), SLOT(onExitRequested(int,QString)));
84
85     _coreThread.start();
86 }
87
88
89 void MonolithicApplication::onConnectionRequest(QPointer<InternalPeer> peer)
90 {
91     if (!_core) {
92         startInternalCore();
93     }
94
95     // While starting the core may take a while, the object itself is instantiated synchronously and the connections
96     // established, so it's safe to emit this immediately. The core will take care of queueing the request until
97     // initialization is complete.
98     emit connectInternalPeer(peer);
99 }