DataStreamPeer: Optimize the InitData message
[quassel.git] / src / core / sessionthread.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2014 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 #ifndef SESSIONTHREAD_H
22 #define SESSIONTHREAD_H
23
24 #include <QMutex>
25 #include <QThread>
26
27 #include "types.h"
28
29 class CoreSession;
30 class InternalPeer;
31 class RemotePeer;
32 class QIODevice;
33
34 class SessionThread : public QThread
35 {
36     Q_OBJECT
37
38 public:
39     SessionThread(UserId user, bool restoreState, QObject *parent = 0);
40     ~SessionThread();
41
42     void run();
43
44     CoreSession *session();
45     UserId user();
46
47 public slots:
48     void addClient(QObject *peer);
49
50 private slots:
51     void setSessionInitialized();
52
53 signals:
54     void initialized();
55     void shutdown();
56
57     void addRemoteClient(RemotePeer *peer);
58     void addInternalClient(InternalPeer *peer);
59
60 private:
61     CoreSession *_session;
62     UserId _user;
63     QList<QObject *> clientQueue;
64     bool _sessionInitialized;
65     bool _restoreState;
66
67     bool isSessionInitialized();
68     void addClientToSession(QObject *peer);
69     void addRemoteClientToSession(RemotePeer *remotePeer);
70     void addInternalClientToSession(InternalPeer *internalPeer);
71 };
72
73
74 #endif