]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/utils.h
Fix some of the include guard names (requested by SaberUK)
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / utils.h
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2010 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #ifndef M_SPANNINGTREE_UTILS_H
15 #define M_SPANNINGTREE_UTILS_H
16
17 #include "inspircd.h"
18
19 /* Foward declarations */
20 class TreeServer;
21 class TreeSocket;
22 class Link;
23 class Autoconnect;
24 class ModuleSpanningTree;
25 class SpanningTreeUtilities;
26
27 /* This hash_map holds the hash equivalent of the server
28  * tree, used for rapid linear lookups.
29  */
30 #if defined(WINDOWS) && !defined(HASHMAP_DEPRECATED)
31         typedef nspace::hash_map<std::string, TreeServer*, nspace::hash_compare<std::string, std::less<std::string> > > server_hash;
32 #else
33         #ifdef HASHCOMP_DEPRECATED
34                 typedef nspace::hash_map<std::string, TreeServer*, nspace::insensitive, irc::StrHashComp> server_hash;
35         #else
36                 typedef nspace::hash_map<std::string, TreeServer*, nspace::hash<std::string>, irc::StrHashComp> server_hash;
37         #endif
38 #endif
39
40 typedef std::map<TreeServer*,TreeServer*> TreeServerList;
41
42 /** Contains helper functions and variables for this module,
43  * and keeps them out of the global namespace
44  */
45 class SpanningTreeUtilities : public classbase
46 {
47  public:
48         /** Creator module
49          */
50         ModuleSpanningTree* Creator;
51
52         /** Flatten links and /MAP for non-opers
53          */
54         bool FlatLinks;
55         /** Hide U-Lined servers in /MAP and /LINKS
56          */
57         bool HideULines;
58         /** Announce TS changes to channels on merge
59          */
60         bool AnnounceTSChange;
61
62         /** Allow modules marked as VF_OPTCOMMON to be mismatched when linking
63          */
64         bool AllowOptCommon;
65
66         /** Make snomasks +CQ quiet during bursts and splits
67          */
68         bool quiet_bursts;
69
70         /* Number of seconds that a server can go without ping
71          * before opers are warned of high latency.
72          */
73         int PingWarnTime;
74         /** This variable represents the root of the server tree
75          */
76         TreeServer *TreeRoot;
77         /** IPs allowed to link to us
78          */
79         std::vector<std::string> ValidIPs;
80         /** Hash of currently connected servers by name
81          */
82         server_hash serverlist;
83         /** Hash of currently known server ids
84          */
85         server_hash sidlist;
86         /** Hash of servers currently bursting but not initialized as connected
87          */
88         std::map<irc::string,TreeSocket*> burstingserverlist;
89         /** List of all outgoing sockets and their timeouts
90          */
91         std::map<TreeSocket*, std::pair<std::string, int> > timeoutlist;
92         /** Holds the data from the <link> tags in the conf
93          */
94         std::vector<reference<Link> > LinkBlocks;
95         /** Holds the data from the <autoconnect> tags in the conf
96          */
97         std::vector<reference<Autoconnect> > AutoconnectBlocks;
98
99         /** True (default) if we are to use challenge-response HMAC
100          * to authenticate passwords.
101          *
102          * NOTE: This defaults to on, but should be turned off if
103          * you are linking to an older version of inspircd.
104          */
105         bool ChallengeResponse;
106
107         /** Ping frequency of server to server links
108          */
109         int PingFreq;
110
111         /** Initialise utility class
112          */
113         SpanningTreeUtilities(ModuleSpanningTree* Creator);
114
115         /** Prepare for class destruction
116          */
117         CullResult cull();
118
119         /** Destroy class and free listeners etc
120          */
121         ~SpanningTreeUtilities();
122
123         void RouteCommand(TreeServer*, const std::string&, const parameterlist&, User*);
124
125         /** Send a message from this server to one other local or remote
126          */
127         bool DoOneToOne(const std::string &prefix, const std::string &command, const parameterlist &params, std::string target);
128
129         /** Send a message from this server to all but one other, local or remote
130          */
131         bool DoOneToAllButSender(const std::string &prefix, const std::string &command, const parameterlist &params, std::string omit);
132
133         /** Send a message from this server to all but one other, local or remote
134          */
135         bool DoOneToAllButSender(const char* prefix, const char* command, const parameterlist &params, std::string omit);
136
137         /** Send a message from this server to all others
138          */
139         bool DoOneToMany(const std::string &prefix, const std::string &command, const parameterlist &params);
140
141         /** Send a message from this server to all others
142          */
143         bool DoOneToMany(const char* prefix, const char* command, const parameterlist &params);
144
145         /** Send a message from this server to all others, without doing any processing on the command (e.g. send it as-is with colons and all)
146          */
147         bool DoOneToAllButSenderRaw(const std::string &data, const std::string &omit, const std::string &prefix, const irc::string &command, const parameterlist &params);
148
149         /** Read the spanningtree module's tags from the config file
150          */
151         void ReadConfiguration();
152
153         /** Add a server to the server list for GetListOfServersForChannel
154          */
155         void AddThisServer(TreeServer* server, TreeServerList &list);
156
157         /** Compile a list of servers which contain members of channel c
158          */
159         void GetListOfServersForChannel(Channel* c, TreeServerList &list, char status, const CUList &exempt_list);
160
161         /** Find a server by name
162          */
163         TreeServer* FindServer(const std::string &ServerName);
164
165         /** Find server by SID
166          */
167         TreeServer* FindServerID(const std::string &id);
168
169         /** Find a route to a server by name
170          */
171         TreeServer* BestRouteTo(const std::string &ServerName);
172
173         /** Find a server by glob mask
174          */
175         TreeServer* FindServerMask(const std::string &ServerName);
176
177         /** Returns true if this is a server name we recognise
178          */
179         bool IsServer(const std::string &ServerName);
180
181         /** Find a link tag from a server name
182          */
183         Link* FindLink(const std::string& name);
184
185         /** Refresh the IP cache used for allowing inbound connections
186          */
187         void RefreshIPCache();
188 };
189
190 #endif