2020-03-30 14:26:17 +00:00
|
|
|
// A Bison parser, made by GNU Bison 3.5.3.
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
// Skeleton interface for Bison LALR(1) parsers in C++
|
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// Copyright (C) 2002-2015, 2018-2020 Free Software Foundation, Inc.
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
// 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.
|
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
|
2016-12-15 16:54:01 +01:00
|
|
|
/**
|
|
|
|
** \file dhcp4_parser.h
|
|
|
|
** Define the isc::dhcp::parser class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// C++ LALR(1) parser skeleton written by Akim Demaille.
|
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
// Undocumented macros, especially those whose name start with YY_,
|
|
|
|
// are private implementation details. Do not rely on them.
|
|
|
|
|
2016-12-15 16:54:01 +01:00
|
|
|
#ifndef YY_PARSER4_DHCP4_PARSER_H_INCLUDED
|
|
|
|
# define YY_PARSER4_DHCP4_PARSER_H_INCLUDED
|
2020-03-30 14:26:17 +00:00
|
|
|
// "%code requires" blocks.
|
2019-10-29 06:49:44 +01:00
|
|
|
#line 17 "dhcp4_parser.yy"
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
#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;
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
#line 60 "dhcp4_parser.h"
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
# include <cassert>
|
|
|
|
# include <cstdlib> // std::abort
|
|
|
|
# include <iostream>
|
|
|
|
# include <stdexcept>
|
|
|
|
# include <string>
|
|
|
|
# include <vector>
|
2019-08-14 11:36:46 +02:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
#if defined __cplusplus
|
|
|
|
# define YY_CPLUSPLUS __cplusplus
|
|
|
|
#else
|
|
|
|
# define YY_CPLUSPLUS 199711L
|
|
|
|
#endif
|
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
// Support move semantics when possible.
|
2019-10-29 06:49:44 +01:00
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
2019-08-14 11:36:46 +02:00
|
|
|
# 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
|
2019-10-29 06:49:44 +01:00
|
|
|
|
|
|
|
// 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
|
2016-12-15 16:54:01 +01:00
|
|
|
# include "location.hh"
|
|
|
|
#include <typeinfo>
|
2020-03-30 14:26:17 +00:00
|
|
|
#ifndef YY_ASSERT
|
2016-12-15 16:54:01 +01:00
|
|
|
# include <cassert>
|
2020-03-30 14:26:17 +00:00
|
|
|
# define YY_ASSERT assert
|
2016-12-15 16:54:01 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
#ifndef YY_ATTRIBUTE_PURE
|
|
|
|
# if defined __GNUC__ && 2 < __GNUC__ + (96 <= __GNUC_MINOR__)
|
|
|
|
# define YY_ATTRIBUTE_PURE __attribute__ ((__pure__))
|
2016-12-15 16:54:01 +01:00
|
|
|
# else
|
2020-03-30 14:26:17 +00:00
|
|
|
# define YY_ATTRIBUTE_PURE
|
2016-12-15 16:54:01 +01:00
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef YY_ATTRIBUTE_UNUSED
|
2020-03-30 14:26:17 +00:00
|
|
|
# if defined __GNUC__ && 2 < __GNUC__ + (7 <= __GNUC_MINOR__)
|
|
|
|
# define YY_ATTRIBUTE_UNUSED __attribute__ ((__unused__))
|
|
|
|
# else
|
|
|
|
# define YY_ATTRIBUTE_UNUSED
|
|
|
|
# endif
|
2016-12-15 16:54:01 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Suppress unused-variable warnings by "using" E. */
|
|
|
|
#if ! defined lint || defined __GNUC__
|
|
|
|
# define YYUSE(E) ((void) (E))
|
|
|
|
#else
|
|
|
|
# define YYUSE(E) /* empty */
|
|
|
|
#endif
|
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
#if defined __GNUC__ && ! defined __ICC && 407 <= __GNUC__ * 100 + __GNUC_MINOR__
|
2016-12-15 16:54:01 +01:00
|
|
|
/* Suppress an incorrect diagnostic about yylval being uninitialized. */
|
2020-03-30 14:26:17 +00:00
|
|
|
# define YY_IGNORE_MAYBE_UNINITIALIZED_BEGIN \
|
|
|
|
_Pragma ("GCC diagnostic push") \
|
|
|
|
_Pragma ("GCC diagnostic ignored \"-Wuninitialized\"") \
|
2016-12-15 16:54:01 +01:00
|
|
|
_Pragma ("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
|
2020-03-30 14:26:17 +00:00
|
|
|
# define YY_IGNORE_MAYBE_UNINITIALIZED_END \
|
2016-12-15 16:54:01 +01:00
|
|
|
_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
|
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
#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
|
2019-08-14 11:36:46 +02:00
|
|
|
# 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
|
|
|
|
|
2016-12-15 16:54:01 +01:00
|
|
|
/* 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 */
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
#line 14 "dhcp4_parser.yy"
|
2016-12-15 16:54:01 +01:00
|
|
|
namespace isc { namespace dhcp {
|
2020-03-30 14:26:17 +00:00
|
|
|
#line 203 "dhcp4_parser.h"
|
2019-10-03 15:11:07 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// A Bison parser.
|
|
|
|
class Dhcp4Parser
|
2019-08-14 11:36:46 +02:00
|
|
|
{
|
|
|
|
public:
|
2019-10-29 06:49:44 +01:00
|
|
|
#ifndef PARSER4_STYPE
|
|
|
|
/// A buffer to store and retrieve objects.
|
2016-12-15 16:54:01 +01:00
|
|
|
///
|
|
|
|
/// Sort of a variant, but does not keep track of the nature
|
|
|
|
/// of the stored data, since that knowledge is available
|
2019-10-29 06:49:44 +01:00
|
|
|
/// via the current parser state.
|
|
|
|
class semantic_type
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
public:
|
2016-12-15 16:54:01 +01:00
|
|
|
/// Type of *this.
|
2019-10-29 06:49:44 +01:00
|
|
|
typedef semantic_type self_type;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
/// Empty construction.
|
2019-10-29 06:49:44 +01:00
|
|
|
semantic_type () YY_NOEXCEPT
|
2019-08-14 11:36:46 +02:00
|
|
|
: yybuffer_ ()
|
|
|
|
, yytypeid_ (YY_NULLPTR)
|
2016-12-15 16:54:01 +01:00
|
|
|
{}
|
|
|
|
|
|
|
|
/// Construct and fill.
|
|
|
|
template <typename T>
|
2019-10-29 06:49:44 +01:00
|
|
|
semantic_type (YY_RVREF (T) t)
|
2016-12-15 16:54:01 +01:00
|
|
|
: yytypeid_ (&typeid (T))
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (sizeof (T) <= size);
|
2019-08-14 11:36:46 +02:00
|
|
|
new (yyas_<T> ()) T (YY_MOVE (t));
|
2016-12-15 16:54:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Destruction, allowed only if empty.
|
2019-10-29 06:49:44 +01:00
|
|
|
~semantic_type () YY_NOEXCEPT
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (!yytypeid_);
|
2016-12-15 16:54:01 +01:00
|
|
|
}
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
# if 201103L <= YY_CPLUSPLUS
|
|
|
|
/// Instantiate a \a T in here from \a t.
|
|
|
|
template <typename T, typename... U>
|
2019-08-09 10:03:07 -04:00
|
|
|
T&
|
2019-10-29 06:49:44 +01:00
|
|
|
emplace (U&&... u)
|
2019-08-09 10:03:07 -04:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (!yytypeid_);
|
|
|
|
YY_ASSERT (sizeof (T) <= size);
|
2019-08-09 10:03:07 -04:00
|
|
|
yytypeid_ = & typeid (T);
|
2019-10-29 06:49:44 +01:00
|
|
|
return *new (yyas_<T> ()) T (std::forward <U>(u)...);
|
2019-08-09 10:03:07 -04:00
|
|
|
}
|
2019-10-29 06:49:44 +01:00
|
|
|
# else
|
|
|
|
/// Instantiate an empty \a T in here.
|
|
|
|
template <typename T>
|
2019-10-03 15:11:07 -04:00
|
|
|
T&
|
2019-10-29 06:49:44 +01:00
|
|
|
emplace ()
|
2019-10-03 15:11:07 -04:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (!yytypeid_);
|
|
|
|
YY_ASSERT (sizeof (T) <= size);
|
2019-10-03 15:11:07 -04:00
|
|
|
yytypeid_ = & typeid (T);
|
2019-10-29 06:49:44 +01:00
|
|
|
return *new (yyas_<T> ()) T ();
|
2019-10-03 15:11:07 -04:00
|
|
|
}
|
2019-10-29 06:49:44 +01:00
|
|
|
|
2016-12-15 16:54:01 +01:00
|
|
|
/// Instantiate a \a T in here from \a t.
|
|
|
|
template <typename T>
|
|
|
|
T&
|
2019-08-14 11:36:46 +02:00
|
|
|
emplace (const T& t)
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (!yytypeid_);
|
|
|
|
YY_ASSERT (sizeof (T) <= size);
|
2016-12-15 16:54:01 +01:00
|
|
|
yytypeid_ = & typeid (T);
|
|
|
|
return *new (yyas_<T> ()) T (t);
|
|
|
|
}
|
2019-08-14 11:36:46 +02:00
|
|
|
# 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);
|
|
|
|
}
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
/// Accessor to a built \a T.
|
|
|
|
template <typename T>
|
|
|
|
T&
|
2019-10-29 06:49:44 +01:00
|
|
|
as () YY_NOEXCEPT
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (yytypeid_);
|
|
|
|
YY_ASSERT (*yytypeid_ == typeid (T));
|
|
|
|
YY_ASSERT (sizeof (T) <= size);
|
2016-12-15 16:54:01 +01:00
|
|
|
return *yyas_<T> ();
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Const accessor to a built \a T (for %printer).
|
|
|
|
template <typename T>
|
|
|
|
const T&
|
2019-10-29 06:49:44 +01:00
|
|
|
as () const YY_NOEXCEPT
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (yytypeid_);
|
|
|
|
YY_ASSERT (*yytypeid_ == typeid (T));
|
|
|
|
YY_ASSERT (sizeof (T) <= size);
|
2016-12-15 16:54:01 +01:00
|
|
|
return *yyas_<T> ();
|
|
|
|
}
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Swap the content with \a that, of same type.
|
2016-12-15 16:54:01 +01:00
|
|
|
///
|
|
|
|
/// 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
|
2019-08-14 11:36:46 +02:00
|
|
|
/// should not be the variant's responsibility.
|
2016-12-15 16:54:01 +01:00
|
|
|
/// Swapping between built and (possibly) non-built is done with
|
2019-10-29 06:49:44 +01:00
|
|
|
/// self_type::move ().
|
2016-12-15 16:54:01 +01:00
|
|
|
template <typename T>
|
|
|
|
void
|
2019-10-29 06:49:44 +01:00
|
|
|
swap (self_type& that) YY_NOEXCEPT
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (yytypeid_);
|
|
|
|
YY_ASSERT (*yytypeid_ == *that.yytypeid_);
|
2019-10-29 06:49:44 +01:00
|
|
|
std::swap (as<T> (), that.as<T> ());
|
2016-12-15 16:54:01 +01:00
|
|
|
}
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Move the content of \a that to this.
|
2016-12-15 16:54:01 +01:00
|
|
|
///
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Destroys \a that.
|
2019-08-14 11:36:46 +02:00
|
|
|
template <typename T>
|
|
|
|
void
|
2019-10-29 06:49:44 +01:00
|
|
|
move (self_type& that)
|
2019-08-14 11:36:46 +02:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
# if 201103L <= YY_CPLUSPLUS
|
|
|
|
emplace<T> (std::move (that.as<T> ()));
|
2019-08-14 11:36:46 +02:00
|
|
|
# else
|
|
|
|
emplace<T> ();
|
2019-10-29 06:49:44 +01:00
|
|
|
swap<T> (that);
|
2019-08-14 11:36:46 +02:00
|
|
|
# endif
|
2019-10-29 06:49:44 +01:00
|
|
|
that.destroy<T> ();
|
2019-08-14 11:36:46 +02:00
|
|
|
}
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
# if 201103L <= YY_CPLUSPLUS
|
|
|
|
/// Move the content of \a that to this.
|
2019-01-10 14:47:23 +00:00
|
|
|
template <typename T>
|
|
|
|
void
|
2019-10-29 06:49:44 +01:00
|
|
|
move (self_type&& that)
|
2019-01-10 14:47:23 +00:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
emplace<T> (std::move (that.as<T> ()));
|
|
|
|
that.destroy<T> ();
|
2016-12-15 16:54:01 +01:00
|
|
|
}
|
2019-08-14 11:36:46 +02:00
|
|
|
#endif
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Copy the content of \a that to this.
|
2016-12-15 16:54:01 +01:00
|
|
|
template <typename T>
|
|
|
|
void
|
2019-10-29 06:49:44 +01:00
|
|
|
copy (const self_type& that)
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
emplace<T> (that.as<T> ());
|
2016-12-15 16:54:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Destroy the stored \a T.
|
|
|
|
template <typename T>
|
|
|
|
void
|
|
|
|
destroy ()
|
|
|
|
{
|
|
|
|
as<T> ().~T ();
|
|
|
|
yytypeid_ = YY_NULLPTR;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
/// Prohibit blind copies.
|
2019-08-14 11:36:46 +02:00
|
|
|
self_type& operator= (const self_type&);
|
2019-10-29 06:49:44 +01:00
|
|
|
semantic_type (const self_type&);
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
/// Accessor to raw memory as \a T.
|
|
|
|
template <typename T>
|
|
|
|
T*
|
2019-10-29 06:49:44 +01:00
|
|
|
yyas_ () YY_NOEXCEPT
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
|
|
|
void *yyp = yybuffer_.yyraw;
|
|
|
|
return static_cast<T*> (yyp);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Const accessor to raw memory as \a T.
|
|
|
|
template <typename T>
|
|
|
|
const T*
|
2019-10-29 06:49:44 +01:00
|
|
|
yyas_ () const YY_NOEXCEPT
|
2016-12-15 16:54:01 +01:00
|
|
|
{
|
|
|
|
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
|
2019-10-03 15:11:07 -04:00
|
|
|
// ddns_replace_client_name_value
|
2017-01-16 13:02:52 +00:00
|
|
|
// socket_type
|
2017-10-10 14:07:19 +00:00
|
|
|
// outbound_interface_value
|
2017-01-25 14:15:40 +00:00
|
|
|
// db_type
|
2017-07-06 11:12:16 +00:00
|
|
|
// hr_mode
|
2017-01-13 19:11:59 +00:00
|
|
|
// ncr_protocol_value
|
2019-08-14 11:36:46 +02:00
|
|
|
char dummy1[sizeof (ElementPtr)];
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
// "boolean"
|
2019-08-14 11:36:46 +02:00
|
|
|
char dummy2[sizeof (bool)];
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
// "floating point"
|
2019-08-14 11:36:46 +02:00
|
|
|
char dummy3[sizeof (double)];
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
// "integer"
|
2019-08-14 11:36:46 +02:00
|
|
|
char dummy4[sizeof (int64_t)];
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
// "constant string"
|
2019-08-14 11:36:46 +02:00
|
|
|
char dummy5[sizeof (std::string)];
|
2019-10-29 06:49:44 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/// 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_;
|
|
|
|
};
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
#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
|
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
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;
|
|
|
|
|
2016-12-15 16:54:01 +01:00
|
|
|
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,
|
2018-09-28 16:41:11 -04:00
|
|
|
TOKEN_CONFIG_CONTROL = 266,
|
|
|
|
TOKEN_CONFIG_DATABASES = 267,
|
2019-05-22 13:55:10 +00:00
|
|
|
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_REQUEST_TIMEOUT = 308,
|
|
|
|
TOKEN_TCP_KEEPALIVE = 309,
|
|
|
|
TOKEN_TCP_NODELAY = 310,
|
2019-08-09 10:03:07 -04:00
|
|
|
TOKEN_MAX_ROW_ERRORS = 311,
|
|
|
|
TOKEN_VALID_LIFETIME = 312,
|
|
|
|
TOKEN_MIN_VALID_LIFETIME = 313,
|
|
|
|
TOKEN_MAX_VALID_LIFETIME = 314,
|
|
|
|
TOKEN_RENEW_TIMER = 315,
|
|
|
|
TOKEN_REBIND_TIMER = 316,
|
|
|
|
TOKEN_CALCULATE_TEE_TIMES = 317,
|
|
|
|
TOKEN_T1_PERCENT = 318,
|
|
|
|
TOKEN_T2_PERCENT = 319,
|
|
|
|
TOKEN_DECLINE_PROBATION_PERIOD = 320,
|
|
|
|
TOKEN_SERVER_TAG = 321,
|
2020-04-05 09:39:29 +00:00
|
|
|
TOKEN_STATISTIC_DEFAULT_SAMPLE_COUNT = 322,
|
|
|
|
TOKEN_STATISTIC_DEFAULT_SAMPLE_AGE = 323,
|
|
|
|
TOKEN_DDNS_SEND_UPDATES = 324,
|
|
|
|
TOKEN_DDNS_OVERRIDE_NO_UPDATE = 325,
|
|
|
|
TOKEN_DDNS_OVERRIDE_CLIENT_UPDATE = 326,
|
|
|
|
TOKEN_DDNS_REPLACE_CLIENT_NAME = 327,
|
|
|
|
TOKEN_DDNS_GENERATED_PREFIX = 328,
|
|
|
|
TOKEN_DDNS_QUALIFYING_SUFFIX = 329,
|
|
|
|
TOKEN_STORE_EXTENDED_INFO = 330,
|
|
|
|
TOKEN_SUBNET4 = 331,
|
|
|
|
TOKEN_SUBNET_4O6_INTERFACE = 332,
|
|
|
|
TOKEN_SUBNET_4O6_INTERFACE_ID = 333,
|
|
|
|
TOKEN_SUBNET_4O6_SUBNET = 334,
|
|
|
|
TOKEN_OPTION_DEF = 335,
|
|
|
|
TOKEN_OPTION_DATA = 336,
|
|
|
|
TOKEN_NAME = 337,
|
|
|
|
TOKEN_DATA = 338,
|
|
|
|
TOKEN_CODE = 339,
|
|
|
|
TOKEN_SPACE = 340,
|
|
|
|
TOKEN_CSV_FORMAT = 341,
|
|
|
|
TOKEN_ALWAYS_SEND = 342,
|
|
|
|
TOKEN_RECORD_TYPES = 343,
|
|
|
|
TOKEN_ENCAPSULATE = 344,
|
|
|
|
TOKEN_ARRAY = 345,
|
|
|
|
TOKEN_SHARED_NETWORKS = 346,
|
|
|
|
TOKEN_POOLS = 347,
|
|
|
|
TOKEN_POOL = 348,
|
|
|
|
TOKEN_USER_CONTEXT = 349,
|
|
|
|
TOKEN_COMMENT = 350,
|
|
|
|
TOKEN_SUBNET = 351,
|
|
|
|
TOKEN_INTERFACE = 352,
|
|
|
|
TOKEN_ID = 353,
|
|
|
|
TOKEN_RESERVATION_MODE = 354,
|
|
|
|
TOKEN_DISABLED = 355,
|
|
|
|
TOKEN_OUT_OF_POOL = 356,
|
|
|
|
TOKEN_GLOBAL = 357,
|
|
|
|
TOKEN_ALL = 358,
|
|
|
|
TOKEN_HOST_RESERVATION_IDENTIFIERS = 359,
|
|
|
|
TOKEN_CLIENT_CLASSES = 360,
|
|
|
|
TOKEN_REQUIRE_CLIENT_CLASSES = 361,
|
|
|
|
TOKEN_TEST = 362,
|
|
|
|
TOKEN_ONLY_IF_REQUIRED = 363,
|
|
|
|
TOKEN_CLIENT_CLASS = 364,
|
|
|
|
TOKEN_RESERVATIONS = 365,
|
|
|
|
TOKEN_DUID = 366,
|
|
|
|
TOKEN_HW_ADDRESS = 367,
|
|
|
|
TOKEN_CIRCUIT_ID = 368,
|
|
|
|
TOKEN_CLIENT_ID = 369,
|
|
|
|
TOKEN_HOSTNAME = 370,
|
|
|
|
TOKEN_FLEX_ID = 371,
|
|
|
|
TOKEN_RELAY = 372,
|
|
|
|
TOKEN_IP_ADDRESS = 373,
|
|
|
|
TOKEN_IP_ADDRESSES = 374,
|
|
|
|
TOKEN_HOOKS_LIBRARIES = 375,
|
|
|
|
TOKEN_LIBRARY = 376,
|
|
|
|
TOKEN_PARAMETERS = 377,
|
|
|
|
TOKEN_EXPIRED_LEASES_PROCESSING = 378,
|
|
|
|
TOKEN_RECLAIM_TIMER_WAIT_TIME = 379,
|
|
|
|
TOKEN_FLUSH_RECLAIMED_TIMER_WAIT_TIME = 380,
|
|
|
|
TOKEN_HOLD_RECLAIMED_TIME = 381,
|
|
|
|
TOKEN_MAX_RECLAIM_LEASES = 382,
|
|
|
|
TOKEN_MAX_RECLAIM_TIME = 383,
|
|
|
|
TOKEN_UNWARNED_RECLAIM_CYCLES = 384,
|
|
|
|
TOKEN_DHCP4O6_PORT = 385,
|
|
|
|
TOKEN_CONTROL_SOCKET = 386,
|
|
|
|
TOKEN_SOCKET_TYPE = 387,
|
|
|
|
TOKEN_SOCKET_NAME = 388,
|
|
|
|
TOKEN_DHCP_QUEUE_CONTROL = 389,
|
|
|
|
TOKEN_ENABLE_QUEUE = 390,
|
|
|
|
TOKEN_QUEUE_TYPE = 391,
|
|
|
|
TOKEN_CAPACITY = 392,
|
|
|
|
TOKEN_DHCP_DDNS = 393,
|
|
|
|
TOKEN_ENABLE_UPDATES = 394,
|
|
|
|
TOKEN_QUALIFYING_SUFFIX = 395,
|
|
|
|
TOKEN_SERVER_IP = 396,
|
|
|
|
TOKEN_SERVER_PORT = 397,
|
|
|
|
TOKEN_SENDER_IP = 398,
|
|
|
|
TOKEN_SENDER_PORT = 399,
|
|
|
|
TOKEN_MAX_QUEUE_SIZE = 400,
|
|
|
|
TOKEN_NCR_PROTOCOL = 401,
|
|
|
|
TOKEN_NCR_FORMAT = 402,
|
|
|
|
TOKEN_OVERRIDE_NO_UPDATE = 403,
|
|
|
|
TOKEN_OVERRIDE_CLIENT_UPDATE = 404,
|
|
|
|
TOKEN_REPLACE_CLIENT_NAME = 405,
|
|
|
|
TOKEN_GENERATED_PREFIX = 406,
|
|
|
|
TOKEN_TCP = 407,
|
|
|
|
TOKEN_JSON = 408,
|
|
|
|
TOKEN_WHEN_PRESENT = 409,
|
|
|
|
TOKEN_NEVER = 410,
|
|
|
|
TOKEN_ALWAYS = 411,
|
|
|
|
TOKEN_WHEN_NOT_PRESENT = 412,
|
|
|
|
TOKEN_HOSTNAME_CHAR_SET = 413,
|
|
|
|
TOKEN_HOSTNAME_CHAR_REPLACEMENT = 414,
|
|
|
|
TOKEN_LOGGING = 415,
|
|
|
|
TOKEN_LOGGERS = 416,
|
|
|
|
TOKEN_OUTPUT_OPTIONS = 417,
|
|
|
|
TOKEN_OUTPUT = 418,
|
|
|
|
TOKEN_DEBUGLEVEL = 419,
|
|
|
|
TOKEN_SEVERITY = 420,
|
|
|
|
TOKEN_FLUSH = 421,
|
|
|
|
TOKEN_MAXSIZE = 422,
|
|
|
|
TOKEN_MAXVER = 423,
|
|
|
|
TOKEN_PATTERN = 424,
|
|
|
|
TOKEN_DHCP6 = 425,
|
|
|
|
TOKEN_DHCPDDNS = 426,
|
|
|
|
TOKEN_CONTROL_AGENT = 427,
|
|
|
|
TOKEN_TOPLEVEL_JSON = 428,
|
|
|
|
TOKEN_TOPLEVEL_DHCP4 = 429,
|
|
|
|
TOKEN_SUB_DHCP4 = 430,
|
|
|
|
TOKEN_SUB_INTERFACES4 = 431,
|
|
|
|
TOKEN_SUB_SUBNET4 = 432,
|
|
|
|
TOKEN_SUB_POOL4 = 433,
|
|
|
|
TOKEN_SUB_RESERVATION = 434,
|
|
|
|
TOKEN_SUB_OPTION_DEFS = 435,
|
|
|
|
TOKEN_SUB_OPTION_DEF = 436,
|
|
|
|
TOKEN_SUB_OPTION_DATA = 437,
|
|
|
|
TOKEN_SUB_HOOKS_LIBRARY = 438,
|
|
|
|
TOKEN_SUB_DHCP_DDNS = 439,
|
|
|
|
TOKEN_SUB_LOGGING = 440,
|
|
|
|
TOKEN_SUB_CONFIG_CONTROL = 441,
|
|
|
|
TOKEN_STRING = 442,
|
|
|
|
TOKEN_INTEGER = 443,
|
|
|
|
TOKEN_FLOAT = 444,
|
|
|
|
TOKEN_BOOLEAN = 445
|
2016-12-15 16:54:01 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
/// (External) token type, as returned by yylex.
|
|
|
|
typedef token::yytokentype token_type;
|
|
|
|
|
|
|
|
/// 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
|
2019-08-14 11:36:46 +02:00
|
|
|
/// via type_get ().
|
2016-12-15 16:54:01 +01:00
|
|
|
///
|
|
|
|
/// Provide access to semantic value and location.
|
|
|
|
template <typename Base>
|
|
|
|
struct basic_symbol : Base
|
|
|
|
{
|
|
|
|
/// Alias to Base.
|
|
|
|
typedef Base super_type;
|
|
|
|
|
|
|
|
/// Default constructor.
|
2019-10-29 06:49:44 +01:00
|
|
|
basic_symbol ()
|
|
|
|
: value ()
|
|
|
|
, location ()
|
|
|
|
{}
|
|
|
|
|
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
/// Move constructor.
|
|
|
|
basic_symbol (basic_symbol&& that);
|
|
|
|
#endif
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Copy constructor.
|
|
|
|
basic_symbol (const basic_symbol& that);
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2019-01-10 14:47:23 +00:00
|
|
|
/// Constructor for valueless symbols, and symbols from each type.
|
2019-10-29 06:49:44 +01:00
|
|
|
#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
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// Destroy the symbol.
|
2019-10-29 06:49:44 +01:00
|
|
|
~basic_symbol ()
|
|
|
|
{
|
|
|
|
clear ();
|
|
|
|
}
|
2019-03-11 13:07:38 +00:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// Destroy contents, and record that is empty.
|
2019-10-29 06:49:44 +01:00
|
|
|
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)
|
|
|
|
{
|
2020-04-05 09:39:29 +00:00
|
|
|
case 207: // value
|
|
|
|
case 211: // map_value
|
|
|
|
case 252: // ddns_replace_client_name_value
|
|
|
|
case 274: // socket_type
|
|
|
|
case 277: // outbound_interface_value
|
|
|
|
case 299: // db_type
|
|
|
|
case 386: // hr_mode
|
|
|
|
case 541: // ncr_protocol_value
|
2019-10-29 06:49:44 +01:00
|
|
|
value.template destroy< ElementPtr > ();
|
|
|
|
break;
|
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 190: // "boolean"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.template destroy< bool > ();
|
|
|
|
break;
|
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 189: // "floating point"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.template destroy< double > ();
|
|
|
|
break;
|
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 188: // "integer"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.template destroy< int64_t > ();
|
|
|
|
break;
|
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 187: // "constant string"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.template destroy< std::string > ();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
Base::clear ();
|
|
|
|
}
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
/// Whether empty.
|
2019-10-29 06:49:44 +01:00
|
|
|
bool empty () const YY_NOEXCEPT;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
/// 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:
|
2019-10-29 06:49:44 +01:00
|
|
|
#if YY_CPLUSPLUS < 201103L
|
2016-12-15 16:54:01 +01:00
|
|
|
/// Assignment operator.
|
2019-10-29 06:49:44 +01:00
|
|
|
basic_symbol& operator= (const basic_symbol& that);
|
2019-08-14 11:36:46 +02:00
|
|
|
#endif
|
2016-12-15 16:54:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/// Type access provider for token (enum) based symbols.
|
|
|
|
struct by_type
|
|
|
|
{
|
|
|
|
/// Default constructor.
|
|
|
|
by_type ();
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
/// Move constructor.
|
|
|
|
by_type (by_type&& that);
|
|
|
|
#endif
|
|
|
|
|
2016-12-15 16:54:01 +01:00
|
|
|
/// Copy constructor.
|
2019-10-29 06:49:44 +01:00
|
|
|
by_type (const by_type& that);
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
/// 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.
|
2019-10-29 06:49:44 +01:00
|
|
|
symbol_number_type type_get () const YY_NOEXCEPT;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
/// 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.
|
2019-10-29 06:49:44 +01:00
|
|
|
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))
|
|
|
|
{
|
2020-04-05 09:39:29 +00:00
|
|
|
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_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_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_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_HOST_RESERVATION_IDENTIFIERS || tok == token::TOKEN_CLIENT_CLASSES || tok == token::TOKEN_REQUIRE_CLIENT_CLASSES || tok == token::TOKEN_TEST || tok == token::TOKEN_ONLY_IF_REQUIRED || tok == token::TOKEN_CLIENT_CLASS || tok == token::TOKEN_RESERVATIONS || tok == token::TOKEN_DUID || tok == token::TOKEN_HW_ADDRESS || tok == token::TOKEN_CIRCUIT_ID || tok == token::TOKEN
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
symbol_type (int tok, const location_type& l)
|
|
|
|
: super_type(token_type (tok), l)
|
|
|
|
{
|
2020-04-05 09:39:29 +00:00
|
|
|
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_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_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_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_HOST_RESERVATION_IDENTIFIERS || tok == token::TOKEN_CLIENT_CLASSES || tok == token::TOKEN_REQUIRE_CLIENT_CLASSES || tok == token::TOKEN_TEST || tok == token::TOKEN_ONLY_IF_REQUIRED || tok == token::TOKEN_CLIENT_CLASS || tok == token::TOKEN_RESERVATIONS || tok == token::TOKEN_DUID || tok == token::TOKEN_HW_ADDRESS || tok == token::TOKEN_CIRCUIT_ID || tok == token::TOKEN
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#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))
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_BOOLEAN);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
symbol_type (int tok, const bool& v, const location_type& l)
|
|
|
|
: super_type(token_type (tok), v, l)
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_BOOLEAN);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#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))
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_FLOAT);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
symbol_type (int tok, const double& v, const location_type& l)
|
|
|
|
: super_type(token_type (tok), v, l)
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_FLOAT);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#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))
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_INTEGER);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
symbol_type (int tok, const int64_t& v, const location_type& l)
|
|
|
|
: super_type(token_type (tok), v, l)
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_INTEGER);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#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))
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_STRING);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
symbol_type (int tok, const std::string& v, const location_type& l)
|
|
|
|
: super_type(token_type (tok), v, l)
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
YY_ASSERT (tok == token::TOKEN_STRING);
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
};
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// Build a parser object.
|
|
|
|
Dhcp4Parser (isc::dhcp::Parser4Context& ctx_yyarg);
|
|
|
|
virtual ~Dhcp4Parser ();
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// Parse. An alias for parse ().
|
|
|
|
/// \returns 0 iff parsing succeeded.
|
|
|
|
int operator() ();
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// Parse.
|
|
|
|
/// \returns 0 iff parsing succeeded.
|
|
|
|
virtual int parse ();
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
#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 &);
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// 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
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// 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);
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-08-14 11:36:46 +02:00
|
|
|
/// Report a syntax error.
|
|
|
|
void error (const syntax_error& err);
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
#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_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_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
|
2020-04-05 09:39:29 +00:00
|
|
|
#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
|
2019-10-29 06:49:44 +01:00
|
|
|
#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
|
2020-04-02 19:12:26 +00:00
|
|
|
#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
|
2019-10-29 06:49:44 +01:00
|
|
|
#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
|
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_DISABLED (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_DISABLED, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_DISABLED (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_DISABLED, l);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_OUT_OF_POOL (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_OUT_OF_POOL, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_OUT_OF_POOL (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_OUT_OF_POOL, l);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_GLOBAL (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_GLOBAL, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_GLOBAL (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_GLOBAL, l);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_ALL (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_ALL, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_ALL (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_ALL, 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_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
|
2019-11-05 10:10:54 +00:00
|
|
|
#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
|
2019-10-29 06:49:44 +01:00
|
|
|
#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_LOGGING (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_LOGGING, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_LOGGING (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_LOGGING, 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_DHCP6 (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_DHCP6, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_DHCP6 (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_DHCP6, l);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_DHCPDDNS (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_DHCPDDNS, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_DHCPDDNS (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_DHCPDDNS, l);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_CONTROL_AGENT (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_CONTROL_AGENT, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_CONTROL_AGENT (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_CONTROL_AGENT, 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_LOGGING (location_type l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_SUB_LOGGING, std::move (l));
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static
|
|
|
|
symbol_type
|
|
|
|
make_SUB_LOGGING (const location_type& l)
|
|
|
|
{
|
|
|
|
return symbol_type (token::TOKEN_SUB_LOGGING, 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);
|
|
|
|
}
|
|
|
|
#endif
|
2019-10-03 15:11:07 -04:00
|
|
|
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
private:
|
|
|
|
/// This class is not copyable.
|
|
|
|
Dhcp4Parser (const Dhcp4Parser&);
|
|
|
|
Dhcp4Parser& operator= (const Dhcp4Parser&);
|
2019-10-03 15:11:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
/// Stored state numbers (used for stacks).
|
|
|
|
typedef short state_type;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// 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;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Compute post-reduction state.
|
|
|
|
/// \param yystate the current state
|
|
|
|
/// \param yysym the nonterminal to push on the stack
|
2020-03-30 14:26:17 +00:00
|
|
|
static state_type yy_lr_goto_state_ (state_type yystate, int yysym);
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// 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);
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// 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);
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
static const short yypact_ninf_;
|
|
|
|
static const signed char yytable_ninf_;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Convert a scanner token number \a t to a symbol number.
|
2020-03-30 14:26:17 +00:00
|
|
|
/// 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);
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
// Tables.
|
2020-03-30 14:26:17 +00:00
|
|
|
// YYPACT[STATE-NUM] -- Index in YYTABLE of the portion describing
|
|
|
|
// STATE-NUM.
|
|
|
|
static const short yypact_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// 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_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// YYPGOTO[NTERM-NUM].
|
|
|
|
static const short yypgoto_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// YYDEFGOTO[NTERM-NUM].
|
|
|
|
static const short yydefgoto_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// 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_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
static const short yycheck_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// YYSTOS[STATE-NUM] -- The (internal number of the) accessing
|
|
|
|
// symbol of state STATE-NUM.
|
|
|
|
static const short yystos_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// YYR1[YYN] -- Symbol number of symbol that rule YYN derives.
|
|
|
|
static const short yyr1_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
// YYR2[YYN] -- Number of symbols on the right hand side of rule YYN.
|
|
|
|
static const signed char yyr2_[];
|
2019-08-09 10:03:07 -04:00
|
|
|
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Convert the symbol name \a n to a form suitable for a diagnostic.
|
|
|
|
static std::string yytnamerr_ (const char *n);
|
2019-08-09 10:03:07 -04:00
|
|
|
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// For a symbol, its name in clear.
|
|
|
|
static const char* const yytname_[];
|
|
|
|
#if PARSER4_DEBUG
|
2020-03-30 14:26:17 +00:00
|
|
|
// YYRLINE[YYN] -- Source line where rule number YYN was defined.
|
|
|
|
static const short yyrline_[];
|
2019-10-29 06:49:44 +01:00
|
|
|
/// 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_ ();
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Debugging level.
|
|
|
|
int yydebug_;
|
|
|
|
/// Debug stream.
|
|
|
|
std::ostream* yycdebug_;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// \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
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01: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;
|
2019-08-14 11:36:46 +02:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
private:
|
|
|
|
/// Type access provider for state based symbols.
|
|
|
|
struct by_state
|
|
|
|
{
|
|
|
|
/// Default constructor.
|
|
|
|
by_state () YY_NOEXCEPT;
|
2019-08-14 11:36:46 +02:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// The symbol type as needed by the constructor.
|
|
|
|
typedef state_type kind_type;
|
2019-08-14 11:36:46 +02:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Constructor.
|
|
|
|
by_state (kind_type s) YY_NOEXCEPT;
|
2019-08-14 11:36:46 +02:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Copy constructor.
|
|
|
|
by_state (const by_state& that) YY_NOEXCEPT;
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Record that this symbol is empty.
|
|
|
|
void clear () YY_NOEXCEPT;
|
2019-08-05 10:25:15 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Steal the symbol type from \a that.
|
|
|
|
void move (by_state& that);
|
2019-03-11 13:07:38 +00:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// The (internal) type number (corresponding to \a state).
|
|
|
|
/// \a empty_symbol when empty.
|
|
|
|
symbol_number_type type_get () const YY_NOEXCEPT;
|
2019-03-11 13:07:38 +00:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// The state number used to denote an empty symbol.
|
2020-03-30 14:26:17 +00:00
|
|
|
/// We use the initial state, as it does not have a value.
|
|
|
|
enum { empty_state = 0 };
|
2019-03-11 13:07:38 +00:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// The state.
|
|
|
|
/// \a empty when empty.
|
|
|
|
state_type state;
|
|
|
|
};
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// "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);
|
2020-03-30 14:26:17 +00:00
|
|
|
|
|
|
|
/// Assignment, needed by push_back by other implementations.
|
|
|
|
/// Needed by some other old implementations.
|
|
|
|
stack_symbol_type& operator= (const stack_symbol_type& that);
|
2019-10-29 06:49:44 +01:00
|
|
|
#endif
|
|
|
|
};
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// 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;
|
2020-03-30 14:26:17 +00:00
|
|
|
typedef typename std::ptrdiff_t index_type;
|
2019-10-29 06:49:44 +01:00
|
|
|
|
|
|
|
stack (size_type n = 200)
|
|
|
|
: seq_ (n)
|
|
|
|
{}
|
|
|
|
|
|
|
|
/// Random access.
|
|
|
|
///
|
|
|
|
/// Index 0 returns the topmost element.
|
|
|
|
const T&
|
2020-03-30 14:26:17 +00:00
|
|
|
operator[] (index_type i) const
|
2019-10-29 06:49:44 +01:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
return seq_[size_type (size () - 1 - i)];
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Random access.
|
|
|
|
///
|
|
|
|
/// Index 0 returns the topmost element.
|
2020-03-30 14:26:17 +00:00
|
|
|
T&
|
|
|
|
operator[] (index_type i)
|
2019-10-29 06:49:44 +01:00
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
return seq_[size_type (size () - 1 - i)];
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/// 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);
|
|
|
|
}
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Pop elements from the stack.
|
|
|
|
void
|
2020-03-30 14:26:17 +00:00
|
|
|
pop (std::ptrdiff_t n = 1) YY_NOEXCEPT
|
2019-10-29 06:49:44 +01:00
|
|
|
{
|
|
|
|
for (; 0 < n; --n)
|
|
|
|
seq_.pop_back ();
|
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Pop all elements from the stack.
|
|
|
|
void
|
|
|
|
clear () YY_NOEXCEPT
|
|
|
|
{
|
|
|
|
seq_.clear ();
|
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Number of elements on the stack.
|
2020-03-30 14:26:17 +00:00
|
|
|
index_type
|
2019-10-29 06:49:44 +01:00
|
|
|
size () const YY_NOEXCEPT
|
|
|
|
{
|
2020-03-30 14:26:17 +00:00
|
|
|
return index_type (seq_.size ());
|
|
|
|
}
|
|
|
|
|
|
|
|
std::ptrdiff_t
|
|
|
|
ssize () const YY_NOEXCEPT
|
|
|
|
{
|
|
|
|
return std::ptrdiff_t (size ());
|
2019-10-29 06:49:44 +01:00
|
|
|
}
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Iterator on top of the stack (going downwards).
|
|
|
|
const_iterator
|
|
|
|
begin () const YY_NOEXCEPT
|
|
|
|
{
|
|
|
|
return seq_.rbegin ();
|
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Bottom of the stack.
|
|
|
|
const_iterator
|
|
|
|
end () const YY_NOEXCEPT
|
|
|
|
{
|
|
|
|
return seq_.rend ();
|
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Present a slice of the top of a stack.
|
|
|
|
class slice
|
|
|
|
{
|
|
|
|
public:
|
2020-03-30 14:26:17 +00:00
|
|
|
slice (const stack& stack, index_type range)
|
2019-10-29 06:49:44 +01:00
|
|
|
: stack_ (stack)
|
|
|
|
, range_ (range)
|
|
|
|
{}
|
|
|
|
|
|
|
|
const T&
|
2020-03-30 14:26:17 +00:00
|
|
|
operator[] (index_type i) const
|
2019-10-29 06:49:44 +01:00
|
|
|
{
|
|
|
|
return stack_[range_ - i];
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
const stack& stack_;
|
2020-03-30 14:26:17 +00:00
|
|
|
index_type range_;
|
2019-10-29 06:49:44 +01:00
|
|
|
};
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
private:
|
|
|
|
stack (const stack&);
|
|
|
|
stack& operator= (const stack&);
|
|
|
|
/// The wrapped container.
|
|
|
|
S seq_;
|
|
|
|
};
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-08-16 18:03:29 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Stack type.
|
|
|
|
typedef stack<stack_symbol_type> stack_type;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// The stack.
|
|
|
|
stack_type yystack_;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// 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);
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// 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);
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Pop \a n symbols from the stack.
|
|
|
|
void yypop_ (int n = 1);
|
2019-08-19 12:47:31 +00:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
/// Some specific tokens.
|
|
|
|
static const token_number_type yy_error_token_ = 1;
|
|
|
|
static const token_number_type yy_undef_token_ = 2;
|
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
/// Constants.
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
yyeof_ = 0,
|
2020-04-05 09:39:29 +00:00
|
|
|
yylast_ = 1175, ///< Last index in yytable_.
|
|
|
|
yynnts_ = 410, ///< Number of nonterminal symbols.
|
2019-10-29 06:49:44 +01:00
|
|
|
yyfinal_ = 30, ///< Termination state number.
|
2020-04-05 09:39:29 +00:00
|
|
|
yyntokens_ = 191 ///< Number of tokens.
|
2019-10-29 06:49:44 +01:00
|
|
|
};
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
|
|
|
|
// User arguments.
|
|
|
|
isc::dhcp::Parser4Context& ctx;
|
|
|
|
};
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2019-10-03 15:11:07 -04:00
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
Dhcp4Parser::token_number_type
|
2020-03-30 14:26:17 +00:00
|
|
|
Dhcp4Parser::yytranslate_ (int t)
|
2019-10-03 15:11:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
// 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,
|
2019-11-05 10:10:54 +00:00
|
|
|
175, 176, 177, 178, 179, 180, 181, 182, 183, 184,
|
2020-04-05 09:39:29 +00:00
|
|
|
185, 186, 187, 188, 189, 190
|
2019-10-29 06:49:44 +01:00
|
|
|
};
|
2020-04-05 09:39:29 +00:00
|
|
|
const int user_token_number_max_ = 445;
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2020-03-30 14:26:17 +00:00
|
|
|
if (t <= 0)
|
2019-10-29 06:49:44 +01:00
|
|
|
return yyeof_;
|
2020-03-30 14:26:17 +00:00
|
|
|
else if (t <= user_token_number_max_)
|
2019-10-29 06:49:44 +01:00
|
|
|
return translate_table[t];
|
|
|
|
else
|
2020-03-30 14:26:17 +00:00
|
|
|
return yy_undef_token_;
|
2019-10-03 15:11:07 -04:00
|
|
|
}
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
// 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))
|
2019-10-03 15:11:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
switch (this->type_get ())
|
|
|
|
{
|
2020-04-05 09:39:29 +00:00
|
|
|
case 207: // value
|
|
|
|
case 211: // map_value
|
|
|
|
case 252: // ddns_replace_client_name_value
|
|
|
|
case 274: // socket_type
|
|
|
|
case 277: // outbound_interface_value
|
|
|
|
case 299: // db_type
|
|
|
|
case 386: // hr_mode
|
|
|
|
case 541: // ncr_protocol_value
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< ElementPtr > (std::move (that.value));
|
|
|
|
break;
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 190: // "boolean"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< bool > (std::move (that.value));
|
|
|
|
break;
|
2019-01-10 14:47:23 +00:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 189: // "floating point"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< double > (std::move (that.value));
|
|
|
|
break;
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 188: // "integer"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< int64_t > (std::move (that.value));
|
|
|
|
break;
|
2019-01-09 11:14:01 -05:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 187: // "constant string"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< std::string > (std::move (that.value));
|
|
|
|
break;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-03 15:11:07 -04:00
|
|
|
}
|
2019-10-29 06:49:44 +01:00
|
|
|
#endif
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
template <typename Base>
|
|
|
|
Dhcp4Parser::basic_symbol<Base>::basic_symbol (const basic_symbol& that)
|
|
|
|
: Base (that)
|
|
|
|
, value ()
|
|
|
|
, location (that.location)
|
2019-10-03 15:11:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
switch (this->type_get ())
|
|
|
|
{
|
2020-04-05 09:39:29 +00:00
|
|
|
case 207: // value
|
|
|
|
case 211: // map_value
|
|
|
|
case 252: // ddns_replace_client_name_value
|
|
|
|
case 274: // socket_type
|
|
|
|
case 277: // outbound_interface_value
|
|
|
|
case 299: // db_type
|
|
|
|
case 386: // hr_mode
|
|
|
|
case 541: // ncr_protocol_value
|
2019-10-29 06:49:44 +01:00
|
|
|
value.copy< ElementPtr > (YY_MOVE (that.value));
|
|
|
|
break;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 190: // "boolean"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.copy< bool > (YY_MOVE (that.value));
|
|
|
|
break;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 189: // "floating point"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.copy< double > (YY_MOVE (that.value));
|
|
|
|
break;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 188: // "integer"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.copy< int64_t > (YY_MOVE (that.value));
|
|
|
|
break;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 187: // "constant string"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.copy< std::string > (YY_MOVE (that.value));
|
|
|
|
break;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-03 15:11:07 -04:00
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
|
|
|
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
template <typename Base>
|
|
|
|
bool
|
|
|
|
Dhcp4Parser::basic_symbol<Base>::empty () const YY_NOEXCEPT
|
2019-08-09 10:03:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
return Base::type_get () == empty_symbol;
|
2019-10-03 15:11:07 -04:00
|
|
|
}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
template <typename Base>
|
|
|
|
void
|
|
|
|
Dhcp4Parser::basic_symbol<Base>::move (basic_symbol& s)
|
2019-10-03 15:11:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
super_type::move (s);
|
|
|
|
switch (this->type_get ())
|
|
|
|
{
|
2020-04-05 09:39:29 +00:00
|
|
|
case 207: // value
|
|
|
|
case 211: // map_value
|
|
|
|
case 252: // ddns_replace_client_name_value
|
|
|
|
case 274: // socket_type
|
|
|
|
case 277: // outbound_interface_value
|
|
|
|
case 299: // db_type
|
|
|
|
case 386: // hr_mode
|
|
|
|
case 541: // ncr_protocol_value
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< ElementPtr > (YY_MOVE (s.value));
|
|
|
|
break;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 190: // "boolean"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< bool > (YY_MOVE (s.value));
|
|
|
|
break;
|
2019-08-09 10:03:07 -04:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 189: // "floating point"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< double > (YY_MOVE (s.value));
|
|
|
|
break;
|
2019-01-10 14:47:23 +00:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 188: // "integer"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< int64_t > (YY_MOVE (s.value));
|
|
|
|
break;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2020-04-05 09:39:29 +00:00
|
|
|
case 187: // "constant string"
|
2019-10-29 06:49:44 +01:00
|
|
|
value.move< std::string > (YY_MOVE (s.value));
|
|
|
|
break;
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-12-15 16:54:01 +01:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
location = YY_MOVE (s.location);
|
2019-10-03 15:11:07 -04:00
|
|
|
}
|
2019-01-10 14:47:23 +00:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
// by_type.
|
2019-08-14 11:36:46 +02:00
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
Dhcp4Parser::by_type::by_type ()
|
|
|
|
: type (empty_symbol)
|
|
|
|
{}
|
2019-01-10 14:47:23 +00:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
#if 201103L <= YY_CPLUSPLUS
|
2019-08-14 11:36:46 +02:00
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
Dhcp4Parser::by_type::by_type (by_type&& that)
|
|
|
|
: type (that.type)
|
2019-10-03 15:11:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
that.clear ();
|
2019-10-03 15:11:07 -04:00
|
|
|
}
|
2019-10-29 06:49:44 +01:00
|
|
|
#endif
|
2019-08-09 10:03:07 -04:00
|
|
|
|
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
Dhcp4Parser::by_type::by_type (const by_type& that)
|
|
|
|
: type (that.type)
|
|
|
|
{}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
Dhcp4Parser::by_type::by_type (token_type t)
|
|
|
|
: type (yytranslate_ (t))
|
|
|
|
{}
|
2019-08-09 10:03:07 -04:00
|
|
|
|
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
void
|
|
|
|
Dhcp4Parser::by_type::clear ()
|
2019-08-09 10:03:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
type = empty_symbol;
|
2019-08-09 10:03:07 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
void
|
|
|
|
Dhcp4Parser::by_type::move (by_type& that)
|
2019-08-09 10:03:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
type = that.type;
|
|
|
|
that.clear ();
|
2019-08-09 10:03:07 -04:00
|
|
|
}
|
|
|
|
|
2019-08-09 10:03:07 -04:00
|
|
|
inline
|
2019-10-29 06:49:44 +01:00
|
|
|
int
|
|
|
|
Dhcp4Parser::by_type::type_get () const YY_NOEXCEPT
|
2019-08-09 10:03:07 -04:00
|
|
|
{
|
2019-10-29 06:49:44 +01:00
|
|
|
return type;
|
2019-08-09 10:03:07 -04:00
|
|
|
}
|
2019-08-14 11:36:46 +02:00
|
|
|
|
2019-10-29 06:49:44 +01:00
|
|
|
#line 14 "dhcp4_parser.yy"
|
2019-10-03 15:11:07 -04:00
|
|
|
} } // isc::dhcp
|
2020-04-05 09:39:29 +00:00
|
|
|
#line 4408 "dhcp4_parser.h"
|
2019-10-29 06:49:44 +01:00
|
|
|
|
2019-10-03 15:11:07 -04:00
|
|
|
|
2016-12-15 16:54:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif // !YY_PARSER4_DHCP4_PARSER_H_INCLUDED
|