Big, big, major commit this time:
[quassel.git] / core / coreproxy.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 _COREPROXY_H_
22 #define _COREPROXY_H_
23
24 #include "proxy_common.h"
25
26 #include <QtCore>
27 #include <QTcpSocket>
28 #include <QTcpServer>
29
30 /** This class is the Core side of the proxy. The Core connects its signals and slots to it,
31  *  and the calls are marshalled and sent to (or received and unmarshalled from) the GUIProxy.
32  *  The connection functions are defined in main/main_core.cpp or main/main_mono.cpp.
33  */
34 class CoreProxy : public QObject {
35   Q_OBJECT
36
37   public:
38     CoreProxy();
39
40   public slots:
41     inline void csCoreMessage(QString s)                           { send(CS_CORE_MESSAGE, s); }
42     inline void csUpdateGlobalData(QString key, QVariant data)     { send(CS_UPDATE_GLOBAL_DATA, key, data); }
43
44   signals:
45     void gsPutGlobalData(QString, QVariant);
46     void gsUserInput(QString);
47     void gsRequestConnect(QString, quint16);
48
49   private:
50     void send(CoreSignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
51     void recv(GUISignal, QVariant arg1 = QVariant(), QVariant arg2 = QVariant(), QVariant arg3 = QVariant());
52     void sendToGUI(CoreSignal, QVariant arg1, QVariant arg2, QVariant arg3);
53
54     void processClientInit(QTcpSocket *socket, const QVariant &v);
55     void processClientUpdate(QTcpSocket *, QString key, QVariant data);
56
57   private slots:
58     void incomingConnection();
59     void clientHasData();
60     void clientDisconnected();
61     void updateGlobalData(QString key);
62
63   private:
64     QTcpServer server;
65     QList<QTcpSocket *> clients;
66     QHash<QTcpSocket *, quint32> blockSizes;
67
68   friend class GUIProxy;
69 };
70
71 extern CoreProxy *coreProxy;
72
73
74
75 #endif