Pressing enter in the topic line now sets the channel topic.
[quassel.git] / src / core / networkconnection.h
1 /***************************************************************************
2  *   Copyright (C) 2005-08 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 _NETWORKCONNECTION_H_
22 #define _NETWORKCONNECTION_H_
23
24 #include <QAbstractSocket>
25 #include <QString>
26 #include <QStringList>
27 #include <QTcpSocket>
28 #include <QTimer>
29
30 #include "identity.h"
31 #include "message.h"
32 #include "network.h"
33 #include "signalproxy.h"
34
35 class CoreSession;
36 class Network;
37
38 class IrcServerHandler;
39 class UserInputHandler;
40 class CtcpHandler;
41
42 class NetworkConnection : public QObject {
43   Q_OBJECT
44
45 public:
46   NetworkConnection(Network *network, CoreSession *session);
47   ~NetworkConnection();
48
49   NetworkId networkId() const;
50   QString networkName() const;
51   Network *network() const;
52   Identity *identity() const;
53   CoreSession *coreSession() const;
54
55   bool isConnected() const;
56   Network::ConnectionState connectionState() const;
57
58   IrcServerHandler *ircServerHandler() const;
59   UserInputHandler *userInputHandler() const;
60   CtcpHandler *ctcpHandler() const;
61
62   //! Decode a string using the server (network) decoding.
63   QString serverDecode(const QByteArray &string) const;
64
65   //! Decode a string using a channel-specific encoding if one is set (and use the standard encoding else).
66   QString channelDecode(const QString &channelName, const QByteArray &string) const;
67
68   //! Decode a string using an IrcUser-specific encoding, if one exists (using the standaed encoding else).
69   QString userDecode(const QString &userNick, const QByteArray &string) const;
70
71   //! Encode a string using the server (network) encoding.
72   QByteArray serverEncode(const QString &string) const;
73
74   //! Encode a string using the channel-specific encoding, if set, and use the standard encoding else.
75   QByteArray channelEncode(const QString &channelName, const QString &string) const;
76
77   //! Encode a string using the user-specific encoding, if set, and use the standard encoding else.
78   QByteArray userEncode(const QString &userNick, const QString &string) const;
79
80   inline QString channelKey(const QString &channel) const { return _channelKeys.value(channel, QString()); }
81
82 public slots:
83   // void setServerOptions();
84   void connectToIrc(bool reconnecting = false);
85   void disconnectFromIrc();
86   void userInput(BufferInfo bufferInfo, QString msg);
87
88   void putRawLine(QByteArray input);
89   void putCmd(const QString &cmd, const QVariantList &params, const QByteArray &prefix = QByteArray());
90
91   void addChannelKey(const QString &channel, const QString &key);
92   void removeChannelKey(const QString &channel);
93
94 private slots:
95   void sendPerform();
96   void autoReconnectSettingsChanged();
97   void doAutoReconnect();
98   void sendWho();
99   void nickChanged(const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend
100
101 signals:
102   // #void networkState(QString net, QVariantMap data);
103   void recvRawServerMsg(QString);
104   void displayStatusMsg(QString);
105   //void displayMsg(Message msg);
106   void displayMsg(Message::Type, BufferInfo::Type, QString target, QString text, QString sender = "", quint8 flags = Message::None);
107   void connected(NetworkId networkId);   ///< Emitted after receipt of 001 to indicate that we can now send data to the IRC server
108   void disconnected(NetworkId networkId);
109   void connectionStateChanged(Network::ConnectionState);
110   void connectionInitialized(); ///< Emitted after receipt of 001 to indicate that we can now send data to the IRC server
111   void connectionError(const QString &errorMsg);
112
113   void quitRequested(NetworkId networkId);
114
115   //void queryRequested(QString network, QString nick);
116   void nickChanged(const NetworkId &networkId, const QString &newNick, const QString &oldNick); // this signal is inteded to rename query buffers in the storage backend
117
118 private slots:
119   void socketHasData();
120   void socketError(QAbstractSocket::SocketError);
121   void socketConnected();
122   void socketDisconnected();
123   void socketStateChanged(QAbstractSocket::SocketState);
124   void setConnectionState(Network::ConnectionState);
125   void networkInitialized(const QString &currentServer);
126
127 private:
128   QTcpSocket socket;
129   Network::ConnectionState _connectionState;
130
131   Network *_network;
132   CoreSession *_coreSession;
133   BufferInfo _statusBufferInfo;
134
135   IrcServerHandler *_ircServerHandler;
136   UserInputHandler *_userInputHandler;
137   CtcpHandler *_ctcpHandler;
138
139   QHash<QString, QString> _channelKeys;
140   QTimer _autoReconnectTimer;
141   int _autoReconnectCount;
142
143   QTimer _whoTimer;
144
145   class ParseError : public Exception {
146   public:
147     ParseError(QString cmd, QString prefix, QStringList params);
148   };
149
150   class UnknownCmdError : public Exception {
151   public:
152     UnknownCmdError(QString cmd, QString prefix, QStringList params);
153   };
154 };
155
156 #endif