]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules.h
Roadmap item "Fix jointhrottle to not try 'throttle' clients during a netmerge (requi...
[user/henk/code/inspircd.git] / include / modules.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *          the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef __MODULES_H
15 #define __MODULES_H
16
17 #include "globals.h"
18 #include "dynamic.h"
19 #include "base.h"
20 #include "ctables.h"
21 #include "inspsocket.h"
22 #include <string>
23 #include <deque>
24 #include <sstream>
25 #include "timer.h"
26 #include "mode.h"
27 #include "dns.h"
28
29 class XLine;
30
31 /** Used with OnAccessCheck() method of modules
32  */
33 enum AccessControlType {
34         ACR_DEFAULT,            // Do default action (act as if the module isnt even loaded)
35         ACR_DENY,               // deny the action
36         ACR_ALLOW,              // allow the action
37         AC_KICK,                // a user is being kicked
38         AC_DEOP,                // a user is being deopped
39         AC_OP,                  // a user is being opped
40         AC_VOICE,               // a user is being voiced
41         AC_DEVOICE,             // a user is being devoiced
42         AC_HALFOP,              // a user is being halfopped
43         AC_DEHALFOP,            // a user is being dehalfopped
44         AC_INVITE,              // a user is being invited
45         AC_GENERAL_MODE         // a channel mode is being changed
46 };
47
48 /** Used to define a set of behavior bits for a module
49  */
50 enum ModuleFlags {
51         VF_STATIC = 1,          // module is static, cannot be /unloadmodule'd
52         VF_VENDOR = 2,          // module is a vendor module (came in the original tarball, not 3rd party)
53         VF_SERVICEPROVIDER = 4, // module provides a service to other modules (can be a dependency)
54         VF_COMMON = 8           // module needs to be common on all servers in a network to link
55 };
56
57 /** Used with SendToMode()
58  */
59 enum WriteModeFlags {
60         WM_AND = 1,
61         WM_OR = 2
62 };
63
64 /** Used to represent an event type, for user, channel or server
65  */
66 enum TargetTypeFlags {
67         TYPE_USER = 1,
68         TYPE_CHANNEL,
69         TYPE_SERVER,
70         TYPE_OTHER
71 };
72
73 /** Used to represent wether a message was PRIVMSG or NOTICE
74  */
75 enum MessageType {
76         MSG_PRIVMSG = 0,
77         MSG_NOTICE = 1
78 };
79
80 /** If you change the module API, change this value.
81  * If you have enabled ipv6, the sizes of structs is
82  * different, and modules will be incompatible with
83  * ipv4 servers, so this value will be ten times as
84  * high on ipv6 servers.
85  */
86 #define NATIVE_API_VERSION 12000
87 #ifdef IPV6
88 #define API_VERSION (NATIVE_API_VERSION * 10)
89 #else
90 #define API_VERSION (NATIVE_API_VERSION * 1)
91 #endif
92
93 class ServerConfig;
94
95 /* Forward-delacare module for ModuleMessage etc
96  */
97 class Module;
98 class InspIRCd;
99
100 /** Low level definition of a FileReader classes file cache area -
101  * a text file seperated into lines.
102  */
103 typedef std::deque<std::string> file_cache;
104
105 /** A set of strings.
106  */
107 typedef file_cache string_list;
108
109 /** Holds a list of 'published features' for modules.
110  */
111 typedef std::map<std::string,Module*> featurelist;
112
113 /** Holds a list of modules which implement an interface
114  */
115 typedef std::deque<Module*> modulelist;
116
117 /** Holds a list of all modules which implement interfaces, by interface name
118  */
119 typedef std::map<std::string, std::pair<int, modulelist> > interfacelist;
120
121 /**
122  * This #define allows us to call a method in all
123  * loaded modules in a readable simple way, e.g.:
124  * 'FOREACH_MOD(I_OnConnect,OnConnect(user));'
125  */
126 #define FOREACH_MOD(y,x) \
127 for (EventHandlerIter _i = ServerInstance->Modules->EventHandlers[y].begin(); _i != ServerInstance->Modules->EventHandlers[y].end(); ++_i) \
128 { \
129         try \
130         { \
131                 (*_i)->x ; \
132         } \
133         catch (CoreException& modexcept) \
134         { \
135                 ServerInstance->Log(DEFAULT,"Exception caught: %s",modexcept.GetReason()); \
136         } \
137 }
138
139 /**
140  * This #define allows us to call a method in all
141  * loaded modules in a readable simple way and pass
142  * an instance pointer to the macro. e.g.:
143  * 'FOREACH_MOD_I(Instance, OnConnect, OnConnect(user));'
144  */
145 #define FOREACH_MOD_I(z,y,x) \
146 for (EventHandlerIter _i = z->Modules->EventHandlers[y].begin(); _i != z->Modules->EventHandlers[y].end(); ++_i) \
147 { \
148         try \
149         { \
150                 (*_i)->x ; \
151         } \
152         catch (CoreException& modexcept) \
153         { \
154                 z->Log(DEFAULT,"Exception caught: %s",modexcept.GetReason()); \
155         } \
156 }
157
158 /**
159  * This define is similar to the one above but returns a result in MOD_RESULT.
160  * The first module to return a nonzero result is the value to be accepted,
161  * and any modules after are ignored.
162  */
163 #define FOREACH_RESULT(y,x) \
164 do { \
165         MOD_RESULT = 0; \
166         for (EventHandlerIter _i = ServerInstance->Modules->EventHandlers[y].begin(); _i != ServerInstance->Modules->EventHandlers[y].end(); ++_i) \
167         { \
168                 try \
169                 { \
170                         int res = (*_i)->x ; \
171                         if (res != 0) { \
172                                 MOD_RESULT = res; \
173                                 break; \
174                         } \
175                 } \
176                 catch (CoreException& modexcept) \
177                 { \
178                         ServerInstance->Log(DEFAULT,"Exception caught: %s",modexcept.GetReason()); \
179                 } \
180         } \
181 } while(0);
182
183
184 /**
185  * This define is similar to the one above but returns a result in MOD_RESULT.
186  * The first module to return a nonzero result is the value to be accepted,
187  * and any modules after are ignored.
188  */
189 #define FOREACH_RESULT_I(z,y,x) \
190 do { \
191         MOD_RESULT = 0; \
192         for (EventHandlerIter _i = z->Modules->EventHandlers[y].begin(); _i != z->Modules->EventHandlers[y].end(); ++_i) \
193         { \
194                 try \
195                 { \
196                         int res = (*_i)->x ; \
197                         if (res != 0) { \
198                                 MOD_RESULT = res; \
199                                 break; \
200                         } \
201                 } \
202                 catch (CoreException& modexcept) \
203                 { \
204                         z->Log(DEBUG,"Exception caught: %s",modexcept.GetReason()); \
205                 } \
206         } \
207 } while (0);
208
209 /** Represents a non-local user.
210  * (in fact, any FD less than -1 does)
211  */
212 #define FD_MAGIC_NUMBER -42
213
214 /* Useful macros */
215 #ifdef WINDOWS
216 /** Is a local user */
217 #define IS_LOCAL(x) ((x->GetFd() > -1))
218 #else
219 /** Is a local user */
220 #define IS_LOCAL(x) ((x->GetFd() > -1) && (x->GetFd() <= MAX_DESCRIPTORS))
221 #endif
222 /** Is a remote user */
223 #define IS_REMOTE(x) (x->GetFd() < 0)
224 /** Is a module created user */
225 #define IS_MODULE_CREATED(x) (x->GetFd() == FD_MAGIC_NUMBER)
226 /** Is an oper */
227 #define IS_OPER(x) (*x->oper)
228 /** Is away */
229 #define IS_AWAY(x) (*x->awaymsg)
230
231 /** Holds a module's Version information.
232  *  The four members (set by the constructor only) indicate details as to the version number
233  *  of a module. A class of type Version is returned by the GetVersion method of the Module class.
234  *  The flags and API values represent the module flags and API version of the module.
235  *  The API version of a module must match the API version of the core exactly for the module to
236  *  load successfully.
237  */
238 class CoreExport Version : public classbase
239 {
240  public:
241          /** Version numbers, build number, flags and API version
242           */
243          const int Major, Minor, Revision, Build, Flags, API;
244
245          /** Initialize version class
246           */
247          Version(int major, int minor, int revision, int build, int flags, int api_ver);
248 };
249
250 /** The ModuleMessage class is the base class of Request and Event
251  * This class is used to represent a basic data structure which is passed
252  * between modules for safe inter-module communications.
253  */
254 class CoreExport ModuleMessage : public Extensible
255 {
256  public:
257         /** Destructor
258          */
259         virtual ~ModuleMessage() {};
260 };
261
262 /** The Request class is a unicast message directed at a given module.
263  * When this class is properly instantiated it may be sent to a module
264  * using the Send() method, which will call the given module's OnRequest
265  * method with this class as its parameter.
266  */
267 class CoreExport Request : public ModuleMessage
268 {
269  protected:
270         /** This member holds a pointer to arbitary data set by the emitter of the message
271          */
272         char* data;
273         /** This should be a null-terminated string identifying the type of request,
274          * all modules should define this and use it to determine the nature of the
275          * request before they attempt to cast the Request in any way.
276          */
277         const char* id;
278         /** This is a pointer to the sender of the message, which can be used to
279          * directly trigger events, or to create a reply.
280          */
281         Module* source;
282         /** The single destination of the Request
283          */
284         Module* dest;
285  public:
286         /** Create a new Request
287          * This is for the 'old' way of casting whatever the data is
288          * to char* and hoping you get the right thing at the other end.
289          * This is slowly being depreciated in favor of the 'new' way.
290          */
291         Request(char* anydata, Module* src, Module* dst);
292         /** Create a new Request
293          * This is for the 'new' way of defining a subclass
294          * of Request and defining it in a common header,
295          * passing an object of your Request subclass through
296          * as a Request* and using the ID string to determine
297          * what to cast it back to and the other end. This is
298          * much safer as there are no casts not confirmed by
299          * the ID string, and all casts are child->parent and
300          * can be checked at runtime with dynamic_cast<>()
301          */
302         Request(Module* src, Module* dst, const char* idstr);
303         /** Fetch the Request data
304          */
305         char* GetData();
306         /** Fetch the ID string
307          */
308         const char* GetId();
309         /** Fetch the request source
310          */
311         Module* GetSource();
312         /** Fetch the request destination (should be 'this' in the receiving module)
313          */
314         Module* GetDest();
315         /** Send the Request.
316          * Upon returning the result will be arbitary data returned by the module you
317          * sent the request to. It is up to your module to know what this data is and
318          * how to deal with it.
319          */
320         char* Send();
321 };
322
323
324 /** The Event class is a unicast message directed at all modules.
325  * When the class is properly instantiated it may be sent to all modules
326  * using the Send() method, which will trigger the OnEvent method in
327  * all modules passing the object as its parameter.
328  */
329 class CoreExport Event : public ModuleMessage
330 {
331  protected:
332         /** This member holds a pointer to arbitary data set by the emitter of the message
333          */
334         char* data;
335         /** This is a pointer to the sender of the message, which can be used to
336          * directly trigger events, or to create a reply.
337          */
338         Module* source;
339         /** The event identifier.
340          * This is arbitary text which should be used to distinguish
341          * one type of event from another.
342          */
343         std::string id;
344  public:
345         /** Create a new Event
346          */
347         Event(char* anydata, Module* src, const std::string &eventid);
348         /** Get the Event data
349          */
350         char* GetData();
351         /** Get the event Source
352          */
353         Module* GetSource();
354         /** Get the event ID.
355          * Use this to determine the event type for safe casting of the data
356          */
357         std::string GetEventID();
358         /** Send the Event.
359          * The return result of an Event::Send() will always be NULL as
360          * no replies are expected.
361          */
362         char* Send(InspIRCd* ServerInstance);
363 };
364
365 /** Priority types which can be returned from Module::Prioritize()
366  */
367 enum Priority { PRIORITY_FIRST, PRIORITY_DONTCARE, PRIORITY_LAST, PRIORITY_BEFORE, PRIORITY_AFTER };
368
369 /** Implementation-specific flags which may be set in Module::Implements()
370  */
371 enum Implementation
372 {
373         I_BEGIN,
374         I_OnUserConnect, I_OnUserQuit, I_OnUserDisconnect, I_OnUserJoin, I_OnUserPart, I_OnRehash, I_OnServerRaw, 
375         I_OnUserPreJoin, I_OnUserPreKick, I_OnUserKick, I_OnOper, I_OnInfo, I_OnWhois, I_OnUserPreInvite,
376         I_OnUserInvite, I_OnUserPreMessage, I_OnUserPreNotice, I_OnUserPreNick, I_OnUserMessage, I_OnUserNotice, I_OnMode,
377         I_OnGetServerDescription, I_OnSyncUser, I_OnSyncChannel, I_OnSyncChannelMetaData, I_OnSyncUserMetaData,
378         I_OnDecodeMetaData, I_ProtoSendMode, I_ProtoSendMetaData, I_OnWallops, I_OnChangeHost, I_OnChangeName, I_OnAddLine,
379         I_OnDelLine, I_OnCleanup, I_OnUserPostNick, I_OnAccessCheck, I_On005Numeric, I_OnKill, I_OnRemoteKill, I_OnLoadModule, I_OnUnloadModule,
380         I_OnBackgroundTimer, I_OnPreCommand, I_OnCheckReady, I_OnUserRrgister, I_OnCheckInvite,
381         I_OnCheckKey, I_OnCheckLimit, I_OnCheckBan, I_OnStats, I_OnChangeLocalUserHost, I_OnChangeLocalUserGecos, I_OnLocalTopicChange,
382         I_OnPostLocalTopicChange, I_OnEvent, I_OnRequest, I_OnOperCompre, I_OnGlobalOper, I_OnPostConnect, I_OnAddBan, I_OnDelBan,
383         I_OnRawSocketAccept, I_OnRawSocketClose, I_OnRawSocketWrite, I_OnRawSocketRead, I_OnChangeLocalUserGECOS, I_OnUserRegister,
384         I_OnOperCompare, I_OnChannelDelete, I_OnPostOper, I_OnSyncOtherMetaData, I_OnSetAway, I_OnCancelAway, I_OnUserList,
385         I_OnPostCommand, I_OnPostJoin, I_OnWhoisLine, I_OnBuildExemptList, I_OnRawSocketConnect, I_OnGarbageCollect, I_OnBufferFlushed,
386         I_OnText,
387         I_END
388 };
389
390 /** Base class for all InspIRCd modules
391  *  This class is the base class for InspIRCd modules. All modules must inherit from this class,
392  *  its methods will be called when irc server events occur. class inherited from module must be
393  *  instantiated by the ModuleFactory class (see relevent section) for the module to be initialised.
394  */
395 class CoreExport Module : public Extensible
396 {
397  protected:
398         /** Creator/owner pointer
399          */
400         InspIRCd* ServerInstance;
401  public:
402
403         /** Default constructor.
404          * Creates a module class.
405          * @param Me An instance of the InspIRCd class which will be saved into ServerInstance for your use
406          * \exception ModuleException Throwing this class, or any class derived from ModuleException, causes loading of the module to abort.
407          */
408         Module(InspIRCd* Me);
409
410         /** Default destructor.
411          * destroys a module class
412          */
413         virtual ~Module();
414
415         virtual void Prioritize()
416         {
417         }
418
419         /** Returns the version number of a Module.
420          * The method should return a Version object with its version information assigned via
421          * Version::Version
422          */
423         virtual Version GetVersion();
424
425         /** Called when a user connects.
426          * The details of the connecting user are available to you in the parameter User *user
427          * @param user The user who is connecting
428          */
429         virtual void OnUserConnect(User* user);
430
431         /** Called when a user quits.
432          * The details of the exiting user are available to you in the parameter User *user
433          * This event is only called when the user is fully registered when they quit. To catch
434          * raw disconnections, use the OnUserDisconnect method.
435          * @param user The user who is quitting
436          * @param message The user's quit message (as seen by non-opers)
437          * @param oper_message The user's quit message (as seen by opers)
438          */
439         virtual void OnUserQuit(User* user, const std::string &message, const std::string &oper_message);
440
441         /** Called whenever a user's socket is closed.
442          * The details of the exiting user are available to you in the parameter User *user
443          * This event is called for all users, registered or not, as a cleanup method for modules
444          * which might assign resources to user, such as dns lookups, objects and sockets.
445          * @param user The user who is disconnecting
446          */
447         virtual void OnUserDisconnect(User* user);
448
449         /** Called whenever a channel is deleted, either by QUIT, KICK or PART.
450          * @param chan The channel being deleted
451          */
452         virtual void OnChannelDelete(Channel* chan);
453
454         /** Called when a user joins a channel.
455          * The details of the joining user are available to you in the parameter User *user,
456          * and the details of the channel they have joined is available in the variable Channel *channel
457          * @param user The user who is joining
458          * @param channel The channel being joined
459          * @param silent Change this to true if you want to conceal the JOIN command from the other users
460          * of the channel (useful for modules such as auditorium)
461          * @param sync This is set to true if the JOIN is the result of a network sync and the remote user is being introduced
462          * to a channel due to the network sync.
463          */
464         virtual void OnUserJoin(User* user, Channel* channel, bool sync, bool &silent);
465
466         /** Called after a user joins a channel
467          * Identical to OnUserJoin, but called immediately afterwards, when any linking module has
468          * seen the join.
469          * @param user The user who is joining
470          * @param channel The channel being joined
471          */
472         virtual void OnPostJoin(User* user, Channel* channel);
473
474         /** Called when a user parts a channel.
475          * The details of the leaving user are available to you in the parameter User *user,
476          * and the details of the channel they have left is available in the variable Channel *channel
477          * @param user The user who is parting
478          * @param channel The channel being parted
479          * @param partmessage The part message, or an empty string
480          * @param silent Change this to true if you want to conceal the PART command from the other users
481          * of the channel (useful for modules such as auditorium)
482          */
483         virtual void OnUserPart(User* user, Channel* channel, const std::string &partmessage, bool &silent);
484
485         /** Called on rehash.
486          * This method is called prior to a /REHASH or when a SIGHUP is received from the operating
487          * system. You should use it to reload any files so that your module keeps in step with the
488          * rest of the application. If a parameter is given, the core has done nothing. The module
489          * receiving the event can decide if this parameter has any relevence to it.
490          * @param user The user performing the rehash, if any -- if this is server initiated, the
491          * value of this variable will be NULL.
492          * @param parameter The (optional) parameter given to REHASH from the user.
493          */
494         virtual void OnRehash(User* user, const std::string &parameter);
495
496         /** Called when a raw command is transmitted or received.
497          * This method is the lowest level of handler available to a module. It will be called with raw
498          * data which is passing through a connected socket. If you wish, you may munge this data by changing
499          * the string parameter "raw". If you do this, after your function exits it will immediately be
500          * cut down to 510 characters plus a carriage return and linefeed. For INBOUND messages only (where
501          * inbound is set to true) the value of user will be the User of the connection sending the
502          * data. This is not possible for outbound data because the data may be being routed to multiple targets.
503          * @param raw The raw string in RFC1459 format
504          * @param inbound A flag to indicate wether the data is coming into the daemon or going out to the user
505          * @param user The user record sending the text, when inbound == true.
506          */
507         virtual void OnServerRaw(std::string &raw, bool inbound, User* user);
508
509         /** Called whenever a user is about to join a channel, before any processing is done.
510          * Returning a value of 1 from this function stops the process immediately, causing no
511          * output to be sent to the user by the core. If you do this you must produce your own numerics,
512          * notices etc. This is useful for modules which may want to mimic +b, +k, +l etc. Returning -1 from
513          * this function forces the join to be allowed, bypassing restrictions such as banlists, invite, keys etc.
514          *
515          * IMPORTANT NOTE!
516          *
517          * If the user joins a NEW channel which does not exist yet, OnUserPreJoin will be called BEFORE the channel
518          * record is created. This will cause Channel* chan to be NULL. There is very little you can do in form of
519          * processing on the actual channel record at this point, however the channel NAME will still be passed in
520          * char* cname, so that you could for example implement a channel blacklist or whitelist, etc.
521          * @param user The user joining the channel
522          * @param chan If the  channel is a new channel, this will be NULL, otherwise it will be a pointer to the channel being joined
523          * @param cname The channel name being joined. For new channels this is valid where chan is not.
524          * @param privs A string containing the users privilages when joining the channel. For new channels this will contain "@".
525          * You may alter this string to alter the user's modes on the channel.
526          * @return 1 To prevent the join, 0 to allow it.
527          */
528         virtual int OnUserPreJoin(User* user, Channel* chan, const char* cname, std::string &privs);
529         
530         /** Called whenever a user is about to be kicked.
531          * Returning a value of 1 from this function stops the process immediately, causing no
532          * output to be sent to the user by the core. If you do this you must produce your own numerics,
533          * notices etc.
534          * @param source The user issuing the kick
535          * @param user The user being kicked
536          * @param chan The channel the user is being kicked from
537          * @param reason The kick reason
538          * @return 1 to prevent the kick, 0 to continue normally, -1 to explicitly allow the kick regardless of normal operation
539          */
540         virtual int OnUserPreKick(User* source, User* user, Channel* chan, const std::string &reason);
541
542         /** Called whenever a user is kicked.
543          * If this method is called, the kick is already underway and cannot be prevented, so
544          * to prevent a kick, please use Module::OnUserPreKick instead of this method.
545          * @param source The user issuing the kick
546          * @param user The user being kicked
547          * @param chan The channel the user is being kicked from
548          * @param reason The kick reason
549          * @param silent Change this to true if you want to conceal the PART command from the other users
550          * of the channel (useful for modules such as auditorium)
551          */
552         virtual void OnUserKick(User* source, User* user, Channel* chan, const std::string &reason, bool &silent);
553
554         /** Called whenever a user opers locally.
555          * The User will contain the oper mode 'o' as this function is called after any modifications
556          * are made to the user's structure by the core.
557          * @param user The user who is opering up
558          * @param opertype The opers type name
559          */
560         virtual void OnOper(User* user, const std::string &opertype);
561
562         /** Called after a user opers locally.
563          * This is identical to Module::OnOper(), except it is called after OnOper so that other modules
564          * can be gauranteed to already have processed the oper-up, for example m_spanningtree has sent
565          * out the OPERTYPE, etc.
566          * @param user The user who is opering up
567          * @param opertype The opers type name
568          */
569         virtual void OnPostOper(User* user, const std::string &opertype);
570         
571         /** Called whenever a user types /INFO.
572          * The User will contain the information of the user who typed the command. Modules may use this
573          * method to output their own credits in /INFO (which is the ircd's version of an about box).
574          * It is purposefully not possible to modify any info that has already been output, or halt the list.
575          * You must write a 371 numeric to the user, containing your info in the following format:
576          *
577          * &lt;nick&gt; :information here
578          *
579          * @param user The user issuing /INFO
580          */
581         virtual void OnInfo(User* user);
582         
583         /** Called whenever a /WHOIS is performed on a local user.
584          * The source parameter contains the details of the user who issued the WHOIS command, and
585          * the dest parameter contains the information of the user they are whoising.
586          * @param source The user issuing the WHOIS command
587          * @param dest The user who is being WHOISed
588          */
589         virtual void OnWhois(User* source, User* dest);
590         
591         /** Called whenever a user is about to invite another user into a channel, before any processing is done.
592          * Returning 1 from this function stops the process immediately, causing no
593          * output to be sent to the user by the core. If you do this you must produce your own numerics,
594          * notices etc. This is useful for modules which may want to filter invites to channels.
595          * @param source The user who is issuing the INVITE
596          * @param dest The user being invited
597          * @param channel The channel the user is being invited to
598          * @return 1 to deny the invite, 0 to allow
599          */
600         virtual int OnUserPreInvite(User* source,User* dest,Channel* channel);
601         
602         /** Called after a user has been successfully invited to a channel.
603          * You cannot prevent the invite from occuring using this function, to do that,
604          * use OnUserPreInvite instead.
605          * @param source The user who is issuing the INVITE
606          * @param dest The user being invited
607          * @param channel The channel the user is being invited to
608          */
609         virtual void OnUserInvite(User* source,User* dest,Channel* channel);
610         
611         /** Called whenever a user is about to PRIVMSG A user or a channel, before any processing is done.
612          * Returning any nonzero value from this function stops the process immediately, causing no
613          * output to be sent to the user by the core. If you do this you must produce your own numerics,
614          * notices etc. This is useful for modules which may want to filter or redirect messages.
615          * target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user,
616          * you must cast dest to a User* otherwise you must cast it to a Channel*, this is the details
617          * of where the message is destined to be sent.
618          * @param user The user sending the message
619          * @param dest The target of the message (Channel* or User*)
620          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
621          * @param text Changeable text being sent by the user
622          * @param status The status being used, e.g. PRIVMSG @#chan has status== '@', 0 to send to everyone.
623          * @param exempt_list A list of users not to send to. For channel messages, this will usually contain just the sender.
624          * It will be ignored for private messages.
625          * @return 1 to deny the NOTICE, 0 to allow it
626          */
627         virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text,char status, CUList &exempt_list);
628
629         /** Called whenever a user is about to NOTICE A user or a channel, before any processing is done.
630          * Returning any nonzero value from this function stops the process immediately, causing no
631          * output to be sent to the user by the core. If you do this you must produce your own numerics,
632          * notices etc. This is useful for modules which may want to filter or redirect messages.
633          * target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user,
634          * you must cast dest to a User* otherwise you must cast it to a Channel*, this is the details
635          * of where the message is destined to be sent.
636          * You may alter the message text as you wish before relinquishing control to the next module
637          * in the chain, and if no other modules block the text this altered form of the text will be sent out
638          * to the user and possibly to other servers.
639          * @param user The user sending the message
640          * @param dest The target of the message (Channel* or User*)
641          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
642          * @param text Changeable text being sent by the user
643          * @param status The status being used, e.g. PRIVMSG @#chan has status== '@', 0 to send to everyone.
644          * @param exempt_list A list of users not to send to. For channel notices, this will usually contain just the sender.
645          * It will be ignored for private notices.
646          * @return 1 to deny the NOTICE, 0 to allow it
647          */
648         virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text,char status, CUList &exempt_list);
649
650         /** Called whenever the server wants to build the exemption list for a channel, but is not directly doing a PRIVMSG or NOTICE.
651          * For example, the spanningtree protocol will call this event when passing a privmsg on (but not processing it directly).
652          * @param message_type The message type, either MSG_PRIVMSG or MSG_NOTICE
653          * @param chan The channel to build the exempt list of
654          * @param sender The original sender of the PRIVMSG or NOTICE
655          * @param status The status char to be used for the channel list
656          * @param exempt_list The exempt list to be populated
657          * @param text The original message text causing the exempt list to be built
658          */
659         virtual void OnBuildExemptList(MessageType message_type, Channel* chan, User* sender, char status, CUList &exempt_list, const std::string &text);
660         
661         /** Called before any nickchange, local or remote. This can be used to implement Q-lines etc.
662          * Please note that although you can see remote nickchanges through this function, you should
663          * NOT make any changes to the User if the user is a remote user as this may cause a desnyc.
664          * check user->server before taking any action (including returning nonzero from the method).
665          * If your method returns nonzero, the nickchange is silently forbidden, and it is down to your
666          * module to generate some meaninful output.
667          * @param user The username changing their nick
668          * @param newnick Their new nickname
669          * @return 1 to deny the change, 0 to allow
670          */
671         virtual int OnUserPreNick(User* user, const std::string &newnick);
672
673         /** Called after any PRIVMSG sent from a user.
674          * The dest variable contains a User* if target_type is TYPE_USER and a Channel*
675          * if target_type is TYPE_CHANNEL.
676          * @param user The user sending the message
677          * @param dest The target of the message
678          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
679          * @param text the text being sent by the user
680          * @param status The status being used, e.g. PRIVMSG @#chan has status== '@', 0 to send to everyone.
681          */
682         virtual void OnUserMessage(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list);
683
684         /** Called after any NOTICE sent from a user.
685          * The dest variable contains a User* if target_type is TYPE_USER and a Channel*
686          * if target_type is TYPE_CHANNEL.
687          * @param user The user sending the message
688          * @param dest The target of the message
689          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
690          * @param text the text being sent by the user
691          * @param status The status being used, e.g. NOTICE @#chan has status== '@', 0 to send to everyone.
692          */
693         virtual void OnUserNotice(User* user, void* dest, int target_type, const std::string &text, char status, const CUList &exempt_list);
694
695         /** Called immediately before any NOTICE or PRIVMSG sent from a user, local or remote.
696          * The dest variable contains a User* if target_type is TYPE_USER and a Channel*
697          * if target_type is TYPE_CHANNEL.
698          * The difference between this event and OnUserPreNotice/OnUserPreMessage is that delivery is gauranteed,
699          * the message has already been vetted. In the case of the other two methods, a later module may stop your
700          * message. This also differs from OnUserMessage which occurs AFTER the message has been sent.
701          * @param user The user sending the message
702          * @param dest The target of the message
703          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
704          * @param text the text being sent by the user
705          * @param status The status being used, e.g. NOTICE @#chan has status== '@', 0 to send to everyone.
706          */
707         virtual void OnText(User* user, void* dest, int target_type, const std::string &text, char status, CUList &exempt_list);
708
709         /** Called after every MODE command sent from a user
710          * The dest variable contains a User* if target_type is TYPE_USER and a Channel*
711          * if target_type is TYPE_CHANNEL. The text variable contains the remainder of the
712          * mode string after the target, e.g. "+wsi" or "+ooo nick1 nick2 nick3".
713          * @param user The user sending the MODEs
714          * @param dest The target of the modes (User* or Channel*)
715          * @param target_type The type of target (TYPE_USER or TYPE_CHANNEL)
716          * @param text The actual modes and their parameters if any
717          */
718         virtual void OnMode(User* user, void* dest, int target_type, const std::string &text);
719
720         /** Allows modules to alter or create server descriptions
721          * Whenever a module requires a server description, for example for display in
722          * WHOIS, this function is called in all modules. You may change or define the
723          * description given in std::string &description. If you do, this description
724          * will be shown in the WHOIS fields.
725          * @param servername The servername being searched for
726          * @param description Alterable server description for this server
727          */
728         virtual void OnGetServerDescription(const std::string &servername,std::string &description);
729
730         /** Allows modules to synchronize data which relates to users during a netburst.
731          * When this function is called, it will be called from the module which implements
732          * the linking protocol. This currently is m_spanningtree.so. A pointer to this module
733          * is given in Module* proto, so that you may call its methods such as ProtoSendMode
734          * (see below). This function will be called for every user visible on your side
735          * of the burst, allowing you to for example set modes, etc. Do not use this call to
736          * synchronize data which you have stored using class Extensible -- There is a specialist
737          * function OnSyncUserMetaData and OnSyncChannelMetaData for this!
738          * @param user The user being syncronized
739          * @param proto A pointer to the module handling network protocol
740          * @param opaque An opaque pointer set by the protocol module, should not be modified!
741          */
742         virtual void OnSyncUser(User* user, Module* proto, void* opaque);
743
744         /** Allows modules to synchronize data which relates to channels during a netburst.
745          * When this function is called, it will be called from the module which implements
746          * the linking protocol. This currently is m_spanningtree.so. A pointer to this module
747          * is given in Module* proto, so that you may call its methods such as ProtoSendMode
748          * (see below). This function will be called for every user visible on your side
749          * of the burst, allowing you to for example set modes, etc. Do not use this call to
750          * synchronize data which you have stored using class Extensible -- There is a specialist
751          * function OnSyncUserMetaData and OnSyncChannelMetaData for this!
752          *
753          * For a good example of how to use this function, please see src/modules/m_chanprotect.cpp
754          *
755          * @param chan The channel being syncronized
756          * @param proto A pointer to the module handling network protocol
757          * @param opaque An opaque pointer set by the protocol module, should not be modified!
758          */
759         virtual void OnSyncChannel(Channel* chan, Module* proto, void* opaque);
760
761         /* Allows modules to syncronize metadata related to channels over the network during a netburst.
762          * Whenever the linking module wants to send out data, but doesnt know what the data
763          * represents (e.g. it is Extensible metadata, added to a User or Channel by a module) then
764          * this method is called.You should use the ProtoSendMetaData function after you've
765          * correctly decided how the data should be represented, to send the metadata on its way if it belongs
766          * to your module. For a good example of how to use this method, see src/modules/m_swhois.cpp.
767          * @param chan The channel whos metadata is being syncronized
768          * @param proto A pointer to the module handling network protocol
769          * @param opaque An opaque pointer set by the protocol module, should not be modified!
770          * @param extname The extensions name which is being searched for
771          * @param displayable If this value is true, the data is going to be displayed to a user,
772          * and not sent across the network. Use this to determine wether or not to show sensitive data.
773          */
774         virtual void OnSyncChannelMetaData(Channel* chan, Module* proto,void* opaque, const std::string &extname, bool displayable = false);
775
776         /* Allows modules to syncronize metadata related to users over the network during a netburst.
777          * Whenever the linking module wants to send out data, but doesnt know what the data
778          * represents (e.g. it is Extensible metadata, added to a User or Channel by a module) then
779          * this method is called. You should use the ProtoSendMetaData function after you've
780          * correctly decided how the data should be represented, to send the metadata on its way if
781          * if it belongs to your module.
782          * @param user The user whos metadata is being syncronized
783          * @param proto A pointer to the module handling network protocol
784          * @param opaque An opaque pointer set by the protocol module, should not be modified!
785          * @param extname The extensions name which is being searched for
786          * @param displayable If this value is true, the data is going to be displayed to a user,
787          * and not sent across the network. Use this to determine wether or not to show sensitive data.
788          */
789         virtual void OnSyncUserMetaData(User* user, Module* proto,void* opaque, const std::string &extname, bool displayable = false);
790
791         /* Allows modules to syncronize metadata not related to users or channels, over the network during a netburst.
792          * Whenever the linking module wants to send out data, but doesnt know what the data
793          * represents (e.g. it is Extensible metadata, added to a User or Channel by a module) then
794          * this method is called. You should use the ProtoSendMetaData function after you've
795          * correctly decided how the data should be represented, to send the metadata on its way if
796          * if it belongs to your module.
797          * @param proto A pointer to the module handling network protocol
798          * @param opaque An opaque pointer set by the protocol module, should not be modified!
799          * @param displayable If this value is true, the data is going to be displayed to a user,
800          * and not sent across the network. Use this to determine wether or not to show sensitive data.
801          */
802         virtual void OnSyncOtherMetaData(Module* proto, void* opaque, bool displayable = false);
803
804         /** Allows module data, sent via ProtoSendMetaData, to be decoded again by a receiving module.
805          * Please see src/modules/m_swhois.cpp for a working example of how to use this method call.
806          * @param target_type The type of item to decode data for, TYPE_USER or TYPE_CHANNEL
807          * @param target The Channel* or User* that data should be added to
808          * @param extname The extension name which is being sent
809          * @param extdata The extension data, encoded at the other end by an identical module through OnSyncChannelMetaData or OnSyncUserMetaData
810          */
811         virtual void OnDecodeMetaData(int target_type, void* target, const std::string &extname, const std::string &extdata);
812
813         /** Implemented by modules which provide the ability to link servers.
814          * These modules will implement this method, which allows transparent sending of servermodes
815          * down the network link as a broadcast, without a module calling it having to know the format
816          * of the MODE command before the actual mode string.
817          *
818          * More documentation to follow soon. Please see src/modules/m_chanprotect.cpp for examples
819          * of how to use this function.
820          *
821          * @param opaque An opaque pointer set by the protocol module, should not be modified!
822          * @param target_type The type of item to decode data for, TYPE_USER or TYPE_CHANNEL
823          * @param target The Channel* or User* that modes should be sent for
824          * @param modeline The modes and parameters to be sent
825          */
826         virtual void ProtoSendMode(void* opaque, int target_type, void* target, const std::string &modeline);
827
828         /** Implemented by modules which provide the ability to link servers.
829          * These modules will implement this method, which allows metadata (extra data added to
830          * user and channel records using class Extensible, Extensible::Extend, etc) to be sent
831          * to other servers on a netburst and decoded at the other end by the same module on a
832          * different server.
833          *
834          * More documentation to follow soon. Please see src/modules/m_swhois.cpp for example of
835          * how to use this function.
836          * @param opaque An opaque pointer set by the protocol module, should not be modified!
837          * @param target_type The type of item to decode data for, TYPE_USER or TYPE_CHANNEL
838          * @param target The Channel* or User* that metadata should be sent for
839          * @param extname The extension name to send metadata for
840          * @param extdata Encoded data for this extension name, which will be encoded at the oppsite end by an identical module using OnDecodeMetaData
841          */
842         virtual void ProtoSendMetaData(void* opaque, int target_type, void* target, const std::string &extname, const std::string &extdata);
843         
844         /** Called after every WALLOPS command.
845          * @param user The user sending the WALLOPS
846          * @param text The content of the WALLOPS message
847          */
848         virtual void OnWallops(User* user, const std::string &text);
849
850         /** Called whenever a user's hostname is changed.
851          * This event triggers after the host has been set.
852          * @param user The user whos host is being changed
853          * @param newhost The new hostname being set
854          */
855         virtual void OnChangeHost(User* user, const std::string &newhost);
856
857         /** Called whenever a user's GECOS (realname) is changed.
858          * This event triggers after the name has been set.
859          * @param user The user who's GECOS is being changed
860          * @param gecos The new GECOS being set on the user
861          */
862         virtual void OnChangeName(User* user, const std::string &gecos);
863
864         /** Called whenever an xline is added by a local user.
865          * This method is triggered after the line is added.
866          * @param source The sender of the line or NULL for local server
867          * @param line The xline being added
868          */
869         virtual void OnAddLine(User* source, XLine* line);
870
871         /** Called whenever an xline is deleted.
872          * This method is triggered after the line is deleted.
873          * @param source The user removing the line or NULL for local server
874          * @param line the line being deleted
875          */
876         virtual void OnDelLine(User* source, XLine* line);
877
878         /** Called whenever a zline is deleted.
879          * This method is triggered after the line is deleted.
880          * @param source The user removing the line
881          * @param hostmask The hostmask to delete
882          */
883
884         /** Called before your module is unloaded to clean up Extensibles.
885          * This method is called once for every user and channel on the network,
886          * so that when your module unloads it may clear up any remaining data
887          * in the form of Extensibles added using Extensible::Extend().
888          * If the target_type variable is TYPE_USER, then void* item refers to
889          * a User*, otherwise it refers to a Channel*.
890          * @param target_type The type of item being cleaned
891          * @param item A pointer to the item's class
892          */
893         virtual void OnCleanup(int target_type, void* item);
894
895         /** Called after any nickchange, local or remote. This can be used to track users after nickchanges
896          * have been applied. Please note that although you can see remote nickchanges through this function, you should
897          * NOT make any changes to the User if the user is a remote user as this may cause a desnyc.
898          * check user->server before taking any action (including returning nonzero from the method).
899          * Because this method is called after the nickchange is taken place, no return values are possible
900          * to indicate forbidding of the nick change. Use OnUserPreNick for this.
901          * @param user The user changing their nick
902          * @param oldnick The old nickname of the user before the nickchange
903          */
904         virtual void OnUserPostNick(User* user, const std::string &oldnick);
905
906         /** Called before an action which requires a channel privilage check.
907          * This function is called before many functions which check a users status on a channel, for example
908          * before opping a user, deopping a user, kicking a user, etc.
909          * There are several values for access_type which indicate for what reason access is being checked.
910          * These are:<br><br>
911          * AC_KICK (0) - A user is being kicked<br>
912          * AC_DEOP (1) - a user is being deopped<br>
913          * AC_OP (2) - a user is being opped<br>
914          * AC_VOICE (3) - a user is being voiced<br>
915          * AC_DEVOICE (4) - a user is being devoiced<br>
916          * AC_HALFOP (5) - a user is being halfopped<br>
917          * AC_DEHALFOP (6) - a user is being dehalfopped<br>
918          * AC_INVITE () - a user is being invited<br>
919          * AC_GENERAL_MODE (8) - a user channel mode is being changed<br><br>
920          * Upon returning from your function you must return either ACR_DEFAULT, to indicate the module wishes
921          * to do nothing, or ACR_DENY where approprate to deny the action, and ACR_ALLOW where appropriate to allow
922          * the action. Please note that in the case of some access checks (such as AC_GENERAL_MODE) access may be
923          * denied 'upstream' causing other checks such as AC_DEOP to not be reached. Be very careful with use of the
924          * AC_GENERAL_MODE type, as it may inadvertently override the behaviour of other modules. When the access_type
925          * is AC_GENERAL_MODE, the destination of the mode will be NULL (as it has not yet been determined).
926          * @param source The source of the access check
927          * @param dest The destination of the access check
928          * @param channel The channel which is being checked
929          * @param access_type See above
930          */
931         virtual int OnAccessCheck(User* source,User* dest,Channel* channel,int access_type);
932
933         /** Called when a 005 numeric is about to be output.
934          * The module should modify the 005 numeric if needed to indicate its features.
935          * @param output The 005 string to be modified if neccessary.
936          */
937         virtual void On005Numeric(std::string &output);
938
939         /** Called when a client is disconnected by KILL.
940          * If a client is killed by a server, e.g. a nickname collision or protocol error,
941          * source is NULL.
942          * Return 1 from this function to prevent the kill, and 0 from this function to allow
943          * it as normal. If you prevent the kill no output will be sent to the client, it is
944          * down to your module to generate this information.
945          * NOTE: It is NOT advisable to stop kills which originate from servers or remote users.
946          * If you do so youre risking race conditions, desyncs and worse!
947          * @param source The user sending the KILL
948          * @param dest The user being killed
949          * @param reason The kill reason
950          * @return 1 to prevent the kill, 0 to allow
951          */
952         virtual int OnKill(User* source, User* dest, const std::string &reason);
953
954         /** Called when an oper wants to disconnect a remote user via KILL
955          * @param source The user sending the KILL
956          * @param dest The user being killed
957          * @param reason The kill reason
958          */
959         virtual void OnRemoteKill(User* source, User* dest, const std::string &reason, const std::string &operreason);
960
961         /** Called whenever a module is loaded.
962          * mod will contain a pointer to the module, and string will contain its name,
963          * for example m_widgets.so. This function is primary for dependency checking,
964          * your module may decide to enable some extra features if it sees that you have
965          * for example loaded "m_killwidgets.so" with "m_makewidgets.so". It is highly
966          * recommended that modules do *NOT* bail if they cannot satisfy dependencies,
967          * but instead operate under reduced functionality, unless the dependency is
968          * absolutely neccessary (e.g. a module that extends the features of another
969          * module).
970          * @param mod A pointer to the new module
971          * @param name The new module's filename
972          */
973         virtual void OnLoadModule(Module* mod,const std::string &name);
974
975         /** Called whenever a module is unloaded.
976          * mod will contain a pointer to the module, and string will contain its name,
977          * for example m_widgets.so. This function is primary for dependency checking,
978          * your module may decide to enable some extra features if it sees that you have
979          * for example loaded "m_killwidgets.so" with "m_makewidgets.so". It is highly
980          * recommended that modules do *NOT* bail if they cannot satisfy dependencies,
981          * but instead operate under reduced functionality, unless the dependency is
982          * absolutely neccessary (e.g. a module that extends the features of another
983          * module).
984          * @param mod Pointer to the module being unloaded (still valid)
985          * @param name The filename of the module being unloaded
986          */
987         virtual void OnUnloadModule(Module* mod,const std::string &name);
988
989         /** Called once every five seconds for background processing.
990          * This timer can be used to control timed features. Its period is not accurate
991          * enough to be used as a clock, but it is gauranteed to be called at least once in
992          * any five second period, directly from the main loop of the server.
993          * @param curtime The current timer derived from time(2)
994          */
995         virtual void OnBackgroundTimer(time_t curtime);
996
997         /** Called whenever any command is about to be executed.
998          * This event occurs for all registered commands, wether they are registered in the core,
999          * or another module, and for invalid commands. Invalid commands may only be sent to this
1000          * function when the value of validated is false. By returning 1 from this method you may prevent the
1001          * command being executed. If you do this, no output is created by the core, and it is
1002          * down to your module to produce any output neccessary.
1003          * Note that unless you return 1, you should not destroy any structures (e.g. by using
1004          * InspIRCd::QuitUser) otherwise when the command's handler function executes after your
1005          * method returns, it will be passed an invalid pointer to the user object and crash!)
1006          * @param command The command being executed
1007          * @param parameters An array of array of characters containing the parameters for the command
1008          * @param pcnt The nuimber of parameters passed to the command
1009          * @param user the user issuing the command
1010          * @param validated True if the command has passed all checks, e.g. it is recognised, has enough parameters, the user has permission to execute it, etc.
1011          * @param original_line The entire original line as passed to the parser from the user
1012          * @return 1 to block the command, 0 to allow
1013          */
1014         virtual int OnPreCommand(const std::string &command, const char** parameters, int pcnt, User *user, bool validated, const std::string &original_line);
1015
1016         /** Called after any command has been executed.
1017          * This event occurs for all registered commands, wether they are registered in the core,
1018          * or another module, but it will not occur for invalid commands (e.g. ones which do not
1019          * exist within the command table). The result code returned by the command handler is
1020          * provided.
1021          * @param command The command being executed
1022          * @param parameters An array of array of characters containing the parameters for the command
1023          * @param pcnt The nuimber of parameters passed to the command
1024          * @param user the user issuing the command
1025          * @param result The return code given by the command handler, one of CMD_SUCCESS or CMD_FAILURE
1026          * @param original_line The entire original line as passed to the parser from the user
1027          */
1028         virtual void OnPostCommand(const std::string &command, const char** parameters, int pcnt, User *user, CmdResult result, const std::string &original_line);
1029
1030         /** Called to check if a user who is connecting can now be allowed to register
1031          * If any modules return false for this function, the user is held in the waiting
1032          * state until all modules return true. For example a module which implements ident
1033          * lookups will continue to return false for a user until their ident lookup is completed.
1034          * Note that the registration timeout for a user overrides these checks, if the registration
1035          * timeout is reached, the user is disconnected even if modules report that the user is
1036          * not ready to connect.
1037          * @param user The user to check
1038          * @return true to indicate readiness, false if otherwise
1039          */
1040         virtual bool OnCheckReady(User* user);
1041
1042         /** Called whenever a user is about to register their connection (e.g. before the user
1043          * is sent the MOTD etc). Modules can use this method if they are performing a function
1044          * which must be done before the actual connection is completed (e.g. ident lookups,
1045          * dnsbl lookups, etc).
1046          * Note that you should NOT delete the user record here by causing a disconnection!
1047          * Use OnUserConnect for that instead.
1048          * @param user The user registering
1049          * @return 1 to indicate user quit, 0 to continue
1050          */
1051         virtual int OnUserRegister(User* user);
1052
1053         /** Called whenever a user joins a channel, to determine if invite checks should go ahead or not.
1054          * This method will always be called for each join, wether or not the channel is actually +i, and
1055          * determines the outcome of an if statement around the whole section of invite checking code.
1056          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1057          * @param user The user joining the channel
1058          * @param chan The channel being joined
1059          * @return 1 to explicitly allow the join, 0 to proceed as normal
1060          */
1061         virtual int OnCheckInvite(User* user, Channel* chan);
1062
1063         /** Called whenever a user joins a channel, to determine if key checks should go ahead or not.
1064          * This method will always be called for each join, wether or not the channel is actually +k, and
1065          * determines the outcome of an if statement around the whole section of key checking code.
1066          * if the user specified no key, the keygiven string will be a valid but empty value.
1067          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1068          * @param user The user joining the channel
1069          * @param chan The channel being joined
1070          * @return 1 to explicitly allow the join, 0 to proceed as normal
1071          */
1072         virtual int OnCheckKey(User* user, Channel* chan, const std::string &keygiven);
1073
1074         /** Called whenever a user joins a channel, to determine if channel limit checks should go ahead or not.
1075          * This method will always be called for each join, wether or not the channel is actually +l, and
1076          * determines the outcome of an if statement around the whole section of channel limit checking code.
1077          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1078          * @param user The user joining the channel
1079          * @param chan The channel being joined
1080          * @return 1 to explicitly allow the join, 0 to proceed as normal
1081          */
1082         virtual int OnCheckLimit(User* user, Channel* chan);
1083
1084         /** Called whenever a user joins a channel, to determine if banlist checks should go ahead or not.
1085          * This method will always be called for each join, wether or not the user actually matches a channel ban, and
1086          * determines the outcome of an if statement around the whole section of ban checking code.
1087          * return 1 to explicitly allow the join to go ahead or 0 to ignore the event.
1088          * @param user The user joining the channel
1089          * @param chan The channel being joined
1090          * @return 1 to explicitly allow the join, 0 to proceed as normal
1091          */
1092         virtual int OnCheckBan(User* user, Channel* chan);
1093
1094         /** Called on all /STATS commands
1095          * This method is triggered for all /STATS use, including stats symbols handled by the core.
1096          * @param symbol the symbol provided to /STATS
1097          * @param user the user issuing the /STATS command
1098          * @param results A string_list to append results into. You should put all your results
1099          * into this string_list, rather than displaying them directly, so that your handler will
1100          * work when remote STATS queries are received.
1101          * @return 1 to block the /STATS from being processed by the core, 0 to allow it
1102          */
1103         virtual int OnStats(char symbol, User* user, string_list &results);
1104
1105         /** Called whenever a change of a local users displayed host is attempted.
1106          * Return 1 to deny the host change, or 0 to allow it.
1107          * @param user The user whos host will be changed
1108          * @param newhost The new hostname
1109          * @return 1 to deny the host change, 0 to allow
1110          */
1111         virtual int OnChangeLocalUserHost(User* user, const std::string &newhost);
1112
1113         /** Called whenever a change of a local users GECOS (fullname field) is attempted.
1114          * return 1 to deny the name change, or 0 to allow it.
1115          * @param user The user whos GECOS will be changed
1116          * @param newhost The new GECOS
1117          * @return 1 to deny the GECOS change, 0 to allow
1118          */
1119         virtual int OnChangeLocalUserGECOS(User* user, const std::string &newhost); 
1120
1121         /** Called whenever a topic is changed by a local user.
1122          * Return 1 to deny the topic change, or 0 to allow it.
1123          * @param user The user changing the topic
1124          * @param chan The channels who's topic is being changed
1125          * @param topic The actual topic text
1126          * @param 1 to block the topic change, 0 to allow
1127          */
1128         virtual int OnLocalTopicChange(User* user, Channel* chan, const std::string &topic);
1129
1130         /** Called whenever a local topic has been changed.
1131          * To block topic changes you must use OnLocalTopicChange instead.
1132          * @param user The user changing the topic
1133          * @param chan The channels who's topic is being changed
1134          * @param topic The actual topic text
1135          */
1136         virtual void OnPostLocalTopicChange(User* user, Channel* chan, const std::string &topic);
1137
1138         /** Called whenever an Event class is sent to all module by another module.
1139          * Please see the documentation of Event::Send() for further information. The Event sent can
1140          * always be assumed to be non-NULL, you should *always* check the value of Event::GetEventID()
1141          * before doing anything to the event data, and you should *not* change the event data in any way!
1142          * @param event The Event class being received
1143          */
1144         virtual void OnEvent(Event* event);
1145
1146         /** Called whenever a Request class is sent to your module by another module.
1147          * Please see the documentation of Request::Send() for further information. The Request sent
1148          * can always be assumed to be non-NULL, you should not change the request object or its data.
1149          * Your method may return arbitary data in the char* result which the requesting module
1150          * may be able to use for pre-determined purposes (e.g. the results of an SQL query, etc).
1151          * @param request The Request class being received
1152          */
1153         virtual char* OnRequest(Request* request);
1154
1155         /** Called whenever an oper password is to be compared to what a user has input.
1156          * The password field (from the config file) is in 'password' and is to be compared against
1157          * 'input'. This method allows for encryption of oper passwords and much more besides.
1158          * You should return a nonzero value if you want to allow the comparison or zero if you wish
1159          * to do nothing.
1160          * @param password The oper's password
1161          * @param input The password entered
1162          * @param tagnumber The tag number (from the configuration file) of this oper's tag
1163          * @return 1 to match the passwords, 0 to do nothing. -1 to not match, and not continue.
1164          */
1165         virtual int OnOperCompare(const std::string &password, const std::string &input, int tagnumber);
1166
1167         /** Called whenever a user is given usermode +o, anywhere on the network.
1168          * You cannot override this and prevent it from happening as it is already happened and
1169          * such a task must be performed by another server. You can however bounce modes by sending
1170          * servermodes out to reverse mode changes.
1171          * @param user The user who is opering
1172          */
1173         virtual void OnGlobalOper(User* user);
1174
1175         /** Called after a user has fully connected and all modules have executed OnUserConnect
1176          * This event is informational only. You should not change any user information in this
1177          * event. To do so, use the OnUserConnect method to change the state of local users.
1178          * This is called for both local and remote users.
1179          * @param user The user who is connecting
1180          */
1181         virtual void OnPostConnect(User* user);
1182
1183         /** Called whenever a ban is added to a channel's list.
1184          * Return a non-zero value to 'eat' the mode change and prevent the ban from being added.
1185          * @param source The user adding the ban
1186          * @param channel The channel the ban is being added to
1187          * @param banmask The ban mask being added
1188          * @return 1 to block the ban, 0 to continue as normal
1189          */
1190         virtual int OnAddBan(User* source, Channel* channel,const std::string &banmask);
1191
1192         /** Called whenever a ban is removed from a channel's list.
1193          * Return a non-zero value to 'eat' the mode change and prevent the ban from being removed.
1194          * @param source The user deleting the ban
1195          * @param channel The channel the ban is being deleted from
1196          * @param banmask The ban mask being deleted
1197          * @return 1 to block the unban, 0 to continue as normal
1198          */
1199         virtual int OnDelBan(User* source, Channel* channel,const std::string &banmask);
1200
1201         /** Called immediately after any  connection is accepted. This is intended for raw socket
1202          * processing (e.g. modules which wrap the tcp connection within another library) and provides
1203          * no information relating to a user record as the connection has not been assigned yet.
1204          * There are no return values from this call as all modules get an opportunity if required to
1205          * process the connection.
1206          * @param fd The file descriptor returned from accept()
1207          * @param ip The IP address of the connecting user
1208          * @param localport The local port number the user connected to
1209          */
1210         virtual void OnRawSocketAccept(int fd, const std::string &ip, int localport);
1211
1212         /** Called immediately before any write() operation on a user's socket in the core. Because
1213          * this event is a low level event no user information is associated with it. It is intended
1214          * for use by modules which may wrap connections within another API such as SSL for example.
1215          * return a non-zero result if you have handled the write operation, in which case the core
1216          * will not call write().
1217          * @param fd The file descriptor of the socket
1218          * @param buffer A char* buffer being written
1219          * @param Number of characters to write
1220          * @return Number of characters actually written or 0 if you didn't handle the operation
1221          */
1222         virtual int OnRawSocketWrite(int fd, const char* buffer, int count);
1223
1224         /** Called immediately before any socket is closed. When this event is called, shutdown()
1225          * has not yet been called on the socket.
1226          * @param fd The file descriptor of the socket prior to close()
1227          */
1228         virtual void OnRawSocketClose(int fd);
1229
1230         /** Called immediately upon connection of an outbound BufferedSocket which has been hooked
1231          * by a module.
1232          * @param fd The file descriptor of the socket immediately after connect()
1233          */
1234         virtual void OnRawSocketConnect(int fd);
1235
1236         /** Called immediately before any read() operation on a client socket in the core.
1237          * This occurs AFTER the select() or poll() so there is always data waiting to be read
1238          * when this event occurs.
1239          * Your event should return 1 if it has handled the reading itself, which prevents the core
1240          * just using read(). You should place any data read into buffer, up to but NOT GREATER THAN
1241          * the value of count. The value of readresult must be identical to an actual result that might
1242          * be returned from the read() system call, for example, number of bytes read upon success,
1243          * 0 upon EOF or closed socket, and -1 for error. If your function returns a nonzero value,
1244          * you MUST set readresult.
1245          * @param fd The file descriptor of the socket
1246          * @param buffer A char* buffer being read to
1247          * @param count The size of the buffer
1248          * @param readresult The amount of characters read, or 0
1249          * @return nonzero if the event was handled, in which case readresult must be valid on exit
1250          */
1251         virtual int OnRawSocketRead(int fd, char* buffer, unsigned int count, int &readresult);
1252
1253         /** Called whenever a user sets away.
1254          * This method has no parameter for the away message, as it is available in the
1255          * user record as User::awaymsg.
1256          * @param user The user setting away
1257          */
1258         virtual void OnSetAway(User* user);
1259
1260         /** Called when a user cancels their away state.
1261          * @param user The user returning from away
1262          */
1263         virtual void OnCancelAway(User* user);
1264
1265         /** Called whenever a NAMES list is requested.
1266          * You can produce the nameslist yourself, overriding the current list,
1267          * and if you do you must return 1. If you do not handle the names list,
1268          * return 0.
1269          * @param The user requesting the NAMES list
1270          * @param Ptr The channel the NAMES list is requested for
1271          * @param userlist The user list for the channel (you may change this pointer.
1272          * If you want to change the values, take a copy first, and change the copy, then
1273          * point the pointer at your copy)
1274          * @return 1 to prevent the user list being sent to the client, 0 to allow it
1275          */
1276         virtual int OnUserList(User* user, Channel* Ptr, CUList* &userlist);
1277
1278         /** Called whenever a line of WHOIS output is sent to a user.
1279          * You may change the numeric and the text of the output by changing
1280          * the values numeric and text, but you cannot change the user the
1281          * numeric is sent to. You may however change the user's User values.
1282          * @param user The user the numeric is being sent to
1283          * @param dest The user being WHOISed
1284          * @param numeric The numeric of the line being sent
1285          * @param text The text of the numeric, including any parameters
1286          * @return nonzero to drop the line completely so that the user does not
1287          * receive it, or zero to allow the line to be sent.
1288          */
1289         virtual int OnWhoisLine(User* user, User* dest, int &numeric, std::string &text);
1290
1291         /** Called at intervals for modules to garbage-collect any hashes etc.
1292          * Certain data types such as hash_map 'leak' buckets, which must be
1293          * tidied up and freed by copying into a new item every so often. This
1294          * method is called when it is time to do that.
1295          */
1296         virtual void OnGarbageCollect();
1297
1298         /** Called whenever a user's write buffer has been completely sent.
1299          * This is called when the user's write buffer is completely empty, and
1300          * there are no more pending bytes to be written and no pending write events
1301          * in the socket engine's queue. This may be used to refill the buffer with
1302          * data which is being spooled in a controlled manner, e.g. LIST lines.
1303          * @param user The user who's buffer is now empty.
1304          */
1305         virtual void OnBufferFlushed(User* user);
1306 };
1307
1308
1309 #define CONF_NO_ERROR           0x000000
1310 #define CONF_NOT_A_NUMBER       0x000010
1311 #define CONF_INT_NEGATIVE       0x000080
1312 #define CONF_VALUE_NOT_FOUND    0x000100
1313 #define CONF_FILE_NOT_FOUND     0x000200
1314
1315
1316 /** Allows reading of values from configuration files
1317  * This class allows a module to read from either the main configuration file (inspircd.conf) or from
1318  * a module-specified configuration file. It may either be instantiated with one parameter or none.
1319  * Constructing the class using one parameter allows you to specify a path to your own configuration
1320  * file, otherwise, inspircd.conf is read.
1321  */
1322 class CoreExport ConfigReader : public classbase
1323 {
1324   protected:
1325         InspIRCd* ServerInstance;
1326         /** The contents of the configuration file
1327          * This protected member should never be accessed by a module (and cannot be accessed unless the
1328          * core is changed). It will contain a pointer to the configuration file data with unneeded data
1329          * (such as comments) stripped from it.
1330          */
1331         ConfigDataHash* data;
1332         /** Used to store errors
1333          */
1334         std::ostringstream* errorlog;
1335         /** If we're using our own config data hash or not
1336          */
1337         bool privatehash;
1338         /** True if an error occured reading the config file
1339          */
1340         bool readerror;
1341         /** Error code
1342          */
1343         long error;
1344         
1345   public:
1346         /** Default constructor.
1347          * This constructor initialises the ConfigReader class to read the inspircd.conf file
1348          * as specified when running ./configure.
1349          */
1350         ConfigReader(InspIRCd* Instance);
1351         /** Overloaded constructor.
1352          * This constructor initialises the ConfigReader class to read a user-specified config file
1353          */
1354         ConfigReader(InspIRCd* Instance, const std::string &filename);
1355         /** Default destructor.
1356          * This method destroys the ConfigReader class.
1357          */
1358         ~ConfigReader();
1359
1360         /** Retrieves a value from the config file.
1361          * This method retrieves a value from the config file. Where multiple copies of the tag
1362          * exist in the config file, index indicates which of the values to retrieve.
1363          */
1364         std::string ReadValue(const std::string &tag, const std::string &name, int index, bool allow_linefeeds = false);
1365         /** Retrieves a value from the config file.
1366          * This method retrieves a value from the config file. Where multiple copies of the tag
1367          * exist in the config file, index indicates which of the values to retrieve. If the
1368          * tag is not found the default value is returned instead.
1369          */
1370         std::string ReadValue(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool allow_linefeeds = false);
1371
1372         /** Retrieves a boolean value from the config file.
1373          * This method retrieves a boolean value from the config file. Where multiple copies of the tag
1374          * exist in the config file, index indicates which of the values to retrieve. The values "1", "yes"
1375          * and "true" in the config file count as true to ReadFlag, and any other value counts as false.
1376          */
1377         bool ReadFlag(const std::string &tag, const std::string &name, int index);
1378         /** Retrieves a boolean value from the config file.
1379          * This method retrieves a boolean value from the config file. Where multiple copies of the tag
1380          * exist in the config file, index indicates which of the values to retrieve. The values "1", "yes"
1381          * and "true" in the config file count as true to ReadFlag, and any other value counts as false.
1382          * If the tag is not found, the default value is used instead.
1383          */
1384         bool ReadFlag(const std::string &tag, const std::string &name, const std::string &default_value, int index);
1385
1386         /** Retrieves an integer value from the config file.
1387          * This method retrieves an integer value from the config file. Where multiple copies of the tag
1388          * exist in the config file, index indicates which of the values to retrieve. Any invalid integer
1389          * values in the tag will cause the objects error value to be set, and any call to GetError() will
1390          * return CONF_INVALID_NUMBER to be returned. need_positive is set if the number must be non-negative.
1391          * If a negative number is placed into a tag which is specified positive, 0 will be returned and GetError()
1392          * will return CONF_INT_NEGATIVE. Note that need_positive is not suitable to get an unsigned int - you
1393          * should cast the result to achieve that effect.
1394          */
1395         int ReadInteger(const std::string &tag, const std::string &name, int index, bool need_positive);
1396         /** Retrieves an integer value from the config file.
1397          * This method retrieves an integer value from the config file. Where multiple copies of the tag
1398          * exist in the config file, index indicates which of the values to retrieve. Any invalid integer
1399          * values in the tag will cause the objects error value to be set, and any call to GetError() will
1400          * return CONF_INVALID_NUMBER to be returned. needs_unsigned is set if the number must be unsigned.
1401          * If a signed number is placed into a tag which is specified unsigned, 0 will be returned and GetError()
1402          * will return CONF_NOT_UNSIGNED. If the tag is not found, the default value is used instead.
1403          */
1404         int ReadInteger(const std::string &tag, const std::string &name, const std::string &default_value, int index, bool need_positive);
1405
1406         /** Returns the last error to occur.
1407          * Valid errors can be found by looking in modules.h. Any nonzero value indicates an error condition.
1408          * A call to GetError() resets the error flag back to 0.
1409          */
1410         long GetError();
1411         /** Counts the number of times a given tag appears in the config file.
1412          * This method counts the number of times a tag appears in a config file, for use where
1413          * there are several tags of the same kind, e.g. with opers and connect types. It can be
1414          * used with the index value of ConfigReader::ReadValue to loop through all copies of a
1415          * multiple instance tag.
1416          */
1417         int Enumerate(const std::string &tag);
1418         /** Returns true if a config file is valid.
1419          * This method is partially implemented and will only return false if the config
1420          * file does not exist or could not be opened.
1421          */
1422         bool Verify();
1423         /** Dumps the list of errors in a config file to an output location. If bail is true,
1424          * then the program will abort. If bail is false and user points to a valid user
1425          * record, the error report will be spooled to the given user by means of NOTICE.
1426          * if bool is false AND user is false, the error report will be spooled to all opers
1427          * by means of a NOTICE to all opers.
1428          */
1429         void DumpErrors(bool bail,User* user);
1430
1431         /** Returns the number of items within a tag.
1432          * For example if the tag was &lt;test tag="blah" data="foo"&gt; then this
1433          * function would return 2. Spaces and newlines both qualify as valid seperators
1434          * between values.
1435          */
1436         int EnumerateValues(const std::string &tag, int index);
1437 };
1438
1439
1440
1441 /** Caches a text file into memory and can be used to retrieve lines from it.
1442  * This class contains methods for read-only manipulation of a text file in memory.
1443  * Either use the constructor type with one parameter to load a file into memory
1444  * at construction, or use the LoadFile method to load a file.
1445  */
1446 class CoreExport FileReader : public classbase
1447 {
1448         InspIRCd* ServerInstance;
1449         /** The file contents
1450          */
1451         file_cache fc;
1452
1453         /** Content size in bytes
1454          */
1455         unsigned long contentsize;
1456
1457         /** Calculate content size in bytes
1458          */
1459         void CalcSize();
1460
1461  public:
1462         /** Default constructor.
1463          * This method does not load any file into memory, you must use the LoadFile method
1464          * after constructing the class this way.
1465          */
1466         FileReader(InspIRCd* Instance);
1467
1468         /** Secondary constructor.
1469          * This method initialises the class with a file loaded into it ready for GetLine and
1470          * and other methods to be called. If the file could not be loaded, FileReader::FileSize
1471          * returns 0.
1472          */
1473         FileReader(InspIRCd* Instance, const std::string &filename);
1474
1475         /** Default destructor.
1476          * This deletes the memory allocated to the file.
1477          */
1478         ~FileReader();
1479
1480         /** Used to load a file.
1481          * This method loads a file into the class ready for GetLine and
1482          * and other methods to be called. If the file could not be loaded, FileReader::FileSize
1483          * returns 0.
1484          */
1485         void LoadFile(const std::string &filename);
1486
1487         /** Returns the whole content of the file as std::string
1488          */
1489         std::string Contents();
1490
1491         /** Returns the entire size of the file as std::string
1492          */
1493         unsigned long ContentSize();
1494
1495         /** Returns true if the file exists
1496          * This function will return false if the file could not be opened.
1497          */
1498         bool Exists();
1499  
1500         /** Retrieve one line from the file.
1501          * This method retrieves one line from the text file. If an empty non-NULL string is returned,
1502          * the index was out of bounds, or the line had no data on it.
1503          */
1504         std::string GetLine(int x);
1505
1506         /** Returns the size of the file in lines.
1507          * This method returns the number of lines in the read file. If it is 0, no lines have been
1508          * read into memory, either because the file is empty or it does not exist, or cannot be
1509          * opened due to permission problems.
1510          */
1511         int FileSize();
1512 };
1513
1514 /** A DLLFactory (designed to load shared objects) containing a
1515  * handle to a module's init_module() function. Unfortunately,
1516  * due to the design of shared object systems we must keep this
1517  * hanging around, as if we remove this handle, we remove the
1518  * shared object file from memory (!)
1519  */
1520 typedef DLLFactory<Module> ircd_module;
1521
1522 /** A list of modules
1523  */
1524 typedef std::vector<Module*> IntModuleList;
1525
1526 /** An event handler iterator
1527  */
1528 typedef IntModuleList::iterator EventHandlerIter;
1529
1530 /** Module priority states
1531  */
1532 enum PriorityState
1533 {
1534         PRIO_DONTCARE,
1535         PRIO_FIRST,
1536         PRIO_LAST,
1537         PRIO_AFTER,
1538         PRIO_BEFORE
1539 };
1540
1541 /** ModuleManager takes care of all things module-related
1542  * in the core.
1543  */
1544 class CoreExport ModuleManager : public classbase
1545 {
1546  private:
1547         /** Holds a string describing the last module error to occur
1548          */
1549         std::string LastModuleError;
1550  
1551         /** The feature names published by various modules
1552          */
1553         featurelist Features;
1554
1555         /** The interface names published by various modules
1556          */
1557         interfacelist Interfaces;
1558  
1559         /** Total number of modules loaded into the ircd
1560          */
1561         int ModCount; 
1562         
1563         /** Our pointer to the main insp instance
1564          */
1565         InspIRCd* Instance;
1566
1567         /** List of loaded modules and shared object/dll handles
1568          * keyed by module name
1569          */
1570         std::map<std::string, std::pair<ircd_module*, Module*> > Modules;
1571
1572  public:
1573
1574         /** Event handler hooks.
1575          * This needs to be public to be used by FOREACH_MOD and friends.
1576          */
1577         IntModuleList EventHandlers[I_END];
1578
1579         /** Simple, bog-standard, boring constructor.
1580          */
1581         ModuleManager(InspIRCd* Ins);
1582
1583         /** Destructor
1584          */
1585         ~ModuleManager(); 
1586
1587         /** Change the priority of one event in a module.
1588          * Each module event has a list of modules which are attached to that event type.
1589          * If you wish to be called before or after other specific modules, you may use this
1590          * method (usually within void Module::Prioritize()) to set your events priority.
1591          * You may use this call in other methods too, however, this is not supported behaviour
1592          * for a module.
1593          * @param mod The module to change the priority of
1594          * @param i The event to change the priority of
1595          * @param s The state you wish to use for this event. Use one of
1596          * PRIO_FIRST to set the event to be first called, PRIO_LAST to
1597          * set it to be the last called, or PRIO_BEFORE and PRIO_AFTER
1598          * to set it to be before or after one or more other modules.
1599          * @param modules If PRIO_BEFORE or PRIO_AFTER is set in parameter 's',
1600          * then this contains a list of one or more modules your module must be 
1601          * placed before or after. Your module will be placed before the highest
1602          * priority module in this list for PRIO_BEFORE, or after the lowest
1603          * priority module in this list for PRIO_AFTER.
1604          * @param sz The number of modules being passed for PRIO_BEFORE and PRIO_AFTER.
1605          * Defaults to 1, as most of the time you will only want to prioritize your module
1606          * to be before or after one other module.
1607          */
1608         bool SetPriority(Module* mod, Implementation i, PriorityState s, Module** modules = NULL, size_t sz = 1);
1609
1610         /** Change the priority of all events in a module.
1611          * @param mod The module to set the priority of
1612          * @param s The priority of all events in the module.
1613          * Note that with this method, it is not possible to effectively use
1614          * PRIO_BEFORE or PRIO_AFTER, you should use the more fine tuned
1615          * SetPriority method for this, where you may specify other modules to
1616          * be prioritized against.
1617          */
1618         bool SetPriority(Module* mod, PriorityState s);
1619
1620         /** Attach an event to a module.
1621          * You may later detatch the event with ModuleManager::Detach().
1622          * If your module is unloaded, all events are automatically detatched.
1623          * @param i Event type to attach
1624          * @param mod Module to attach event to
1625          * @return True if the event was attached
1626          */
1627         bool Attach(Implementation i, Module* mod);
1628
1629         /** Detatch an event from a module.
1630          * This is not required when your module unloads, as the core will
1631          * automatically detatch your module from all events it is attached to.
1632          * @param i Event type to detach
1633          * @param mod Module to detach event from
1634          * @param Detach true if the event was detached
1635          */
1636         bool Detach(Implementation i, Module* mod);
1637
1638         /** Attach an array of events to a module
1639          * @param i Event types (array) to attach
1640          * @param mod Module to attach events to
1641          */
1642         void Attach(Implementation* i, Module* mod, size_t sz);
1643
1644         /** Detach all events from a module (used on unload)
1645          * @param mod Module to detach from
1646          */
1647         void DetachAll(Module* mod);
1648  
1649         /** Returns text describing the last module error
1650          * @return The last error message to occur
1651          */
1652         std::string& LastError();
1653
1654         /** Load a given module file
1655          * @param filename The file to load
1656          * @return True if the module was found and loaded
1657          */
1658         bool Load(const char* filename);
1659
1660         /** Unload a given module file
1661          * @param filename The file to unload
1662          * @return True if the module was unloaded
1663          */
1664         bool Unload(const char* filename);
1665         
1666         /** Called by the InspIRCd constructor to load all modules from the config file.
1667          */
1668         void LoadAll();
1669         
1670         /** Get the total number of currently loaded modules
1671          * @return The number of loaded modules
1672          */
1673         int GetCount()
1674         {
1675                 return this->ModCount;
1676         }
1677         
1678         /** Find a module by name, and return a Module* to it.
1679          * This is preferred over iterating the module lists yourself.
1680          * @param name The module name to look up
1681          * @return A pointer to the module, or NULL if the module cannot be found
1682          */
1683         Module* Find(const std::string &name);
1684  
1685         /** Publish a 'feature'.
1686          * There are two ways for a module to find another module it depends on.
1687          * Either by name, using InspIRCd::FindModule, or by feature, using this
1688          * function. A feature is an arbitary string which identifies something this
1689          * module can do. For example, if your module provides SSL support, but other
1690          * modules provide SSL support too, all the modules supporting SSL should
1691          * publish an identical 'SSL' feature. This way, any module requiring use
1692          * of SSL functions can just look up the 'SSL' feature using FindFeature,
1693          * then use the module pointer they are given.
1694          * @param FeatureName The case sensitive feature name to make available
1695          * @param Mod a pointer to your module class
1696          * @returns True on success, false if the feature is already published by
1697          * another module.
1698          */
1699         bool PublishFeature(const std::string &FeatureName, Module* Mod);
1700
1701         /** Publish a module to an 'interface'.
1702          * Modules which implement the same interface (the same way of communicating
1703          * with other modules) can publish themselves to an interface, using this
1704          * method. When they do so, they become part of a list of related or
1705          * compatible modules, and a third module may then query for that list
1706          * and know that all modules within that list offer the same API.
1707          * A prime example of this is the hashing modules, which all accept the
1708          * same types of Request class. Consider this to be similar to PublishFeature,
1709          * except for that multiple modules may publish the same 'feature'.
1710          * @param InterfaceName The case sensitive interface name to make available
1711          * @param Mod a pointer to your module class
1712          * @returns True on success, false on failure (there are currently no failure
1713          * cases)
1714          */
1715         bool PublishInterface(const std::string &InterfaceName, Module* Mod);
1716
1717         /** Return a pair saying how many other modules are currently using the
1718          * interfaces provided by module m.
1719          * @param m The module to count usage for
1720          * @return A pair, where the first value is the number of uses of the interface,
1721          * and the second value is the interface name being used.
1722          */
1723         std::pair<int,std::string> GetInterfaceInstanceCount(Module* m);
1724
1725         /** Mark your module as using an interface.
1726          * If you mark your module as using an interface, then that interface
1727          * module may not unload until your module has unloaded first.
1728          * This can be used to prevent crashes by ensuring code you depend on
1729          * is always in memory while your module is active.
1730          * @param InterfaceName The interface to use
1731          */
1732         void UseInterface(const std::string &InterfaceName);
1733
1734         /** Mark your module as finished with an interface.
1735          * If you used UseInterface() above, you should use this method when
1736          * your module is finished with the interface (usually in its destructor)
1737          * to allow the modules which implement the given interface to be unloaded.
1738          * @param InterfaceName The interface you are finished with using.
1739          */
1740         void DoneWithInterface(const std::string &InterfaceName);
1741
1742         /** Unpublish a 'feature'.
1743          * When your module exits, it must call this method for every feature it
1744          * is providing so that the feature table is cleaned up.
1745          * @param FeatureName the feature to remove
1746          */
1747         bool UnpublishFeature(const std::string &FeatureName);
1748
1749         /** Unpublish your module from an interface
1750          * When your module exits, it must call this method for every interface
1751          * it is part of so that the interfaces table is cleaned up. Only when
1752          * the last item is deleted from an interface does the interface get
1753          * removed.
1754          * @param InterfaceName the interface to be removed from
1755          * @param Mod The module to remove from the interface list
1756          */
1757         bool UnpublishInterface(const std::string &InterfaceName, Module* Mod);
1758
1759         /** Find a 'feature'.
1760          * There are two ways for a module to find another module it depends on.
1761          * Either by name, using InspIRCd::FindModule, or by feature, using the
1762          * InspIRCd::PublishFeature method. A feature is an arbitary string which
1763          * identifies something this module can do. For example, if your module
1764          * provides SSL support, but other modules provide SSL support too, all
1765          * the modules supporting SSL should publish an identical 'SSL' feature.
1766          * To find a module capable of providing the feature you want, simply
1767          * call this method with the feature name you are looking for.
1768          * @param FeatureName The feature name you wish to obtain the module for
1769          * @returns A pointer to a valid module class on success, NULL on failure.
1770          */
1771         Module* FindFeature(const std::string &FeatureName);
1772
1773         /** Find an 'interface'.
1774          * An interface is a list of modules which all implement the same API.
1775          * @param InterfaceName The Interface you wish to obtain the module
1776          * list of.
1777          * @return A pointer to a deque of Module*, or NULL if the interface
1778          * does not exist.
1779          */
1780         modulelist* FindInterface(const std::string &InterfaceName);
1781
1782         /** Given a pointer to a Module, return its filename
1783          * @param m The module pointer to identify
1784          * @return The module name or an empty string
1785          */
1786         const std::string& GetModuleName(Module* m);
1787
1788         /** Return a list of all modules matching the given filter
1789          * @param filter This int is a bitmask of flags set in Module::Flags,
1790          * such as VF_VENDOR or VF_STATIC. If you wish to receive a list of
1791          * all modules with no filtering, set this to 0.
1792          * @return The list of module names
1793          */
1794         const std::vector<std::string> GetAllModuleNames(int filter);
1795 };
1796
1797 /** This definition is used as shorthand for the various classes
1798  * and functions needed to make a module loadable by the OS.
1799  * It defines the class factory and external init_module function.
1800  */
1801 #define MODULE_INIT(y) \
1802         extern "C" DllExport Module * init_module(InspIRCd* Me) \
1803         { \
1804                 return new y(Me); \
1805         }
1806
1807 #endif