374d821021f18ca5226e786222122021633e80d9
[quassel.git] / src / core / core.h
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by The Quassel 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) any later version.                                   *
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 #ifndef _CORE_H_
22 #define _CORE_H_
23
24 #include <QString>
25 #include <QVariant>
26 #include <QTcpServer>
27 #include <QTcpSocket>
28
29 #include "coreproxy.h"
30
31 class CoreSession;
32 class Storage;
33
34 class Core : public QObject {
35   Q_OBJECT
36
37   public:
38     static Core * instance();
39     static void destroy();
40
41     static CoreSession * session(UserId);
42     static CoreSession * localSession();
43     static CoreSession * createSession(UserId);
44
45     static QVariant connectLocalClient(QString user, QString passwd);
46     static QVariant disconnectLocalClient();
47
48   private slots:
49     void recvProxySignal(CoreSignal, QVariant, QVariant, QVariant);
50     bool startListening(uint port = 4242);
51     void stopListening();
52     void incomingConnection();
53     void clientHasData();
54     void clientDisconnected();
55     void updateGlobalData(UserId, QString);
56
57   private:
58     Core();
59     ~Core();
60     void init();
61     static Core *instanceptr;
62
63     //! Initiate a session for the user with the given credentials if one does not already exist.
64     /** This function is called during the init process for a new client. If there is no session for the
65      *  given user, one is created.
66      * \param userId The user
67      * \return A QVariant containing the session data, e.g. global data and buffers
68      */
69     QVariant initSession(UserId userId);
70     void processClientInit(QTcpSocket *socket, const QVariant &v);
71     void processClientUpdate(QTcpSocket *socket, QString key, const QVariant &data);
72
73     UserId guiUser;
74     QHash<UserId, CoreSession *> sessions;
75     Storage *storage;
76
77     QTcpServer server; // TODO: implement SSL
78     QHash<QTcpSocket *, UserId> validClients;
79     QHash<QTcpSocket *, quint32> blockSizes;
80 };
81
82 #endif