Merging r732:766 from trunk to branches/0.3.
[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 #ifndef QT_NO_OPENSSL
29 #include <QSslSocket>
30 #else
31 #include <QTcpSocket>
32 #endif
33
34 class IrcUser;
35 class IrcChannel;
36
37 class ClientSyncer : public QObject {
38   Q_OBJECT
39
40   public:
41     ClientSyncer(QObject *parent = 0);
42     ~ClientSyncer();
43
44   signals:
45     void recvPartialItem(quint32 avail, quint32 size);
46     void connectionError(const QString &errorMsg);
47     void connectionMsg(const QString &msg);
48     void sessionProgress(quint32 part, quint32 total);
49     void networksProgress(quint32 part, quint32 total);
50     void channelsProgress(quint32 part, quint32 total);
51     void ircUsersProgress(quint32 part, quint32 total);
52     void socketStateChanged(QAbstractSocket::SocketState);
53     void socketDisconnected();
54
55     void startLogin();
56     void loginFailed(const QString &error);
57     void loginSuccess();
58     void syncFinished();
59     void startCoreSetup(const QVariantList &);
60     void coreSetupSuccess();
61     void coreSetupFailed(const QString &error);
62
63     void encrypted(bool);
64
65   public slots:
66     void connectToCore(const QVariantMap &);
67     void loginToCore(const QString &user, const QString &passwd);
68     void disconnectFromCore();
69
70   private slots:
71     void coreSocketError(QAbstractSocket::SocketError);
72     void coreHasData();
73     void coreSocketConnected();
74     void coreSocketDisconnected();
75
76     void clientInitAck(const QVariantMap &msg);
77
78   // for sync progress
79     void networkInitDone();
80     void ircUserAdded(IrcUser *);
81     void ircUserRemoved(QObject *);
82     void ircUserInitDone(IrcUser *);
83     void ircChannelAdded(IrcChannel *);
84     void ircChannelRemoved(QObject *);
85     void ircChannelInitDone(IrcChannel *);
86     void checkSyncState();
87
88     void syncToCore(const QVariantMap &sessionState);
89     void sessionStateReceived(const QVariantMap &state);
90
91     void doCoreSetup(const QVariant &setupData);
92 #ifndef QT_NO_OPENSSL
93     void sslErrors(const QList<QSslError> &errors);
94 #endif
95   
96   private:
97     QPointer<QIODevice> socket;
98     quint32 blockSize;
99     QVariantMap coreConnectionInfo;
100
101     QSet<QObject *> netsToSync, channelsToSync, usersToSync;
102     int numNetsToSync, numChannelsToSync, numUsersToSync;
103
104 };
105
106 #endif