ae39dc18c45b9818207c0bec8e9d23ce536774f7
[quassel.git] / src / core / core.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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  *   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 initStorage(QVariantMap dbSettings, bool setup);
60     bool initStorage(QVariantMap dbSettings);
61
62   private:
63     Core();
64     ~Core();
65     void init();
66     static Core *instanceptr;
67     
68     //! Initiate a session for the user with the given credentials if one does not already exist.
69     /** This function is called during the init process for a new client. If there is no session for the
70      *  given user, one is created.
71      * \param userId The user
72      * \return A QVariant containing the session data, e.g. global data and buffers
73      */
74     QVariant initSession(UserId userId);
75     void processClientInit(QTcpSocket *socket, const QVariantMap &msg);
76     void processCoreSetup(QTcpSocket *socket, QVariantMap &msg);
77     
78     QStringList availableStorageProviders();
79
80     UserId guiUser;
81     QHash<UserId, CoreSession *> sessions;
82     Storage *storage;
83
84     QTcpServer server; // TODO: implement SSL
85     QHash<QTcpSocket *, quint32> blockSizes;
86     
87     bool configured;
88 };
89
90 #endif