]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/modules.h
Q-lines fully working, can add and remove other types of ban (but not enforced yet)
[user/henk/code/inspircd.git] / include / modules.h
1 /*
2
3
4
5 */
6
7
8 #ifndef __PLUGIN_H
9 #define __PLUGIN_H
10
11 #define DEBUG 10
12 #define VERBOSE 20
13 #define DEFAULT 30
14 #define SPARSE 40
15 #define NONE 50
16
17 #define MT_CHANNEL 1
18 #define MT_CLIENT 2
19 #define MT_SERVER 3
20
21 #include "dynamic.h"
22 #include "base.h"
23 #include "ctables.h"
24 #include <string>
25 #include <deque>
26 #include <sstream>
27
28 /** Low level definition of a FileReader classes file cache area
29  */
30 typedef std::deque<std::string> file_cache;
31 typedef file_cache string_list;
32
33
34 // This #define allows us to call a method in all
35 // loaded modules in a readable simple way, e.g.:
36 // 'FOREACH_MOD OnConnect(user);'
37
38 #define FOREACH_MOD for (int i = 0; i <= MODCOUNT; i++) modules[i]->
39
40 // This define is similar to the one above but returns a result in MOD_RESULT.
41 // The first module to return a nonzero result is the value to be accepted,
42 // and any modules after are ignored.
43
44 // *********************************************************************************************
45
46 #define FOREACH_RESULT(x) { MOD_RESULT = 0; \
47                         for (int i = 0; i <= MODCOUNT; i++) { \
48                         int res = modules[i]->x ; \
49                         if (res) { \
50                                 MOD_RESULT = res; \
51                                 break; \
52                         } \
53                 } \
54    } 
55    
56 // *********************************************************************************************
57
58 extern void createcommand(char* cmd, handlerfunc f, char flags, int minparams);
59 extern void server_mode(char **parameters, int pcnt, userrec *user);
60
61 // class Version holds the version information of a Module, returned
62 // by Module::GetVersion (thanks RD)
63
64 /** Holds a module's Version information
65  *  The four members (set by the constructor only) indicate details as to the version number
66  *  of a module. A class of type Version is returned by the GetVersion method of the Module class.
67  */
68 class Version : public classbase
69 {
70  public:
71          const int Major, Minor, Revision, Build;
72          Version(int major, int minor, int revision, int build);
73 };
74
75 /** Holds /ADMIN data
76  *  This class contains the admin details of the local server. It is constructed by class Server,
77  *  and has three read-only values, Name, Email and Nick that contain the specified values for the
78  *  server where the module is running.
79  */
80 class Admin : public classbase
81 {
82  public:
83          const std::string Name, Email, Nick;
84          Admin(std::string name, std::string email, std::string nick);
85 };
86
87 /** Base class for all InspIRCd modules
88  *  This class is the base class for InspIRCd modules. All modules must inherit from this class,
89  *  its methods will be called when irc server events occur. class inherited from module must be
90  *  instantiated by the ModuleFactory class (see relevent section) for the plugin to be initialised.
91  */
92 class Module : public classbase
93 {
94  public:
95
96         /** Default constructor
97          * creates a module class
98          */
99         Module();
100
101         /** Default destructor
102          * destroys a module class
103          */
104         virtual ~Module();
105
106         /** Returns the version number of a Module.
107          * The method should return a Version object with its version information assigned via
108          * Version::Version
109          */
110         virtual Version GetVersion();
111
112         /** Called when a user connects.
113          * The details of the connecting user are available to you in the parameter userrec *user
114          */
115         virtual void OnUserConnect(userrec* user);
116
117         /** Called when a user quits.
118          * The details of the exiting user are available to you in the parameter userrec *user
119          */
120         virtual void OnUserQuit(userrec* user);
121
122         /** Called when a user joins a channel.
123          * The details of the joining user are available to you in the parameter userrec *user,
124          * and the details of the channel they have joined is available in the variable chanrec *channel
125          */
126         virtual void OnUserJoin(userrec* user, chanrec* channel);
127
128         /** Called when a user parts a channel.
129          * The details of the leaving user are available to you in the parameter userrec *user,
130          * and the details of the channel they have left is available in the variable chanrec *channel
131          */
132         virtual void OnUserPart(userrec* user, chanrec* channel);
133
134         /** Called before a packet is transmitted across the irc network between two irc servers.
135          * The packet is represented as a char*, as it should be regarded as a buffer, and not a string.
136          * This allows you to easily represent it in the correct ways to implement encryption, compression,
137          * digital signatures and anything else you may want to add. This should be regarded as a pre-processor
138          * and will be called before ANY other operations within the ircd core program.
139          */
140         virtual void OnPacketTransmit(char *p);
141
142         /** Called after a packet is received from another irc server.
143          * The packet is represented as a char*, as it should be regarded as a buffer, and not a string.
144          * This allows you to easily represent it in the correct ways to implement encryption, compression,
145          * digital signatures and anything else you may want to add. This should be regarded as a pre-processor
146          * and will be called immediately after the packet is received but before any other operations with the
147          * core of the ircd.
148          */
149         virtual void OnPacketReceive(char *p);
150
151         /** Called on rehash.
152          * This method is called prior to a /REHASH or when a SIGHUP is received from the operating
153          * system. You should use it to reload any files so that your module keeps in step with the
154          * rest of the application.
155          */
156         virtual void OnRehash();
157
158         /** Called when a raw command is transmitted or received.
159          * This method is the lowest level of handler available to a module. It will be called with raw
160          * data which is passing through a connected socket. If you wish, you may munge this data by changing
161          * the string parameter "raw". If you do this, after your function exits it will immediately be
162          * cut down to 510 characters plus a carriage return and linefeed.
163          */
164         virtual void OnServerRaw(std::string &raw, bool inbound);
165
166         /** Called whenever an extended mode is to be processed.
167          * The type parameter is MT_SERVER, MT_CLIENT or MT_CHANNEL, dependent on where the mode is being
168          * changed. mode_on is set when the mode is being set, in which case params contains a list of
169          * parameters for the mode as strings. If mode_on is false, the mode is being removed, and parameters
170          * may contain the parameters for the mode, dependent on wether they were defined when a mode handler
171          * was set up with Server::AddExtendedMode
172          * If the mode is a channel mode, target is a chanrec*, and if it is a user mode, target is a userrec*.
173          * You must cast this value yourself to make use of it.
174          */
175         virtual bool OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params);
176         
177         /** Called whenever a user is about to join a channel, before any processing is done.
178          * Returning any nonzero value from this function stops the process immediately, causing no
179          * output to be sent to the user by the core. If you do this you must produce your own numerics,
180          * notices etc. This is useful for modules which may want to mimic +b, +k, +l etc.
181          *
182          * IMPORTANT NOTE!
183          *
184          * If the user joins a NEW channel which does not exist yet, OnUserPreJoin will be called BEFORE the channel
185          * record is created. This will cause chanrec* chan to be NULL. There is very little you can do in form of
186          * processing on the actual channel record at this point, however the channel NAME will still be passed in
187          * char* cname, so that you could for example implement a channel blacklist or whitelist, etc.
188          */
189         virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname);
190         
191         
192         /** Called whenever a user opers locally.
193          * The userrec will contain the oper mode 'o' as this function is called after any modifications
194          * are made to the user's structure by the core.
195          */
196         virtual void OnOper(userrec* user);
197         
198         /** Called whenever a user types /INFO.
199          * The userrec will contain the information of the user who typed the command. Modules may use this
200          * method to output their own credits in /INFO (which is the ircd's version of an about box).
201          * It is purposefully not possible to modify any info that has already been output, or halt the list.
202          * You must write a 371 numeric to the user, containing your info in the following format:
203          *
204          * <nick> :information here
205          */
206         virtual void OnInfo(userrec* user);
207         
208         /** Called whenever a /WHOIS is performed on a local user.
209          * The source parameter contains the details of the user who issued the WHOIS command, and
210          * the dest parameter contains the information of the user they are whoising.
211          */
212         virtual void OnWhois(userrec* source, userrec* dest);
213         
214         /** Called whenever a user is about to PRIVMSG A user or a channel, before any processing is done.
215          * Returning any nonzero value from this function stops the process immediately, causing no
216          * output to be sent to the user by the core. If you do this you must produce your own numerics,
217          * notices etc. This is useful for modules which may want to filter or redirect messages.
218          * target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user,
219          * you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details
220          * of where the message is destined to be sent.
221          */
222         virtual int OnUserPreMessage(userrec* user,void* dest,int target_type, std::string text);
223
224         /** Called whenever a user is about to NOTICE A user or a channel, before any processing is done.
225          * Returning any nonzero value from this function stops the process immediately, causing no
226          * output to be sent to the user by the core. If you do this you must produce your own numerics,
227          * notices etc. This is useful for modules which may want to filter or redirect messages.
228          * target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user,
229          * you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details
230          * of where the message is destined to be sent.
231          */
232         virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string text);
233         
234         /** Called before any nickchange, local or remote. This can be used to implement Q-lines etc.
235          * Please note that although you can see remote nickchanges through this function, you should
236          * NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc.
237          * check user->server before taking any action (including returning nonzero from the method).
238          * If your method returns nonzero, the nickchange is silently forbidden, and it is down to your
239          * module to generate some meaninful output.
240          */
241         virtual int OnUserPreNick(userrec* user, std::string newnick);
242 };
243
244
245 /** Allows server output and query functions
246  * This class contains methods which allow a module to query the state of the irc server, and produce
247  * output to users and other servers. All modules should instantiate at least one copy of this class,
248  * and use its member functions to perform their tasks.
249  */
250 class Server : public classbase
251 {
252  public:
253         /** Default constructor.
254          * Creates a Server object.
255          */
256         Server();
257         /** Default destructor.
258          * Destroys a Server object.
259          */
260         virtual ~Server();
261
262         /** Sends text to all opers.
263          * This method sends a server notice to all opers with the usermode +s.
264          */
265         virtual void SendOpers(std::string s);
266         /** Writes a log string.
267          * This method writes a line of text to the log. If the level given is lower than the
268          * level given in the configuration, this command has no effect.
269          */
270         virtual void Log(int level, std::string s);
271         /** Sends a line of text down a TCP/IP socket.
272          * This method writes a line of text to an established socket, cutting it to 510 characters
273          * plus a carriage return and linefeed if required.
274          */
275         virtual void Send(int Socket, std::string s);
276         /** Sends text from the server to a socket.
277          * This method writes a line of text to an established socket, with the servername prepended
278          * as used by numerics (see RFC 1459)
279          */
280         virtual void SendServ(int Socket, std::string s);
281         /** Sends text from a user to a socket.
282          * This method writes a line of text to an established socket, with the given user's nick/ident
283          * /host combination prepended, as used in PRIVSG etc commands (see RFC 1459)
284          */
285         virtual void SendFrom(int Socket, userrec* User, std::string s);
286         /** Sends text from a user to another user.
287          * This method writes a line of text to a user, with a user's nick/ident
288          * /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459)
289          * If you specify NULL as the source, then the data will originate from the
290          * local server, e.g. instead of:
291          *
292          * :user!ident@host TEXT
293          *
294          * The format will become:
295          *
296          * :localserver TEXT
297          *
298          * Which is useful for numerics and server notices to single users, etc.
299          */
300         virtual void SendTo(userrec* Source, userrec* Dest, std::string s);
301         /** Sends text from a user to a channel (mulicast).
302          * This method writes a line of text to a channel, with the given user's nick/ident
303          * /host combination prepended, as used in PRIVMSG etc commands (see RFC 1459). If the
304          * IncludeSender flag is set, then the text is also sent back to the user from which
305          * it originated, as seen in MODE (see RFC 1459).
306          */
307         virtual void SendChannel(userrec* User, chanrec* Channel, std::string s,bool IncludeSender);
308         /** Returns true if two users share a common channel.
309          * This method is used internally by the NICK and QUIT commands, and the Server::SendCommon
310          * method.
311          */
312         virtual bool CommonChannels(userrec* u1, userrec* u2);
313         /** Sends text from a user to one or more channels (mulicast).
314          * This method writes a line of text to all users which share a common channel with a given     
315          * user, with the user's nick/ident/host combination prepended, as used in PRIVMSG etc
316          * commands (see RFC 1459). If the IncludeSender flag is set, then the text is also sent
317          * back to the user from which it originated, as seen in NICK (see RFC 1459). Otherwise, it
318          * is only sent to the other recipients, as seen in QUIT.
319          */
320         virtual void SendCommon(userrec* User, std::string text,bool IncludeSender);
321         /** Sends a WALLOPS message.
322          * This method writes a WALLOPS message to all users with the +w flag, originating from the
323          * specified user.
324          */
325         virtual void SendWallops(userrec* User, std::string text);
326
327         /** Returns true if a nick is valid.
328          * Nicks for unregistered connections will return false.
329          */
330         virtual bool IsNick(std::string nick);
331         /** Returns a count of the number of users on a channel.
332          * This will NEVER be 0, as if the chanrec exists, it will have at least one user in the channel.
333          */
334         virtual int CountUsers(chanrec* c);
335         /** Attempts to look up a nick and return a pointer to it.
336          * This function will return NULL if the nick does not exist.
337          */
338         virtual userrec* FindNick(std::string nick);
339         /** Attempts to look up a channel and return a pointer to it.
340          * This function will return NULL if the channel does not exist.
341          */
342         virtual chanrec* FindChannel(std::string channel);
343         /** Attempts to look up a user's privilages on a channel.
344          * This function will return a string containing either @, %, +, or an empty string,
345          * representing the user's privilages upon the channel you specify.
346          */
347         virtual std::string ChanMode(userrec* User, chanrec* Chan);
348         /** Returns the server name of the server where the module is loaded.
349          */
350         virtual std::string GetServerName();
351         /** Returns the network name, global to all linked servers.
352          */
353         virtual std::string GetNetworkName();
354         /** Returns the information of the server as returned by the /ADMIN command.
355          * See the Admin class for further information of the return value. The members
356          * Admin::Nick, Admin::Email and Admin::Name contain the information for the
357          * server where the module is loaded.
358          */
359         virtual Admin GetAdmin();
360         /** Adds an extended mode letter which is parsed by a module
361          * This allows modules to add extra mode letters, e.g. +x for hostcloak.
362          * the "type" parameter is either MT_CHANNEL, MT_CLIENT, or MT_SERVER, to
363          * indicate wether the mode is a channel mode, a client mode, or a server mode.
364          * requires_oper is used with MT_CLIENT type modes only to indicate the mode can only
365          * be set or unset by an oper. If this is used for MT_CHANNEL type modes it is ignored.
366          * params_when_on is the number of modes to expect when the mode is turned on
367          * (for type MT_CHANNEL only), e.g. with mode +k, this would have a value of 1.
368          * the params_when_off value has a similar value to params_when_on, except it indicates
369          * the number of parameters to expect when the mode is disabled. Modes which act in a similar
370          * way to channel mode +l (e.g. require a parameter to enable, but not to disable) should
371          * use this parameter. The function returns false if the mode is unavailable, and will not
372          * attempt to allocate another character, as this will confuse users. This also means that
373          * as only one module can claim a specific mode character, the core does not need to keep track
374          * of which modules own which modes, which speeds up operation of the server. In this version,
375          * a mode can have at most one parameter, attempting to use more parameters will have undefined
376          * effects.
377          */
378         virtual bool AddExtendedMode(char modechar, int type, bool requires_oper, int params_when_on, int params_when_off);
379
380         /** Adds a command to the command table.
381          * This allows modules to add extra commands into the command table. You must place a function within your
382          * module which is is of type handlerfunc:
383          * 
384          * typedef void (handlerfunc) (char**, int, userrec*);
385          * ...
386          * void handle_kill(char **parameters, int pcnt, userrec *user)
387          *
388          * When the command is typed, the parameters will be placed into the parameters array (similar to argv) and
389          * the parameter count will be placed into pcnt (similar to argv). There will never be any less parameters
390          * than the 'minparams' value you specified when creating the command. The *user parameter is the class of
391          * the user which caused the command to trigger, who will always have the flag you specified in 'flags' when
392          * creating the initial command. For example to create an oper only command create the commands with flags='o'.
393          */
394         virtual void AddCommand(char* cmd, handlerfunc f, char flags, int minparams);
395          
396         /** Sends a servermode.
397          * you must format the parameters array with the target, modes and parameters for those modes.
398          *
399          * For example:
400          *
401          * char *modes[3];
402          *
403          * modes[0] = ChannelName;
404          *
405          * modes[1] = "+o";
406          *
407          * modes[2] = user->nick;
408          *
409          * Srv->SendMode(modes,3,user);
410          *
411          * The modes will originate from the server where the command was issued, however responses (e.g. numerics)
412          * will be sent to the user you provide as the third parameter.
413          * You must be sure to get the number of parameters correct in the pcnt parameter otherwise you could leave
414          * your server in an unstable state!
415          */
416
417         virtual void SendMode(char **parameters, int pcnt, userrec *user);
418         
419         /** Sends to all users matching a mode mask
420          * You must specify one or more usermodes as the first parameter. These can be RFC specified modes such as +i,
421          * or module provided modes, including ones provided by your own module.
422          * In the second parameter you must place a flag value which indicates wether the modes you have given will be
423          * logically ANDed or OR'ed. You may use one of either WM_AND or WM_OR.
424          * for example, if you were to use:
425          *
426          * Serv->SendToModeMask("xi", WM_OR, "m00");
427          *
428          * Then the text 'm00' will be sent to all users with EITHER mode x or i. Conversely if you used WM_AND, the
429          * user must have both modes set to receive the message.
430          */
431         virtual void SendToModeMask(std::string modes, int flags, std::string text);
432
433         /** Forces a user to join a channel.
434          * This is similar to svsjoin and can be used to implement redirection, etc.
435          * On success, the return value is a valid pointer to a chanrec* of the channel the user was joined to.
436          * On failure, the result is NULL.
437          */
438         virtual chanrec* JoinUserToChannel(userrec* user, std::string cname, std::string key);
439         
440         /** Forces a user to part a channel.
441          * This is similar to svspart and can be used to implement redirection, etc.
442          * Although the return value of this function is a pointer to a channel record, the returned data is
443          * undefined and should not be read or written to. This behaviour may be changed in a future version.
444          */
445         virtual chanrec* PartUserFromChannel(userrec* user, std::string cname, std::string reason);
446         
447         /** Forces a user nickchange.
448          * This command works similarly to SVSNICK, and can be used to implement Q-lines etc.
449          * If you specify an invalid nickname, the nick change will be dropped and the target user will receive
450          * the error numeric for it.
451          */
452         virtual void ChangeUserNick(userrec* user, std::string nickname);
453         
454         /** Forces a user to quit with the specified reason.
455          * To the user, it will appear as if they typed /QUIT themselves, except for the fact that this function
456          * may bypass the quit prefix specified in the config file.
457          *
458          * WARNING!
459          *
460          * Once you call this function, userrec* user will immediately become INVALID. You MUST NOT write to, or
461          * read from this pointer after calling the QuitUser method UNDER ANY CIRCUMSTANCES! The best course of
462          * action after calling this method is to immediately bail from your handler.
463          */
464         virtual void QuitUser(userrec* user, std::string reason);
465         
466         /**  Matches text against a glob pattern.
467          * Uses the ircd's internal matching function to match string against a globbing pattern, e.g. *!*@*.com
468          * Returns true if the literal successfully matches the pattern, false if otherwise.
469          */
470         virtual bool MatchText(std::string sliteral, std::string spattern);
471         
472         /** Calls the handler for a command, either implemented by the core or by another module.
473          * You can use this function to trigger other commands in the ircd, such as PRIVMSG, JOIN,
474          * KICK etc, or even as a method of callback. By defining command names that are untypeable
475          * for users on irc (e.g. those which contain a \r or \n) you may use them as callback identifiers.
476          * The first parameter to this method is the name of the command handler you wish to call, e.g.
477          * PRIVMSG. This will be a command handler previously registered by the core or wih AddCommand().
478          * The second parameter is an array of parameters, and the third parameter is a count of parameters
479          * in the array. If you do not pass enough parameters to meet the minimum needed by the handler, the
480          * functiom will silently ignore it. The final parameter is the user executing the command handler,
481          * used for privilage checks, etc.
482          */
483         virtual void CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user);
484         
485         /** Change displayed hostname of a user.
486          * You should always call this method to change a user's host rather than writing directly to the
487          * dhost member of userrec, as any change applied via this method will be propogated to any
488          * linked servers.
489          */     
490         virtual void ChangeHost(userrec* user, std::string host);
491         
492         /** Change GECOS (fullname) of a user.
493          * You should always call this method to change a user's GECOS rather than writing directly to the
494          * fullname member of userrec, as any change applied via this method will be propogated to any
495          * linked servers.
496          */     
497         virtual void ChangeGECOS(userrec* user, std::string gecos);
498         
499         /** Returns true if the servername you give is ulined.
500          * ULined servers have extra privilages. They are allowed to change nicknames on remote servers,
501          * change modes of clients which are on remote servers and set modes of channels where there are
502          * no channel operators for that channel on the ulined server, amongst other things. Ulined server
503          * data is also broadcast across the mesh at all times as opposed to selectively messaged in the
504          * case of normal servers, as many ulined server types (such as services) do not support meshed
505          * links and must operate in this manner.
506          */
507         virtual bool IsUlined(std::string server);
508 };
509
510 /** Allows reading of values from configuration files
511  * This class allows a module to read from either the main configuration file (inspircd.conf) or from
512  * a module-specified configuration file. It may either be instantiated with one parameter or none.
513  * Constructing the class using one parameter allows you to specify a path to your own configuration
514  * file, otherwise, inspircd.conf is read.
515  */
516 class ConfigReader : public classbase
517 {
518   protected:
519         /** The contents of the configuration file
520          * This protected member should never be accessed by a module (and cannot be accessed unless the
521          * core is changed). It will contain a pointer to the configuration file data with unneeded data
522          * (such as comments) stripped from it.
523          */
524         std::stringstream *cache;
525         /** Used to store errors
526          */
527         bool error;
528         
529   public:
530         /** Default constructor.
531          * This constructor initialises the ConfigReader class to read the inspircd.conf file
532          * as specified when running ./configure.
533          */
534         ConfigReader();                 // default constructor reads ircd.conf
535         /** Overloaded constructor.
536          * This constructor initialises the ConfigReader class to read a user-specified config file
537          */
538         ConfigReader(std::string filename);     // read a module-specific config
539         /** Default destructor.
540          * This method destroys the ConfigReader class.
541          */
542         ~ConfigReader();
543         /** Retrieves a value from the config file.
544          * This method retrieves a value from the config file. Where multiple copies of the tag
545          * exist in the config file, index indicates which of the values to retrieve.
546          */
547         std::string ReadValue(std::string tag, std::string name, int index);
548         /** Counts the number of times a given tag appears in the config file.
549          * This method counts the number of times a tag appears in a config file, for use where
550          * there are several tags of the same kind, e.g. with opers and connect types. It can be
551          * used with the index value of ConfigReader::ReadValue to loop through all copies of a
552          * multiple instance tag.
553          */
554         int Enumerate(std::string tag);
555         /** Returns true if a config file is valid.
556          * This method is partially implemented and will only return false if the config
557          * file does not exist or could not be opened.
558          */
559         bool Verify();
560
561         /** Returns the number of items within a tag.
562          * For example if the tag was &lt;test tag="blah" data="foo"&gt; then this
563          * function would return 2. Spaces and newlines both qualify as valid seperators
564          * between values.
565          */
566         int EnumerateValues(std::string tag, int index);
567 };
568
569
570
571 /** Caches a text file into memory and can be used to retrieve lines from it.
572  * This class contains methods for read-only manipulation of a text file in memory.
573  * Either use the constructor type with one parameter to load a file into memory
574  * at construction, or use the LoadFile method to load a file.
575  */
576 class FileReader : public classbase
577 {
578  file_cache fc;
579  public:
580          /** Default constructor.
581           * This method does not load any file into memory, you must use the LoadFile method
582           * after constructing the class this way.
583           */
584          FileReader();
585
586          /** Secondary constructor.
587           * This method initialises the class with a file loaded into it ready for GetLine and
588           * and other methods to be called. If the file could not be loaded, FileReader::FileSize
589           * returns 0.
590           */
591          FileReader(std::string filename);
592
593          /** Default destructor.
594           * This deletes the memory allocated to the file.
595           */
596          ~FileReader();
597
598          /** Used to load a file.
599           * This method loads a file into the class ready for GetLine and
600           * and other methods to be called. If the file could not be loaded, FileReader::FileSize
601           * returns 0.
602           */
603          void LoadFile(std::string filename);
604
605          /** Returns true if the file exists
606           * This function will return false if the file could not be opened.
607           */
608          bool Exists();
609          
610          /** Retrieve one line from the file.
611           * This method retrieves one line from the text file. If an empty non-NULL string is returned,
612           * the index was out of bounds, or the line had no data on it.
613           */
614          std::string GetLine(int x);
615
616          /** Returns the size of the file in lines.
617           * This method returns the number of lines in the read file. If it is 0, no lines have been
618           * read into memory, either because the file is empty or it does not exist, or cannot be
619           * opened due to permission problems.
620           */
621          int FileSize();
622 };
623
624
625 /** Instantiates classes inherited from Module
626  * This class creates a class inherited from type Module, using new. This is to allow for modules
627  * to create many different variants of Module, dependent on architecture, configuration, etc.
628  * In most cases, the simple class shown in the example module m_foobar.so will suffice for most
629  * modules.
630  */
631 class ModuleFactory : public classbase
632 {
633  public:
634         ModuleFactory() { }
635         virtual ~ModuleFactory() { }
636         /** Creates a new module.
637          * Your inherited class of ModuleFactory must return a pointer to your Module class
638          * using this method.
639          */
640         virtual Module * CreateModule() = 0;
641 };
642
643
644 typedef DLLFactory<ModuleFactory> ircd_module;
645
646 #endif