]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - include/configparser.h
Merge pull request #1018 from SaberUK/insp20+hidekills
[user/henk/code/inspircd.git] / include / configparser.h
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 struct fpos
21 {
22         std::string filename;
23         int line;
24         int col;
25         fpos(const std::string& name, int l = 1, int c = 1) : filename(name), line(l), col(c) {}
26         std::string str()
27         {
28                 return filename + ":" + ConvToStr(line) + ":" + ConvToStr(col);
29         }
30 };
31
32 enum ParseFlags
33 {
34         FLAG_USE_XML = 1,
35         FLAG_NO_EXEC = 2,
36         FLAG_NO_INC = 4
37 };
38
39 struct ParseStack
40 {
41         std::vector<std::string> reading;
42         std::map<std::string, std::string> vars;
43         ConfigDataHash& output;
44         ConfigFileCache& FilesOutput;
45         std::stringstream& errstr;
46
47         ParseStack(ServerConfig* conf)
48                 : output(conf->config_data), FilesOutput(conf->Files), errstr(conf->errstr)
49         {
50                 vars["amp"] = "&";
51                 vars["quot"] = "\"";
52                 vars["newline"] = vars["nl"] = "\n";
53         }
54         bool ParseFile(const std::string& name, int flags, const std::string& mandatory_tag = "");
55         bool ParseExec(const std::string& name, int flags, const std::string& mandatory_tag = "");
56         void DoInclude(ConfigTag* includeTag, int flags);
57         void DoReadFile(const std::string& key, const std::string& file, int flags, bool exec);
58 };
59
60 /** RAII wrapper on FILE* to close files on exceptions */
61 struct FileWrapper
62 {
63         FILE* const f;
64         bool close_with_pclose;
65         FileWrapper(FILE* file, bool use_pclose = false) : f(file), close_with_pclose(use_pclose) {}
66         operator bool() { return (f != NULL); }
67         operator FILE*() { return f; }
68         ~FileWrapper()
69         {
70                 if (f)
71                 {
72                         if (close_with_pclose)
73                                 pclose(f);
74                         else
75                                 fclose(f);
76                 }
77         }
78 };
79
80