]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/typedefs.h
Merge pull request #1267 from SaberUK/master+config
[user/henk/code/inspircd.git] / include / typedefs.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2005, 2008 Craig Edwards <craigedwards@brainbox.cc>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *
8  * This file is part of InspIRCd.  InspIRCd is free software: you can
9  * redistribute it and/or modify it under the terms of the GNU General Public
10  * License as published by the Free Software Foundation, version 2.
11  *
12  * This program is distributed in the hope that it will be useful, but WITHOUT
13  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
19  */
20
21
22 #pragma once
23
24 class BanCacheManager;
25 class BufferedSocket;
26 class Channel;
27 class Command;
28 class ConfigStatus;
29 class ConfigTag;
30 class Extensible;
31 class FakeUser;
32 class InspIRCd;
33 class Invitation;
34 class IOHookProvider;
35 class LocalUser;
36 class Membership;
37 class Module;
38 class OperInfo;
39 class ProtocolServer;
40 class RemoteUser;
41 class Server;
42 class ServerConfig;
43 class ServerLimits;
44 class Thread;
45 class User;
46 class XLine;
47 class XLineManager;
48 class XLineFactory;
49 struct ConnectClass;
50 struct ModResult;
51
52 #include "hashcomp.h"
53 #include "base.h"
54
55 typedef TR1NS::unordered_map<std::string, User*, irc::insensitive, irc::StrHashComp> user_hash;
56 typedef TR1NS::unordered_map<std::string, Channel*, irc::insensitive, irc::StrHashComp> chan_hash;
57
58 /** A list of failed port bindings, used for informational purposes on startup */
59 typedef std::vector<std::pair<std::string, std::string> > FailedPortList;
60
61 /** List of channels to consider when building the neighbor list of a user
62  */
63 typedef std::vector<Membership*> IncludeChanList;
64
65 /** A cached text file stored with its contents as lines
66  */
67 typedef std::vector<std::string> file_cache;
68
69 /** A mapping of configuration keys to their assigned values.
70  */
71 typedef insp::flat_map<std::string, std::string, irc::insensitive_swo> ConfigItems;
72
73 /** The entire configuration
74  */
75 typedef std::multimap<std::string, reference<ConfigTag>, irc::insensitive_swo> ConfigDataHash;
76
77 /** Iterator of ConfigDataHash */
78 typedef ConfigDataHash::const_iterator ConfigIter;
79 /** Iterator pair, used for tag-name ranges */
80 typedef std::pair<ConfigIter,ConfigIter> ConfigTagList;
81
82 /** Files read by the configuration */
83 typedef std::map<std::string, file_cache> ConfigFileCache;
84
85 /** Generic user list, used for exceptions */
86 typedef std::set<User*> CUList;
87
88 /** A set of strings.
89  */
90 typedef std::vector<std::string> string_list;
91
92 /** Contains an ident and host split into two strings
93  */
94 typedef std::pair<std::string, std::string> IdentHostPair;
95
96 /** A map of xline factories
97  */
98 typedef std::map<std::string, XLineFactory*> XLineFactMap;
99
100 /** A map of XLines indexed by string
101  */
102 typedef std::map<std::string, XLine*, irc::insensitive_swo> XLineLookup;
103
104 /** A map of XLineLookup maps indexed by string
105  */
106 typedef std::map<std::string, XLineLookup > XLineContainer;
107
108 /** An iterator in an XLineContainer
109  */
110 typedef XLineContainer::iterator ContainerIter;
111
112 /** An interator in an XLineLookup
113  */
114 typedef XLineLookup::iterator LookupIter;
115
116 namespace Stats
117 {
118         class Context;
119 }