Store the type of the current tab completion (user or channel) in the TabCompleter...
[quassel.git] / src / core / sessionthread.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-09 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  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, 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 SessionThread::~SessionThread() {
39   // shut down thread gracefully
40   quit();
41   wait();
42 }
43
44 CoreSession *SessionThread::session() {
45   return _session;
46 }
47
48 UserId SessionThread::user() {
49   return _user;
50 }
51
52 bool SessionThread::isSessionInitialized() {
53   return _sessionInitialized;
54 }
55
56 void SessionThread::setSessionInitialized() {
57   _sessionInitialized = true;
58   foreach(QObject *peer, clientQueue) {
59     addClientToSession(peer);
60   }
61   clientQueue.clear();
62 }
63
64 void SessionThread::addClient(QObject *peer) {
65   if(isSessionInitialized()) {
66     addClientToSession(peer);
67   } else {
68     clientQueue.append(peer);
69   }
70 }
71
72 void SessionThread::addClientToSession(QObject *peer) {
73   QIODevice *socket = qobject_cast<QIODevice *>(peer);
74   if(socket) {
75     addRemoteClientToSession(socket);
76     return;
77   }
78
79   SignalProxy *proxy = qobject_cast<SignalProxy *>(peer);
80   if(proxy) {
81     addInternalClientToSession(proxy);
82     return;
83   }
84
85   qWarning() << "SessionThread::addClient() received neither QIODevice nor SignalProxy as peer!" << peer;
86 }
87
88 void SessionThread::addRemoteClientToSession(QIODevice *socket) {
89   socket->setParent(0);
90   socket->moveToThread(session()->thread());
91   emit addRemoteClient(socket);
92 }
93
94 void SessionThread::addInternalClientToSession(SignalProxy *proxy) {
95   emit addInternalClient(proxy);
96 }
97
98 void SessionThread::run() {
99   _session = new CoreSession(user(), _restoreState);
100   connect(this, SIGNAL(addRemoteClient(QIODevice *)), _session, SLOT(addClient(QIODevice *)));
101   connect(this, SIGNAL(addInternalClient(SignalProxy *)), _session, SLOT(addClient(SignalProxy *)));
102   connect(_session, SIGNAL(sessionState(const QVariant &)), Core::instance(), SIGNAL(sessionState(const QVariant &)));
103   emit initialized();
104   exec();
105   delete _session;
106 }
107