sl@0: // (C) Copyright Jonathan Turkanis 2003. sl@0: // Distributed under the Boost Software License, Version 1.0. (See accompanying sl@0: // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.) sl@0: sl@0: // See http://www.boost.org/libs/iostreams for documentation. sl@0: sl@0: #ifndef BOOST_IOSTREAMS_DETAIL_PUSH_HPP_INCLUDED sl@0: #define BOOST_IOSTREAMS_DETAIL_PUSH_HPP_INCLUDED sl@0: sl@0: #if defined(_MSC_VER) && (_MSC_VER >= 1020) sl@0: # pragma once sl@0: #endif sl@0: sl@0: #include // BOOST_MSVC. sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: // sl@0: // Macro: BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(mode, name, helper). sl@0: // Description: Defines overloads with name 'name' which forward to a function sl@0: // 'helper' which takes a filter or devide by const reference. sl@0: // sl@0: #define BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(name, mode, ch, helper) \ sl@0: BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, 0, ?) \ sl@0: /**/ sl@0: sl@0: // sl@0: // Macro: BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(mode, name, helper). sl@0: // Description: Defines constructors which forward to a function sl@0: // 'helper' which takes a filter or device by const reference. sl@0: // sl@0: #define BOOST_IOSTREAMS_DEFINE_PUSH(name, mode, ch, helper) \ sl@0: BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, 1, void) \ sl@0: /**/ sl@0: sl@0: //--------------------Definition of BOOST_IOSTREAMS_DEFINE_PUSH_IMPL----------// sl@0: sl@0: #define BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, arg, helper, has_return) \ sl@0: this->helper( ::boost::iostreams::detail::resolve(arg) \ sl@0: BOOST_IOSTREAMS_PUSH_ARGS() ); \ sl@0: /**/ sl@0: sl@0: #if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300) && \ sl@0: !BOOST_WORKAROUND(__BORLANDC__, < 0x600) \ sl@0: /**/ sl@0: # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES sl@0: # define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \ sl@0: template \ sl@0: BOOST_PP_IIF(has_return, result, explicit) \ sl@0: name(::std::basic_streambuf& sb BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, sb, helper, has_return); } \ sl@0: template \ sl@0: BOOST_PP_IIF(has_return, result, explicit) \ sl@0: name(::std::basic_istream& is BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_STATIC_ASSERT((!is_convertible::value)); \ sl@0: BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, is, helper, has_return); } \ sl@0: template \ sl@0: BOOST_PP_IIF(has_return, result, explicit) \ sl@0: name(::std::basic_ostream& os BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_STATIC_ASSERT((!is_convertible::value)); \ sl@0: BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, os, helper, has_return); } \ sl@0: template \ sl@0: BOOST_PP_IIF(has_return, result, explicit) \ sl@0: name(::std::basic_iostream& io BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, io, helper, has_return); } \ sl@0: template \ sl@0: BOOST_PP_IIF(has_return, result, explicit) \ sl@0: name(const iterator_range& rng BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_PP_EXPR_IF(has_return, return) \ sl@0: this->helper( ::boost::iostreams::detail::range_adapter< \ sl@0: mode, iterator_range \ sl@0: >(rng) \ sl@0: BOOST_IOSTREAMS_PUSH_ARGS() ); } \ sl@0: template \ sl@0: BOOST_PP_IIF(has_return, result, explicit) \ sl@0: name(const ::boost::iostreams::pipeline& p) \ sl@0: { p.push(*this); } \ sl@0: template \ sl@0: BOOST_PP_IIF(has_return, result, explicit) \ sl@0: name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS() BOOST_IOSTREAMS_DISABLE_IF_STREAM(T)) \ sl@0: { this->helper( ::boost::iostreams::detail::resolve(t) \ sl@0: BOOST_IOSTREAMS_PUSH_ARGS() ); } \ sl@0: /**/ sl@0: # else // # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES sl@0: # define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \ sl@0: BOOST_PP_IF(has_return, result, explicit) \ sl@0: name(::std::streambuf& sb BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, sb, helper, has_return); } \ sl@0: BOOST_PP_IF(has_return, result, explicit) \ sl@0: name(::std::istream& is BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_STATIC_ASSERT((!is_convertible::value)); \ sl@0: BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, is, helper, has_return); } \ sl@0: BOOST_PP_IF(has_return, result, explicit) \ sl@0: name(::std::ostream& os BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_STATIC_ASSERT((!is_convertible::value)); \ sl@0: BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, os, helper, has_return); } \ sl@0: BOOST_PP_IF(has_return, result, explicit) \ sl@0: name(::std::iostream& io BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, io, helper, has_return); } \ sl@0: template \ sl@0: BOOST_PP_IF(has_return, result, explicit) \ sl@0: name(const iterator_range& rng BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { BOOST_PP_EXPR_IF(has_return, return) \ sl@0: this->helper( ::boost::iostreams::detail::range_adapter< \ sl@0: mode, iterator_range \ sl@0: >(rng) \ sl@0: BOOST_IOSTREAMS_PUSH_ARGS() ); } \ sl@0: template \ sl@0: BOOST_PP_IF(has_return, result, explicit) \ sl@0: name(const ::boost::iostreams::pipeline& p) \ sl@0: { p.push(*this); } \ sl@0: template \ sl@0: BOOST_PP_EXPR_IF(has_return, result) \ sl@0: name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS() BOOST_IOSTREAMS_DISABLE_IF_STREAM(T)) \ sl@0: { this->helper( ::boost::iostreams::detail::resolve(t) \ sl@0: BOOST_IOSTREAMS_PUSH_ARGS() ); } \ sl@0: /**/ sl@0: # endif // # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES sl@0: #else // #if VC6, VC7.0, Borland 5.x sl@0: # define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \ sl@0: template \ sl@0: void BOOST_PP_CAT(name, _msvc_impl) \ sl@0: ( ::boost::mpl::true_, const T& t BOOST_IOSTREAMS_PUSH_PARAMS() ) \ sl@0: { t.push(*this); } \ sl@0: template \ sl@0: void BOOST_PP_CAT(name, _msvc_impl) \ sl@0: ( ::boost::mpl::false_, const T& t BOOST_IOSTREAMS_PUSH_PARAMS() ) \ sl@0: { this->helper( ::boost::iostreams::detail::resolve(t) \ sl@0: BOOST_IOSTREAMS_PUSH_ARGS() ); } \ sl@0: template \ sl@0: BOOST_PP_IF(has_return, result, explicit) \ sl@0: name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS()) \ sl@0: { \ sl@0: this->BOOST_PP_CAT(name, _msvc_impl) \ sl@0: ( ::boost::iostreams::detail::is_pipeline(), \ sl@0: t BOOST_IOSTREAMS_PUSH_ARGS() ); \ sl@0: } \ sl@0: /**/ sl@0: #endif // #if VC6, VC7.0, Borland 5.x sl@0: sl@0: #endif // #ifndef BOOST_IOSTREAMS_DETAIL_PUSH_HPP_INCLUDED