Kea 2.6.2
isc::netconf::NetconfParser Class Reference

A Bison parser. More...

#include <netconf_parser.h>

Classes

struct  basic_symbol
 A complete symbol. More...
 
struct  by_kind
 Type access provider for token (enum) based symbols. More...
 
class  context
 
struct  symbol_kind
 Symbol kinds. More...
 
struct  symbol_type
 "External" symbols: returned by the scanner. More...
 
struct  syntax_error
 Syntax errors thrown from user actions. More...
 
struct  token
 Token kinds. More...
 
class  value_type
 A buffer to store and retrieve objects. More...
 

Public Types

typedef by_kind by_type
 Backward compatibility for a private implementation detail (Bison 3.6).
 
typedef location location_type
 Symbol locations.
 
typedef value_type semantic_type
 Backward compatibility (Bison 3.8).
 
typedef symbol_kind::symbol_kind_type symbol_kind_type
 (Internal) symbol kind.
 
typedef token::token_kind_type token_kind_type
 Token kind, as returned by yylex.
 
typedef token_kind_type token_type
 Backward compatibility alias (Bison 3.6).
 

Public Member Functions

 NetconfParser (isc::netconf::ParserContext &ctx_yyarg)
 Build a parser object.
 
virtual ~NetconfParser ()
 
virtual void error (const location_type &loc, const std::string &msg)
 Report a syntax error.
 
void error (const syntax_error &err)
 Report a syntax error.
 
int operator() ()
 Parse.
 
virtual int parse ()
 Parse.
 

Static Public Member Functions

static symbol_type make_BOOLEAN (const bool &v, const location_type &l)
 
static symbol_type make_BOOT_UPDATE (const location_type &l)
 
static symbol_type make_CA_SERVER (const location_type &l)
 
static symbol_type make_COLON (const location_type &l)
 
static symbol_type make_COMMA (const location_type &l)
 
static symbol_type make_COMMENT (const location_type &l)
 
static symbol_type make_CONTROL_SOCKET (const location_type &l)
 
static symbol_type make_D2_SERVER (const location_type &l)
 
static symbol_type make_DEBUGLEVEL (const location_type &l)
 
static symbol_type make_DHCP4_SERVER (const location_type &l)
 
static symbol_type make_DHCP6_SERVER (const location_type &l)
 
static symbol_type make_END (const location_type &l)
 
static symbol_type make_FLOAT (const double &v, const location_type &l)
 
static symbol_type make_FLUSH (const location_type &l)
 
static symbol_type make_HOOKS_LIBRARIES (const location_type &l)
 
static symbol_type make_HTTP (const location_type &l)
 
static symbol_type make_INTEGER (const int64_t &v, const location_type &l)
 
static symbol_type make_LCURLY_BRACKET (const location_type &l)
 
static symbol_type make_LIBRARY (const location_type &l)
 
static symbol_type make_LOGGERS (const location_type &l)
 
static symbol_type make_LSQUARE_BRACKET (const location_type &l)
 
static symbol_type make_MANAGED_SERVERS (const location_type &l)
 
static symbol_type make_MAXSIZE (const location_type &l)
 
static symbol_type make_MAXVER (const location_type &l)
 
static symbol_type make_MODEL (const location_type &l)
 
static symbol_type make_NAME (const location_type &l)
 
static symbol_type make_NETCONF (const location_type &l)
 
static symbol_type make_NETCONF_error (const location_type &l)
 
static symbol_type make_NETCONF_UNDEF (const location_type &l)
 
static symbol_type make_NULL_TYPE (const location_type &l)
 
static symbol_type make_OUTPUT (const location_type &l)
 
static symbol_type make_OUTPUT_OPTIONS (const location_type &l)
 
static symbol_type make_PARAMETERS (const location_type &l)
 
static symbol_type make_PATTERN (const location_type &l)
 
static symbol_type make_RCURLY_BRACKET (const location_type &l)
 
static symbol_type make_RSQUARE_BRACKET (const location_type &l)
 
static symbol_type make_SEVERITY (const location_type &l)
 
static symbol_type make_SOCKET_NAME (const location_type &l)
 
static symbol_type make_SOCKET_TYPE (const location_type &l)
 
static symbol_type make_SOCKET_URL (const location_type &l)
 
static symbol_type make_START_JSON (const location_type &l)
 
static symbol_type make_START_NETCONF (const location_type &l)
 
static symbol_type make_START_SUB_NETCONF (const location_type &l)
 
static symbol_type make_STDOUT (const location_type &l)
 
static symbol_type make_STRING (const string &v, const location_type &l)
 
static symbol_type make_SUBSCRIBE_CHANGES (const location_type &l)
 
static symbol_type make_UNIX (const location_type &l)
 
static symbol_type make_USER_CONTEXT (const location_type &l)
 
static symbol_type make_VALIDATE_CHANGES (const location_type &l)
 
static std::string symbol_name (symbol_kind_type yysymbol)
 The user-facing name of the symbol whose (internal) number is YYSYMBOL.
 

Static Public Attributes

static const symbol_kind_type YYNTOKENS = symbol_kind::YYNTOKENS
 The number of tokens.
 

Detailed Description

A Bison parser.

Definition at line 217 of file netconf_parser.h.

Member Typedef Documentation

◆ by_type

Backward compatibility for a private implementation detail (Bison 3.6).

Definition at line 984 of file netconf_parser.h.

◆ location_type

Symbol locations.

Definition at line 469 of file netconf_parser.h.

◆ semantic_type

Backward compatibility (Bison 3.8).

Definition at line 466 of file netconf_parser.h.

◆ symbol_kind_type

(Internal) symbol kind.

Definition at line 715 of file netconf_parser.h.

◆ token_kind_type

Token kind, as returned by yylex.

Definition at line 550 of file netconf_parser.h.

◆ token_type

Backward compatibility alias (Bison 3.6).

Definition at line 553 of file netconf_parser.h.

Constructor & Destructor Documentation

◆ NetconfParser()

isc::netconf::NetconfParser::NetconfParser ( isc::netconf::ParserContext & ctx_yyarg)

Build a parser object.

Definition at line 152 of file netconf_parser.cc.

Referenced by isc::netconf::NetconfParser::context::context().

◆ ~NetconfParser()

isc::netconf::NetconfParser::~NetconfParser ( )
virtual

Definition at line 162 of file netconf_parser.cc.

Member Function Documentation

◆ error() [1/2]

void isc::netconf::NetconfParser::error ( const location_type & loc,
const std::string & msg )
virtual

Report a syntax error.

Parameters
locwhere the syntax error is found.
msga description of the syntax error.

Definition at line 2313 of file netconf_parser.cc.

Referenced by error(), and parse().

◆ error() [2/2]

void isc::netconf::NetconfParser::error ( const syntax_error & err)

Report a syntax error.

Definition at line 1795 of file netconf_parser.cc.

References error(), and isc::netconf::NetconfParser::syntax_error::location.

+ Here is the call graph for this function:

◆ make_BOOLEAN()

static symbol_type isc::netconf::NetconfParser::make_BOOLEAN ( const bool & v,
const location_type & l )
inlinestatic

Definition at line 1835 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_BOOLEAN.

Referenced by while().

◆ make_BOOT_UPDATE()

static symbol_type isc::netconf::NetconfParser::make_BOOT_UPDATE ( const location_type & l)
inlinestatic

Definition at line 1310 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_BOOT_UPDATE.

Referenced by while().

◆ make_CA_SERVER()

static symbol_type isc::netconf::NetconfParser::make_CA_SERVER ( const location_type & l)
inlinestatic

Definition at line 1415 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_CA_SERVER.

Referenced by while().

◆ make_COLON()

static symbol_type isc::netconf::NetconfParser::make_COLON ( const location_type & l)
inlinestatic

Definition at line 1175 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_COLON.

Referenced by while().

◆ make_COMMA()

static symbol_type isc::netconf::NetconfParser::make_COMMA ( const location_type & l)
inlinestatic

Definition at line 1160 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_COMMA.

Referenced by while().

◆ make_COMMENT()

static symbol_type isc::netconf::NetconfParser::make_COMMENT ( const location_type & l)
inlinestatic

Definition at line 1295 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_COMMENT.

Referenced by while().

◆ make_CONTROL_SOCKET()

static symbol_type isc::netconf::NetconfParser::make_CONTROL_SOCKET ( const location_type & l)
inlinestatic

Definition at line 1445 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_CONTROL_SOCKET.

Referenced by while().

◆ make_D2_SERVER()

static symbol_type isc::netconf::NetconfParser::make_D2_SERVER ( const location_type & l)
inlinestatic

Definition at line 1400 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_D2_SERVER.

Referenced by while().

◆ make_DEBUGLEVEL()

static symbol_type isc::netconf::NetconfParser::make_DEBUGLEVEL ( const location_type & l)
inlinestatic

Definition at line 1655 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_DEBUGLEVEL.

Referenced by while().

◆ make_DHCP4_SERVER()

static symbol_type isc::netconf::NetconfParser::make_DHCP4_SERVER ( const location_type & l)
inlinestatic

Definition at line 1370 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_DHCP4_SERVER.

Referenced by while().

◆ make_DHCP6_SERVER()

static symbol_type isc::netconf::NetconfParser::make_DHCP6_SERVER ( const location_type & l)
inlinestatic

Definition at line 1385 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_DHCP6_SERVER.

Referenced by while().

◆ make_END()

static symbol_type isc::netconf::NetconfParser::make_END ( const location_type & l)
inlinestatic

Definition at line 1115 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_END.

Referenced by while().

◆ make_FLOAT()

static symbol_type isc::netconf::NetconfParser::make_FLOAT ( const double & v,
const location_type & l )
inlinestatic

Definition at line 1820 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_FLOAT.

Referenced by while().

◆ make_FLUSH()

static symbol_type isc::netconf::NetconfParser::make_FLUSH ( const location_type & l)
inlinestatic

Definition at line 1685 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_FLUSH.

Referenced by while().

◆ make_HOOKS_LIBRARIES()

static symbol_type isc::netconf::NetconfParser::make_HOOKS_LIBRARIES ( const location_type & l)
inlinestatic

Definition at line 1550 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_HOOKS_LIBRARIES.

Referenced by while().

◆ make_HTTP()

static symbol_type isc::netconf::NetconfParser::make_HTTP ( const location_type & l)
inlinestatic

Definition at line 1490 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_HTTP.

Referenced by while().

◆ make_INTEGER()

static symbol_type isc::netconf::NetconfParser::make_INTEGER ( const int64_t & v,
const location_type & l )
inlinestatic

Definition at line 1805 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_INTEGER.

Referenced by while().

◆ make_LCURLY_BRACKET()

static symbol_type isc::netconf::NetconfParser::make_LCURLY_BRACKET ( const location_type & l)
inlinestatic

Definition at line 1220 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_LCURLY_BRACKET.

Referenced by while().

◆ make_LIBRARY()

static symbol_type isc::netconf::NetconfParser::make_LIBRARY ( const location_type & l)
inlinestatic

Definition at line 1565 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_LIBRARY.

Referenced by while().

◆ make_LOGGERS()

static symbol_type isc::netconf::NetconfParser::make_LOGGERS ( const location_type & l)
inlinestatic

Definition at line 1595 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_LOGGERS.

Referenced by while().

◆ make_LSQUARE_BRACKET()

static symbol_type isc::netconf::NetconfParser::make_LSQUARE_BRACKET ( const location_type & l)
inlinestatic

Definition at line 1190 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_LSQUARE_BRACKET.

Referenced by while().

◆ make_MANAGED_SERVERS()

static symbol_type isc::netconf::NetconfParser::make_MANAGED_SERVERS ( const location_type & l)
inlinestatic

Definition at line 1355 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_MANAGED_SERVERS.

Referenced by while().

◆ make_MAXSIZE()

static symbol_type isc::netconf::NetconfParser::make_MAXSIZE ( const location_type & l)
inlinestatic

Definition at line 1700 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_MAXSIZE.

Referenced by while().

◆ make_MAXVER()

static symbol_type isc::netconf::NetconfParser::make_MAXVER ( const location_type & l)
inlinestatic

Definition at line 1715 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_MAXVER.

Referenced by while().

◆ make_MODEL()

static symbol_type isc::netconf::NetconfParser::make_MODEL ( const location_type & l)
inlinestatic

Definition at line 1430 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_MODEL.

Referenced by while().

◆ make_NAME()

static symbol_type isc::netconf::NetconfParser::make_NAME ( const location_type & l)
inlinestatic

Definition at line 1610 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_NAME.

Referenced by while().

◆ make_NETCONF()

static symbol_type isc::netconf::NetconfParser::make_NETCONF ( const location_type & l)
inlinestatic

Definition at line 1265 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_NETCONF.

Referenced by while().

◆ make_NETCONF_error()

static symbol_type isc::netconf::NetconfParser::make_NETCONF_error ( const location_type & l)
inlinestatic

◆ make_NETCONF_UNDEF()

static symbol_type isc::netconf::NetconfParser::make_NETCONF_UNDEF ( const location_type & l)
inlinestatic

◆ make_NULL_TYPE()

static symbol_type isc::netconf::NetconfParser::make_NULL_TYPE ( const location_type & l)
inlinestatic

Definition at line 1250 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_NULL_TYPE.

Referenced by while().

◆ make_OUTPUT()

static symbol_type isc::netconf::NetconfParser::make_OUTPUT ( const location_type & l)
inlinestatic

Definition at line 1640 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_OUTPUT.

Referenced by while().

◆ make_OUTPUT_OPTIONS()

static symbol_type isc::netconf::NetconfParser::make_OUTPUT_OPTIONS ( const location_type & l)
inlinestatic

Definition at line 1625 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_OUTPUT_OPTIONS.

Referenced by while().

◆ make_PARAMETERS()

static symbol_type isc::netconf::NetconfParser::make_PARAMETERS ( const location_type & l)
inlinestatic

Definition at line 1580 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_PARAMETERS.

Referenced by while().

◆ make_PATTERN()

static symbol_type isc::netconf::NetconfParser::make_PATTERN ( const location_type & l)
inlinestatic

Definition at line 1730 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_PATTERN.

Referenced by while().

◆ make_RCURLY_BRACKET()

static symbol_type isc::netconf::NetconfParser::make_RCURLY_BRACKET ( const location_type & l)
inlinestatic

Definition at line 1235 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_RCURLY_BRACKET.

Referenced by while().

◆ make_RSQUARE_BRACKET()

static symbol_type isc::netconf::NetconfParser::make_RSQUARE_BRACKET ( const location_type & l)
inlinestatic

Definition at line 1205 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_RSQUARE_BRACKET.

Referenced by while().

◆ make_SEVERITY()

static symbol_type isc::netconf::NetconfParser::make_SEVERITY ( const location_type & l)
inlinestatic

Definition at line 1670 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_SEVERITY.

Referenced by while().

◆ make_SOCKET_NAME()

static symbol_type isc::netconf::NetconfParser::make_SOCKET_NAME ( const location_type & l)
inlinestatic

Definition at line 1520 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_SOCKET_NAME.

Referenced by while().

◆ make_SOCKET_TYPE()

static symbol_type isc::netconf::NetconfParser::make_SOCKET_TYPE ( const location_type & l)
inlinestatic

Definition at line 1460 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_SOCKET_TYPE.

Referenced by while().

◆ make_SOCKET_URL()

static symbol_type isc::netconf::NetconfParser::make_SOCKET_URL ( const location_type & l)
inlinestatic

Definition at line 1535 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_SOCKET_URL.

Referenced by while().

◆ make_START_JSON()

static symbol_type isc::netconf::NetconfParser::make_START_JSON ( const location_type & l)
inlinestatic

Definition at line 1745 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_START_JSON.

Referenced by if().

◆ make_START_NETCONF()

static symbol_type isc::netconf::NetconfParser::make_START_NETCONF ( const location_type & l)
inlinestatic

Definition at line 1760 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_START_NETCONF.

Referenced by if().

◆ make_START_SUB_NETCONF()

static symbol_type isc::netconf::NetconfParser::make_START_SUB_NETCONF ( const location_type & l)
inlinestatic

Definition at line 1775 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_START_SUB_NETCONF.

Referenced by if().

◆ make_STDOUT()

static symbol_type isc::netconf::NetconfParser::make_STDOUT ( const location_type & l)
inlinestatic

Definition at line 1505 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_STDOUT.

Referenced by while().

◆ make_STRING()

static symbol_type isc::netconf::NetconfParser::make_STRING ( const string & v,
const location_type & l )
inlinestatic

Definition at line 1790 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_STRING.

Referenced by while().

◆ make_SUBSCRIBE_CHANGES()

static symbol_type isc::netconf::NetconfParser::make_SUBSCRIBE_CHANGES ( const location_type & l)
inlinestatic

Definition at line 1325 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_SUBSCRIBE_CHANGES.

Referenced by while().

◆ make_UNIX()

static symbol_type isc::netconf::NetconfParser::make_UNIX ( const location_type & l)
inlinestatic

Definition at line 1475 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_UNIX.

Referenced by while().

◆ make_USER_CONTEXT()

static symbol_type isc::netconf::NetconfParser::make_USER_CONTEXT ( const location_type & l)
inlinestatic

Definition at line 1280 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_USER_CONTEXT.

Referenced by while().

◆ make_VALIDATE_CHANGES()

static symbol_type isc::netconf::NetconfParser::make_VALIDATE_CHANGES ( const location_type & l)
inlinestatic

Definition at line 1340 of file netconf_parser.h.

References isc::netconf::NetconfParser::token::TOKEN_VALIDATE_CHANGES.

Referenced by while().

◆ operator()()

int isc::netconf::NetconfParser::operator() ( )

Parse.

An alias for parse ().

Returns
0 iff parsing succeeded.

Definition at line 510 of file netconf_parser.cc.

References parse().

+ Here is the call graph for this function:

◆ parse()

int isc::netconf::NetconfParser::parse ( )
virtual

◆ symbol_name()

std::string isc::netconf::NetconfParser::symbol_name ( symbol_kind_type yysymbol)
static

The user-facing name of the symbol whose (internal) number is YYSYMBOL.

No bounds checking.

Definition at line 1841 of file netconf_parser.cc.

Referenced by isc::netconf::NetconfParser::basic_symbol< by_kind >::name().

Member Data Documentation

◆ YYNTOKENS

const symbol_kind_type isc::netconf::NetconfParser::YYNTOKENS = symbol_kind::YYNTOKENS
static

The number of tokens.

Definition at line 718 of file netconf_parser.h.

Referenced by isc::netconf::NetconfParser::context::expected_tokens().


The documentation for this class was generated from the following files: