// Copyright (c) 2001-2010 Hartmut Kaiser // // 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_KARMA_CONFIX_AUG_19_2008_1041AM) #define BOOST_SPIRIT_REPOSITORY_KARMA_CONFIX_AUG_19_2008_1041AM #if defined(_MSC_VER) #pragma once #endif #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(..., ...)[g] template <> struct use_lazy_directive : mpl::true_ {}; }} /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { namespace repository { namespace karma { using repository::confix_type; using repository::confix; /////////////////////////////////////////////////////////////////////////// template struct confix_generator : spirit::karma::primitive_generator > { typedef Subject subject_type; template struct attribute : traits::attribute_of {}; confix_generator(Subject const& subject, Prefix const& prefix , Suffix const& suffix) : subject(subject), prefix(prefix), suffix(suffix) {} /////////////////////////////////////////////////////////////////////// template bool generate(OutputIterator& sink, Context& ctx, Delimiter const& d , Attribute const& attr) const { // generate the prefix, the embedded item and the suffix return prefix.generate(sink, ctx, d, unused) && subject.generate(sink, ctx, d, attr) && suffix.generate(sink, ctx, d, unused); } template info what(Context const& ctx) const { return info("confix", subject.what(ctx)); } Subject subject; Prefix prefix; Suffix suffix; }; }}}} /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { namespace karma { /////////////////////////////////////////////////////////////////////////// // Generator generators: make_xxx function (objects) /////////////////////////////////////////////////////////////////////////// // creates confix(..., ...)[] directive generator 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::karma::confix_generator< 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::karma::confix_generator > : mpl::or_< has_semantic_action , has_semantic_action , has_semantic_action > {}; }}} #endif