16c516d70762e1d8a086e82498231ebb11cc67d8
[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 connectToInternalCore(SignalProxy *proxy);
65
66 public slots:
67   void connectToCore(const QVariantMap &);
68   void loginToCore(const QString &user, const QString &passwd);
69   void disconnectFromCore();
70   void useInternalCore();
71
72 private slots:
73   void coreSocketError(QAbstractSocket::SocketError);
74   void coreHasData();
75   void coreSocketConnected();
76   void coreSocketDisconnected();
77
78   void clientInitAck(const QVariantMap &msg);
79
80   // for sync progress
81   void networkInitDone();
82   void checkSyncState();
83
84   void syncToCore(const QVariantMap &sessionState);
85   void internalSessionStateReceived(const QVariant &packedState);
86   void sessionStateReceived(const QVariantMap &state);
87
88   void doCoreSetup(const QVariant &setupData);
89 #ifdef HAVE_SSL
90     void sslErrors(const QList<QSslError> &errors);
91 #endif
92
93 private:
94   QPointer<QIODevice> socket;
95   quint32 blockSize;
96   QVariantMap coreConnectionInfo;
97
98   QSet<QObject *> netsToSync;
99   int numNetsToSync;
100 };
101
102 #endif