85fcd49e656f37b7624bfc7211942449e6a56781
[quassel.git] / src / core / core.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 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 #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 #include "types.h"
31
32 class CoreSession;
33 class Storage;
34
35 class Core : public QObject {
36   Q_OBJECT
37
38   public:
39     static Core * instance();
40     static void destroy();
41
42     static CoreSession * session(UserId);
43     static CoreSession * localSession();
44     static CoreSession * createSession(UserId);
45
46     static QVariant connectLocalClient(QString user, QString passwd);
47     static void disconnectLocalClient();
48
49   private slots:
50     bool startListening(uint port = DEFAULT_PORT);
51     void stopListening();
52     void incomingConnection();
53     void clientHasData();
54     void clientDisconnected();
55
56     bool initStorageSqlite(QVariantMap dbSettings, bool setup);
57
58   private:
59     Core();
60     ~Core();
61     void init();
62     static Core *instanceptr;
63     
64     //! Initiate a session for the user with the given credentials if one does not already exist.
65     /** This function is called during the init process for a new client. If there is no session for the
66      *  given user, one is created.
67      * \param userId The user
68      * \return A QVariant containing the session data, e.g. global data and buffers
69      */
70     QVariant initSession(UserId userId);
71     void processClientInit(QTcpSocket *socket, const QVariantMap &msg);
72     void processCoreSetup(QTcpSocket *socket, QVariantMap &msg);
73     
74     QStringList availableStorageProviders();
75
76     UserId guiUser;
77     QHash<UserId, CoreSession *> sessions;
78     Storage *storage;
79
80     QTcpServer server; // TODO: implement SSL
81     QHash<QTcpSocket *, quint32> blockSizes;
82     
83     bool configured;
84 };
85
86 #endif