7 #ifndef PARSER_CONTEXT_H
8 #define PARSER_CONTEXT_H
17 #define YY_DECL isc::agent::AgentParser::symbol_type agent_lex (ParserContext& driver)
66 std::vector<isc::data::ElementPtr>
stack_;
125 void error(
const isc::agent::location& loc,
126 const std::string& what,
136 void error(
const std::string& what);
145 static void fatal(
const std::string& what);
165 void require(
const std::string& name,
177 void unique(
const std::string& name,
232 std::vector<isc::agent::location>
locs_;
285 bool trace_scanning_;
291 std::vector<LexerContext> cstack_;
Used while parsing Control-agent/Authentication/type.
Used while parsing content of Agent.
void unique(const std::string &name, isc::data::Element::Position loc)
Check if a parameter is already present.
static void fatal(const std::string &what)
Fatal error handler.
void enter(const LexerContext &ctx)
Enter a new syntactic context.
ParserType
Defines currently supported scopes.
LexerContext ctx_
Current syntactic context.
Used while parsing Control-agent/control-socket/*-server/socket-type.
This parser will parse the content as generic JSON.
void includeFile(const std::string &filename)
Divert input to an include file.
boost::shared_ptr< Element > ElementPtr
isc::agent::location loc_
Location of the current token.
FILE * sfile_
sFile (aka FILE)
std::vector< isc::data::ElementPtr > stack_
JSON elements being parsed.
Used while parsing Control-agent/loggers structures.
ParserContext()
Default constructor.
LexerContext
Defines syntactic contexts for lexical tie-ins.
Forward declaration of the ParserContext class.
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.
isc::data::Element::Position loc2pos(isc::agent::location &loc)
Converts bison's position to one understandable by isc::data::Element.
std::vector< FILE * > sfiles_
sFile (aka FILE) stack
const std::string contextName()
Get the syntactic context name.
isc::data::ElementPtr parseFile(const std::string &filename, ParserType parser_type)
Run the parser on the file specified.
void leave()
Leave a syntactic context.
Used while parsing Control-agent/loggers/output_options structures.
void scanFileBegin(FILE *f, const std::string &filename, ParserType type)
Method called before scanning starts on a file.
Represents the position of the data element within a configuration string.
std::vector< struct yy_buffer_state * > states_
Lexer state stack.
This one is used in pure JSON mode.
Defines the logger used by the top-level component of kea-dhcp-ddns.
std::vector< std::string > files_
File name stack.
Define the isc::agent::parser class.
void scanStringBegin(const std::string &str, ParserType type)
Method called before scanning starts on a string.
std::string file_
File name.
void scanEnd()
Method called after the last tokens are scanned.
This parser will expect only the content of Control-agent.
This parser will expect the content as Control-agent config wrapped in a map (that's the regular conf...
Used while parsing Control-agent/hooks-libraries.
std::vector< isc::agent::location > locs_
Location stack.
Used while parsing Control-agent/control-sockets.
Used while parsing Control-agent/Authentication.
Used while parsing Control-agent/Authentication/clients.
isc::data::ElementPtr parseString(const std::string &str, ParserType parser_type)
Run the parser on the string specified.
Parser context is a wrapper around flex/bison instances dedicated to Control-agent config file parser...
Used while parsing Control-agent/control-socket/*-server.
virtual ~ParserContext()
destructor
void error(const isc::agent::location &loc, const std::string &what, size_t pos=0)
Error handler.