]> git.ipfire.org Git - thirdparty/pdns.git/blob - pdns/bindparserclasses.hh
Merge pull request #4306 from Habbie/mysqllongtext
[thirdparty/pdns.git] / pdns / bindparserclasses.hh
1 /*
2 * This file is part of PowerDNS or dnsdist.
3 * Copyright -- PowerDNS.COM B.V. and its contributors
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of version 2 of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * In addition, for the avoidance of any doubt, permission is granted to
10 * link this program with OpenSSL and to (re)distribute the binaries
11 * produced as the result of such linking.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22 #ifndef BINDPARSER_HH
23 #define BINDPARSER_HH
24 #include <string>
25 #include <map>
26 #include <vector>
27 #include <set>
28 #include <stdio.h>
29 #include <sys/stat.h>
30
31 #include "namespaces.hh"
32
33 class BindDomainInfo
34 {
35 public:
36 BindDomainInfo() : d_dev(0), d_ino(0)
37 {}
38
39 void clear()
40 {
41 name=DNSName();
42 filename=type="";
43 masters.clear();
44 alsoNotify.clear();
45 d_dev=0;
46 d_ino=0;
47 }
48 DNSName name;
49 string viewName;
50 string filename;
51 vector<string> masters;
52 set<string> alsoNotify;
53 string type;
54
55 dev_t d_dev;
56 ino_t d_ino;
57
58 bool operator<(const BindDomainInfo& b) const
59 {
60 return make_pair(d_dev, d_ino) < make_pair(b.d_dev, b.d_ino);
61 }
62 };
63
64 extern const char *bind_directory;
65 extern FILE *yyin;
66 class BindParser
67 {
68 public:
69 BindParser() : d_dir("."), d_verbose(false)
70 {
71 yyin=0;
72 extern int include_stack_ptr;
73 include_stack_ptr=0;
74
75 bind_directory=d_dir.c_str();
76 }
77 ~BindParser()
78 {
79 if(yyin) {
80 fclose(yyin);
81 yyin=0;
82 }
83 }
84 void parse(const string &fname);
85 void commit(BindDomainInfo DI);
86 void setDirectory(const string &dir);
87 const string &getDirectory();
88 const vector<BindDomainInfo>& getDomains();
89 void setVerbose(bool verbose);
90 void addAlsoNotify(const string &host);
91 set<string> & getAlsoNotify() { return this->alsoNotify; }
92 private:
93 string d_dir;
94 typedef map<DNSName,string> zonedomain_t;
95 set<string> alsoNotify;
96 vector<BindDomainInfo> d_zonedomains;
97 bool d_verbose;
98 };
99
100 #endif /* BINDPARSER_HH */