Merge pull request #198 - IRCv3 improvements
[quassel.git] / src / common / eventmanager.h
1 /***************************************************************************
2  *   Copyright (C) 2005-2016 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  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #ifndef EVENTMANAGER_H
22 #define EVENTMANAGER_H
23
24 #include <QMetaEnum>
25
26 #include "types.h"
27
28 class Event;
29 class Network;
30
31 class EventManager : public QObject
32 {
33     Q_OBJECT
34     Q_FLAGS(EventFlag EventFlags)
35     Q_ENUMS(EventType)
36
37 public :
38
39         enum RegistrationMode {
40         Prepend,
41         Append
42     };
43
44     enum Priority {
45         VeryLowPriority,
46         LowPriority,
47         NormalPriority,
48         HighPriority,
49         HighestPriority
50     };
51
52     enum EventFlag {
53         Self     = 0x01, ///< Self-generated (user input) event
54         Fake     = 0x08, ///< Ignore this in CoreSessionEventProcessor
55         Netsplit = 0x10, ///< Netsplit join/part, ignore on display
56         Backlog  = 0x20,
57         Silent   = 0x40, ///< Don't generate a MessageEvent
58         Stopped  = 0x80
59     };
60     Q_DECLARE_FLAGS(EventFlags, EventFlag)
61
62     /*
63
64     */
65     /* These values make sense! Don't change without knowing what you do! */
66     enum EventType {
67         Invalid                     = 0xffffffff,
68         GenericEvent                = 0x00000000,
69
70         // for event group handlers (handleIrcEvent() will handle all IrcEvent* enums)
71         // event groups are specified by bits 20-24
72         EventGroupMask              = 0x00ff0000,
73
74         NetworkEvent                = 0x00010000,
75         NetworkConnecting,
76         NetworkInitializing,
77         NetworkInitialized,
78         NetworkReconnecting,
79         NetworkDisconnecting,
80         NetworkDisconnected,
81         NetworkSplitJoin,
82         NetworkSplitQuit,
83         NetworkIncoming,
84
85         IrcServerEvent              = 0x00020000,
86         IrcServerIncoming,
87         IrcServerParseError,
88
89         IrcEvent                    = 0x00030000,
90         IrcEventAuthenticate,
91         IrcEventAccount,
92         IrcEventAway,
93         IrcEventCap,
94         IrcEventChghost,
95         IrcEventInvite,
96         IrcEventJoin,
97         IrcEventKick,
98         IrcEventMode,
99         IrcEventNick,
100         IrcEventNotice,
101         IrcEventPart,
102         IrcEventPing,
103         IrcEventPong,
104         IrcEventPrivmsg,
105         IrcEventQuit,
106         IrcEventTopic,
107         IrcEventWallops,
108         IrcEventRawPrivmsg, ///< Undecoded privmsg (still needs CTCP parsing)
109         IrcEventRawNotice, ///< Undecoded notice (still needs CTCP parsing)
110         IrcEventUnknown, ///< Unknown non-numeric cmd
111
112         IrcEventNumeric             = 0x00031000, /* needs 1000 (0x03e8) consecutive free values! */
113         IrcEventNumericMask         = 0x00000fff, /* for checking if an event is numeric */
114
115         MessageEvent                = 0x00040000, ///< Stringified event suitable for converting to Message
116
117         CtcpEvent                   = 0x00050000,
118         CtcpEventFlush,
119
120         KeyEvent                    = 0x00060000
121     };
122
123     EventManager(QObject *parent = 0);
124
125     static EventType eventTypeByName(const QString &name);
126     static EventType eventGroupByName(const QString &name);
127     static QString enumName(EventType type);
128     static QString enumName(int type); // for sanity tests
129
130     Event *createEvent(const QVariantMap &map);
131
132 public slots:
133     void registerObject(QObject *object, Priority priority = NormalPriority,
134         const QString &methodPrefix = "process",
135         const QString &filterPrefix = "filter");
136     void registerEventHandler(EventType event, QObject *object, const char *slot,
137         Priority priority = NormalPriority, bool isFilter = false);
138     void registerEventHandler(QList<EventType> events, QObject *object, const char *slot,
139         Priority priority = NormalPriority, bool isFilter = false);
140
141     void registerEventFilter(EventType event, QObject *object, const char *slot);
142     void registerEventFilter(QList<EventType> events, QObject *object, const char *slot);
143
144     //! Send an event to the registered handlers
145     /**
146       The EventManager takes ownership of the event and will delete it once it's processed.
147       @param event The event to be dispatched
148      */
149     void postEvent(Event *event);
150
151 protected:
152     virtual Network *networkById(NetworkId id) const = 0;
153     virtual void customEvent(QEvent *event);
154
155 private:
156     struct Handler {
157         QObject *object;
158         int methodIndex;
159         Priority priority;
160
161         explicit Handler(QObject *obj = 0, int method = 0, Priority prio = NormalPriority)
162         {
163             object = obj;
164             methodIndex = method;
165             priority = prio;
166         }
167     };
168
169     typedef QHash<uint, QList<Handler> > HandlerHash;
170
171     inline const HandlerHash &registeredHandlers() const { return _registeredHandlers; }
172     inline HandlerHash &registeredHandlers() { return _registeredHandlers; }
173
174     inline const HandlerHash &registeredFilters() const { return _registeredFilters; }
175     inline HandlerHash &registeredFilters() { return _registeredFilters; }
176
177     //! Add handlers to an existing sorted (by priority) handler list
178     void insertHandlers(const QList<Handler> &newHandlers, QList<Handler> &existing, bool checkDupes = false);
179     //! Add filters to an existing filter hash
180     void insertFilters(const QList<Handler> &newFilters, QHash<QObject *, Handler> &existing);
181
182     int findEventType(const QString &methodSignature, const QString &methodPrefix) const;
183
184     void processEvent(Event *event);
185     void dispatchEvent(Event *event);
186
187     //! @return the EventType enum
188     static QMetaEnum eventEnum();
189
190     HandlerHash _registeredHandlers;
191     HandlerHash _registeredFilters;
192     QList<Event *> _eventQueue;
193     static QMetaEnum _enum;
194 };
195
196
197 Q_DECLARE_OPERATORS_FOR_FLAGS(EventManager::EventFlags);
198
199 #endif