Fix ALL the license headers!
[quassel.git] / src / core / sessionthread.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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 <QMutexLocker>
22
23 #include "sessionthread.h"
24 #include "signalproxy.h"
25 #include "coresession.h"
26 #include "core.h"
27
28 SessionThread::SessionThread(UserId uid, bool restoreState, QObject *parent)
29     : QThread(parent),
30     _session(0),
31     _user(uid),
32     _sessionInitialized(false),
33     _restoreState(restoreState)
34 {
35     connect(this, SIGNAL(initialized()), this, SLOT(setSessionInitialized()));
36 }
37
38
39 SessionThread::~SessionThread()
40 {
41     // shut down thread gracefully
42     quit();
43     wait();
44 }
45
46
47 CoreSession *SessionThread::session()
48 {
49     return _session;
50 }
51
52
53 UserId SessionThread::user()
54 {
55     return _user;
56 }
57
58
59 bool SessionThread::isSessionInitialized()
60 {
61     return _sessionInitialized;
62 }
63
64
65 void SessionThread::setSessionInitialized()
66 {
67     _sessionInitialized = true;
68     foreach(QObject *peer, clientQueue) {
69         addClientToSession(peer);
70     }
71     clientQueue.clear();
72 }
73
74
75 void SessionThread::addClient(QObject *peer)
76 {
77     if (isSessionInitialized()) {
78         addClientToSession(peer);
79     }
80     else {
81         clientQueue.append(peer);
82     }
83 }
84
85
86 void SessionThread::addClientToSession(QObject *peer)
87 {
88     QIODevice *socket = qobject_cast<QIODevice *>(peer);
89     if (socket) {
90         addRemoteClientToSession(socket);
91         return;
92     }
93
94     SignalProxy *proxy = qobject_cast<SignalProxy *>(peer);
95     if (proxy) {
96         addInternalClientToSession(proxy);
97         return;
98     }
99
100     qWarning() << "SessionThread::addClient() received neither QIODevice nor SignalProxy as peer!" << peer;
101 }
102
103
104 void SessionThread::addRemoteClientToSession(QIODevice *socket)
105 {
106     socket->setParent(0);
107     socket->moveToThread(session()->thread());
108     emit addRemoteClient(socket);
109 }
110
111
112 void SessionThread::addInternalClientToSession(SignalProxy *proxy)
113 {
114     emit addInternalClient(proxy);
115 }
116
117
118 void SessionThread::run()
119 {
120     _session = new CoreSession(user(), _restoreState);
121     connect(this, SIGNAL(addRemoteClient(QIODevice *)), _session, SLOT(addClient(QIODevice *)));
122     connect(this, SIGNAL(addInternalClient(SignalProxy *)), _session, SLOT(addClient(SignalProxy *)));
123     connect(_session, SIGNAL(sessionState(const QVariant &)), Core::instance(), SIGNAL(sessionState(const QVariant &)));
124     emit initialized();
125     exec();
126     delete _session;
127 }