Added ModelPropertyMapper which allows to keep track of /current/ changes in the...
[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 "global.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 void disconnectLocalClient();
47
48   private slots:
49     bool startListening(uint port = DEFAULT_PORT);
50     void stopListening();
51     void incomingConnection();
52     void clientHasData();
53     void clientDisconnected();
54
55   private:
56     Core();
57     ~Core();
58     void init();
59     static Core *instanceptr;
60
61     //! Initiate a session for the user with the given credentials if one does not already exist.
62     /** This function is called during the init process for a new client. If there is no session for the
63      *  given user, one is created.
64      * \param userId The user
65      * \return A QVariant containing the session data, e.g. global data and buffers
66      */
67     QVariant initSession(UserId userId);
68     void processClientInit(QTcpSocket *socket, const QVariant &v);
69
70     UserId guiUser;
71     QHash<UserId, CoreSession *> sessions;
72     Storage *storage;
73
74     QTcpServer server; // TODO: implement SSL
75     QHash<QTcpSocket *, quint32> blockSizes;
76 };
77
78 #endif