Fix default button behavior in CoreConnectDlg.
[quassel.git] / src / core / sessionthread.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
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
25 #include "coresession.h"
26
27 SessionThread::SessionThread(UserId uid, bool restoreState, QObject *parent) : QThread(parent) {
28     _user = uid;
29     _session = 0;
30     _sessionInitialized = false;
31     _restoreState = restoreState,
32     connect(this, SIGNAL(initialized()), this, SLOT(setSessionInitialized()));
33 }
34
35 SessionThread::~SessionThread() {
36   // shut down thread gracefully
37   quit();
38   wait();
39 }
40
41 CoreSession *SessionThread::session() {
42   return _session;
43 }
44
45 UserId SessionThread::user() {
46   return _user;
47 }
48
49 bool SessionThread::isSessionInitialized() {
50   return _sessionInitialized;
51 }
52
53 void SessionThread::setSessionInitialized() {
54   _sessionInitialized = true;
55   foreach(QIODevice *socket, clientQueue) {
56     addClientToSession(socket);
57   }
58   clientQueue.clear();
59 }
60
61 void SessionThread::addClient(QIODevice *socket) {
62   if(isSessionInitialized()) {
63     addClientToSession(socket);
64   } else {
65     clientQueue.append(socket);
66   }
67 }
68
69 void SessionThread::addClientToSession(QIODevice *socket) {
70   socket->setParent(0);
71   socket->moveToThread(session()->thread());
72   if(!QMetaObject::invokeMethod(session(), "addClient", Q_ARG(QObject *, socket))) {
73     qWarning() << qPrintable(tr("Could not initialize session!"));
74     socket->close();
75   }
76 }
77
78 void SessionThread::run() {
79   _session = new CoreSession(user(), _restoreState);
80   emit initialized();
81   exec();
82   delete _session;
83 }
84