]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/snomasks.h
Remove non-portable code and replace with a debug call
[user/henk/code/inspircd.git] / include / snomasks.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 __SNOMASKS_H__
15 #define __SNOMASKS_H__
16
17 #include <string>
18 #include <vector>
19 #include <map>
20 #include "configreader.h"
21 #include "inspircd.h"
22
23 class Snomask
24 {
25  private:
26         InspIRCd *ServerInstance;
27  public:
28         char MySnomask;
29         std::string Description;
30 //      std::string LastMessage;
31 //      unsigned int Count;
32
33         /** Create a new Snomask
34          */
35         Snomask(InspIRCd* Instance, char snomask, const std::string &description)
36         {
37                 MySnomask = snomask;
38                 Description = description;
39         }
40
41         
42 };
43
44 /** A list of snomasks which are valid, and their descriptive texts
45  */
46 typedef std::map<char, std::string> SnoList;
47
48 /** Snomask manager handles routing of SNOMASK (usermode +n) messages to opers.
49  * Modules and the core can enable and disable snomask characters. If they do,
50  * then sending snomasks using these characters becomes possible.
51  */
52 class CoreExport SnomaskManager : public Extensible
53 {
54  private:
55         /** Creator/owner
56          */
57         InspIRCd* ServerInstance;
58
59         /** Currently active snomask list
60          */
61         SnoList SnoMasks;
62
63         /** Set up the default (core available) snomask chars
64          */
65         void SetupDefaults();
66  public:
67         /** Create a new SnomaskManager
68          */
69         SnomaskManager(InspIRCd* Instance);
70
71         /** Delete SnomaskManager
72          */
73         ~SnomaskManager();
74
75         /** Enable a snomask.
76          * @param letter The snomask letter to enable. Once enabled,
77          * server notices may be routed to users with this letter in
78          * their list, and users may add this letter to their list.
79          * @param description The descriptive text sent along with any
80          * server notices, at the start of the notice, e.g. "GLOBOPS".
81          * @return True if the snomask was enabled, false if it already
82          * exists.
83          */
84         bool EnableSnomask(char letter, const std::string &description);
85
86         /** Disable a snomask.
87          * @param letter The snomask letter to disable.
88          * @return True if the snomask was disabled, false if it didn't
89          * exist.
90          */
91         bool DisableSnomask(char letter);
92
93         /** Write to all users with a given snomask.
94          * @param letter The snomask letter to write to
95          * @param text The text to send to the users
96          */
97         void WriteToSnoMask(char letter, const std::string &text);
98
99         /** Write to all users with a given snomask.
100          * @param letter The snomask letter to write to
101          * @param text A format string containing text to send
102          * @param ... Format arguments
103          */
104         void WriteToSnoMask(char letter, const char* text, ...);
105
106         /** Called once per 5 seconds from the mainloop, this flushes any cached
107          * snotices. The way the caching works is as follows:
108          * Calls to WriteToSnoMask write to a cache, if the call is the same as it was
109          * for the previous call, then a count is incremented. If it is different,
110          * the previous message it just sent normally via NOTICE (with count if > 1)
111          * and the new message is cached. This acts as a sender in case the number of notices
112          * is not particularly significant, in order to keep notices going out.
113          */
114         void FlushSnotices();
115
116         /** Check if a snomask is enabled.
117          * @param letter The snomask letter to check.
118          * @return True if the snomask has been enabled.
119          */
120         bool IsEnabled(char letter);
121 };
122
123 #endif