Use late CoreSessionEventProcessor handler rather than early EventStringifier ones
[quassel.git] / src / core / coresessioneventprocessor.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2010 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 CORESESSIONEVENTPROCESSOR_H
22 #define CORESESSIONEVENTPROCESSOR_H
23
24 #include "corenetwork.h"
25 #include "networkevent.h"
26
27 class CoreSession;
28 class IrcEvent;
29 class IrcEventNumeric;
30 class Netsplit;
31
32 class CoreSessionEventProcessor : public QObject {
33   Q_OBJECT
34
35 public:
36   CoreSessionEventProcessor(CoreSession *session);
37
38   inline CoreSession *coreSession() const { return _coreSession; }
39
40   Q_INVOKABLE void processIrcEventNumeric(IrcEventNumeric *event);
41
42   Q_INVOKABLE void processIrcEventAuthenticate(IrcEvent *event);   // SASL auth
43   Q_INVOKABLE void processIrcEventCap(IrcEvent *event);            // CAP framework
44   Q_INVOKABLE void processIrcEventInvite(IrcEvent *event);
45   Q_INVOKABLE void processIrcEventJoin(IrcEvent *event);
46   Q_INVOKABLE void lateProcessIrcEventKick(IrcEvent *event);
47   Q_INVOKABLE void processIrcEventMode(IrcEvent *event);
48   Q_INVOKABLE void lateProcessIrcEventNick(IrcEvent *event);
49   Q_INVOKABLE void lateProcessIrcEventPart(IrcEvent *event);
50   Q_INVOKABLE void processIrcEventPing(IrcEvent *event);
51   Q_INVOKABLE void processIrcEventPong(IrcEvent *event);
52   Q_INVOKABLE void processIrcEventQuit(IrcEvent *event);
53   Q_INVOKABLE void lateProcessIrcEventQuit(IrcEvent *event);
54   Q_INVOKABLE void processIrcEventTopic(IrcEvent *event);
55
56   Q_INVOKABLE void processIrcEvent001(IrcEvent *event);            // RPL_WELCOME
57   Q_INVOKABLE void processIrcEvent005(IrcEvent *event);            // RPL_ISUPPORT
58   Q_INVOKABLE void processIrcEvent221(IrcEvent *event);            // RPL_UMODEIS
59   Q_INVOKABLE void processIrcEvent250(IrcEvent *event);            // RPL_STATSCONN
60   Q_INVOKABLE void processIrcEvent265(IrcEvent *event);            // RPL_LOCALUSERS
61   Q_INVOKABLE void processIrcEvent266(IrcEvent *event);            // RPL_GLOBALUSERS
62   Q_INVOKABLE void processIrcEvent301(IrcEvent *event);            // RPL_AWAY
63   Q_INVOKABLE void processIrcEvent305(IrcEvent *event);            // RPL_UNAWAY
64   Q_INVOKABLE void processIrcEvent306(IrcEvent *event);            // RPL_NOWAWAY
65   Q_INVOKABLE void processIrcEvent307(IrcEvent *event);            // RPL_WHOISSERVICE
66   Q_INVOKABLE void processIrcEvent310(IrcEvent *event);            // RPL_SUSERHOST
67   Q_INVOKABLE void processIrcEvent311(IrcEvent *event);            // RPL_WHOISUSER
68   Q_INVOKABLE void processIrcEvent312(IrcEvent *event);            // RPL_WHOISSERVER
69   Q_INVOKABLE void processIrcEvent313(IrcEvent *event);            // RPL_WHOISOPERATOR
70   Q_INVOKABLE void processIrcEvent315(IrcEvent *event);            // RPL_ENDOFWHO
71   Q_INVOKABLE void processIrcEvent317(IrcEvent *event);            // RPL_WHOISIDLE
72   Q_INVOKABLE void processIrcEvent322(IrcEvent *event);            // RPL_LIST
73   Q_INVOKABLE void processIrcEvent323(IrcEvent *event);            // RPL_LISTEND
74   Q_INVOKABLE void processIrcEvent324(IrcEvent *event);            // RPL_CHANNELMODEIS
75   Q_INVOKABLE void processIrcEvent331(IrcEvent *event);            // RPL_NOTOPIC
76   Q_INVOKABLE void processIrcEvent332(IrcEvent *event);            // RPL_TOPIC
77   Q_INVOKABLE void processIrcEvent352(IrcEvent *event);            // RPL_WHOREPLY
78   Q_INVOKABLE void processIrcEvent353(IrcEvent *event);            // RPL_NAMREPLY
79   Q_INVOKABLE void processIrcEvent432(IrcEventNumeric *event);     // ERR_ERRONEUSNICKNAME
80   Q_INVOKABLE void processIrcEvent433(IrcEventNumeric *event);     // ERR_NICKNAMEINUSE
81   Q_INVOKABLE void processIrcEvent437(IrcEventNumeric *event);     // ERR_UNAVAILRESOURCE
82
83   // Q_INVOKABLE void processIrcEvent(IrcEvent *event);
84
85 protected:
86   bool checkParamCount(IrcEvent *event, int minParams);
87   inline CoreNetwork *coreNetwork(NetworkEvent *e) const { return qobject_cast<CoreNetwork *>(e->network()); }
88   void tryNextNick(NetworkEvent *e, const QString &errnick, bool erroneous = false);
89
90 private slots:
91   //! Joins after a netsplit
92   /** This slot handles a bulk-join after a netsplit is over
93     * \param net     The network
94     * \param channel The channel the users joined
95     * \param users   The list of users that joind the channel
96     * \param modes   The list of modes the users get set
97     * \param quitMessage The message we received when the netsplit occured
98     */
99   void handleNetsplitJoin(Network *net, const QString &channel, const QStringList &users, const QStringList &modes, const QString &quitMessage);
100
101   //! Quits after a netsplit
102   /** This slot handles a bulk-quit after a netsplit occured
103     * \param net     The network
104     * \param channel The channel the users quitted
105     * \param users   The list of users that got split
106     * \param quitMessage The message we received when the netsplit occured
107     */
108   void handleNetsplitQuit(Network *net, const QString &channel, const QStringList &users, const QString &quitMessage);
109
110   //! Netsplit finished
111   /** This slot deletes the netsplit object that sent the finished() signal
112     */
113   void handleNetsplitFinished();
114
115   void handleEarlyNetsplitJoin(Network *net, const QString &channel, const QStringList &users, const QStringList &modes);
116
117   //! Destroy any existing netsplits
118   /** This slot deletes all netsplit objects
119     * Used to get rid of existing netsplits on network reconnect
120     * \param network The network we want to clear
121     */
122   void destroyNetsplits(NetworkId network);
123
124 private:
125   CoreSession *_coreSession;
126
127   // structure to organize netsplits
128   // key: quit message
129   // value: the corresponding netsplit object
130   QHash<Network *, QHash<QString, Netsplit*> > _netsplits;
131 };
132
133 #endif