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