]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/man/man3/ConfigReader.3
294eec961d543985c07194ff63d3d52fddf29715
[user/henk/code/inspircd.git] / docs / man / man3 / ConfigReader.3
1 .TH "ConfigReader" 3 "26 Apr 2005" "InspIRCd" \" -*- nroff -*-
2 .ad l
3 .nh
4 .SH NAME
5 ConfigReader \- Allows reading of values from configuration files This class allows a module to read from either the main configuration file (inspircd.conf) or from a module-specified configuration file.  
6
7 .PP
8 .SH SYNOPSIS
9 .br
10 .PP
11 \fC#include <modules.h>\fP
12 .PP
13 Inherits \fBclassbase\fP.
14 .PP
15 .SS "Public Member Functions"
16
17 .in +1c
18 .ti -1c
19 .RI "\fBConfigReader\fP ()"
20 .br
21 .RI "\fIDefault constructor. \fP"
22 .ti -1c
23 .RI "\fBConfigReader\fP (std::string filename)"
24 .br
25 .RI "\fIOverloaded constructor. \fP"
26 .ti -1c
27 .RI "\fB~ConfigReader\fP ()"
28 .br
29 .RI "\fIDefault destructor. \fP"
30 .ti -1c
31 .RI "std::string \fBReadValue\fP (std::string tag, std::string name, int index)"
32 .br
33 .RI "\fIRetrieves a value from the config file. \fP"
34 .ti -1c
35 .RI "bool \fBReadFlag\fP (std::string tag, std::string name, int index)"
36 .br
37 .RI "\fIRetrieves a boolean value from the config file. \fP"
38 .ti -1c
39 .RI "long \fBReadInteger\fP (std::string tag, std::string name, int index, bool needs_unsigned)"
40 .br
41 .RI "\fIRetrieves an integer value from the config file. \fP"
42 .ti -1c
43 .RI "long \fBGetError\fP ()"
44 .br
45 .RI "\fIReturns the last error to occur. \fP"
46 .ti -1c
47 .RI "int \fBEnumerate\fP (std::string tag)"
48 .br
49 .RI "\fICounts the number of times a given tag appears in the config file. \fP"
50 .ti -1c
51 .RI "bool \fBVerify\fP ()"
52 .br
53 .RI "\fIReturns true if a config file is valid. \fP"
54 .ti -1c
55 .RI "void \fBDumpErrors\fP (bool bail, \fBuserrec\fP *user)"
56 .br
57 .RI "\fIDumps the list of errors in a config file to an output location. \fP"
58 .ti -1c
59 .RI "int \fBEnumerateValues\fP (std::string tag, int index)"
60 .br
61 .RI "\fIReturns the number of items within a tag. \fP"
62 .in -1c
63 .SS "Protected Attributes"
64
65 .in +1c
66 .ti -1c
67 .RI "std::stringstream * \fBcache\fP"
68 .br
69 .RI "\fIThe contents of the configuration file This protected member should never be accessed by a module (and cannot be accessed unless the core is changed). \fP"
70 .ti -1c
71 .RI "std::stringstream * \fBerrorlog\fP"
72 .br
73 .ti -1c
74 .RI "bool \fBreaderror\fP"
75 .br
76 .RI "\fIUsed to store errors. \fP"
77 .ti -1c
78 .RI "long \fBerror\fP"
79 .br
80 .in -1c
81 .SH "Detailed Description"
82 .PP 
83 Allows reading of values from configuration files This class allows a module to read from either the main configuration file (inspircd.conf) or from a module-specified configuration file. 
84
85 It may either be instantiated with one parameter or none. Constructing the class using one parameter allows you to specify a path to your own configuration file, otherwise, inspircd.conf is read. 
86 .PP
87 Definition at line 1097 of file modules.h.
88 .SH "Constructor & Destructor Documentation"
89 .PP 
90 .SS "ConfigReader::ConfigReader ()"
91 .PP
92 Default constructor. This constructor initialises the ConfigReader class to read the inspircd.conf file as specified when running ./configure.Definition at line 835 of file modules.cpp.
93 .PP
94 References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror.
95 .PP
96 .nf
97 836 {
98 837         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
99 838         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
100 839         this->readerror = LoadConf(CONFIG_FILE,this->cache,this->errorlog);
101 840         if (!this->readerror)
102 841                 this->error = CONF_FILE_NOT_FOUND;
103 842 }
104 .fi
105 .SS "ConfigReader::ConfigReader (std::string filename)"
106 .PP
107 Overloaded constructor. This constructor initialises the ConfigReader class to read a user-specified config fileDefinition at line 854 of file modules.cpp.
108 .PP
109 References cache, CONF_FILE_NOT_FOUND, error, errorlog, and readerror.
110 .PP
111 .nf
112 855 {
113 856         this->cache = new std::stringstream(std::stringstream::in | std::stringstream::out);
114 857         this->errorlog = new std::stringstream(std::stringstream::in | std::stringstream::out);
115 858         this->readerror = LoadConf(filename.c_str(),this->cache,this->errorlog);
116 859         if (!this->readerror)
117 860                 this->error = CONF_FILE_NOT_FOUND;
118 861 };
119 .fi
120 .SS "ConfigReader::~\fBConfigReader\fP ()"
121 .PP
122 Default destructor. This method destroys the ConfigReader class.Definition at line 845 of file modules.cpp.
123 .PP
124 References cache, and errorlog.
125 .PP
126 .nf
127 846 {
128 847         if (this->cache)
129 848                 delete this->cache;
130 849         if (this->errorlog)
131 850                 delete this->errorlog;
132 851 }
133 .fi
134 .SH "Member Function Documentation"
135 .PP 
136 .SS "void ConfigReader::DumpErrors (bool bail, \fBuserrec\fP * user)"
137 .PP
138 Dumps the list of errors in a config file to an output location. If bail is true, then the program will abort. If bail is false and user points to a valid user record, the error report will be spooled to the given user by means of NOTICE. if bool is false AND user is false, the error report will be spooled to all opers by means of a NOTICE to all opers.Definition at line 932 of file modules.cpp.
139 .PP
140 References errorlog, connection::fd, and userrec::nick.
141 .PP
142 .nf
143 933 {
144 934         if (bail)
145 935         {
146 936                 printf('There were errors in your configuration:\n%s',errorlog->str().c_str());
147 937                 exit(0);
148 938         }
149 939         else
150 940         {
151 941                 char dataline[1024];
152 942                 if (user)
153 943                 {
154 944                         WriteServ(user->fd,'NOTICE %s :There were errors in the configuration file:',user->nick);
155 945                         while (!errorlog->eof())
156 946                         {
157 947                                 errorlog->getline(dataline,1024);
158 948                                 WriteServ(user->fd,'NOTICE %s :%s',user->nick,dataline);
159 949                         }
160 950                 }
161 951                 else
162 952                 {
163 953                         WriteOpers('There were errors in the configuration file:',user->nick);
164 954                         while (!errorlog->eof())
165 955                         {
166 956                                 errorlog->getline(dataline,1024);
167 957                                 WriteOpers(dataline);
168 958                         }
169 959                 }
170 960                 return;
171 961         }
172 962 }
173 .fi
174 .SS "int ConfigReader::Enumerate (std::string tag)"
175 .PP
176 Counts the number of times a given tag appears in the config file. This method counts the number of times a tag appears in a config file, for use where there are several tags of the same kind, e.g. with opers and connect types. It can be used with the index value of \fBConfigReader::ReadValue\fP to loop through all copies of a multiple instance tag.Definition at line 965 of file modules.cpp.
177 .PP
178 References cache.
179 .PP
180 .nf
181 966 {
182 967         return EnumConf(cache,tag.c_str());
183 968 }
184 .fi
185 .SS "int ConfigReader::EnumerateValues (std::string tag, int index)"
186 .PP
187 Returns the number of items within a tag. For example if the tag was <test tag='blah' data='foo'> then this function would return 2. Spaces and newlines both qualify as valid seperators between values.Definition at line 970 of file modules.cpp.
188 .PP
189 References cache.
190 .PP
191 .nf
192 971 {
193 972         return EnumValues(cache, tag.c_str(), index);
194 973 }
195 .fi
196 .SS "long ConfigReader::GetError ()"
197 .PP
198 Returns the last error to occur. Valid errors can be found by looking in \fBmodules.h\fP. Any nonzero value indicates an error condition. A call to \fBGetError()\fP resets the error flag back to 0.Definition at line 925 of file modules.cpp.
199 .PP
200 References error.
201 .PP
202 .nf
203 926 {
204 927         long olderr = this->error;
205 928         this->error = 0;
206 929         return olderr;
207 930 }
208 .fi
209 .SS "bool ConfigReader::ReadFlag (std::string tag, std::string name, int index)"
210 .PP
211 Retrieves a boolean value from the config file. This method retrieves a boolean value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. The values '1', 'yes' and 'true' in the config file count as true to ReadFlag, and any other value counts as false.Definition at line 879 of file modules.cpp.
212 .PP
213 References cache, CONF_VALUE_NOT_FOUND, and error.
214 .PP
215 .nf
216 880 {
217 881         char val[MAXBUF];
218 882         char t[MAXBUF];
219 883         char n[MAXBUF];
220 884         strlcpy(t,tag.c_str(),MAXBUF);
221 885         strlcpy(n,name.c_str(),MAXBUF);
222 886         int res = ReadConf(cache,t,n,index,val);
223 887         if (!res)
224 888         {
225 889                 this->error = CONF_VALUE_NOT_FOUND;
226 890                 return false;
227 891         }
228 892         std::string s = val;
229 893         return ((s == 'yes') || (s == 'YES') || (s == 'true') || (s == 'TRUE') || (s == '1'));
230 894 }
231 .fi
232 .SS "long ConfigReader::ReadInteger (std::string tag, std::string name, int index, bool needs_unsigned)"
233 .PP
234 Retrieves an integer value from the config file. This method retrieves an integer value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve. Any invalid integer values in the tag will cause the objects error value to be set, and any call to \fBGetError()\fP will return CONF_INVALID_NUMBER to be returned. needs_unsigned is set if the number must be unsigned. If a signed number is placed into a tag which is specified unsigned, 0 will be returned and \fBGetError()\fP will return CONF_NOT_UNSIGNEDDefinition at line 896 of file modules.cpp.
235 .PP
236 References cache, CONF_NOT_A_NUMBER, CONF_NOT_UNSIGNED, CONF_VALUE_NOT_FOUND, and error.
237 .PP
238 .nf
239 897 {
240 898         char val[MAXBUF];
241 899         char t[MAXBUF];
242 900         char n[MAXBUF];
243 901         strlcpy(t,tag.c_str(),MAXBUF);
244 902         strlcpy(n,name.c_str(),MAXBUF);
245 903         int res = ReadConf(cache,t,n,index,val);
246 904         if (!res)
247 905         {
248 906                 this->error = CONF_VALUE_NOT_FOUND;
249 907                 return 0;
250 908         }
251 909         for (int i = 0; i < strlen(val); i++)
252 910         {
253 911                 if (!isdigit(val[i]))
254 912                 {
255 913                         this->error = CONF_NOT_A_NUMBER;
256 914                         return 0;
257 915                 }
258 916         }
259 917         if ((needs_unsigned) && (atoi(val)<0))
260 918         {
261 919                 this->error = CONF_NOT_UNSIGNED;
262 920                 return 0;
263 921         }
264 922         return atoi(val);
265 923 }
266 .fi
267 .SS "std::string ConfigReader::ReadValue (std::string tag, std::string name, int index)"
268 .PP
269 Retrieves a value from the config file. This method retrieves a value from the config file. Where multiple copies of the tag exist in the config file, index indicates which of the values to retrieve.Definition at line 863 of file modules.cpp.
270 .PP
271 References cache, CONF_VALUE_NOT_FOUND, and error.
272 .PP
273 .nf
274 864 {
275 865         char val[MAXBUF];
276 866         char t[MAXBUF];
277 867         char n[MAXBUF];
278 868         strlcpy(t,tag.c_str(),MAXBUF);
279 869         strlcpy(n,name.c_str(),MAXBUF);
280 870         int res = ReadConf(cache,t,n,index,val);
281 871         if (!res)
282 872         {
283 873                 this->error = CONF_VALUE_NOT_FOUND;
284 874                 return '';
285 875         }
286 876         return std::string(val);
287 877 }
288 .fi
289 .SS "bool ConfigReader::Verify ()"
290 .PP
291 Returns true if a config file is valid. This method is partially implemented and will only return false if the config file does not exist or could not be opened.Definition at line 975 of file modules.cpp.
292 .PP
293 References readerror.
294 .PP
295 .nf
296 976 {
297 977         return this->readerror;
298 978 }
299 .fi
300 .SH "Member Data Documentation"
301 .PP 
302 .SS "std::stringstream* \fBConfigReader::cache\fP\fC [protected]\fP"
303 .PP
304 The contents of the configuration file This protected member should never be accessed by a module (and cannot be accessed unless the core is changed). It will contain a pointer to the configuration file data with unneeded data (such as comments) stripped from it.Definition at line 1105 of file modules.h.
305 .PP
306 Referenced by ConfigReader(), Enumerate(), EnumerateValues(), ReadFlag(), ReadInteger(), ReadValue(), and ~ConfigReader().
307 .SS "long \fBConfigReader::error\fP\fC [protected]\fP"
308 .PP
309 Definition at line 1110 of file modules.h.
310 .PP
311 Referenced by ConfigReader(), GetError(), ReadFlag(), ReadInteger(), and ReadValue().
312 .SS "std::stringstream* \fBConfigReader::errorlog\fP\fC [protected]\fP"
313 .PP
314 Definition at line 1106 of file modules.h.
315 .PP
316 Referenced by ConfigReader(), DumpErrors(), and ~ConfigReader().
317 .SS "bool \fBConfigReader::readerror\fP\fC [protected]\fP"
318 .PP
319 Used to store errors. Definition at line 1109 of file modules.h.
320 .PP
321 Referenced by ConfigReader(), and Verify().
322
323 .SH "Author"
324 .PP 
325 Generated automatically by Doxygen for InspIRCd from the source code.