// 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_KARMA_CENTER_ALIGNMENT_FEB_27_2007_1216PM) #define BOOST_SPIRIT_KARMA_CENTER_ALIGNMENT_FEB_27_2007_1216PM #if defined(_MSC_VER) #pragma once #endif #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { /////////////////////////////////////////////////////////////////////////// // Enablers /////////////////////////////////////////////////////////////////////////// // enables center[] template <> struct use_directive : mpl::true_ {}; // enables center(d)[g] and center(w)[g], where d is a generator // and w is a maximum width template struct use_directive > > : mpl::true_ {}; // enables *lazy* delimit(d)[g], where d provides a generator template <> struct use_lazy_directive : mpl::true_ {}; // enables center(w, d)[g], where d is a generator and w is a maximum // width template struct use_directive > > : spirit::traits::matches {}; // enables *lazy* delimit(w, d)[g], where d provides a generator and w is // a maximum width template <> struct use_lazy_directive : mpl::true_ {}; }} /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace spirit { namespace karma { using spirit::center; using spirit::center_type; namespace detail { /////////////////////////////////////////////////////////////////////// // The center_generate template function is used for all the // different flavors of the center[] directive. /////////////////////////////////////////////////////////////////////// template inline static bool center_generate(OutputIterator& sink, Context& ctx, Delimiter const& d, Attribute const& attr, Embedded const& e, unsigned int const width, Padding const& p) { #if BOOST_WORKAROUND(BOOST_MSVC, BOOST_TESTED_AT(1600)) e; // suppresses warning: C4100: 'e' : unreferenced formal parameter #endif // wrap the given output iterator to allow left padding detail::enable_buffering buffering(sink, width); bool r = false; // first generate the embedded output { detail::disable_counting nocounting(sink); r = e.generate(sink, ctx, d, attr); } // re-enable counting buffering.disable(); // do not perform buffering any more // generate the left padding detail::enable_counting counting(sink); std::size_t const pre = width - (buffering.buffer_size() + width)/2; while (r && counting.count() < pre) r = p.generate(sink, ctx, unused, unused); if (r) { // copy the embedded output to the target output iterator buffering.buffer_copy(); // generate the right padding while (r && counting.count() < width) r = p.generate(sink, ctx, unused, unused); } return r; } } /////////////////////////////////////////////////////////////////////////// // The simple left alignment directive is used for center[...] // generators. It uses default values for the generated width (defined via // the BOOST_KARMA_DEFAULT_FIELD_LENGTH constant) and for the padding // generator (always spaces). /////////////////////////////////////////////////////////////////////////// template struct simple_center_alignment : unary_generator > { typedef Subject subject_type; typedef mpl::int_< generator_properties::countingbuffer | subject_type::properties::value > properties; template struct attribute : traits::attribute_of {}; simple_center_alignment(Subject const& subject, Width width = Width()) : subject(subject), width(width) {} template bool generate(OutputIterator& sink, Context& ctx, Delimiter const& d , Attribute const& attr) const { return detail::center_generate(sink, ctx, d, attr, subject, width, compile(' ')); } template info what(Context& context) const { return info("center", subject.what(context)); } Subject subject; Width width; }; /////////////////////////////////////////////////////////////////////////// // The left alignment directive with padding, is used for generators like // center(padding)[...], where padding is a arbitrary generator // expression. It uses a default value for the generated width (defined // via the BOOST_KARMA_DEFAULT_FIELD_LENGTH constant). /////////////////////////////////////////////////////////////////////////// template struct padding_center_alignment : unary_generator > { typedef Subject subject_type; typedef Padding padding_type; typedef mpl::int_< generator_properties::countingbuffer | subject_type::properties::value | padding_type::properties::value > properties; template struct attribute : traits::attribute_of::type {}; padding_center_alignment(Subject const& subject, Padding const& padding , Width width = Width()) : subject(subject), padding(padding), width(width) {} template bool generate(OutputIterator& sink, Context& ctx, Delimiter const& d , Attribute const& attr) const { return detail::center_generate(sink, ctx, d, attr, subject, width, padding); } template info what(Context& context) const { return info("center", subject.what(context)); } Subject subject; Padding padding; Width width; }; /////////////////////////////////////////////////////////////////////////// // Generator generators: make_xxx function (objects) /////////////////////////////////////////////////////////////////////////// // creates center[] directive generator template struct make_directive { typedef simple_center_alignment result_type; result_type operator()(unused_type, Subject const& subject , unused_type) const { return result_type(subject); } }; // creates center(width)[] directive generator template struct make_directive< terminal_ex > , Subject, Modifiers , typename enable_if_c< integer_traits::is_integral >::type> { typedef simple_center_alignment result_type; template result_type operator()(Terminal const& term, Subject const& subject , unused_type) const { return result_type(subject, fusion::at_c<0>(term.args)); } }; // creates center(pad)[] directive generator template struct make_directive< terminal_ex > , Subject, Modifiers , typename enable_if< mpl::and_< spirit::traits::matches, mpl::not_::is_integral> > > >::type> { typedef typename result_of::compile::type padding_type; typedef padding_center_alignment 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)); } }; // creates center(width, pad)[] directive generator template struct make_directive< terminal_ex > , Subject, Modifiers> { typedef typename result_of::compile::type padding_type; typedef padding_center_alignment result_type; template result_type operator()(Terminal const& term, Subject const& subject , Modifiers const& modifiers) const { return result_type(subject , compile(fusion::at_c<1>(term.args), modifiers) , fusion::at_c<0>(term.args)); } }; }}} // namespace boost::spirit::karma namespace boost { namespace spirit { namespace traits { template struct has_semantic_action > : unary_has_semantic_action {}; template struct has_semantic_action< karma::padding_center_alignment > : unary_has_semantic_action {}; }}} #endif