~ubuntu-branches/ubuntu/saucy/quassel/saucy-proposed

« back to all changes in this revision

Viewing changes to src/client/clientsyncer.h

  • Committer: Bazaar Package Importer
  • Author(s): Scott Kitterman
  • Date: 2010-02-17 12:49:50 UTC
  • mto: This revision was merged to the branch mainline in revision 59.
  • Revision ID: james.westby@ubuntu.com-20100217124950-v9hajw5d2xa6fszn
Tags: upstream-0.6~beta1
ImportĀ upstreamĀ versionĀ 0.6~beta1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
 *   Copyright (C) 2005-09 by the Quassel Project                          *
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
 
#include "types.h"
35
 
 
36
 
class IrcUser;
37
 
class IrcChannel;
38
 
class SignalProxy;
39
 
 
40
 
class ClientSyncer : public QObject {
41
 
  Q_OBJECT
42
 
 
43
 
public:
44
 
  ClientSyncer(QObject *parent = 0);
45
 
  ~ClientSyncer();
46
 
 
47
 
  inline const QIODevice *currentDevice() { return _socket; }
48
 
 
49
 
signals:
50
 
  void recvPartialItem(quint32 avail, quint32 size);
51
 
  void connectionError(const QString &errorMsg);
52
 
  void connectionWarnings(const QStringList &warnings);
53
 
  void connectionMsg(const QString &msg);
54
 
  void sessionProgress(quint32 part, quint32 total);
55
 
  void networksProgress(quint32 part, quint32 total);
56
 
  void socketStateChanged(QAbstractSocket::SocketState);
57
 
  void socketDisconnected();
58
 
 
59
 
  void startLogin();
60
 
  void loginFailed(const QString &error);
61
 
  void loginSuccess();
62
 
  void syncFinished();
63
 
  void startCoreSetup(const QVariantList &);
64
 
  void coreSetupSuccess();
65
 
  void coreSetupFailed(const QString &error);
66
 
 
67
 
  void encrypted(); // relaying encrypted signal of the encapsulated SslSocket
68
 
 
69
 
  void startInternalCore(ClientSyncer *syncer);
70
 
  void connectToInternalCore(SignalProxy *proxy);
71
 
 
72
 
  void handleIgnoreWarnings(bool permanently);
73
 
 
74
 
public slots:
75
 
  void connectToCore(const QVariantMap &);
76
 
  void loginToCore(const QString &user, const QString &passwd);
77
 
  void disconnectFromCore();
78
 
  void useInternalCore();
79
 
 
80
 
  inline void ignoreWarnings(bool permanently) { emit handleIgnoreWarnings(permanently); }
81
 
 
82
 
private slots:
83
 
  void coreSocketError(QAbstractSocket::SocketError);
84
 
  void coreHasData();
85
 
  void coreSocketConnected();
86
 
  void coreSocketDisconnected();
87
 
 
88
 
  void clientInitAck(const QVariantMap &msg);
89
 
 
90
 
  // for sync progress
91
 
  void networkInitDone();
92
 
  void checkSyncState();
93
 
 
94
 
  void syncToCore(const QVariantMap &sessionState);
95
 
  void internalSessionStateReceived(const QVariant &packedState);
96
 
  void sessionStateReceived(const QVariantMap &state);
97
 
 
98
 
  void connectionReady();
99
 
  void doCoreSetup(const QVariant &setupData);
100
 
 
101
 
  void setWarningsHandler(const char *slot);
102
 
  void resetWarningsHandler();
103
 
  void resetConnection();
104
 
 
105
 
#ifdef HAVE_SSL
106
 
  void ignoreSslWarnings(bool permanently);
107
 
  void sslSocketEncrypted();
108
 
  void sslErrors(const QList<QSslError> &errors);
109
 
#endif
110
 
 
111
 
private:
112
 
  QPointer<QIODevice> _socket;
113
 
  quint32 _blockSize;
114
 
 
115
 
  QVariantMap coreConnectionInfo;
116
 
  QVariantMap _coreMsgBuffer;
117
 
 
118
 
  QSet<QObject *> netsToSync;
119
 
  int numNetsToSync;
120
 
 
121
 
  QString coreInfoString(const QVariantMap &);
122
 
};
123
 
 
124
 
#endif