Various smaller stuff, some parts of the new identity settingspage, plus Quassel
[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     static void saveState();
50     static void restoreState();
51
52   private slots:
53     bool startListening(uint port = Global::defaultPort);
54     void stopListening();
55     void incomingConnection();
56     void clientHasData();
57     void clientDisconnected();
58
59     bool initStorageSqlite(QVariantMap dbSettings, bool setup);
60
61   private:
62     Core();
63     ~Core();
64     void init();
65     static Core *instanceptr;
66     
67     //! Initiate a session for the user with the given credentials if one does not already exist.
68     /** This function is called during the init process for a new client. If there is no session for the
69      *  given user, one is created.
70      * \param userId The user
71      * \return A QVariant containing the session data, e.g. global data and buffers
72      */
73     QVariant initSession(UserId userId);
74     void processClientInit(QTcpSocket *socket, const QVariantMap &msg);
75     void processCoreSetup(QTcpSocket *socket, QVariantMap &msg);
76     
77     QStringList availableStorageProviders();
78
79     UserId guiUser;
80     QHash<UserId, CoreSession *> sessions;
81     Storage *storage;
82
83     QTcpServer server; // TODO: implement SSL
84     QHash<QTcpSocket *, quint32> blockSizes;
85     
86     bool configured;
87 };
88
89 #endif