2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-23 02:17:33 +00:00
kea/src/bin/dhcp4/dhcp4_parser.h

4596 lines
129 KiB
C
Raw Normal View History

// A Bison parser, made by GNU Bison 3.5.1.
// Skeleton interface for Bison LALR(1) parsers in C++
// Copyright (C) 2002-2015, 2018-2020 Free Software Foundation, Inc.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
// As a special exception, you may create a larger work that contains
// part or all of the Bison parser skeleton and distribute that work
// under terms of your choice, so long as that work isn't itself a
// parser generator using the skeleton or a modified version thereof
// as a parser skeleton. Alternatively, if you modify or redistribute
// the parser skeleton itself, you may (at your option) remove this
// special exception, which will cause the skeleton and the resulting
// Bison output files to be licensed under the GNU General Public
// License without this special exception.
// This special exception was added by the Free Software Foundation in
// version 2.2 of Bison.
/**
** \file dhcp4_parser.h
** Define the isc::dhcp::parser class.
*/
// C++ LALR(1) parser skeleton written by Akim Demaille.
// Undocumented macros, especially those whose name start with YY_,
// are private implementation details. Do not rely on them.
#ifndef YY_PARSER4_DHCP4_PARSER_H_INCLUDED
# define YY_PARSER4_DHCP4_PARSER_H_INCLUDED
// "%code requires" blocks.
#line 17 "dhcp4_parser.yy"
#include <string>
#include <cc/data.h>
#include <dhcp/option.h>
#include <boost/lexical_cast.hpp>
#include <dhcp4/parser_context_decl.h>
using namespace isc::dhcp;
using namespace isc::data;
using namespace std;
#line 60 "dhcp4_parser.h"
# include <cassert>
# include <cstdlib> // std::abort
# include <iostream>
# include <stdexcept>
# include <string>
# include <vector>
#if defined __cplusplus
# define YY_CPLUSPLUS __cplusplus
#else
# define YY_CPLUSPLUS 199711L
#endif
// Support move semantics when possible.
#if 201103L <= YY_CPLUSPLUS
# define YY_MOVE std::move
# define YY_MOVE_OR_COPY move
# define YY_MOVE_REF(Type) Type&&
# define YY_RVREF(Type) Type&&
# define YY_COPY(Type) Type
#else
# define YY_MOVE
# define YY_MOVE_OR_COPY copy
# define YY_MOVE_REF(Type) Type&
# define YY_RVREF(Type) const Type&
# define YY_COPY(Type) const Type&
#endif
// Support noexcept when possible.
#if 201103L <= YY_CPLUSPLUS
# define YY_NOEXCEPT noexcept
# define YY_NOTHROW
#else
# define YY_NOEXCEPT
# define YY_NOTHROW throw ()
#endif
// Support constexpr when possible.
#if 201703 <= YY_CPLUSPLUS
# define YY_CONSTEXPR constexpr
#else
# define YY_CONSTEXPR
#endif
# include "location.hh"
#include <typeinfo>
#ifndef YY_ASSERT
# include <cassert>
# define YY_ASSERT assert
#endif
#ifndef YY_ATTRIBUTE_PURE
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
# else
# define YY_ATTRIBUTE_PURE
# endif
#endif
#ifndef YY_ATTRIBUTE_UNUSED
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
2020-03-30 14:26:17 +00:00
# else
# define YY_ATTRIBUTE_UNUSED
2020-03-30 14:26:17 +00:00
# endif
#endif
/* Suppress unused-variable warnings by "using" E. */
#if ! defined lint || defined __GNUC__
# define YYUSE(E) ((void) (E))
#else
# define YYUSE(E) /* empty */
#endif
#if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
_Pragma ("GCC diagnostic pop")
#else
# define YY_INITIAL_VALUE(Value) Value
#endif
#ifndef YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN
# define YY_IGNORE_MAYBE_UNINITIALIZED_END
#endif
#ifndef YY_INITIAL_VALUE
# define YY_INITIAL_VALUE(Value) /* Nothing. */
#endif
#if defined __cplusplus && defined __GNUC__ && ! defined __ICC && 6 <= __GNUC__
# define YY_IGNORE_USELESS_CAST_BEGIN \
_Pragma ("GCC diagnostic push") \
_Pragma ("GCC diagnostic ignored \"-Wuseless-cast\"")
# define YY_IGNORE_USELESS_CAST_END \
_Pragma ("GCC diagnostic pop")
#endif
#ifndef YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_BEGIN
# define YY_IGNORE_USELESS_CAST_END
#endif
# ifndef YY_CAST
# ifdef __cplusplus
# define YY_CAST(Type, Val) static_cast<Type> (Val)
# define YY_REINTERPRET_CAST(Type, Val) reinterpret_cast<Type> (Val)
# else
# define YY_CAST(Type, Val) ((Type) (Val))
# define YY_REINTERPRET_CAST(Type, Val) ((Type) (Val))
# endif
# endif
# ifndef YY_NULLPTR
# if defined __cplusplus
# if 201103L <= __cplusplus
# define YY_NULLPTR nullptr
# else
# define YY_NULLPTR 0
# endif
# else
# define YY_NULLPTR ((void*)0)
# endif
# endif
/* Debug traces. */
#ifndef PARSER4_DEBUG
# if defined YYDEBUG
#if YYDEBUG
# define PARSER4_DEBUG 1
# else
# define PARSER4_DEBUG 0
# endif
# else /* ! defined YYDEBUG */
# define PARSER4_DEBUG 1
# endif /* ! defined YYDEBUG */
#endif /* ! defined PARSER4_DEBUG */
#line 14 "dhcp4_parser.yy"
namespace isc { namespace dhcp {
#line 203 "dhcp4_parser.h"
/// A Bison parser.
class Dhcp4Parser
{
public:
#ifndef PARSER4_STYPE
/// A buffer to store and retrieve objects.
///
/// Sort of a variant, but does not keep track of the nature
/// of the stored data, since that knowledge is available
/// via the current parser state.
class semantic_type
{
public:
/// Type of *this.
typedef semantic_type self_type;
/// Empty construction.
semantic_type () YY_NOEXCEPT
: yybuffer_ ()
, yytypeid_ (YY_NULLPTR)
{}
/// Construct and fill.
template <typename T>
semantic_type (YY_RVREF (T) t)
: yytypeid_ (&typeid (T))
{
YY_ASSERT (sizeof (T) <= size);
new (yyas_<T> ()) T (YY_MOVE (t));
}
/// Destruction, allowed only if empty.
~semantic_type () YY_NOEXCEPT
{
YY_ASSERT (!yytypeid_);
}
# if 201103L <= YY_CPLUSPLUS
/// Instantiate a \a T in here from \a t.
template <typename T, typename... U>
T&
emplace (U&&... u)
{
YY_ASSERT (!yytypeid_);
YY_ASSERT (sizeof (T) <= size);
yytypeid_ = & typeid (T);
return *new (yyas_<T> ()) T (std::forward <U>(u)...);
}
# else
2019-10-29 06:49:44 +01:00
/// Instantiate an empty \a T in here.
template <typename T>
T&
emplace ()
{
YY_ASSERT (!yytypeid_);
YY_ASSERT (sizeof (T) <= size);
yytypeid_ = & typeid (T);
return *new (yyas_<T> ()) T ();
}
2019-10-29 06:49:44 +01:00
/// Instantiate a \a T in here from \a t.
template <typename T>
T&
emplace (const T& t)
{
YY_ASSERT (!yytypeid_);
YY_ASSERT (sizeof (T) <= size);
yytypeid_ = & typeid (T);
return *new (yyas_<T> ()) T (t);
}
# endif
/// Instantiate an empty \a T in here.
/// Obsolete, use emplace.
template <typename T>
T&
build ()
{
return emplace<T> ();
}
/// Instantiate a \a T in here from \a t.
/// Obsolete, use emplace.
template <typename T>
T&
build (const T& t)
{
return emplace<T> (t);
}
/// Accessor to a built \a T.
template <typename T>
T&
as () YY_NOEXCEPT
{
YY_ASSERT (yytypeid_);
YY_ASSERT (*yytypeid_ == typeid (T));
YY_ASSERT (sizeof (T) <= size);
return *yyas_<T> ();
}
/// Const accessor to a built \a T (for %printer).
template <typename T>
const T&
as () const YY_NOEXCEPT
{
YY_ASSERT (yytypeid_);
YY_ASSERT (*yytypeid_ == typeid (T));
YY_ASSERT (sizeof (T) <= size);
return *yyas_<T> ();
}
/// Swap the content with \a that, of same type.
///
/// Both variants must be built beforehand, because swapping the actual
/// data requires reading it (with as()), and this is not possible on
/// unconstructed variants: it would require some dynamic testing, which
/// should not be the variant's responsibility.
/// Swapping between built and (possibly) non-built is done with
/// self_type::move ().
template <typename T>
void
swap (self_type& that) YY_NOEXCEPT
{
YY_ASSERT (yytypeid_);
YY_ASSERT (*yytypeid_ == *that.yytypeid_);
std::swap (as<T> (), that.as<T> ());
}
/// Move the content of \a that to this.
///
/// Destroys \a that.
template <typename T>
void
move (self_type& that)
{
# if 201103L <= YY_CPLUSPLUS
emplace<T> (std::move (that.as<T> ()));
# else
emplace<T> ();
swap<T> (that);
# endif
that.destroy<T> ();
}
# if 201103L <= YY_CPLUSPLUS
/// Move the content of \a that to this.
2019-01-10 14:47:23 +00:00
template <typename T>
void
move (self_type&& that)
2019-01-10 14:47:23 +00:00
{
emplace<T> (std::move (that.as<T> ()));
that.destroy<T> ();
}
#endif
/// Copy the content of \a that to this.
template <typename T>
void
copy (const self_type& that)
{
emplace<T> (that.as<T> ());
}
/// Destroy the stored \a T.
template <typename T>
void
destroy ()
{
as<T> ().~T ();
yytypeid_ = YY_NULLPTR;
}
private:
/// Prohibit blind copies.
self_type& operator= (const self_type&);
semantic_type (const self_type&);
/// Accessor to raw memory as \a T.
template <typename T>
T*
yyas_ () YY_NOEXCEPT
{
void *yyp = yybuffer_.yyraw;
return static_cast<T*> (yyp);
}
/// Const accessor to raw memory as \a T.
template <typename T>
const T*
yyas_ () const YY_NOEXCEPT
{
const void *yyp = yybuffer_.yyraw;
return static_cast<const T*> (yyp);
}
/// An auxiliary type to compute the largest semantic type.
union union_type
{
// value
2017-01-25 14:15:40 +00:00
// map_value
// ddns_replace_client_name_value
2017-01-16 13:02:52 +00:00
// socket_type
// outbound_interface_value
2017-01-25 14:15:40 +00:00
// db_type
// on_fail_mode
2017-07-06 11:12:16 +00:00
// hr_mode
2017-01-13 19:11:59 +00:00
// ncr_protocol_value
char dummy1[sizeof (ElementPtr)];
// "boolean"
char dummy2[sizeof (bool)];
// "floating point"
char dummy3[sizeof (double)];
// "integer"
char dummy4[sizeof (int64_t)];
// "constant string"
char dummy5[sizeof (std::string)];
};
/// The size of the largest semantic type.
enum { size = sizeof (union_type) };
/// A buffer to store semantic values.
union
{
/// Strongest alignment constraints.
long double yyalign_me;
/// A buffer large enough to store any of the semantic values.
char yyraw[size];
} yybuffer_;
/// Whether the content is built: if defined, the name of the stored type.
const std::type_info *yytypeid_;
};
#else
typedef PARSER4_STYPE semantic_type;
#endif
/// Symbol locations.
typedef location location_type;
/// Syntax errors thrown from user actions.
struct syntax_error : std::runtime_error
{
syntax_error (const location_type& l, const std::string& m)
: std::runtime_error (m)
, location (l)
{}
syntax_error (const syntax_error& s)
: std::runtime_error (s.what ())
, location (s.location)
{}
~syntax_error () YY_NOEXCEPT YY_NOTHROW;
location_type location;
};
/// Tokens.
struct token
{
enum yytokentype
{
TOKEN_END = 0,
TOKEN_COMMA = 258,
TOKEN_COLON = 259,
TOKEN_LSQUARE_BRACKET = 260,
TOKEN_RSQUARE_BRACKET = 261,
TOKEN_LCURLY_BRACKET = 262,
TOKEN_RCURLY_BRACKET = 263,
TOKEN_NULL_TYPE = 264,
TOKEN_DHCP4 = 265,
TOKEN_CONFIG_CONTROL = 266,
TOKEN_CONFIG_DATABASES = 267,
TOKEN_CONFIG_FETCH_WAIT_TIME = 268,
TOKEN_INTERFACES_CONFIG = 269,
TOKEN_INTERFACES = 270,
TOKEN_DHCP_SOCKET_TYPE = 271,
TOKEN_RAW = 272,
TOKEN_UDP = 273,
TOKEN_OUTBOUND_INTERFACE = 274,
TOKEN_SAME_AS_INBOUND = 275,
TOKEN_USE_ROUTING = 276,
TOKEN_RE_DETECT = 277,
TOKEN_SANITY_CHECKS = 278,
TOKEN_LEASE_CHECKS = 279,
TOKEN_ECHO_CLIENT_ID = 280,
TOKEN_MATCH_CLIENT_ID = 281,
TOKEN_AUTHORITATIVE = 282,
TOKEN_NEXT_SERVER = 283,
TOKEN_SERVER_HOSTNAME = 284,
TOKEN_BOOT_FILE_NAME = 285,
TOKEN_LEASE_DATABASE = 286,
TOKEN_HOSTS_DATABASE = 287,
TOKEN_HOSTS_DATABASES = 288,
TOKEN_TYPE = 289,
TOKEN_MEMFILE = 290,
TOKEN_MYSQL = 291,
TOKEN_POSTGRESQL = 292,
TOKEN_CQL = 293,
TOKEN_USER = 294,
TOKEN_PASSWORD = 295,
TOKEN_HOST = 296,
TOKEN_PORT = 297,
TOKEN_PERSIST = 298,
TOKEN_LFC_INTERVAL = 299,
TOKEN_READONLY = 300,
TOKEN_CONNECT_TIMEOUT = 301,
TOKEN_CONTACT_POINTS = 302,
TOKEN_KEYSPACE = 303,
TOKEN_CONSISTENCY = 304,
TOKEN_SERIAL_CONSISTENCY = 305,
TOKEN_MAX_RECONNECT_TRIES = 306,
TOKEN_RECONNECT_WAIT_TIME = 307,
TOKEN_ON_FAIL = 308,
TOKEN_STOP_RETRY_EXIT = 309,
TOKEN_SERVE_RETRY_EXIT = 310,
TOKEN_SERVE_RETRY_CONTINUE = 311,
TOKEN_REQUEST_TIMEOUT = 312,
TOKEN_TCP_KEEPALIVE = 313,
TOKEN_TCP_NODELAY = 314,
TOKEN_MAX_ROW_ERRORS = 315,
TOKEN_VALID_LIFETIME = 316,
TOKEN_MIN_VALID_LIFETIME = 317,
TOKEN_MAX_VALID_LIFETIME = 318,
TOKEN_RENEW_TIMER = 319,
TOKEN_REBIND_TIMER = 320,
TOKEN_CALCULATE_TEE_TIMES = 321,
TOKEN_T1_PERCENT = 322,
TOKEN_T2_PERCENT = 323,
TOKEN_CACHE_THRESHOLD = 324,
TOKEN_CACHE_MAX_AGE = 325,
TOKEN_DECLINE_PROBATION_PERIOD = 326,
TOKEN_SERVER_TAG = 327,
TOKEN_STATISTIC_DEFAULT_SAMPLE_COUNT = 328,
TOKEN_STATISTIC_DEFAULT_SAMPLE_AGE = 329,
TOKEN_DDNS_SEND_UPDATES = 330,
TOKEN_DDNS_OVERRIDE_NO_UPDATE = 331,
TOKEN_DDNS_OVERRIDE_CLIENT_UPDATE = 332,
TOKEN_DDNS_REPLACE_CLIENT_NAME = 333,
TOKEN_DDNS_GENERATED_PREFIX = 334,
TOKEN_DDNS_QUALIFYING_SUFFIX = 335,
TOKEN_DDNS_UPDATE_ON_RENEW = 336,
TOKEN_DDNS_USE_CONFLICT_RESOLUTION = 337,
TOKEN_STORE_EXTENDED_INFO = 338,
TOKEN_SUBNET4 = 339,
TOKEN_SUBNET_4O6_INTERFACE = 340,
TOKEN_SUBNET_4O6_INTERFACE_ID = 341,
TOKEN_SUBNET_4O6_SUBNET = 342,
TOKEN_OPTION_DEF = 343,
TOKEN_OPTION_DATA = 344,
TOKEN_NAME = 345,
TOKEN_DATA = 346,
TOKEN_CODE = 347,
TOKEN_SPACE = 348,
TOKEN_CSV_FORMAT = 349,
TOKEN_ALWAYS_SEND = 350,
TOKEN_RECORD_TYPES = 351,
TOKEN_ENCAPSULATE = 352,
TOKEN_ARRAY = 353,
TOKEN_SHARED_NETWORKS = 354,
TOKEN_POOLS = 355,
TOKEN_POOL = 356,
TOKEN_USER_CONTEXT = 357,
TOKEN_COMMENT = 358,
TOKEN_SUBNET = 359,
TOKEN_INTERFACE = 360,
TOKEN_ID = 361,
TOKEN_RESERVATION_MODE = 362,
TOKEN_DISABLED = 363,
TOKEN_OUT_OF_POOL = 364,
TOKEN_GLOBAL = 365,
TOKEN_ALL = 366,
TOKEN_RESERVATIONS_GLOBAL = 367,
TOKEN_RESERVATIONS_IN_SUBNET = 368,
TOKEN_RESERVATIONS_OUT_OF_POOL = 369,
TOKEN_HOST_RESERVATION_IDENTIFIERS = 370,
TOKEN_CLIENT_CLASSES = 371,
TOKEN_REQUIRE_CLIENT_CLASSES = 372,
TOKEN_TEST = 373,
TOKEN_ONLY_IF_REQUIRED = 374,
TOKEN_CLIENT_CLASS = 375,
TOKEN_RESERVATIONS = 376,
TOKEN_DUID = 377,
TOKEN_HW_ADDRESS = 378,
TOKEN_CIRCUIT_ID = 379,
TOKEN_CLIENT_ID = 380,
TOKEN_HOSTNAME = 381,
TOKEN_FLEX_ID = 382,
TOKEN_RELAY = 383,
TOKEN_IP_ADDRESS = 384,
TOKEN_IP_ADDRESSES = 385,
TOKEN_HOOKS_LIBRARIES = 386,
TOKEN_LIBRARY = 387,
TOKEN_PARAMETERS = 388,
TOKEN_EXPIRED_LEASES_PROCESSING = 389,
TOKEN_RECLAIM_TIMER_WAIT_TIME = 390,
TOKEN_FLUSH_RECLAIMED_TIMER_WAIT_TIME = 391,
TOKEN_HOLD_RECLAIMED_TIME = 392,
TOKEN_MAX_RECLAIM_LEASES = 393,
TOKEN_MAX_RECLAIM_TIME = 394,
TOKEN_UNWARNED_RECLAIM_CYCLES = 395,
TOKEN_DHCP4O6_PORT = 396,
TOKEN_DHCP_MULTI_THREADING = 397,
TOKEN_ENABLE_MULTI_THREADING = 398,
TOKEN_THREAD_POOL_SIZE = 399,
TOKEN_PACKET_QUEUE_SIZE = 400,
TOKEN_CONTROL_SOCKET = 401,
TOKEN_SOCKET_TYPE = 402,
TOKEN_SOCKET_NAME = 403,
TOKEN_DHCP_QUEUE_CONTROL = 404,
TOKEN_ENABLE_QUEUE = 405,
TOKEN_QUEUE_TYPE = 406,
TOKEN_CAPACITY = 407,
TOKEN_DHCP_DDNS = 408,
TOKEN_ENABLE_UPDATES = 409,
TOKEN_QUALIFYING_SUFFIX = 410,
TOKEN_SERVER_IP = 411,
TOKEN_SERVER_PORT = 412,
TOKEN_SENDER_IP = 413,
TOKEN_SENDER_PORT = 414,
TOKEN_MAX_QUEUE_SIZE = 415,
TOKEN_NCR_PROTOCOL = 416,
TOKEN_NCR_FORMAT = 417,
TOKEN_OVERRIDE_NO_UPDATE = 418,
TOKEN_OVERRIDE_CLIENT_UPDATE = 419,
TOKEN_REPLACE_CLIENT_NAME = 420,
TOKEN_GENERATED_PREFIX = 421,
TOKEN_TCP = 422,
TOKEN_JSON = 423,
TOKEN_WHEN_PRESENT = 424,
TOKEN_NEVER = 425,
TOKEN_ALWAYS = 426,
TOKEN_WHEN_NOT_PRESENT = 427,
TOKEN_HOSTNAME_CHAR_SET = 428,
TOKEN_HOSTNAME_CHAR_REPLACEMENT = 429,
TOKEN_IP_RESERVATIONS_UNIQUE = 430,
TOKEN_LOGGERS = 431,
TOKEN_OUTPUT_OPTIONS = 432,
TOKEN_OUTPUT = 433,
TOKEN_DEBUGLEVEL = 434,
TOKEN_SEVERITY = 435,
TOKEN_FLUSH = 436,
TOKEN_MAXSIZE = 437,
TOKEN_MAXVER = 438,
TOKEN_PATTERN = 439,
TOKEN_TOPLEVEL_JSON = 440,
TOKEN_TOPLEVEL_DHCP4 = 441,
TOKEN_SUB_DHCP4 = 442,
TOKEN_SUB_INTERFACES4 = 443,
TOKEN_SUB_SUBNET4 = 444,
TOKEN_SUB_POOL4 = 445,
TOKEN_SUB_RESERVATION = 446,
TOKEN_SUB_OPTION_DEFS = 447,
TOKEN_SUB_OPTION_DEF = 448,
TOKEN_SUB_OPTION_DATA = 449,
TOKEN_SUB_HOOKS_LIBRARY = 450,
TOKEN_SUB_DHCP_DDNS = 451,
TOKEN_SUB_CONFIG_CONTROL = 452,
TOKEN_STRING = 453,
TOKEN_INTEGER = 454,
TOKEN_FLOAT = 455,
TOKEN_BOOLEAN = 456
};
};
/// (External) token type, as returned by yylex.
typedef token::yytokentype token_type;
2020-05-19 07:21:03 +00:00
/// Symbol type: an internal symbol number.
typedef int symbol_number_type;
/// The symbol type number to denote an empty symbol.
enum { empty_symbol = -2 };
/// Internal symbol number for tokens (subsumed by symbol_number_type).
typedef unsigned char token_number_type;
/// A complete symbol.
///
/// Expects its Base type to provide access to the symbol type
/// via type_get ().
///
/// Provide access to semantic value and location.
template <typename Base>
struct basic_symbol : Base
{
/// Alias to Base.
typedef Base super_type;
/// Default constructor.
basic_symbol ()
: value ()
, location ()
{}
#if 201103L <= YY_CPLUSPLUS
/// Move constructor.
basic_symbol (basic_symbol&& that);
#endif
2019-10-29 06:49:44 +01:00
/// Copy constructor.
basic_symbol (const basic_symbol& that);
/// Constructor for valueless symbols, and symbols from each type.
#if 201103L <= YY_CPLUSPLUS
basic_symbol (typename Base::kind_type t, location_type&& l)
: Base (t)
, location (std::move (l))
{}
#else
basic_symbol (typename Base::kind_type t, const location_type& l)
: Base (t)
, location (l)
{}
#endif
#if 201103L <= YY_CPLUSPLUS
basic_symbol (typename Base::kind_type t, ElementPtr&& v, location_type&& l)
: Base (t)
, value (std::move (v))
, location (std::move (l))
{}
#else
basic_symbol (typename Base::kind_type t, const ElementPtr& v, const location_type& l)
: Base (t)
, value (v)
, location (l)
{}
#endif
#if 201103L <= YY_CPLUSPLUS
basic_symbol (typename Base::kind_type t, bool&& v, location_type&& l)
: Base (t)
, value (std::move (v))
, location (std::move (l))
{}
#else
basic_symbol (typename Base::kind_type t, const bool& v, const location_type& l)
: Base (t)
, value (v)
, location (l)
{}
#endif
#if 201103L <= YY_CPLUSPLUS
basic_symbol (typename Base::kind_type t, double&& v, location_type&& l)
: Base (t)
, value (std::move (v))
, location (std::move (l))
{}
#else
basic_symbol (typename Base::kind_type t, const double& v, const location_type& l)
: Base (t)
, value (v)
, location (l)
{}
#endif
#if 201103L <= YY_CPLUSPLUS
basic_symbol (typename Base::kind_type t, int64_t&& v, location_type&& l)
: Base (t)
, value (std::move (v))
, location (std::move (l))
{}
#else
basic_symbol (typename Base::kind_type t, const int64_t& v, const location_type& l)
: Base (t)
, value (v)
, location (l)
{}
#endif
#if 201103L <= YY_CPLUSPLUS
basic_symbol (typename Base::kind_type t, std::string&& v, location_type&& l)
: Base (t)
, value (std::move (v))
, location (std::move (l))
{}
#else
basic_symbol (typename Base::kind_type t, const std::string& v, const location_type& l)
: Base (t)
, value (v)
, location (l)
{}
#endif
/// Destroy the symbol.
~basic_symbol ()
{
clear ();
}
2019-10-29 06:49:44 +01:00
/// Destroy contents, and record that is empty.
void clear ()
{
// User destructor.
symbol_number_type yytype = this->type_get ();
basic_symbol<Base>& yysym = *this;
(void) yysym;
switch (yytype)
{
default:
break;
}
// Type destructor.
switch (yytype)
{
case 217: // value
case 221: // map_value
case 262: // ddns_replace_client_name_value
case 287: // socket_type
case 290: // outbound_interface_value
case 312: // db_type
case 341: // on_fail_mode
case 412: // hr_mode
case 567: // ncr_protocol_value
value.template destroy< ElementPtr > ();
break;
2019-10-29 06:49:44 +01:00
case 201: // "boolean"
value.template destroy< bool > ();
break;
2019-10-29 06:49:44 +01:00
case 200: // "floating point"
value.template destroy< double > ();
break;
2019-10-29 06:49:44 +01:00
case 199: // "integer"
value.template destroy< int64_t > ();
break;
2019-10-29 06:49:44 +01:00
case 198: // "constant string"
value.template destroy< std::string > ();
break;
2020-04-15 16:36:29 +03:00
default:
break;
}
2020-04-15 16:36:29 +03:00
Base::clear ();
}
/// Whether empty.
bool empty () const YY_NOEXCEPT;
/// Destructive move, \a s is emptied into this.
void move (basic_symbol& s);
/// The semantic value.
semantic_type value;
/// The location.
location_type location;
private:
#if YY_CPLUSPLUS < 201103L
/// Assignment operator.
basic_symbol& operator= (const basic_symbol& that);
#endif
};
/// Type access provider for token (enum) based symbols.
struct by_type
{
/// Default constructor.
by_type ();
#if 201103L <= YY_CPLUSPLUS
/// Move constructor.
by_type (by_type&& that);
#endif
2020-04-24 12:57:23 +00:00
/// Copy constructor.
by_type (const by_type& that);
/// The symbol type as needed by the constructor.
typedef token_type kind_type;
/// Constructor from (external) token numbers.
by_type (kind_type t);
/// Record that this symbol is empty.
void clear ();
/// Steal the symbol type from \a that.
void move (by_type& that);
/// The (internal) type number (corresponding to \a type).
/// \a empty when empty.
symbol_number_type type_get () const YY_NOEXCEPT;
/// The symbol type.
/// \a empty_symbol when empty.
/// An int, not token_number_type, to be able to store empty_symbol.
int type;
};
/// "External" symbols: returned by the scanner.
struct symbol_type : basic_symbol<by_type>
{
/// Superclass.
typedef basic_symbol<by_type> super_type;
/// Empty symbol.
symbol_type () {}
/// Constructor for valueless symbols, and symbols from each type.
#if 201103L <= YY_CPLUSPLUS
symbol_type (int tok, location_type l)
: super_type(token_type (tok), std::move (l))
{
YY_ASSERT (tok == token::TOKEN_END || tok == token::TOKEN_COMMA || tok == token::TOKEN_COLON || tok == token::TOKEN_LSQUARE_BRACKET || tok == token::TOKEN_RSQUARE_BRACKET || tok == token::TOKEN_LCURLY_BRACKET || tok == token::TOKEN_RCURLY_BRACKET || tok == token::TOKEN_NULL_TYPE || tok == token::TOKEN_DHCP4 || tok == token::TOKEN_CONFIG_CONTROL || tok == token::TOKEN_CONFIG_DATABASES || tok == token::TOKEN_CONFIG_FETCH_WAIT_TIME || tok == token::TOKEN_INTERFACES_CONFIG || tok == token::TOKEN_INTERFACES || tok == token::TOKEN_DHCP_SOCKET_TYPE || tok == token::TOKEN_RAW || tok == token::TOKEN_UDP || tok == token::TOKEN_OUTBOUND_INTERFACE || tok == token::TOKEN_SAME_AS_INBOUND || tok == token::TOKEN_USE_ROUTING || tok == token::TOKEN_RE_DETECT || tok == token::TOKEN_SANITY_CHECKS || tok == token::TOKEN_LEASE_CHECKS || tok == token::TOKEN_ECHO_CLIENT_ID || tok == token::TOKEN_MATCH_CLIENT_ID || tok == token::TOKEN_AUTHORITATIVE || tok == token::TOKEN_NEXT_SERVER || tok == token::TOKEN_SERVER_HOSTNAME || tok == token::TOKEN_BOOT_FILE_NAME || tok == token::TOKEN_LEASE_DATABASE || tok == token::TOKEN_HOSTS_DATABASE || tok == token::TOKEN_HOSTS_DATABASES || tok == token::TOKEN_TYPE || tok == token::TOKEN_MEMFILE || tok == token::TOKEN_MYSQL || tok == token::TOKEN_POSTGRESQL || tok == token::TOKEN_CQL || tok == token::TOKEN_USER || tok == token::TOKEN_PASSWORD || tok == token::TOKEN_HOST || tok == token::TOKEN_PORT || tok == token::TOKEN_PERSIST || tok == token::TOKEN_LFC_INTERVAL || tok == token::TOKEN_READONLY || tok == token::TOKEN_CONNECT_TIMEOUT || tok == token::TOKEN_CONTACT_POINTS || tok == token::TOKEN_KEYSPACE || tok == token::TOKEN_CONSISTENCY || tok == token::TOKEN_SERIAL_CONSISTENCY || tok == token::TOKEN_MAX_RECONNECT_TRIES || tok == token::TOKEN_RECONNECT_WAIT_TIME || tok == token::TOKEN_ON_FAIL || tok == token::TOKEN_STOP_RETRY_EXIT || tok == token::TOKEN_SERVE_RETRY_EXIT || tok == token::TOKEN_SERVE_RETRY_CONTINUE || tok == token::TOKEN_REQUEST_TIMEOUT || tok == token::TOKEN_TCP_KEEPALIVE || tok == token::TOKEN_TCP_NODELAY || tok == token::TOKEN_MAX_ROW_ERRORS || tok == token::TOKEN_VALID_LIFETIME || tok == token::TOKEN_MIN_VALID_LIFETIME || tok == token::TOKEN_MAX_VALID_LIFETIME || tok == token::TOKEN_RENEW_TIMER || tok == token::TOKEN_REBIND_TIMER || tok == token::TOKEN_CALCULATE_TEE_TIMES || tok == token::TOKEN_T1_PERCENT || tok == token::TOKEN_T2_PERCENT || tok == token::TOKEN_CACHE_THRESHOLD || tok == token::TOKEN_CACHE_MAX_AGE || tok == token::TOKEN_DECLINE_PROBATION_PERIOD || tok == token::TOKEN_SERVER_TAG || tok == token::TOKEN_STATISTIC_DEFAULT_SAMPLE_COUNT || tok == token::TOKEN_STATISTIC_DEFAULT_SAMPLE_AGE || tok == token::TOKEN_DDNS_SEND_UPDATES || tok == token::TOKEN_DDNS_OVERRIDE_NO_UPDATE || tok == token::TOKEN_DDNS_OVERRIDE_CLIENT_UPDATE || tok == token::TOKEN_DDNS_REPLACE_CLIENT_NAME || tok == token::TOKEN_DDNS_GENERATED_PREFIX || tok == token::TOKEN_DDNS_QUALIFYING_SUFFIX || tok == token::TOKEN_DDNS_UPDATE_ON_RENEW || tok == token::TOKEN_DDNS_USE_CONFLICT_RESOLUTION || tok == token::TOKEN_STORE_EXTENDED_INFO || tok == token::TOKEN_SUBNET4 || tok == token::TOKEN_SUBNET_4O6_INTERFACE || tok == token::TOKEN_SUBNET_4O6_INTERFACE_ID || tok == token::TOKEN_SUBNET_4O6_SUBNET || tok == token::TOKEN_OPTION_DEF || tok == token::TOKEN_OPTION_DATA || tok == token::TOKEN_NAME || tok == token::TOKEN_DATA || tok == token::TOKEN_CODE || tok == token::TOKEN_SPACE || tok == token::TOKEN_CSV_FORMAT || tok == token::TOKEN_ALWAYS_SEND || tok == token::TOKEN_RECORD_TYPES || tok == token::TOKEN_ENCAPSULATE || tok == token::TOKEN_ARRAY || tok == token::TOKEN_SHARED_NETWORKS || tok == token::TOKEN_POOLS || tok == token::TOKEN_POOL || tok == token::TOKEN_USER_CONTEXT || tok == token::TOKEN_COMMENT || tok == token::TOKEN_SUBNET || tok == token::TOKEN_INTERFACE || tok == token::TOKEN_ID || tok == token::TOKEN_RESERVATION_MODE || tok == token::TOKEN_DISABLED || tok == token::TOKEN_OUT_OF_POOL || tok == token::TOKEN_GLOBAL || tok == token::TOKEN_ALL || tok == token::TOKEN_RESERVATIONS_GLOBAL || tok == token::TOKEN_RE
}
#else
symbol_type (int tok, const location_type& l)
: super_type(token_type (tok), l)
{
YY_ASSERT (tok == token::TOKEN_END || tok == token::TOKEN_COMMA || tok == token::TOKEN_COLON || tok == token::TOKEN_LSQUARE_BRACKET || tok == token::TOKEN_RSQUARE_BRACKET || tok == token::TOKEN_LCURLY_BRACKET || tok == token::TOKEN_RCURLY_BRACKET || tok == token::TOKEN_NULL_TYPE || tok == token::TOKEN_DHCP4 || tok == token::TOKEN_CONFIG_CONTROL || tok == token::TOKEN_CONFIG_DATABASES || tok == token::TOKEN_CONFIG_FETCH_WAIT_TIME || tok == token::TOKEN_INTERFACES_CONFIG || tok == token::TOKEN_INTERFACES || tok == token::TOKEN_DHCP_SOCKET_TYPE || tok == token::TOKEN_RAW || tok == token::TOKEN_UDP || tok == token::TOKEN_OUTBOUND_INTERFACE || tok == token::TOKEN_SAME_AS_INBOUND || tok == token::TOKEN_USE_ROUTING || tok == token::TOKEN_RE_DETECT || tok == token::TOKEN_SANITY_CHECKS || tok == token::TOKEN_LEASE_CHECKS || tok == token::TOKEN_ECHO_CLIENT_ID || tok == token::TOKEN_MATCH_CLIENT_ID || tok == token::TOKEN_AUTHORITATIVE || tok == token::TOKEN_NEXT_SERVER || tok == token::TOKEN_SERVER_HOSTNAME || tok == token::TOKEN_BOOT_FILE_NAME || tok == token::TOKEN_LEASE_DATABASE || tok == token::TOKEN_HOSTS_DATABASE || tok == token::TOKEN_HOSTS_DATABASES || tok == token::TOKEN_TYPE || tok == token::TOKEN_MEMFILE || tok == token::TOKEN_MYSQL || tok == token::TOKEN_POSTGRESQL || tok == token::TOKEN_CQL || tok == token::TOKEN_USER || tok == token::TOKEN_PASSWORD || tok == token::TOKEN_HOST || tok == token::TOKEN_PORT || tok == token::TOKEN_PERSIST || tok == token::TOKEN_LFC_INTERVAL || tok == token::TOKEN_READONLY || tok == token::TOKEN_CONNECT_TIMEOUT || tok == token::TOKEN_CONTACT_POINTS || tok == token::TOKEN_KEYSPACE || tok == token::TOKEN_CONSISTENCY || tok == token::TOKEN_SERIAL_CONSISTENCY || tok == token::TOKEN_MAX_RECONNECT_TRIES || tok == token::TOKEN_RECONNECT_WAIT_TIME || tok == token::TOKEN_ON_FAIL || tok == token::TOKEN_STOP_RETRY_EXIT || tok == token::TOKEN_SERVE_RETRY_EXIT || tok == token::TOKEN_SERVE_RETRY_CONTINUE || tok == token::TOKEN_REQUEST_TIMEOUT || tok == token::TOKEN_TCP_KEEPALIVE || tok == token::TOKEN_TCP_NODELAY || tok == token::TOKEN_MAX_ROW_ERRORS || tok == token::TOKEN_VALID_LIFETIME || tok == token::TOKEN_MIN_VALID_LIFETIME || tok == token::TOKEN_MAX_VALID_LIFETIME || tok == token::TOKEN_RENEW_TIMER || tok == token::TOKEN_REBIND_TIMER || tok == token::TOKEN_CALCULATE_TEE_TIMES || tok == token::TOKEN_T1_PERCENT || tok == token::TOKEN_T2_PERCENT || tok == token::TOKEN_CACHE_THRESHOLD || tok == token::TOKEN_CACHE_MAX_AGE || tok == token::TOKEN_DECLINE_PROBATION_PERIOD || tok == token::TOKEN_SERVER_TAG || tok == token::TOKEN_STATISTIC_DEFAULT_SAMPLE_COUNT || tok == token::TOKEN_STATISTIC_DEFAULT_SAMPLE_AGE || tok == token::TOKEN_DDNS_SEND_UPDATES || tok == token::TOKEN_DDNS_OVERRIDE_NO_UPDATE || tok == token::TOKEN_DDNS_OVERRIDE_CLIENT_UPDATE || tok == token::TOKEN_DDNS_REPLACE_CLIENT_NAME || tok == token::TOKEN_DDNS_GENERATED_PREFIX || tok == token::TOKEN_DDNS_QUALIFYING_SUFFIX || tok == token::TOKEN_DDNS_UPDATE_ON_RENEW || tok == token::TOKEN_DDNS_USE_CONFLICT_RESOLUTION || tok == token::TOKEN_STORE_EXTENDED_INFO || tok == token::TOKEN_SUBNET4 || tok == token::TOKEN_SUBNET_4O6_INTERFACE || tok == token::TOKEN_SUBNET_4O6_INTERFACE_ID || tok == token::TOKEN_SUBNET_4O6_SUBNET || tok == token::TOKEN_OPTION_DEF || tok == token::TOKEN_OPTION_DATA || tok == token::TOKEN_NAME || tok == token::TOKEN_DATA || tok == token::TOKEN_CODE || tok == token::TOKEN_SPACE || tok == token::TOKEN_CSV_FORMAT || tok == token::TOKEN_ALWAYS_SEND || tok == token::TOKEN_RECORD_TYPES || tok == token::TOKEN_ENCAPSULATE || tok == token::TOKEN_ARRAY || tok == token::TOKEN_SHARED_NETWORKS || tok == token::TOKEN_POOLS || tok == token::TOKEN_POOL || tok == token::TOKEN_USER_CONTEXT || tok == token::TOKEN_COMMENT || tok == token::TOKEN_SUBNET || tok == token::TOKEN_INTERFACE || tok == token::TOKEN_ID || tok == token::TOKEN_RESERVATION_MODE || tok == token::TOKEN_DISABLED || tok == token::TOKEN_OUT_OF_POOL || tok == token::TOKEN_GLOBAL || tok == token::TOKEN_ALL || tok == token::TOKEN_RESERVATIONS_GLOBAL || tok == token::TOKEN_RE
}
#endif
#if 201103L <= YY_CPLUSPLUS
symbol_type (int tok, bool v, location_type l)
: super_type(token_type (tok), std::move (v), std::move (l))
{
YY_ASSERT (tok == token::TOKEN_BOOLEAN);
}
#else
symbol_type (int tok, const bool& v, const location_type& l)
: super_type(token_type (tok), v, l)
{
YY_ASSERT (tok == token::TOKEN_BOOLEAN);
}
#endif
#if 201103L <= YY_CPLUSPLUS
symbol_type (int tok, double v, location_type l)
: super_type(token_type (tok), std::move (v), std::move (l))
{
YY_ASSERT (tok == token::TOKEN_FLOAT);
}
#else
symbol_type (int tok, const double& v, const location_type& l)
: super_type(token_type (tok), v, l)
{
YY_ASSERT (tok == token::TOKEN_FLOAT);
}
#endif
#if 201103L <= YY_CPLUSPLUS
symbol_type (int tok, int64_t v, location_type l)
: super_type(token_type (tok), std::move (v), std::move (l))
{
YY_ASSERT (tok == token::TOKEN_INTEGER);
}
#else
symbol_type (int tok, const int64_t& v, const location_type& l)
: super_type(token_type (tok), v, l)
{
YY_ASSERT (tok == token::TOKEN_INTEGER);
}
#endif
#if 201103L <= YY_CPLUSPLUS
symbol_type (int tok, std::string v, location_type l)
: super_type(token_type (tok), std::move (v), std::move (l))
{
YY_ASSERT (tok == token::TOKEN_STRING);
}
#else
symbol_type (int tok, const std::string& v, const location_type& l)
: super_type(token_type (tok), v, l)
{
YY_ASSERT (tok == token::TOKEN_STRING);
}
#endif
};
/// Build a parser object.
Dhcp4Parser (isc::dhcp::Parser4Context& ctx_yyarg);
virtual ~Dhcp4Parser ();
/// Parse. An alias for parse ().
/// \returns 0 iff parsing succeeded.
int operator() ();
/// Parse.
/// \returns 0 iff parsing succeeded.
virtual int parse ();
#if PARSER4_DEBUG
/// The current debugging stream.
std::ostream& debug_stream () const YY_ATTRIBUTE_PURE;
/// Set the current debugging stream.
void set_debug_stream (std::ostream &);
/// Type for debugging levels.
typedef int debug_level_type;
/// The current debugging level.
debug_level_type debug_level () const YY_ATTRIBUTE_PURE;
/// Set the current debugging level.
void set_debug_level (debug_level_type l);
#endif
/// Report a syntax error.
/// \param loc where the syntax error is found.
/// \param msg a description of the syntax error.
virtual void error (const location_type& loc, const std::string& msg);
/// Report a syntax error.
void error (const syntax_error& err);
// Implementation of make_symbol for each symbol type.
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_END (location_type l)
{
return symbol_type (token::TOKEN_END, std::move (l));
}
#else
static
symbol_type
make_END (const location_type& l)
{
return symbol_type (token::TOKEN_END, l);
}
2020-04-24 12:57:23 +00:00
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_COMMA (location_type l)
{
return symbol_type (token::TOKEN_COMMA, std::move (l));
}
#else
static
symbol_type
make_COMMA (const location_type& l)
{
return symbol_type (token::TOKEN_COMMA, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_COLON (location_type l)
{
return symbol_type (token::TOKEN_COLON, std::move (l));
}
#else
static
symbol_type
make_COLON (const location_type& l)
{
return symbol_type (token::TOKEN_COLON, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_LSQUARE_BRACKET (location_type l)
{
return symbol_type (token::TOKEN_LSQUARE_BRACKET, std::move (l));
}
#else
static
symbol_type
make_LSQUARE_BRACKET (const location_type& l)
{
return symbol_type (token::TOKEN_LSQUARE_BRACKET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RSQUARE_BRACKET (location_type l)
{
return symbol_type (token::TOKEN_RSQUARE_BRACKET, std::move (l));
}
#else
static
symbol_type
make_RSQUARE_BRACKET (const location_type& l)
{
return symbol_type (token::TOKEN_RSQUARE_BRACKET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_LCURLY_BRACKET (location_type l)
{
return symbol_type (token::TOKEN_LCURLY_BRACKET, std::move (l));
}
#else
static
symbol_type
make_LCURLY_BRACKET (const location_type& l)
{
return symbol_type (token::TOKEN_LCURLY_BRACKET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RCURLY_BRACKET (location_type l)
{
return symbol_type (token::TOKEN_RCURLY_BRACKET, std::move (l));
}
#else
static
symbol_type
make_RCURLY_BRACKET (const location_type& l)
{
return symbol_type (token::TOKEN_RCURLY_BRACKET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_NULL_TYPE (location_type l)
{
return symbol_type (token::TOKEN_NULL_TYPE, std::move (l));
}
#else
static
symbol_type
make_NULL_TYPE (const location_type& l)
{
return symbol_type (token::TOKEN_NULL_TYPE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DHCP4 (location_type l)
{
return symbol_type (token::TOKEN_DHCP4, std::move (l));
}
#else
static
symbol_type
make_DHCP4 (const location_type& l)
{
return symbol_type (token::TOKEN_DHCP4, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CONFIG_CONTROL (location_type l)
{
return symbol_type (token::TOKEN_CONFIG_CONTROL, std::move (l));
}
#else
static
symbol_type
make_CONFIG_CONTROL (const location_type& l)
{
return symbol_type (token::TOKEN_CONFIG_CONTROL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CONFIG_DATABASES (location_type l)
{
return symbol_type (token::TOKEN_CONFIG_DATABASES, std::move (l));
}
#else
static
symbol_type
make_CONFIG_DATABASES (const location_type& l)
{
return symbol_type (token::TOKEN_CONFIG_DATABASES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CONFIG_FETCH_WAIT_TIME (location_type l)
{
return symbol_type (token::TOKEN_CONFIG_FETCH_WAIT_TIME, std::move (l));
}
#else
static
symbol_type
make_CONFIG_FETCH_WAIT_TIME (const location_type& l)
{
return symbol_type (token::TOKEN_CONFIG_FETCH_WAIT_TIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_INTERFACES_CONFIG (location_type l)
{
return symbol_type (token::TOKEN_INTERFACES_CONFIG, std::move (l));
}
#else
static
symbol_type
make_INTERFACES_CONFIG (const location_type& l)
{
return symbol_type (token::TOKEN_INTERFACES_CONFIG, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_INTERFACES (location_type l)
{
return symbol_type (token::TOKEN_INTERFACES, std::move (l));
}
#else
static
symbol_type
make_INTERFACES (const location_type& l)
{
return symbol_type (token::TOKEN_INTERFACES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DHCP_SOCKET_TYPE (location_type l)
{
return symbol_type (token::TOKEN_DHCP_SOCKET_TYPE, std::move (l));
}
#else
static
symbol_type
make_DHCP_SOCKET_TYPE (const location_type& l)
{
return symbol_type (token::TOKEN_DHCP_SOCKET_TYPE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RAW (location_type l)
{
return symbol_type (token::TOKEN_RAW, std::move (l));
}
#else
static
symbol_type
make_RAW (const location_type& l)
{
return symbol_type (token::TOKEN_RAW, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_UDP (location_type l)
{
return symbol_type (token::TOKEN_UDP, std::move (l));
}
#else
static
symbol_type
make_UDP (const location_type& l)
{
return symbol_type (token::TOKEN_UDP, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_OUTBOUND_INTERFACE (location_type l)
{
return symbol_type (token::TOKEN_OUTBOUND_INTERFACE, std::move (l));
}
#else
static
symbol_type
make_OUTBOUND_INTERFACE (const location_type& l)
{
return symbol_type (token::TOKEN_OUTBOUND_INTERFACE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SAME_AS_INBOUND (location_type l)
{
return symbol_type (token::TOKEN_SAME_AS_INBOUND, std::move (l));
}
#else
static
symbol_type
make_SAME_AS_INBOUND (const location_type& l)
{
return symbol_type (token::TOKEN_SAME_AS_INBOUND, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_USE_ROUTING (location_type l)
{
return symbol_type (token::TOKEN_USE_ROUTING, std::move (l));
}
#else
static
symbol_type
make_USE_ROUTING (const location_type& l)
{
return symbol_type (token::TOKEN_USE_ROUTING, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RE_DETECT (location_type l)
{
return symbol_type (token::TOKEN_RE_DETECT, std::move (l));
}
#else
static
symbol_type
make_RE_DETECT (const location_type& l)
{
return symbol_type (token::TOKEN_RE_DETECT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SANITY_CHECKS (location_type l)
{
return symbol_type (token::TOKEN_SANITY_CHECKS, std::move (l));
}
#else
static
symbol_type
make_SANITY_CHECKS (const location_type& l)
{
return symbol_type (token::TOKEN_SANITY_CHECKS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_LEASE_CHECKS (location_type l)
{
return symbol_type (token::TOKEN_LEASE_CHECKS, std::move (l));
}
#else
static
symbol_type
make_LEASE_CHECKS (const location_type& l)
{
return symbol_type (token::TOKEN_LEASE_CHECKS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ECHO_CLIENT_ID (location_type l)
{
return symbol_type (token::TOKEN_ECHO_CLIENT_ID, std::move (l));
}
#else
static
symbol_type
make_ECHO_CLIENT_ID (const location_type& l)
{
return symbol_type (token::TOKEN_ECHO_CLIENT_ID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MATCH_CLIENT_ID (location_type l)
{
return symbol_type (token::TOKEN_MATCH_CLIENT_ID, std::move (l));
}
#else
static
symbol_type
make_MATCH_CLIENT_ID (const location_type& l)
{
return symbol_type (token::TOKEN_MATCH_CLIENT_ID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_AUTHORITATIVE (location_type l)
{
return symbol_type (token::TOKEN_AUTHORITATIVE, std::move (l));
}
#else
static
symbol_type
make_AUTHORITATIVE (const location_type& l)
{
return symbol_type (token::TOKEN_AUTHORITATIVE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_NEXT_SERVER (location_type l)
{
return symbol_type (token::TOKEN_NEXT_SERVER, std::move (l));
}
#else
static
symbol_type
make_NEXT_SERVER (const location_type& l)
{
return symbol_type (token::TOKEN_NEXT_SERVER, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SERVER_HOSTNAME (location_type l)
{
return symbol_type (token::TOKEN_SERVER_HOSTNAME, std::move (l));
}
#else
static
symbol_type
make_SERVER_HOSTNAME (const location_type& l)
{
return symbol_type (token::TOKEN_SERVER_HOSTNAME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_BOOT_FILE_NAME (location_type l)
{
return symbol_type (token::TOKEN_BOOT_FILE_NAME, std::move (l));
}
#else
static
symbol_type
make_BOOT_FILE_NAME (const location_type& l)
{
return symbol_type (token::TOKEN_BOOT_FILE_NAME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_LEASE_DATABASE (location_type l)
{
return symbol_type (token::TOKEN_LEASE_DATABASE, std::move (l));
}
#else
static
symbol_type
make_LEASE_DATABASE (const location_type& l)
{
return symbol_type (token::TOKEN_LEASE_DATABASE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOSTS_DATABASE (location_type l)
{
return symbol_type (token::TOKEN_HOSTS_DATABASE, std::move (l));
}
#else
static
symbol_type
make_HOSTS_DATABASE (const location_type& l)
{
return symbol_type (token::TOKEN_HOSTS_DATABASE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOSTS_DATABASES (location_type l)
{
return symbol_type (token::TOKEN_HOSTS_DATABASES, std::move (l));
}
#else
static
symbol_type
make_HOSTS_DATABASES (const location_type& l)
{
return symbol_type (token::TOKEN_HOSTS_DATABASES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_TYPE (location_type l)
{
return symbol_type (token::TOKEN_TYPE, std::move (l));
}
#else
static
symbol_type
make_TYPE (const location_type& l)
{
return symbol_type (token::TOKEN_TYPE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MEMFILE (location_type l)
{
return symbol_type (token::TOKEN_MEMFILE, std::move (l));
}
#else
static
symbol_type
make_MEMFILE (const location_type& l)
{
return symbol_type (token::TOKEN_MEMFILE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MYSQL (location_type l)
{
return symbol_type (token::TOKEN_MYSQL, std::move (l));
}
#else
static
symbol_type
make_MYSQL (const location_type& l)
{
return symbol_type (token::TOKEN_MYSQL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_POSTGRESQL (location_type l)
{
return symbol_type (token::TOKEN_POSTGRESQL, std::move (l));
}
#else
static
symbol_type
make_POSTGRESQL (const location_type& l)
{
return symbol_type (token::TOKEN_POSTGRESQL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CQL (location_type l)
{
return symbol_type (token::TOKEN_CQL, std::move (l));
}
#else
static
symbol_type
make_CQL (const location_type& l)
{
return symbol_type (token::TOKEN_CQL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_USER (location_type l)
{
return symbol_type (token::TOKEN_USER, std::move (l));
}
#else
static
symbol_type
make_USER (const location_type& l)
{
return symbol_type (token::TOKEN_USER, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_PASSWORD (location_type l)
{
return symbol_type (token::TOKEN_PASSWORD, std::move (l));
}
#else
static
symbol_type
make_PASSWORD (const location_type& l)
{
return symbol_type (token::TOKEN_PASSWORD, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOST (location_type l)
{
return symbol_type (token::TOKEN_HOST, std::move (l));
}
#else
static
symbol_type
make_HOST (const location_type& l)
{
return symbol_type (token::TOKEN_HOST, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_PORT (location_type l)
{
return symbol_type (token::TOKEN_PORT, std::move (l));
}
#else
static
symbol_type
make_PORT (const location_type& l)
{
return symbol_type (token::TOKEN_PORT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_PERSIST (location_type l)
{
return symbol_type (token::TOKEN_PERSIST, std::move (l));
}
#else
static
symbol_type
make_PERSIST (const location_type& l)
{
return symbol_type (token::TOKEN_PERSIST, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_LFC_INTERVAL (location_type l)
{
return symbol_type (token::TOKEN_LFC_INTERVAL, std::move (l));
}
#else
static
symbol_type
make_LFC_INTERVAL (const location_type& l)
{
return symbol_type (token::TOKEN_LFC_INTERVAL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_READONLY (location_type l)
{
return symbol_type (token::TOKEN_READONLY, std::move (l));
}
#else
static
symbol_type
make_READONLY (const location_type& l)
{
return symbol_type (token::TOKEN_READONLY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CONNECT_TIMEOUT (location_type l)
{
return symbol_type (token::TOKEN_CONNECT_TIMEOUT, std::move (l));
}
#else
static
symbol_type
make_CONNECT_TIMEOUT (const location_type& l)
{
return symbol_type (token::TOKEN_CONNECT_TIMEOUT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CONTACT_POINTS (location_type l)
{
return symbol_type (token::TOKEN_CONTACT_POINTS, std::move (l));
}
#else
static
symbol_type
make_CONTACT_POINTS (const location_type& l)
{
return symbol_type (token::TOKEN_CONTACT_POINTS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_KEYSPACE (location_type l)
{
return symbol_type (token::TOKEN_KEYSPACE, std::move (l));
}
#else
static
symbol_type
make_KEYSPACE (const location_type& l)
{
return symbol_type (token::TOKEN_KEYSPACE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CONSISTENCY (location_type l)
{
return symbol_type (token::TOKEN_CONSISTENCY, std::move (l));
}
#else
static
symbol_type
make_CONSISTENCY (const location_type& l)
{
return symbol_type (token::TOKEN_CONSISTENCY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SERIAL_CONSISTENCY (location_type l)
{
return symbol_type (token::TOKEN_SERIAL_CONSISTENCY, std::move (l));
}
#else
static
symbol_type
make_SERIAL_CONSISTENCY (const location_type& l)
{
return symbol_type (token::TOKEN_SERIAL_CONSISTENCY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAX_RECONNECT_TRIES (location_type l)
{
return symbol_type (token::TOKEN_MAX_RECONNECT_TRIES, std::move (l));
}
#else
static
symbol_type
make_MAX_RECONNECT_TRIES (const location_type& l)
{
return symbol_type (token::TOKEN_MAX_RECONNECT_TRIES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RECONNECT_WAIT_TIME (location_type l)
{
return symbol_type (token::TOKEN_RECONNECT_WAIT_TIME, std::move (l));
}
#else
static
symbol_type
make_RECONNECT_WAIT_TIME (const location_type& l)
{
return symbol_type (token::TOKEN_RECONNECT_WAIT_TIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ON_FAIL (location_type l)
{
return symbol_type (token::TOKEN_ON_FAIL, std::move (l));
}
#else
static
symbol_type
make_ON_FAIL (const location_type& l)
{
return symbol_type (token::TOKEN_ON_FAIL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_STOP_RETRY_EXIT (location_type l)
{
return symbol_type (token::TOKEN_STOP_RETRY_EXIT, std::move (l));
}
#else
static
symbol_type
make_STOP_RETRY_EXIT (const location_type& l)
{
return symbol_type (token::TOKEN_STOP_RETRY_EXIT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SERVE_RETRY_EXIT (location_type l)
{
return symbol_type (token::TOKEN_SERVE_RETRY_EXIT, std::move (l));
}
#else
static
symbol_type
make_SERVE_RETRY_EXIT (const location_type& l)
{
return symbol_type (token::TOKEN_SERVE_RETRY_EXIT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SERVE_RETRY_CONTINUE (location_type l)
{
return symbol_type (token::TOKEN_SERVE_RETRY_CONTINUE, std::move (l));
}
#else
static
symbol_type
make_SERVE_RETRY_CONTINUE (const location_type& l)
{
return symbol_type (token::TOKEN_SERVE_RETRY_CONTINUE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_REQUEST_TIMEOUT (location_type l)
{
return symbol_type (token::TOKEN_REQUEST_TIMEOUT, std::move (l));
}
#else
static
symbol_type
make_REQUEST_TIMEOUT (const location_type& l)
{
return symbol_type (token::TOKEN_REQUEST_TIMEOUT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_TCP_KEEPALIVE (location_type l)
{
return symbol_type (token::TOKEN_TCP_KEEPALIVE, std::move (l));
}
#else
static
symbol_type
make_TCP_KEEPALIVE (const location_type& l)
{
return symbol_type (token::TOKEN_TCP_KEEPALIVE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_TCP_NODELAY (location_type l)
{
return symbol_type (token::TOKEN_TCP_NODELAY, std::move (l));
}
#else
static
symbol_type
make_TCP_NODELAY (const location_type& l)
{
return symbol_type (token::TOKEN_TCP_NODELAY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAX_ROW_ERRORS (location_type l)
{
return symbol_type (token::TOKEN_MAX_ROW_ERRORS, std::move (l));
}
#else
static
symbol_type
make_MAX_ROW_ERRORS (const location_type& l)
{
return symbol_type (token::TOKEN_MAX_ROW_ERRORS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_VALID_LIFETIME (location_type l)
{
return symbol_type (token::TOKEN_VALID_LIFETIME, std::move (l));
}
#else
static
symbol_type
make_VALID_LIFETIME (const location_type& l)
{
return symbol_type (token::TOKEN_VALID_LIFETIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MIN_VALID_LIFETIME (location_type l)
{
return symbol_type (token::TOKEN_MIN_VALID_LIFETIME, std::move (l));
}
#else
static
symbol_type
make_MIN_VALID_LIFETIME (const location_type& l)
{
return symbol_type (token::TOKEN_MIN_VALID_LIFETIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAX_VALID_LIFETIME (location_type l)
{
return symbol_type (token::TOKEN_MAX_VALID_LIFETIME, std::move (l));
}
#else
static
symbol_type
make_MAX_VALID_LIFETIME (const location_type& l)
{
return symbol_type (token::TOKEN_MAX_VALID_LIFETIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RENEW_TIMER (location_type l)
{
return symbol_type (token::TOKEN_RENEW_TIMER, std::move (l));
}
#else
static
symbol_type
make_RENEW_TIMER (const location_type& l)
{
return symbol_type (token::TOKEN_RENEW_TIMER, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_REBIND_TIMER (location_type l)
{
return symbol_type (token::TOKEN_REBIND_TIMER, std::move (l));
}
#else
static
symbol_type
make_REBIND_TIMER (const location_type& l)
{
return symbol_type (token::TOKEN_REBIND_TIMER, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CALCULATE_TEE_TIMES (location_type l)
{
return symbol_type (token::TOKEN_CALCULATE_TEE_TIMES, std::move (l));
}
#else
static
symbol_type
make_CALCULATE_TEE_TIMES (const location_type& l)
{
return symbol_type (token::TOKEN_CALCULATE_TEE_TIMES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_T1_PERCENT (location_type l)
{
return symbol_type (token::TOKEN_T1_PERCENT, std::move (l));
}
#else
static
symbol_type
make_T1_PERCENT (const location_type& l)
{
return symbol_type (token::TOKEN_T1_PERCENT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_T2_PERCENT (location_type l)
{
return symbol_type (token::TOKEN_T2_PERCENT, std::move (l));
}
#else
static
symbol_type
make_T2_PERCENT (const location_type& l)
{
return symbol_type (token::TOKEN_T2_PERCENT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CACHE_THRESHOLD (location_type l)
{
return symbol_type (token::TOKEN_CACHE_THRESHOLD, std::move (l));
}
#else
static
symbol_type
make_CACHE_THRESHOLD (const location_type& l)
{
return symbol_type (token::TOKEN_CACHE_THRESHOLD, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CACHE_MAX_AGE (location_type l)
{
return symbol_type (token::TOKEN_CACHE_MAX_AGE, std::move (l));
}
#else
static
symbol_type
make_CACHE_MAX_AGE (const location_type& l)
{
return symbol_type (token::TOKEN_CACHE_MAX_AGE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DECLINE_PROBATION_PERIOD (location_type l)
{
return symbol_type (token::TOKEN_DECLINE_PROBATION_PERIOD, std::move (l));
}
#else
static
symbol_type
make_DECLINE_PROBATION_PERIOD (const location_type& l)
{
return symbol_type (token::TOKEN_DECLINE_PROBATION_PERIOD, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SERVER_TAG (location_type l)
{
return symbol_type (token::TOKEN_SERVER_TAG, std::move (l));
}
#else
static
symbol_type
make_SERVER_TAG (const location_type& l)
{
return symbol_type (token::TOKEN_SERVER_TAG, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_STATISTIC_DEFAULT_SAMPLE_COUNT (location_type l)
{
return symbol_type (token::TOKEN_STATISTIC_DEFAULT_SAMPLE_COUNT, std::move (l));
}
#else
static
symbol_type
make_STATISTIC_DEFAULT_SAMPLE_COUNT (const location_type& l)
{
return symbol_type (token::TOKEN_STATISTIC_DEFAULT_SAMPLE_COUNT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_STATISTIC_DEFAULT_SAMPLE_AGE (location_type l)
{
return symbol_type (token::TOKEN_STATISTIC_DEFAULT_SAMPLE_AGE, std::move (l));
}
#else
static
symbol_type
make_STATISTIC_DEFAULT_SAMPLE_AGE (const location_type& l)
{
return symbol_type (token::TOKEN_STATISTIC_DEFAULT_SAMPLE_AGE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_SEND_UPDATES (location_type l)
{
return symbol_type (token::TOKEN_DDNS_SEND_UPDATES, std::move (l));
}
#else
static
symbol_type
make_DDNS_SEND_UPDATES (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_SEND_UPDATES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_OVERRIDE_NO_UPDATE (location_type l)
{
return symbol_type (token::TOKEN_DDNS_OVERRIDE_NO_UPDATE, std::move (l));
}
#else
static
symbol_type
make_DDNS_OVERRIDE_NO_UPDATE (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_OVERRIDE_NO_UPDATE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_OVERRIDE_CLIENT_UPDATE (location_type l)
{
return symbol_type (token::TOKEN_DDNS_OVERRIDE_CLIENT_UPDATE, std::move (l));
}
#else
static
symbol_type
make_DDNS_OVERRIDE_CLIENT_UPDATE (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_OVERRIDE_CLIENT_UPDATE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_REPLACE_CLIENT_NAME (location_type l)
{
return symbol_type (token::TOKEN_DDNS_REPLACE_CLIENT_NAME, std::move (l));
}
#else
static
symbol_type
make_DDNS_REPLACE_CLIENT_NAME (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_REPLACE_CLIENT_NAME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_GENERATED_PREFIX (location_type l)
{
return symbol_type (token::TOKEN_DDNS_GENERATED_PREFIX, std::move (l));
}
#else
static
symbol_type
make_DDNS_GENERATED_PREFIX (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_GENERATED_PREFIX, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_QUALIFYING_SUFFIX (location_type l)
{
return symbol_type (token::TOKEN_DDNS_QUALIFYING_SUFFIX, std::move (l));
}
#else
static
symbol_type
make_DDNS_QUALIFYING_SUFFIX (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_QUALIFYING_SUFFIX, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_UPDATE_ON_RENEW (location_type l)
{
return symbol_type (token::TOKEN_DDNS_UPDATE_ON_RENEW, std::move (l));
}
#else
static
symbol_type
make_DDNS_UPDATE_ON_RENEW (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_UPDATE_ON_RENEW, l);
}
#endif
2020-10-29 10:51:24 +02:00
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DDNS_USE_CONFLICT_RESOLUTION (location_type l)
{
return symbol_type (token::TOKEN_DDNS_USE_CONFLICT_RESOLUTION, std::move (l));
}
#else
static
symbol_type
make_DDNS_USE_CONFLICT_RESOLUTION (const location_type& l)
{
return symbol_type (token::TOKEN_DDNS_USE_CONFLICT_RESOLUTION, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_STORE_EXTENDED_INFO (location_type l)
{
return symbol_type (token::TOKEN_STORE_EXTENDED_INFO, std::move (l));
}
#else
static
symbol_type
make_STORE_EXTENDED_INFO (const location_type& l)
{
return symbol_type (token::TOKEN_STORE_EXTENDED_INFO, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUBNET4 (location_type l)
{
return symbol_type (token::TOKEN_SUBNET4, std::move (l));
}
#else
static
symbol_type
make_SUBNET4 (const location_type& l)
{
return symbol_type (token::TOKEN_SUBNET4, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUBNET_4O6_INTERFACE (location_type l)
{
return symbol_type (token::TOKEN_SUBNET_4O6_INTERFACE, std::move (l));
}
#else
static
symbol_type
make_SUBNET_4O6_INTERFACE (const location_type& l)
{
return symbol_type (token::TOKEN_SUBNET_4O6_INTERFACE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUBNET_4O6_INTERFACE_ID (location_type l)
{
return symbol_type (token::TOKEN_SUBNET_4O6_INTERFACE_ID, std::move (l));
}
#else
static
symbol_type
make_SUBNET_4O6_INTERFACE_ID (const location_type& l)
{
return symbol_type (token::TOKEN_SUBNET_4O6_INTERFACE_ID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUBNET_4O6_SUBNET (location_type l)
{
return symbol_type (token::TOKEN_SUBNET_4O6_SUBNET, std::move (l));
}
#else
static
symbol_type
make_SUBNET_4O6_SUBNET (const location_type& l)
{
return symbol_type (token::TOKEN_SUBNET_4O6_SUBNET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_OPTION_DEF (location_type l)
{
return symbol_type (token::TOKEN_OPTION_DEF, std::move (l));
}
#else
static
symbol_type
make_OPTION_DEF (const location_type& l)
{
return symbol_type (token::TOKEN_OPTION_DEF, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_OPTION_DATA (location_type l)
{
return symbol_type (token::TOKEN_OPTION_DATA, std::move (l));
}
#else
static
symbol_type
make_OPTION_DATA (const location_type& l)
{
return symbol_type (token::TOKEN_OPTION_DATA, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_NAME (location_type l)
{
return symbol_type (token::TOKEN_NAME, std::move (l));
}
#else
static
symbol_type
make_NAME (const location_type& l)
{
return symbol_type (token::TOKEN_NAME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DATA (location_type l)
{
return symbol_type (token::TOKEN_DATA, std::move (l));
}
#else
static
symbol_type
make_DATA (const location_type& l)
{
return symbol_type (token::TOKEN_DATA, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CODE (location_type l)
{
return symbol_type (token::TOKEN_CODE, std::move (l));
}
#else
static
symbol_type
make_CODE (const location_type& l)
{
return symbol_type (token::TOKEN_CODE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SPACE (location_type l)
{
return symbol_type (token::TOKEN_SPACE, std::move (l));
}
#else
static
symbol_type
make_SPACE (const location_type& l)
{
return symbol_type (token::TOKEN_SPACE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CSV_FORMAT (location_type l)
{
return symbol_type (token::TOKEN_CSV_FORMAT, std::move (l));
}
#else
static
symbol_type
make_CSV_FORMAT (const location_type& l)
{
return symbol_type (token::TOKEN_CSV_FORMAT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ALWAYS_SEND (location_type l)
{
return symbol_type (token::TOKEN_ALWAYS_SEND, std::move (l));
}
#else
static
symbol_type
make_ALWAYS_SEND (const location_type& l)
{
return symbol_type (token::TOKEN_ALWAYS_SEND, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RECORD_TYPES (location_type l)
{
return symbol_type (token::TOKEN_RECORD_TYPES, std::move (l));
}
#else
static
symbol_type
make_RECORD_TYPES (const location_type& l)
{
return symbol_type (token::TOKEN_RECORD_TYPES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ENCAPSULATE (location_type l)
{
return symbol_type (token::TOKEN_ENCAPSULATE, std::move (l));
}
#else
static
symbol_type
make_ENCAPSULATE (const location_type& l)
{
return symbol_type (token::TOKEN_ENCAPSULATE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ARRAY (location_type l)
{
return symbol_type (token::TOKEN_ARRAY, std::move (l));
}
#else
static
symbol_type
make_ARRAY (const location_type& l)
{
return symbol_type (token::TOKEN_ARRAY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SHARED_NETWORKS (location_type l)
{
return symbol_type (token::TOKEN_SHARED_NETWORKS, std::move (l));
}
#else
static
symbol_type
make_SHARED_NETWORKS (const location_type& l)
{
return symbol_type (token::TOKEN_SHARED_NETWORKS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_POOLS (location_type l)
{
return symbol_type (token::TOKEN_POOLS, std::move (l));
}
#else
static
symbol_type
make_POOLS (const location_type& l)
{
return symbol_type (token::TOKEN_POOLS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_POOL (location_type l)
{
return symbol_type (token::TOKEN_POOL, std::move (l));
}
#else
static
symbol_type
make_POOL (const location_type& l)
{
return symbol_type (token::TOKEN_POOL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_USER_CONTEXT (location_type l)
{
return symbol_type (token::TOKEN_USER_CONTEXT, std::move (l));
}
#else
static
symbol_type
make_USER_CONTEXT (const location_type& l)
{
return symbol_type (token::TOKEN_USER_CONTEXT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_COMMENT (location_type l)
{
return symbol_type (token::TOKEN_COMMENT, std::move (l));
}
#else
static
symbol_type
make_COMMENT (const location_type& l)
{
return symbol_type (token::TOKEN_COMMENT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUBNET (location_type l)
{
return symbol_type (token::TOKEN_SUBNET, std::move (l));
}
#else
static
symbol_type
make_SUBNET (const location_type& l)
{
return symbol_type (token::TOKEN_SUBNET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_INTERFACE (location_type l)
{
return symbol_type (token::TOKEN_INTERFACE, std::move (l));
}
#else
static
symbol_type
make_INTERFACE (const location_type& l)
{
return symbol_type (token::TOKEN_INTERFACE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ID (location_type l)
{
return symbol_type (token::TOKEN_ID, std::move (l));
}
#else
static
symbol_type
make_ID (const location_type& l)
{
return symbol_type (token::TOKEN_ID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RESERVATION_MODE (location_type l)
{
return symbol_type (token::TOKEN_RESERVATION_MODE, std::move (l));
}
#else
static
symbol_type
make_RESERVATION_MODE (const location_type& l)
{
return symbol_type (token::TOKEN_RESERVATION_MODE, l);
}
#endif
2020-10-15 17:09:14 +00:00
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
2020-11-12 00:07:45 +02:00
make_DISABLED (location_type l)
2020-10-15 17:09:14 +00:00
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_DISABLED, std::move (l));
2020-10-15 17:09:14 +00:00
}
#else
static
symbol_type
2020-11-12 00:07:45 +02:00
make_DISABLED (const location_type& l)
2020-10-15 17:09:14 +00:00
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_DISABLED, l);
2020-10-15 17:09:14 +00:00
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
2020-11-12 00:07:45 +02:00
make_OUT_OF_POOL (location_type l)
2020-10-15 17:09:14 +00:00
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_OUT_OF_POOL, std::move (l));
2020-10-15 17:09:14 +00:00
}
#else
static
symbol_type
2020-11-12 00:07:45 +02:00
make_OUT_OF_POOL (const location_type& l)
2020-10-15 17:09:14 +00:00
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_OUT_OF_POOL, l);
2020-10-15 17:09:14 +00:00
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
2020-11-12 00:07:45 +02:00
make_GLOBAL (location_type l)
2020-10-15 17:09:14 +00:00
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_GLOBAL, std::move (l));
2020-10-15 17:09:14 +00:00
}
#else
static
symbol_type
2020-11-12 00:07:45 +02:00
make_GLOBAL (const location_type& l)
2020-10-15 17:09:14 +00:00
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_GLOBAL, l);
2020-10-15 17:09:14 +00:00
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
2020-11-12 00:07:45 +02:00
make_ALL (location_type l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_ALL, std::move (l));
}
#else
static
symbol_type
2020-11-12 00:07:45 +02:00
make_ALL (const location_type& l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_ALL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
2020-11-12 00:07:45 +02:00
make_RESERVATIONS_GLOBAL (location_type l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_RESERVATIONS_GLOBAL, std::move (l));
}
#else
static
symbol_type
2020-11-12 00:07:45 +02:00
make_RESERVATIONS_GLOBAL (const location_type& l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_RESERVATIONS_GLOBAL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
2020-11-12 00:07:45 +02:00
make_RESERVATIONS_IN_SUBNET (location_type l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_RESERVATIONS_IN_SUBNET, std::move (l));
}
#else
static
symbol_type
2020-11-12 00:07:45 +02:00
make_RESERVATIONS_IN_SUBNET (const location_type& l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_RESERVATIONS_IN_SUBNET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
2020-11-12 00:07:45 +02:00
make_RESERVATIONS_OUT_OF_POOL (location_type l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_RESERVATIONS_OUT_OF_POOL, std::move (l));
}
#else
static
symbol_type
2020-11-12 00:07:45 +02:00
make_RESERVATIONS_OUT_OF_POOL (const location_type& l)
{
2020-11-12 00:07:45 +02:00
return symbol_type (token::TOKEN_RESERVATIONS_OUT_OF_POOL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOST_RESERVATION_IDENTIFIERS (location_type l)
{
return symbol_type (token::TOKEN_HOST_RESERVATION_IDENTIFIERS, std::move (l));
}
#else
static
symbol_type
make_HOST_RESERVATION_IDENTIFIERS (const location_type& l)
{
return symbol_type (token::TOKEN_HOST_RESERVATION_IDENTIFIERS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CLIENT_CLASSES (location_type l)
{
return symbol_type (token::TOKEN_CLIENT_CLASSES, std::move (l));
}
#else
static
symbol_type
make_CLIENT_CLASSES (const location_type& l)
{
return symbol_type (token::TOKEN_CLIENT_CLASSES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_REQUIRE_CLIENT_CLASSES (location_type l)
{
return symbol_type (token::TOKEN_REQUIRE_CLIENT_CLASSES, std::move (l));
}
#else
static
symbol_type
make_REQUIRE_CLIENT_CLASSES (const location_type& l)
{
return symbol_type (token::TOKEN_REQUIRE_CLIENT_CLASSES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_TEST (location_type l)
{
return symbol_type (token::TOKEN_TEST, std::move (l));
}
#else
static
symbol_type
make_TEST (const location_type& l)
{
return symbol_type (token::TOKEN_TEST, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ONLY_IF_REQUIRED (location_type l)
{
return symbol_type (token::TOKEN_ONLY_IF_REQUIRED, std::move (l));
}
#else
static
symbol_type
make_ONLY_IF_REQUIRED (const location_type& l)
{
return symbol_type (token::TOKEN_ONLY_IF_REQUIRED, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CLIENT_CLASS (location_type l)
{
return symbol_type (token::TOKEN_CLIENT_CLASS, std::move (l));
}
#else
static
symbol_type
make_CLIENT_CLASS (const location_type& l)
{
return symbol_type (token::TOKEN_CLIENT_CLASS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RESERVATIONS (location_type l)
{
return symbol_type (token::TOKEN_RESERVATIONS, std::move (l));
}
#else
static
symbol_type
make_RESERVATIONS (const location_type& l)
{
return symbol_type (token::TOKEN_RESERVATIONS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DUID (location_type l)
{
return symbol_type (token::TOKEN_DUID, std::move (l));
}
#else
static
symbol_type
make_DUID (const location_type& l)
{
return symbol_type (token::TOKEN_DUID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HW_ADDRESS (location_type l)
{
return symbol_type (token::TOKEN_HW_ADDRESS, std::move (l));
}
#else
static
symbol_type
make_HW_ADDRESS (const location_type& l)
{
return symbol_type (token::TOKEN_HW_ADDRESS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CIRCUIT_ID (location_type l)
{
return symbol_type (token::TOKEN_CIRCUIT_ID, std::move (l));
}
#else
static
symbol_type
make_CIRCUIT_ID (const location_type& l)
{
return symbol_type (token::TOKEN_CIRCUIT_ID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CLIENT_ID (location_type l)
{
return symbol_type (token::TOKEN_CLIENT_ID, std::move (l));
}
#else
static
symbol_type
make_CLIENT_ID (const location_type& l)
{
return symbol_type (token::TOKEN_CLIENT_ID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOSTNAME (location_type l)
{
return symbol_type (token::TOKEN_HOSTNAME, std::move (l));
}
#else
static
symbol_type
make_HOSTNAME (const location_type& l)
{
return symbol_type (token::TOKEN_HOSTNAME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_FLEX_ID (location_type l)
{
return symbol_type (token::TOKEN_FLEX_ID, std::move (l));
}
#else
static
symbol_type
make_FLEX_ID (const location_type& l)
{
return symbol_type (token::TOKEN_FLEX_ID, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RELAY (location_type l)
{
return symbol_type (token::TOKEN_RELAY, std::move (l));
}
#else
static
symbol_type
make_RELAY (const location_type& l)
{
return symbol_type (token::TOKEN_RELAY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_IP_ADDRESS (location_type l)
{
return symbol_type (token::TOKEN_IP_ADDRESS, std::move (l));
}
#else
static
symbol_type
make_IP_ADDRESS (const location_type& l)
{
return symbol_type (token::TOKEN_IP_ADDRESS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_IP_ADDRESSES (location_type l)
{
return symbol_type (token::TOKEN_IP_ADDRESSES, std::move (l));
}
#else
static
symbol_type
make_IP_ADDRESSES (const location_type& l)
{
return symbol_type (token::TOKEN_IP_ADDRESSES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOOKS_LIBRARIES (location_type l)
{
return symbol_type (token::TOKEN_HOOKS_LIBRARIES, std::move (l));
}
#else
static
symbol_type
make_HOOKS_LIBRARIES (const location_type& l)
{
return symbol_type (token::TOKEN_HOOKS_LIBRARIES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_LIBRARY (location_type l)
{
return symbol_type (token::TOKEN_LIBRARY, std::move (l));
}
#else
static
symbol_type
make_LIBRARY (const location_type& l)
{
return symbol_type (token::TOKEN_LIBRARY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_PARAMETERS (location_type l)
{
return symbol_type (token::TOKEN_PARAMETERS, std::move (l));
}
#else
static
symbol_type
make_PARAMETERS (const location_type& l)
{
return symbol_type (token::TOKEN_PARAMETERS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_EXPIRED_LEASES_PROCESSING (location_type l)
{
return symbol_type (token::TOKEN_EXPIRED_LEASES_PROCESSING, std::move (l));
}
#else
static
symbol_type
make_EXPIRED_LEASES_PROCESSING (const location_type& l)
{
return symbol_type (token::TOKEN_EXPIRED_LEASES_PROCESSING, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_RECLAIM_TIMER_WAIT_TIME (location_type l)
{
return symbol_type (token::TOKEN_RECLAIM_TIMER_WAIT_TIME, std::move (l));
}
#else
static
symbol_type
make_RECLAIM_TIMER_WAIT_TIME (const location_type& l)
{
return symbol_type (token::TOKEN_RECLAIM_TIMER_WAIT_TIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_FLUSH_RECLAIMED_TIMER_WAIT_TIME (location_type l)
{
return symbol_type (token::TOKEN_FLUSH_RECLAIMED_TIMER_WAIT_TIME, std::move (l));
}
#else
static
symbol_type
make_FLUSH_RECLAIMED_TIMER_WAIT_TIME (const location_type& l)
{
return symbol_type (token::TOKEN_FLUSH_RECLAIMED_TIMER_WAIT_TIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOLD_RECLAIMED_TIME (location_type l)
{
return symbol_type (token::TOKEN_HOLD_RECLAIMED_TIME, std::move (l));
}
#else
static
symbol_type
make_HOLD_RECLAIMED_TIME (const location_type& l)
{
return symbol_type (token::TOKEN_HOLD_RECLAIMED_TIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAX_RECLAIM_LEASES (location_type l)
{
return symbol_type (token::TOKEN_MAX_RECLAIM_LEASES, std::move (l));
}
#else
static
symbol_type
make_MAX_RECLAIM_LEASES (const location_type& l)
{
return symbol_type (token::TOKEN_MAX_RECLAIM_LEASES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAX_RECLAIM_TIME (location_type l)
{
return symbol_type (token::TOKEN_MAX_RECLAIM_TIME, std::move (l));
}
#else
static
symbol_type
make_MAX_RECLAIM_TIME (const location_type& l)
{
return symbol_type (token::TOKEN_MAX_RECLAIM_TIME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_UNWARNED_RECLAIM_CYCLES (location_type l)
{
return symbol_type (token::TOKEN_UNWARNED_RECLAIM_CYCLES, std::move (l));
}
#else
static
symbol_type
make_UNWARNED_RECLAIM_CYCLES (const location_type& l)
{
return symbol_type (token::TOKEN_UNWARNED_RECLAIM_CYCLES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DHCP4O6_PORT (location_type l)
{
return symbol_type (token::TOKEN_DHCP4O6_PORT, std::move (l));
}
#else
static
symbol_type
make_DHCP4O6_PORT (const location_type& l)
{
return symbol_type (token::TOKEN_DHCP4O6_PORT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DHCP_MULTI_THREADING (location_type l)
{
return symbol_type (token::TOKEN_DHCP_MULTI_THREADING, std::move (l));
}
#else
static
symbol_type
make_DHCP_MULTI_THREADING (const location_type& l)
{
return symbol_type (token::TOKEN_DHCP_MULTI_THREADING, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ENABLE_MULTI_THREADING (location_type l)
{
return symbol_type (token::TOKEN_ENABLE_MULTI_THREADING, std::move (l));
}
#else
static
symbol_type
make_ENABLE_MULTI_THREADING (const location_type& l)
{
return symbol_type (token::TOKEN_ENABLE_MULTI_THREADING, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_THREAD_POOL_SIZE (location_type l)
{
return symbol_type (token::TOKEN_THREAD_POOL_SIZE, std::move (l));
}
#else
static
symbol_type
make_THREAD_POOL_SIZE (const location_type& l)
{
return symbol_type (token::TOKEN_THREAD_POOL_SIZE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_PACKET_QUEUE_SIZE (location_type l)
{
return symbol_type (token::TOKEN_PACKET_QUEUE_SIZE, std::move (l));
}
#else
static
symbol_type
make_PACKET_QUEUE_SIZE (const location_type& l)
{
return symbol_type (token::TOKEN_PACKET_QUEUE_SIZE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CONTROL_SOCKET (location_type l)
{
return symbol_type (token::TOKEN_CONTROL_SOCKET, std::move (l));
}
#else
static
symbol_type
make_CONTROL_SOCKET (const location_type& l)
{
return symbol_type (token::TOKEN_CONTROL_SOCKET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SOCKET_TYPE (location_type l)
{
return symbol_type (token::TOKEN_SOCKET_TYPE, std::move (l));
}
#else
static
symbol_type
make_SOCKET_TYPE (const location_type& l)
{
return symbol_type (token::TOKEN_SOCKET_TYPE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SOCKET_NAME (location_type l)
{
return symbol_type (token::TOKEN_SOCKET_NAME, std::move (l));
}
#else
static
symbol_type
make_SOCKET_NAME (const location_type& l)
{
return symbol_type (token::TOKEN_SOCKET_NAME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DHCP_QUEUE_CONTROL (location_type l)
{
return symbol_type (token::TOKEN_DHCP_QUEUE_CONTROL, std::move (l));
}
#else
static
symbol_type
make_DHCP_QUEUE_CONTROL (const location_type& l)
{
return symbol_type (token::TOKEN_DHCP_QUEUE_CONTROL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ENABLE_QUEUE (location_type l)
{
return symbol_type (token::TOKEN_ENABLE_QUEUE, std::move (l));
}
#else
static
symbol_type
make_ENABLE_QUEUE (const location_type& l)
{
return symbol_type (token::TOKEN_ENABLE_QUEUE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_QUEUE_TYPE (location_type l)
{
return symbol_type (token::TOKEN_QUEUE_TYPE, std::move (l));
}
#else
static
symbol_type
make_QUEUE_TYPE (const location_type& l)
{
return symbol_type (token::TOKEN_QUEUE_TYPE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_CAPACITY (location_type l)
{
return symbol_type (token::TOKEN_CAPACITY, std::move (l));
}
#else
static
symbol_type
make_CAPACITY (const location_type& l)
{
return symbol_type (token::TOKEN_CAPACITY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DHCP_DDNS (location_type l)
{
return symbol_type (token::TOKEN_DHCP_DDNS, std::move (l));
}
#else
static
symbol_type
make_DHCP_DDNS (const location_type& l)
{
return symbol_type (token::TOKEN_DHCP_DDNS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ENABLE_UPDATES (location_type l)
{
return symbol_type (token::TOKEN_ENABLE_UPDATES, std::move (l));
}
#else
static
symbol_type
make_ENABLE_UPDATES (const location_type& l)
{
return symbol_type (token::TOKEN_ENABLE_UPDATES, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_QUALIFYING_SUFFIX (location_type l)
{
return symbol_type (token::TOKEN_QUALIFYING_SUFFIX, std::move (l));
}
#else
static
symbol_type
make_QUALIFYING_SUFFIX (const location_type& l)
{
return symbol_type (token::TOKEN_QUALIFYING_SUFFIX, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SERVER_IP (location_type l)
{
return symbol_type (token::TOKEN_SERVER_IP, std::move (l));
}
#else
static
symbol_type
make_SERVER_IP (const location_type& l)
{
return symbol_type (token::TOKEN_SERVER_IP, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SERVER_PORT (location_type l)
{
return symbol_type (token::TOKEN_SERVER_PORT, std::move (l));
}
#else
static
symbol_type
make_SERVER_PORT (const location_type& l)
{
return symbol_type (token::TOKEN_SERVER_PORT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SENDER_IP (location_type l)
{
return symbol_type (token::TOKEN_SENDER_IP, std::move (l));
}
#else
static
symbol_type
make_SENDER_IP (const location_type& l)
{
return symbol_type (token::TOKEN_SENDER_IP, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SENDER_PORT (location_type l)
{
return symbol_type (token::TOKEN_SENDER_PORT, std::move (l));
}
#else
static
symbol_type
make_SENDER_PORT (const location_type& l)
{
return symbol_type (token::TOKEN_SENDER_PORT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAX_QUEUE_SIZE (location_type l)
{
return symbol_type (token::TOKEN_MAX_QUEUE_SIZE, std::move (l));
}
#else
static
symbol_type
make_MAX_QUEUE_SIZE (const location_type& l)
{
return symbol_type (token::TOKEN_MAX_QUEUE_SIZE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_NCR_PROTOCOL (location_type l)
{
return symbol_type (token::TOKEN_NCR_PROTOCOL, std::move (l));
}
#else
static
symbol_type
make_NCR_PROTOCOL (const location_type& l)
{
return symbol_type (token::TOKEN_NCR_PROTOCOL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_NCR_FORMAT (location_type l)
{
return symbol_type (token::TOKEN_NCR_FORMAT, std::move (l));
}
#else
static
symbol_type
make_NCR_FORMAT (const location_type& l)
{
return symbol_type (token::TOKEN_NCR_FORMAT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_OVERRIDE_NO_UPDATE (location_type l)
{
return symbol_type (token::TOKEN_OVERRIDE_NO_UPDATE, std::move (l));
}
#else
static
symbol_type
make_OVERRIDE_NO_UPDATE (const location_type& l)
{
return symbol_type (token::TOKEN_OVERRIDE_NO_UPDATE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_OVERRIDE_CLIENT_UPDATE (location_type l)
{
return symbol_type (token::TOKEN_OVERRIDE_CLIENT_UPDATE, std::move (l));
}
#else
static
symbol_type
make_OVERRIDE_CLIENT_UPDATE (const location_type& l)
{
return symbol_type (token::TOKEN_OVERRIDE_CLIENT_UPDATE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_REPLACE_CLIENT_NAME (location_type l)
{
return symbol_type (token::TOKEN_REPLACE_CLIENT_NAME, std::move (l));
}
#else
static
symbol_type
make_REPLACE_CLIENT_NAME (const location_type& l)
{
return symbol_type (token::TOKEN_REPLACE_CLIENT_NAME, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_GENERATED_PREFIX (location_type l)
{
return symbol_type (token::TOKEN_GENERATED_PREFIX, std::move (l));
}
#else
static
symbol_type
make_GENERATED_PREFIX (const location_type& l)
{
return symbol_type (token::TOKEN_GENERATED_PREFIX, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_TCP (location_type l)
{
return symbol_type (token::TOKEN_TCP, std::move (l));
}
#else
static
symbol_type
make_TCP (const location_type& l)
{
return symbol_type (token::TOKEN_TCP, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_JSON (location_type l)
{
return symbol_type (token::TOKEN_JSON, std::move (l));
}
#else
static
symbol_type
make_JSON (const location_type& l)
{
return symbol_type (token::TOKEN_JSON, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_WHEN_PRESENT (location_type l)
{
return symbol_type (token::TOKEN_WHEN_PRESENT, std::move (l));
}
#else
static
symbol_type
make_WHEN_PRESENT (const location_type& l)
{
return symbol_type (token::TOKEN_WHEN_PRESENT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_NEVER (location_type l)
{
return symbol_type (token::TOKEN_NEVER, std::move (l));
}
#else
static
symbol_type
make_NEVER (const location_type& l)
{
return symbol_type (token::TOKEN_NEVER, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_ALWAYS (location_type l)
{
return symbol_type (token::TOKEN_ALWAYS, std::move (l));
}
#else
static
symbol_type
make_ALWAYS (const location_type& l)
{
return symbol_type (token::TOKEN_ALWAYS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_WHEN_NOT_PRESENT (location_type l)
{
return symbol_type (token::TOKEN_WHEN_NOT_PRESENT, std::move (l));
}
#else
static
symbol_type
make_WHEN_NOT_PRESENT (const location_type& l)
{
return symbol_type (token::TOKEN_WHEN_NOT_PRESENT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOSTNAME_CHAR_SET (location_type l)
{
return symbol_type (token::TOKEN_HOSTNAME_CHAR_SET, std::move (l));
}
#else
static
symbol_type
make_HOSTNAME_CHAR_SET (const location_type& l)
{
return symbol_type (token::TOKEN_HOSTNAME_CHAR_SET, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_HOSTNAME_CHAR_REPLACEMENT (location_type l)
{
return symbol_type (token::TOKEN_HOSTNAME_CHAR_REPLACEMENT, std::move (l));
}
#else
static
symbol_type
make_HOSTNAME_CHAR_REPLACEMENT (const location_type& l)
{
return symbol_type (token::TOKEN_HOSTNAME_CHAR_REPLACEMENT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_IP_RESERVATIONS_UNIQUE (location_type l)
{
return symbol_type (token::TOKEN_IP_RESERVATIONS_UNIQUE, std::move (l));
}
#else
static
symbol_type
make_IP_RESERVATIONS_UNIQUE (const location_type& l)
{
return symbol_type (token::TOKEN_IP_RESERVATIONS_UNIQUE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_LOGGERS (location_type l)
{
return symbol_type (token::TOKEN_LOGGERS, std::move (l));
}
#else
static
symbol_type
make_LOGGERS (const location_type& l)
{
return symbol_type (token::TOKEN_LOGGERS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_OUTPUT_OPTIONS (location_type l)
{
return symbol_type (token::TOKEN_OUTPUT_OPTIONS, std::move (l));
}
#else
static
symbol_type
make_OUTPUT_OPTIONS (const location_type& l)
{
return symbol_type (token::TOKEN_OUTPUT_OPTIONS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_OUTPUT (location_type l)
{
return symbol_type (token::TOKEN_OUTPUT, std::move (l));
}
#else
static
symbol_type
make_OUTPUT (const location_type& l)
{
return symbol_type (token::TOKEN_OUTPUT, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_DEBUGLEVEL (location_type l)
{
return symbol_type (token::TOKEN_DEBUGLEVEL, std::move (l));
}
#else
static
symbol_type
make_DEBUGLEVEL (const location_type& l)
{
return symbol_type (token::TOKEN_DEBUGLEVEL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SEVERITY (location_type l)
{
return symbol_type (token::TOKEN_SEVERITY, std::move (l));
}
#else
static
symbol_type
make_SEVERITY (const location_type& l)
{
return symbol_type (token::TOKEN_SEVERITY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_FLUSH (location_type l)
{
return symbol_type (token::TOKEN_FLUSH, std::move (l));
}
#else
static
symbol_type
make_FLUSH (const location_type& l)
{
return symbol_type (token::TOKEN_FLUSH, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAXSIZE (location_type l)
{
return symbol_type (token::TOKEN_MAXSIZE, std::move (l));
}
#else
static
symbol_type
make_MAXSIZE (const location_type& l)
{
return symbol_type (token::TOKEN_MAXSIZE, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_MAXVER (location_type l)
{
return symbol_type (token::TOKEN_MAXVER, std::move (l));
}
#else
static
symbol_type
make_MAXVER (const location_type& l)
{
return symbol_type (token::TOKEN_MAXVER, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_PATTERN (location_type l)
{
return symbol_type (token::TOKEN_PATTERN, std::move (l));
}
#else
static
symbol_type
make_PATTERN (const location_type& l)
{
return symbol_type (token::TOKEN_PATTERN, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_TOPLEVEL_JSON (location_type l)
{
return symbol_type (token::TOKEN_TOPLEVEL_JSON, std::move (l));
}
#else
static
symbol_type
make_TOPLEVEL_JSON (const location_type& l)
{
return symbol_type (token::TOKEN_TOPLEVEL_JSON, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_TOPLEVEL_DHCP4 (location_type l)
{
return symbol_type (token::TOKEN_TOPLEVEL_DHCP4, std::move (l));
}
#else
static
symbol_type
make_TOPLEVEL_DHCP4 (const location_type& l)
{
return symbol_type (token::TOKEN_TOPLEVEL_DHCP4, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_DHCP4 (location_type l)
{
return symbol_type (token::TOKEN_SUB_DHCP4, std::move (l));
}
#else
static
symbol_type
make_SUB_DHCP4 (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_DHCP4, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_INTERFACES4 (location_type l)
{
return symbol_type (token::TOKEN_SUB_INTERFACES4, std::move (l));
}
#else
static
symbol_type
make_SUB_INTERFACES4 (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_INTERFACES4, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_SUBNET4 (location_type l)
{
return symbol_type (token::TOKEN_SUB_SUBNET4, std::move (l));
}
#else
static
symbol_type
make_SUB_SUBNET4 (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_SUBNET4, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_POOL4 (location_type l)
{
return symbol_type (token::TOKEN_SUB_POOL4, std::move (l));
}
#else
static
symbol_type
make_SUB_POOL4 (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_POOL4, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_RESERVATION (location_type l)
{
return symbol_type (token::TOKEN_SUB_RESERVATION, std::move (l));
}
#else
static
symbol_type
make_SUB_RESERVATION (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_RESERVATION, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_OPTION_DEFS (location_type l)
{
return symbol_type (token::TOKEN_SUB_OPTION_DEFS, std::move (l));
}
#else
static
symbol_type
make_SUB_OPTION_DEFS (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_OPTION_DEFS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_OPTION_DEF (location_type l)
{
return symbol_type (token::TOKEN_SUB_OPTION_DEF, std::move (l));
}
#else
static
symbol_type
make_SUB_OPTION_DEF (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_OPTION_DEF, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_OPTION_DATA (location_type l)
{
return symbol_type (token::TOKEN_SUB_OPTION_DATA, std::move (l));
}
#else
static
symbol_type
make_SUB_OPTION_DATA (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_OPTION_DATA, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_HOOKS_LIBRARY (location_type l)
{
return symbol_type (token::TOKEN_SUB_HOOKS_LIBRARY, std::move (l));
}
#else
static
symbol_type
make_SUB_HOOKS_LIBRARY (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_HOOKS_LIBRARY, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_DHCP_DDNS (location_type l)
{
return symbol_type (token::TOKEN_SUB_DHCP_DDNS, std::move (l));
}
#else
static
symbol_type
make_SUB_DHCP_DDNS (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_DHCP_DDNS, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_SUB_CONFIG_CONTROL (location_type l)
{
return symbol_type (token::TOKEN_SUB_CONFIG_CONTROL, std::move (l));
}
#else
static
symbol_type
make_SUB_CONFIG_CONTROL (const location_type& l)
{
return symbol_type (token::TOKEN_SUB_CONFIG_CONTROL, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_STRING (std::string v, location_type l)
{
return symbol_type (token::TOKEN_STRING, std::move (v), std::move (l));
}
#else
static
symbol_type
make_STRING (const std::string& v, const location_type& l)
{
return symbol_type (token::TOKEN_STRING, v, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_INTEGER (int64_t v, location_type l)
{
return symbol_type (token::TOKEN_INTEGER, std::move (v), std::move (l));
}
#else
static
symbol_type
make_INTEGER (const int64_t& v, const location_type& l)
{
return symbol_type (token::TOKEN_INTEGER, v, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_FLOAT (double v, location_type l)
{
return symbol_type (token::TOKEN_FLOAT, std::move (v), std::move (l));
}
#else
static
symbol_type
make_FLOAT (const double& v, const location_type& l)
{
return symbol_type (token::TOKEN_FLOAT, v, l);
}
#endif
#if 201103L <= YY_CPLUSPLUS
static
symbol_type
make_BOOLEAN (bool v, location_type l)
{
return symbol_type (token::TOKEN_BOOLEAN, std::move (v), std::move (l));
}
#else
static
symbol_type
make_BOOLEAN (const bool& v, const location_type& l)
{
return symbol_type (token::TOKEN_BOOLEAN, v, l);
}
2019-10-29 06:49:44 +01:00
#endif
private:
/// This class is not copyable.
Dhcp4Parser (const Dhcp4Parser&);
Dhcp4Parser& operator= (const Dhcp4Parser&);
/// Stored state numbers (used for stacks).
typedef short state_type;
/// Generate an error message.
/// \param yystate the state where the error occurred.
/// \param yyla the lookahead token.
virtual std::string yysyntax_error_ (state_type yystate,
const symbol_type& yyla) const;
/// Compute post-reduction state.
/// \param yystate the current state
/// \param yysym the nonterminal to push on the stack
static state_type yy_lr_goto_state_ (state_type yystate, int yysym);
/// Whether the given \c yypact_ value indicates a defaulted state.
/// \param yyvalue the value to check
static bool yy_pact_value_is_default_ (int yyvalue);
/// Whether the given \c yytable_ value indicates a syntax error.
/// \param yyvalue the value to check
static bool yy_table_value_is_error_ (int yyvalue);
static const short yypact_ninf_;
static const signed char yytable_ninf_;
/// Convert a scanner token number \a t to a symbol number.
/// In theory \a t should be a token_type, but character literals
/// are valid, yet not members of the token_type enum.
static token_number_type yytranslate_ (int t);
// Tables.
// YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
// STATE-NUM.
static const short yypact_[];
// YYDEFACT[STATE-NUM] -- Default reduction number in state STATE-NUM.
// Performed when YYTABLE does not specify something else to do. Zero
// means the default is an error.
static const short yydefact_[];
// YYPGOTO[NTERM-NUM].
static const short yypgoto_[];
// YYDEFGOTO[NTERM-NUM].
static const short yydefgoto_[];
// YYTABLE[YYPACT[STATE-NUM]] -- What to do in state STATE-NUM. If
// positive, shift that token. If negative, reduce the rule whose
// number is the opposite. If YYTABLE_NINF, syntax error.
static const short yytable_[];
static const short yycheck_[];
// YYSTOS[STATE-NUM] -- The (internal number of the) accessing
// symbol of state STATE-NUM.
static const short yystos_[];
// YYR1[YYN] -- Symbol number of symbol that rule YYN derives.
static const short yyr1_[];
// YYR2[YYN] -- Number of symbols on the right hand side of rule YYN.
static const signed char yyr2_[];
/// Convert the symbol name \a n to a form suitable for a diagnostic.
static std::string yytnamerr_ (const char *n);
/// For a symbol, its name in clear.
static const char* const yytname_[];
#if PARSER4_DEBUG
// YYRLINE[YYN] -- Source line where rule number YYN was defined.
static const short yyrline_[];
/// Report on the debug stream that the rule \a r is going to be reduced.
virtual void yy_reduce_print_ (int r);
/// Print the state stack on the debug stream.
virtual void yystack_print_ ();
/// Debugging level.
int yydebug_;
/// Debug stream.
std::ostream* yycdebug_;
/// \brief Display a symbol type, value and location.
/// \param yyo The output stream.
/// \param yysym The symbol.
template <typename Base>
void yy_print_ (std::ostream& yyo, const basic_symbol<Base>& yysym) const;
#endif
2020-04-15 16:36:29 +03:00
/// \brief Reclaim the memory associated to a symbol.
/// \param yymsg Why this token is reclaimed.
/// If null, print nothing.
/// \param yysym The symbol.
template <typename Base>
void yy_destroy_ (const char* yymsg, basic_symbol<Base>& yysym) const;
2020-04-15 16:36:29 +03:00
private:
/// Type access provider for state based symbols.
struct by_state
{
/// Default constructor.
by_state () YY_NOEXCEPT;
2020-04-15 16:36:29 +03:00
/// The symbol type as needed by the constructor.
typedef state_type kind_type;
2020-04-15 16:36:29 +03:00
/// Constructor.
by_state (kind_type s) YY_NOEXCEPT;
2020-04-15 16:36:29 +03:00
/// Copy constructor.
by_state (const by_state& that) YY_NOEXCEPT;
2020-04-15 16:36:29 +03:00
/// Record that this symbol is empty.
void clear () YY_NOEXCEPT;
2020-04-15 16:36:29 +03:00
/// Steal the symbol type from \a that.
void move (by_state& that);
2020-04-15 16:36:29 +03:00
/// The (internal) type number (corresponding to \a state).
/// \a empty_symbol when empty.
symbol_number_type type_get () const YY_NOEXCEPT;
2020-04-15 16:36:29 +03:00
/// The state number used to denote an empty symbol.
/// We use the initial state, as it does not have a value.
enum { empty_state = 0 };
2020-04-15 16:36:29 +03:00
/// The state.
/// \a empty when empty.
state_type state;
};
/// "Internal" symbol: element of the stack.
struct stack_symbol_type : basic_symbol<by_state>
{
/// Superclass.
typedef basic_symbol<by_state> super_type;
/// Construct an empty symbol.
stack_symbol_type ();
/// Move or copy construction.
stack_symbol_type (YY_RVREF (stack_symbol_type) that);
/// Steal the contents from \a sym to build this.
stack_symbol_type (state_type s, YY_MOVE_REF (symbol_type) sym);
#if YY_CPLUSPLUS < 201103L
/// Assignment, needed by push_back by some old implementations.
/// Moves the contents of that.
stack_symbol_type& operator= (stack_symbol_type& that);
/// Assignment, needed by push_back by other implementations.
/// Needed by some other old implementations.
stack_symbol_type& operator= (const stack_symbol_type& that);
#endif
};
/// A stack with random access from its top.
template <typename T, typename S = std::vector<T> >
class stack
{
public:
// Hide our reversed order.
typedef typename S::reverse_iterator iterator;
typedef typename S::const_reverse_iterator const_iterator;
typedef typename S::size_type size_type;
typedef typename std::ptrdiff_t index_type;
stack (size_type n = 200)
: seq_ (n)
{}
/// Random access.
///
/// Index 0 returns the topmost element.
const T&
operator[] (index_type i) const
{
return seq_[size_type (size () - 1 - i)];
}
/// Random access.
///
/// Index 0 returns the topmost element.
T&
operator[] (index_type i)
{
return seq_[size_type (size () - 1 - i)];
}
/// Steal the contents of \a t.
///
/// Close to move-semantics.
void
push (YY_MOVE_REF (T) t)
{
seq_.push_back (T ());
operator[] (0).move (t);
}
/// Pop elements from the stack.
void
pop (std::ptrdiff_t n = 1) YY_NOEXCEPT
{
for (; 0 < n; --n)
seq_.pop_back ();
}
/// Pop all elements from the stack.
void
clear () YY_NOEXCEPT
{
seq_.clear ();
}
/// Number of elements on the stack.
index_type
size () const YY_NOEXCEPT
{
return index_type (seq_.size ());
}
2020-03-30 14:26:17 +00:00
std::ptrdiff_t
ssize () const YY_NOEXCEPT
{
return std::ptrdiff_t (size ());
}
/// Iterator on top of the stack (going downwards).
const_iterator
begin () const YY_NOEXCEPT
{
return seq_.rbegin ();
}
/// Bottom of the stack.
const_iterator
end () const YY_NOEXCEPT
{
return seq_.rend ();
}
/// Present a slice of the top of a stack.
class slice
{
public:
slice (const stack& stack, index_type range)
: stack_ (stack)
, range_ (range)
{}
const T&
operator[] (index_type i) const
{
return stack_[range_ - i];
}
private:
const stack& stack_;
index_type range_;
};
private:
stack (const stack&);
stack& operator= (const stack&);
/// The wrapped container.
S seq_;
};
/// Stack type.
typedef stack<stack_symbol_type> stack_type;
/// The stack.
stack_type yystack_;
/// Push a new state on the stack.
/// \param m a debug message to display
/// if null, no trace is output.
/// \param sym the symbol
/// \warning the contents of \a s.value is stolen.
void yypush_ (const char* m, YY_MOVE_REF (stack_symbol_type) sym);
/// Push a new look ahead token on the state on the stack.
/// \param m a debug message to display
/// if null, no trace is output.
/// \param s the state
/// \param sym the symbol (for its value and location).
/// \warning the contents of \a sym.value is stolen.
void yypush_ (const char* m, state_type s, YY_MOVE_REF (symbol_type) sym);
/// Pop \a n symbols from the stack.
void yypop_ (int n = 1);
2019-08-19 12:47:31 +00:00
/// Some specific tokens.
static const token_number_type yy_error_token_ = 1;
static const token_number_type yy_undef_token_ = 2;
/// Constants.
enum
{
yyeof_ = 0,
yylast_ = 1230, ///< Last index in yytable_.
yynnts_ = 413, ///< Number of nonterminal symbols.
yyfinal_ = 28, ///< Termination state number.
yyntokens_ = 202 ///< Number of tokens.
};
2019-10-29 06:49:44 +01:00
// User arguments.
isc::dhcp::Parser4Context& ctx;
};
inline
Dhcp4Parser::token_number_type
Dhcp4Parser::yytranslate_ (int t)
{
// YYTRANSLATE[TOKEN-NUM] -- Symbol number corresponding to
// TOKEN-NUM as returned by yylex.
static
const token_number_type
translate_table[] =
{
0, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
2, 2, 2, 2, 2, 2, 1, 2, 3, 4,
5, 6, 7, 8, 9, 10, 11, 12, 13, 14,
15, 16, 17, 18, 19, 20, 21, 22, 23, 24,
25, 26, 27, 28, 29, 30, 31, 32, 33, 34,
35, 36, 37, 38, 39, 40, 41, 42, 43, 44,
45, 46, 47, 48, 49, 50, 51, 52, 53, 54,
55, 56, 57, 58, 59, 60, 61, 62, 63, 64,
65, 66, 67, 68, 69, 70, 71, 72, 73, 74,
75, 76, 77, 78, 79, 80, 81, 82, 83, 84,
85, 86, 87, 88, 89, 90, 91, 92, 93, 94,
95, 96, 97, 98, 99, 100, 101, 102, 103, 104,
105, 106, 107, 108, 109, 110, 111, 112, 113, 114,
115, 116, 117, 118, 119, 120, 121, 122, 123, 124,
125, 126, 127, 128, 129, 130, 131, 132, 133, 134,
135, 136, 137, 138, 139, 140, 141, 142, 143, 144,
145, 146, 147, 148, 149, 150, 151, 152, 153, 154,
155, 156, 157, 158, 159, 160, 161, 162, 163, 164,
165, 166, 167, 168, 169, 170, 171, 172, 173, 174,
175, 176, 177, 178, 179, 180, 181, 182, 183, 184,
2020-10-15 17:09:14 +00:00
185, 186, 187, 188, 189, 190, 191, 192, 193, 194,
195, 196, 197, 198, 199, 200, 201
};
const int user_token_number_max_ = 456;
if (t <= 0)
return yyeof_;
else if (t <= user_token_number_max_)
return translate_table[t];
else
return yy_undef_token_;
}
// basic_symbol.
#if 201103L <= YY_CPLUSPLUS
template <typename Base>
Dhcp4Parser::basic_symbol<Base>::basic_symbol (basic_symbol&& that)
: Base (std::move (that))
, value ()
, location (std::move (that.location))
{
switch (this->type_get ())
{
case 217: // value
case 221: // map_value
case 262: // ddns_replace_client_name_value
case 287: // socket_type
case 290: // outbound_interface_value
case 312: // db_type
case 341: // on_fail_mode
case 412: // hr_mode
case 567: // ncr_protocol_value
value.move< ElementPtr > (std::move (that.value));
break;
case 201: // "boolean"
value.move< bool > (std::move (that.value));
break;
case 200: // "floating point"
value.move< double > (std::move (that.value));
break;
case 199: // "integer"
value.move< int64_t > (std::move (that.value));
break;
case 198: // "constant string"
value.move< std::string > (std::move (that.value));
break;
default:
break;
}
}
#endif
template <typename Base>
Dhcp4Parser::basic_symbol<Base>::basic_symbol (const basic_symbol& that)
: Base (that)
, value ()
, location (that.location)
{
switch (this->type_get ())
{
case 217: // value
case 221: // map_value
case 262: // ddns_replace_client_name_value
case 287: // socket_type
case 290: // outbound_interface_value
case 312: // db_type
case 341: // on_fail_mode
case 412: // hr_mode
case 567: // ncr_protocol_value
value.copy< ElementPtr > (YY_MOVE (that.value));
break;
case 201: // "boolean"
value.copy< bool > (YY_MOVE (that.value));
break;
case 200: // "floating point"
value.copy< double > (YY_MOVE (that.value));
break;
case 199: // "integer"
value.copy< int64_t > (YY_MOVE (that.value));
break;
case 198: // "constant string"
value.copy< std::string > (YY_MOVE (that.value));
break;
default:
break;
}
}
template <typename Base>
bool
Dhcp4Parser::basic_symbol<Base>::empty () const YY_NOEXCEPT
{
return Base::type_get () == empty_symbol;
}
template <typename Base>
void
Dhcp4Parser::basic_symbol<Base>::move (basic_symbol& s)
{
super_type::move (s);
switch (this->type_get ())
{
case 217: // value
case 221: // map_value
case 262: // ddns_replace_client_name_value
case 287: // socket_type
case 290: // outbound_interface_value
case 312: // db_type
case 341: // on_fail_mode
case 412: // hr_mode
case 567: // ncr_protocol_value
value.move< ElementPtr > (YY_MOVE (s.value));
break;
case 201: // "boolean"
value.move< bool > (YY_MOVE (s.value));
break;
case 200: // "floating point"
value.move< double > (YY_MOVE (s.value));
break;
2019-01-10 14:47:23 +00:00
case 199: // "integer"
value.move< int64_t > (YY_MOVE (s.value));
break;
case 198: // "constant string"
value.move< std::string > (YY_MOVE (s.value));
break;
default:
break;
}
location = YY_MOVE (s.location);
}
2019-01-10 14:47:23 +00:00
// by_type.
inline
Dhcp4Parser::by_type::by_type ()
: type (empty_symbol)
{}
2019-01-10 14:47:23 +00:00
#if 201103L <= YY_CPLUSPLUS
inline
Dhcp4Parser::by_type::by_type (by_type&& that)
: type (that.type)
{
that.clear ();
}
#endif
inline
Dhcp4Parser::by_type::by_type (const by_type& that)
: type (that.type)
{}
inline
Dhcp4Parser::by_type::by_type (token_type t)
: type (yytranslate_ (t))
{}
inline
void
Dhcp4Parser::by_type::clear ()
{
type = empty_symbol;
}
inline
void
Dhcp4Parser::by_type::move (by_type& that)
{
type = that.type;
that.clear ();
}
inline
int
Dhcp4Parser::by_type::type_get () const YY_NOEXCEPT
{
return type;
}
#line 14 "dhcp4_parser.yy"
2020-04-15 16:36:29 +03:00
} } // isc::dhcp
#line 4590 "dhcp4_parser.h"
#endif // !YY_PARSER4_DHCP4_PARSER_H_INCLUDED