38 lines
1.1 KiB
C++
38 lines
1.1 KiB
C++
// Copyright (c) 2014-2015 Dr. Colin Hirsch and Daniel Frey
|
|
// Please see LICENSE for license or visit https://github.com/ColinH/PEGTL/
|
|
|
|
#ifndef TAO_CPP_PEGTL_INTERNAL_REP_OPT_HH
|
|
#define TAO_CPP_PEGTL_INTERNAL_REP_OPT_HH
|
|
|
|
#include "skip_control.hh"
|
|
#include "rule_match_three.hh"
|
|
#include "seq.hh"
|
|
|
|
#include "../analysis/generic.hh"
|
|
|
|
namespace tao_json_pegtl
|
|
{
|
|
namespace internal
|
|
{
|
|
template< unsigned Max, typename ... Rules >
|
|
struct rep_opt
|
|
{
|
|
using analyze_t = analysis::generic< analysis::rule_type::OPT, Rules ... >;
|
|
|
|
template< apply_mode A, template< typename ... > class Action, template< typename ... > class Control, typename Input, typename ... States >
|
|
static bool match( Input & in, States && ... st )
|
|
{
|
|
for ( unsigned i = 0; ( i != Max ) && rule_match_three< seq< Rules ... >, A, Action, Control >::match( in, st ... ); ++i ) {}
|
|
return true;
|
|
}
|
|
};
|
|
|
|
template< unsigned Max, typename ... Rules >
|
|
struct skip_control< rep_opt< Max, Rules ... > > : std::true_type {};
|
|
|
|
} // namespace internal
|
|
|
|
} // namespace tao_json_pegtl
|
|
|
|
#endif
|