f50717b0f06804a75d0a34813a28bc601b46236d
[quassel.git] / src / core / corenetwork.h
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 CORENETWORK_H
22 #define CORENETWORK_H
23
24 #include "network.h"
25 #include "coreircchannel.h"
26
27 #include <QTimer>
28
29 #ifdef HAVE_SSL
30 # include <QSslSocket>
31 # include <QSslError>
32 #else
33 # include <QTcpSocket>
34 #endif
35
36 #include "coresession.h"
37
38 class CoreIdentity;
39 class IrcServerHandler;
40 class UserInputHandler;
41 class CtcpHandler;
42
43 class CoreNetwork : public Network {
44   Q_OBJECT
45
46 public:
47   CoreNetwork(const NetworkId &networkid, CoreSession *session);
48   ~CoreNetwork();
49   inline virtual const QMetaObject *syncMetaObject() const { return &Network::staticMetaObject; }
50
51   inline CoreIdentity *identityPtr() const { return coreSession()->identity(identity()); }
52   inline CoreSession *coreSession() const { return _coreSession; }
53
54   inline IrcServerHandler *ircServerHandler() const { return _ircServerHandler; }
55   inline UserInputHandler *userInputHandler() const { return _userInputHandler; }
56   inline CtcpHandler *ctcpHandler() const { return _ctcpHandler; }
57
58   //! Decode a string using the server (network) decoding.
59   inline QString serverDecode(const QByteArray &string) const { return decodeServerString(string); }
60
61   //! Decode a string using a channel-specific encoding if one is set (and use the standard encoding else).
62   QString channelDecode(const QString &channelName, const QByteArray &string) const;
63
64   //! Decode a string using an IrcUser-specific encoding, if one exists (using the standaed encoding else).
65   QString userDecode(const QString &userNick, const QByteArray &string) const;
66
67   //! Encode a string using the server (network) encoding.
68   inline QByteArray serverEncode(const QString &string) const { return encodeServerString(string); }
69
70   //! Encode a string using the channel-specific encoding, if set, and use the standard encoding else.
71   QByteArray channelEncode(const QString &channelName, const QString &string) const;
72
73   //! Encode a string using the user-specific encoding, if set, and use the standard encoding else.
74   QByteArray userEncode(const QString &userNick, const QString &string) const;
75
76   inline QString channelKey(const QString &channel) const { return _channelKeys.value(channel.toLower(), QString()); }
77
78   inline bool isAutoWhoInProgress(const QString &channel) const { return _autoWhoInProgress.value(channel.toLower(), 0); }
79
80   inline UserId userId() const { return _coreSession->user(); }
81
82 public slots:
83   virtual void setMyNick(const QString &mynick);
84
85   virtual void requestConnect() const;
86   virtual void requestDisconnect() const;
87   virtual void requestSetNetworkInfo(const NetworkInfo &info);
88
89   virtual void setUseAutoReconnect(bool);
90   virtual void setAutoReconnectInterval(quint32);
91   virtual void setAutoReconnectRetries(quint16);
92
93   void connectToIrc(bool reconnecting = false);
94   void disconnectFromIrc(bool requested = true, const QString &reason = QString(), bool withReconnect = false);
95
96   void userInput(BufferInfo bufferInfo, QString msg);
97   void putRawLine(QByteArray input);
98   void putCmd(const QString &cmd, const QList<QByteArray> &params, const QByteArray &prefix = QByteArray());
99
100   void setChannelJoined(const QString &channel);
101   void setChannelParted(const QString &channel);
102   void addChannelKey(const QString &channel, const QString &key);
103   void removeChannelKey(const QString &channel);
104
105   bool setAutoWhoDone(const QString &channel);
106
107   Server usedServer() const;
108
109   inline void resetPong() { _gotPong = true; }
110   inline bool gotPong() { return _gotPong; }
111
112 signals:
113   void recvRawServerMsg(QString);
114   void displayStatusMsg(QString);
115   void displayMsg(Message::Type, BufferInfo::Type, QString target, QString text, QString sender = "", Message::Flags flags = Message::None);
116   void disconnected(NetworkId networkId);
117   void connectionError(const QString &errorMsg);
118
119   void quitRequested(NetworkId networkId);
120   void sslErrors(const QVariant &errorData);
121
122 protected:
123   inline virtual IrcChannel *ircChannelFactory(const QString &channelname) { return new CoreIrcChannel(channelname, this); }
124
125 private slots:
126   void socketHasData();
127   void socketError(QAbstractSocket::SocketError);
128   void socketInitialized();
129   inline void socketCloseTimeout() { socket.disconnectFromHost(); }
130   void socketDisconnected();
131   void socketStateChanged(QAbstractSocket::SocketState);
132   void networkInitialized();
133
134   void sendPerform();
135   void restoreUserModes();
136   void doAutoReconnect();
137   void sendPing();
138   void sendAutoWho();
139   void startAutoWhoCycle();
140
141 #ifdef HAVE_SSL
142   void sslErrors(const QList<QSslError> &errors);
143 #endif
144
145   void fillBucketAndProcessQueue();
146
147   void writeToSocket(const QByteArray &data);
148
149 private:
150   CoreSession *_coreSession;
151
152 #ifdef HAVE_SSL
153   QSslSocket socket;
154 #else
155   QTcpSocket socket;
156 #endif
157
158   IrcServerHandler *_ircServerHandler;
159   UserInputHandler *_userInputHandler;
160   CtcpHandler *_ctcpHandler;
161
162   QHash<QString, QString> _channelKeys;  // stores persistent channels and their passwords, if any
163
164   QTimer _autoReconnectTimer;
165   int _autoReconnectCount;
166
167   QTimer _socketCloseTimer;
168
169   /* this flag triggers quitRequested() once the socket is closed
170    * it is needed to determine whether or not the connection needs to be
171    * in the automatic session restore. */
172   bool _quitRequested;
173   QString _quitReason;
174
175   bool _previousConnectionAttemptFailed;
176   int _lastUsedServerIndex;
177
178   QTimer _pingTimer;
179   bool _gotPong;
180
181   bool _autoWhoEnabled;
182   QStringList _autoWhoQueue;
183   QHash<QString, int> _autoWhoInProgress;
184   int _autoWhoInterval;
185   int _autoWhoNickLimit;
186   int _autoWhoDelay;
187   QTimer _autoWhoTimer, _autoWhoCycleTimer;
188
189   QTimer _tokenBucketTimer;
190   int _messagesPerSecond;   // token refill speed
191   int _burstSize;           // size of the token bucket
192   int _tokenBucket;         // the virtual bucket that holds the tokens
193   QList<QByteArray> _msgQueue;
194 };
195
196 #endif //CORENETWORK_H