2 * InspIRCd -- Internet Relay Chat Daemon
4 * Copyright (C) 2015 Attila Molnar <attilamolnar@hush.com>
6 * This file is part of InspIRCd. InspIRCd is free software: you can
7 * redistribute it and/or modify it under the terms of the GNU General Public
8 * License as published by the Free Software Foundation, version 2.
10 * This program is distributed in the hope that it will be useful, but WITHOUT
11 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 class ModuleEventListener;
25 class ModuleEventProvider;
28 /** Provider of one or more cross-module events.
29 * Modules who wish to provide events for other modules create instances of this class and use
30 * one of the macros below to fire the event, passing the instance of the event provider class
32 * Event providers are identified using a unique identifier string.
34 class Events::ModuleEventProvider : public ServiceProvider, private dynamic_reference_base::CaptureHook
39 bool operator()(ModuleEventListener* one, ModuleEventListener* two) const;
42 typedef insp::flat_multiset<ModuleEventListener*, Comp> SubscriberList;
45 * @param mod Module providing the event(s)
46 * @param eventid Identifier of the event or event group provided, must be unique
48 ModuleEventProvider(Module* mod, const std::string& eventid)
49 : ServiceProvider(mod, eventid, SERVICE_DATA)
52 prov.SetCaptureHook(this);
55 /** Get list of objects subscribed to this event
56 * @return List of subscribed objects
58 const SubscriberList& GetSubscribers() const { return prov->subscribers; }
60 friend class ModuleEventListener;
63 void OnCapture() CXX11_OVERRIDE
65 // If someone else holds the list from now on, clear mine. See below for more info.
70 /** Reference to the active provider for this event. In case multiple event providers
71 * exist for the same event, only one of them contains the list of subscribers.
72 * To handle the case when we are not the ones with the list, we get it from the provider
73 * where the dynref points to.
75 dynamic_reference_nocheck<ModuleEventProvider> prov;
77 /** List of objects subscribed to the event(s) provided by us, or empty if multiple providers
78 * exist with the same name and we are not the ones holding the list.
80 SubscriberList subscribers;
83 /** Base class for abstract classes describing cross-module events.
84 * Subscribers should NOT inherit directly from this class.
86 class Events::ModuleEventListener : private dynamic_reference_base::CaptureHook
88 /** Reference to the provider, can be NULL if none of the provider modules are loaded
90 dynamic_reference_nocheck<ModuleEventProvider> prov;
92 const unsigned int eventpriority;
94 /** Called by the dynref when the event provider becomes available
96 void OnCapture() CXX11_OVERRIDE
98 prov->subscribers.insert(this);
102 static const unsigned int DefaultPriority = 100;
105 * @param mod Module subscribing
106 * @param eventid Identifier of the event to subscribe to
107 * @param eventprio The priority to give this event listener
109 ModuleEventListener(Module* mod, const std::string& eventid, unsigned int eventprio = DefaultPriority)
111 , eventpriority(eventprio)
113 prov.SetCaptureHook(this);
114 // If the dynamic_reference resolved at construction our capture handler wasn't called
116 ModuleEventListener::OnCapture();
119 ~ModuleEventListener()
122 prov->subscribers.erase(this);
125 friend struct ModuleEventProvider::Comp;
128 inline bool Events::ModuleEventProvider::Comp::operator()(Events::ModuleEventListener* one, Events::ModuleEventListener* two) const
130 return (one->eventpriority < two->eventpriority);
134 * Run the given hook provided by a module
136 * FOREACH_MOD_CUSTOM(accountevprov, AccountEventListener, OnAccountChange, MOD_RESULT, (user, newaccount))
138 #define FOREACH_MOD_CUSTOM(prov, listenerclass, func, params) do { \
139 const ::Events::ModuleEventProvider::SubscriberList& _handlers = (prov).GetSubscribers(); \
140 for (::Events::ModuleEventProvider::SubscriberList::const_iterator _i = _handlers.begin(); _i != _handlers.end(); ++_i) \
142 listenerclass* _t = static_cast<listenerclass*>(*_i); \
148 * Run the given hook provided by a module until some module returns MOD_RES_ALLOW or MOD_RES_DENY.
149 * If no module does that, result is set to MOD_RES_PASSTHRU.
151 * Example: ModResult MOD_RESULT;
152 * FIRST_MOD_RESULT_CUSTOM(httpevprov, HTTPRequestEventListener, OnHTTPRequest, MOD_RESULT, (request));
154 #define FIRST_MOD_RESULT_CUSTOM(prov, listenerclass, func, result, params) do { \
155 result = MOD_RES_PASSTHRU; \
156 const ::Events::ModuleEventProvider::SubscriberList& _handlers = (prov).GetSubscribers(); \
157 for (::Events::ModuleEventProvider::SubscriberList::const_iterator _i = _handlers.begin(); _i != _handlers.end(); ++_i) \
159 listenerclass* _t = static_cast<listenerclass*>(*_i); \
160 result = _t->func params ; \
161 if (result != MOD_RES_PASSTHRU) \