// Copyright (c) 2009 Chris Hoeppler // // Distributed under the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #if !defined(BOOST_SPIRIT_REPOSITORY_QI_CONFIX_JUN_22_2009_1041AM) #define BOOST_SPIRIT_REPOSITORY_QI_CONFIX_JUN_22_2009_1041AM #if defined(_MSC_VER) #pragma once #endif #include #include #include #include #include #include #include #include #include #include /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { /////////////////////////////////////////////////////////////////////////// // Enablers /////////////////////////////////////////////////////////////////////////// // enables confix(..., ...)[] template struct use_directive > > : mpl::true_ {}; // enables *lazy* confix(..., ...)[] template <> struct use_lazy_directive : mpl::true_ {}; }} /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { namespace repository { namespace qi { using repository::confix_type; using repository::confix; /////////////////////////////////////////////////////////////////////////// // the confix() generated parser template struct confix_parser : spirit::qi::unary_parser > { typedef Subject subject_type; template struct attribute : traits::attribute_of {}; confix_parser(Subject const& subject, Prefix const& prefix , Suffix const& suffix) : subject(subject), prefix(prefix), suffix(suffix) {} template bool parse(Iterator& first, Iterator const& last , Context& context, Skipper const& skipper , Attribute& attr) const { Iterator iter = first; if (!(prefix.parse(iter, last, context, skipper, unused) && subject.parse(iter, last, context, skipper, attr) && suffix.parse(iter, last, context, skipper, unused))) { return false; } first = iter; return true; } template info what(Context const& ctx) const { return info("confix", subject.what(ctx)); } Subject subject; Prefix prefix; Suffix suffix; }; }}}} /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { namespace qi { /////////////////////////////////////////////////////////////////////////// // Parser generators: make_xxx function (objects) /////////////////////////////////////////////////////////////////////////// // creates confix(..., ...)[] directive template struct make_directive< terminal_ex > , Subject, Modifiers> { typedef typename result_of::compile::type prefix_type; typedef typename result_of::compile::type suffix_type; typedef repository::qi::confix_parser< Subject, prefix_type, suffix_type> result_type; template result_type operator()(Terminal const& term, Subject const& subject , Modifiers const& modifiers) const { return result_type(subject , compile(fusion::at_c<0>(term.args), modifiers) , compile(fusion::at_c<1>(term.args), modifiers)); } }; }}} namespace boost { namespace spirit { namespace traits { template struct has_semantic_action< repository::qi::confix_parser > : mpl::or_< has_semantic_action , has_semantic_action , has_semantic_action > {}; }}} #endif