1f712fbb86d9d7bdaf75e4a9edb8ffef39cd613c
[quassel.git] / src / common / networkinfo.h
1 /***************************************************************************
2  *   Copyright (C) 2005-07 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 _NETWORKINFO_H_
22 #define _NETWORKINFO_H_
23
24 #include <QString>
25 #include <QStringList>
26 #include <QList>
27 #include <QHash>
28 #include <QVariantMap>
29 #include <QPointer>
30
31 #include "types.h"
32
33 class SignalProxy;
34 class IrcUser;
35 class IrcChannel;
36
37
38 class NetworkInfo : public QObject {
39   Q_OBJECT
40
41   Q_PROPERTY(QString networkName READ networkName WRITE setNetworkName STORED false)
42   Q_PROPERTY(QString currentServer READ currentServer WRITE setCurrentServer STORED false)
43   Q_PROPERTY(QString myNick READ myNick WRITE setMyNick STORED false)
44
45 public:
46   NetworkInfo(const uint &networkid, QObject *parent = 0);
47   //virtual ~NetworkInfo();
48
49   NetworkId networkId() const;
50   bool initialized() const;
51
52   SignalProxy *proxy() const;
53   void setProxy(SignalProxy *proxy);
54
55   bool isMyNick(const QString &nick) const;
56   bool isMyNick(IrcUser *ircuser) const;
57
58   bool isChannelName(const QString &channelname) const;
59
60   QString prefixToMode(const QString &prefix);
61   QString prefixToMode(const QCharRef &prefix);
62   QString modeToPrefix(const QString &mode);
63   QString modeToPrefix(const QCharRef &mode);
64
65   QString networkName() const;
66   QString currentServer() const;
67   QString myNick() const;
68   QStringList nicks() const;
69   QStringList channels() const;
70
71   QString prefixes();
72   QString prefixModes();
73
74   bool supports(const QString &param) const;
75   QString support(const QString &param) const;
76
77   IrcUser *newIrcUser(const QString &hostmask);
78   IrcUser *ircUser(QString nickname) const;
79   QList<IrcUser *> ircUsers() const;
80
81   IrcChannel *newIrcChannel(const QString &channelname);
82   IrcChannel *ircChannel(QString channelname);
83   QList<IrcChannel *> ircChannels() const;
84
85   QTextCodec *codecForEncoding() const;
86   QTextCodec *codecForDecoding() const;
87   void setCodecForEncoding(const QString &codecName);
88   void setCodecForEncoding(QTextCodec *codec);
89   void setCodecForDecoding(const QString &codecName);
90   void setCodecForDecoding(QTextCodec *codec);
91
92   QString decodeString(const QByteArray &text) const;
93   QByteArray encodeString(const QString string) const;
94
95 public slots:
96   void setNetworkName(const QString &networkName);
97   void setCurrentServer(const QString &currentServer);
98   void setMyNick(const QString &mynick);
99
100   void addSupport(const QString &param, const QString &value = QString());
101   void removeSupport(const QString &param);
102
103   inline void addIrcUser(const QString &hostmask) { newIrcUser(hostmask); }
104   void removeIrcUser(QString nick);
105   
106   //init geters
107   QVariantMap initSupports() const;
108   QStringList initIrcUsers() const;
109   QStringList initIrcChannels() const;
110   
111   //init seters
112   void initSetSupports(const QVariantMap &supports);
113   void initSetIrcUsers(const QStringList &hostmasks);
114   void initSetChannels(const QStringList &channels);
115   
116   IrcUser *updateNickFromMask(const QString &mask);
117
118   // these slots are to keep the hashlists of all users and the
119   // channel lists up to date
120   void ircUserNickChanged(QString newnick);
121   void setInitialized();
122
123 private slots:
124   void ircUserDestroyed();
125   void channelDestroyed();
126   void removeIrcUser(IrcUser *ircuser);
127   
128 signals:
129   void networkNameSet(const QString &networkName);
130   void currentServerSet(const QString &currentServer);
131   void myNickSet(const QString &mynick);
132
133   void supportAdded(const QString &param, const QString &value);
134   void supportRemoved(const QString &param);
135   
136   void ircUserAdded(QString hostmask);
137   void ircChannelAdded(QString channelname);
138
139   void ircUserRemoved(QString nick);
140   
141   void initDone();
142   void ircUserInitDone();
143   void ircChannelInitDone();
144   
145 private:
146   uint _networkId;
147   bool _initialized;
148   
149   QString _myNick;
150   QString _networkName;
151   QString _currentServer;
152
153   QString _prefixes;
154   QString _prefixModes;
155
156   QHash<QString, IrcUser *> _ircUsers;  // stores all known nicks for the server
157   QHash<QString, IrcChannel *> _ircChannels; // stores all known channels
158   QHash<QString, QString> _supports;  // stores results from RPL_ISUPPORT
159
160   //QVariantMap networkSettings;
161   //QVariantMap identity;
162   
163   QPointer<SignalProxy> _proxy;
164   void determinePrefixes();
165
166   QTextCodec *_codecForEncoding;
167   QTextCodec *_codecForDecoding;
168
169 };
170
171 #endif