13 #include <boost/lexical_cast.hpp>
21 : sfile_(0), ctx_(NO_KEYWORD), trace_scanning_(false), trace_parsing_(false)
33 return (parseCommon());
38 FILE* f = fopen(filename.c_str(),
"r");
43 return (parseCommon());
47 D2ParserContext::parseCommon() {
51 parser.set_debug_level(trace_parsing_);
53 int res = parser.parse();
73 const std::string& what,
98 const std::string& file = *loc.begin.filename;
99 const uint32_t line = loc.begin.line;
100 const uint32_t pos = loc.begin.column;
112 "missing parameter '" << name <<
"' ("
113 <<
stack_.back()->getPosition() <<
") ["
115 << open_loc <<
" and " << close_loc <<
"]");
128 <<
" map (previous at " << value->getPosition() <<
")");
131 <<
" entries in JSON"
132 <<
" map (previous at " << value->getPosition() <<
")");
140 cstack_.push_back(
ctx_);
147 if (cstack_.empty()) {
148 fatal(
"unbalanced syntactic context");
151 ctx_ = cstack_.back();
160 return (
"__no keyword__");
168 return (
"tsig-keys");
172 return(
"digest-bits");
176 return(
"forward-ddns");
178 return(
"reverse-ddns");
180 return(
"ddns-domain");
182 return(
"ddns-domains");
184 return(
"dns-server");
186 return(
"dns-servers");
188 return(
"control-socket");
192 return (
"output-options");
194 return (
"ncr-protocol");
196 return (
"ncr-format");
198 return (
"hooks-libraries");
200 return (
"__unknown__");
Used while parsing a list of tsig-keys.
Define the isc::d2::parser class.
Used while parsing DhcpDdns/loggers/output_options structures.
Used while parsing content of a dns-server.
Used while parsing content of DhcpDdns/tsig-keys/algorithm.
Used while parsing content of DhcpDdns/forward-ddns.
This one is used in pure JSON mode.
virtual ~D2ParserContext()
destructor.
void require(const std::string &name, isc::data::Element::Position open_loc, isc::data::Element::Position close_loc)
Check if a required parameter is present.
boost::shared_ptr< Element > ElementPtr
void scanEnd()
Method called after the last tokens are scanned.
Used while parsing content of a tsig-key.
Used while parsing DhcpDdns/loggers structures.
void unique(const std::string &name, isc::data::Element::Position loc)
Check if a parameter is already present.
isc::data::ElementPtr parseString(const std::string &str, ParserType parser_type)
Run the parser on the string specified.
static void fatal(const std::string &what)
Fatal error handler.
Used while parsing content of DhcpDdns/tsig-keys/secret.
Used while parsing content of a ddns-domain.
#define isc_throw(type, stream)
A shortcut macro to insert known values into exception arguments.
Used while parsing DhcpDdns/hooks-libraries.
Used while parsing content of DhcpDdns/reverse-ddns.
void leave()
Leave a syntactic context.
Used while parsing content of a control-socket.
Used while parsing DhcpDdns/ncr-protocol.
boost::shared_ptr< const Element > ConstElementPtr
ParserType
Defines currently supported scopes.
Used while parsing DhcpDdns/ncr-format.
Represents the position of the data element within a configuration string.
Defines the logger used by the top-level component of kea-dhcp-ddns.
void enter(const ParserContext &ctx)
Enter a new syntactic context.
Evaluation error exception raised when trying to parse.
void error(const isc::d2::location &loc, const std::string &what, size_t pos=0)
Error handler.
Used while parsing content of DhcpDdns.
void scanFileBegin(FILE *f, const std::string &filename, ParserType type)
Method called before scanning starts on a file.
Used while parsing a list of ddns-domains.
ParserContext
Defines syntactic contexts for lexical tie-ins.
D2ParserContext()
Default constructor.
std::vector< isc::data::ElementPtr > stack_
JSON elements being parsed.
isc::data::ElementPtr parseFile(const std::string &filename, ParserType parser_type)
Run the parser on the file specified.
Used while parsing content of DhcpDdns/tsig-keys/digest-bits.
void scanStringBegin(const std::string &str, ParserType type)
Method called before scanning starts on a string.
ParserContext ctx_
Current syntactic context.
Used while parsing content of list of dns-servers.
isc::data::Element::Position loc2pos(isc::d2::location &loc)
Converts bison's position to one understood by isc::data::Element.
const std::string contextName()
Get the syntax context name.