Monolithic build features now zero setup configuration: click and run
[quassel.git] / src / client / clientsyncer.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 _CLIENTSYNCER_H_
22 #define _CLIENTSYNCER_H_
23
24 #include <QPointer>
25 #include <QString>
26 #include <QVariantMap>
27
28 #ifdef HAVE_SSL
29 #  include <QSslSocket>
30 #else
31 #  include <QTcpSocket>
32 #endif
33
34 class IrcUser;
35 class IrcChannel;
36 class SignalProxy;
37
38 class ClientSyncer : public QObject {
39   Q_OBJECT
40
41 public:
42   ClientSyncer(QObject *parent = 0);
43   ~ClientSyncer();
44
45 signals:
46   void recvPartialItem(quint32 avail, quint32 size);
47   void connectionError(const QString &errorMsg);
48   void connectionMsg(const QString &msg);
49   void sessionProgress(quint32 part, quint32 total);
50   void networksProgress(quint32 part, quint32 total);
51   void socketStateChanged(QAbstractSocket::SocketState);
52   void socketDisconnected();
53
54   void startLogin();
55   void loginFailed(const QString &error);
56   void loginSuccess();
57   void syncFinished();
58   void startCoreSetup(const QVariantList &);
59   void coreSetupSuccess();
60   void coreSetupFailed(const QString &error);
61
62   void encrypted(bool);
63
64   void startInternalCore();
65   void connectToInternalCore(SignalProxy *proxy);
66
67 public slots:
68   void connectToCore(const QVariantMap &);
69   void loginToCore(const QString &user, const QString &passwd);
70   void disconnectFromCore();
71   void useInternalCore();
72
73 private slots:
74   void coreSocketError(QAbstractSocket::SocketError);
75   void coreHasData();
76   void coreSocketConnected();
77   void coreSocketDisconnected();
78
79   void clientInitAck(const QVariantMap &msg);
80
81   // for sync progress
82   void networkInitDone();
83   void checkSyncState();
84
85   void syncToCore(const QVariantMap &sessionState);
86   void internalSessionStateReceived(const QVariant &packedState);
87   void sessionStateReceived(const QVariantMap &state);
88
89   void doCoreSetup(const QVariant &setupData);
90 #ifdef HAVE_SSL
91     void sslErrors(const QList<QSslError> &errors);
92 #endif
93
94 private:
95   QPointer<QIODevice> socket;
96   quint32 blockSize;
97   QVariantMap coreConnectionInfo;
98
99   QSet<QObject *> netsToSync;
100   int numNetsToSync;
101 };
102
103 #endif