Fixed a bug in SqliteStorage::setup() which could cause the Wizard to lock up in...
[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     bool initStorageSqlite(QVariantMap dbSettings, bool setup);
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 QVariantMap &msg);
71     void processCoreSetup(QTcpSocket *socket, QVariantMap &msg);
72     
73     QStringList availableStorageProviders();
74
75     UserId guiUser;
76     QHash<UserId, CoreSession *> sessions;
77     Storage *storage;
78
79     QTcpServer server; // TODO: implement SSL
80     QHash<QTcpSocket *, quint32> blockSizes;
81     
82     bool configured;
83 };
84
85 #endif