push.hpp 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. // (C) Copyright 2008 CodeRage, LLC (turkanis at coderage dot com)
  2. // (C) Copyright 2003-2007 Jonathan Turkanis
  3. // Distributed under the Boost Software License, Version 1.0. (See accompanying
  4. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt.)
  5. // See http://www.boost.org/libs/iostreams for documentation.
  6. #ifndef BOOST_IOSTREAMS_DETAIL_PUSH_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_DETAIL_PUSH_HPP_INCLUDED
  8. #if defined(_MSC_VER) && (_MSC_VER >= 1020)
  9. # pragma once
  10. #endif
  11. #include <boost/config.hpp> // BOOST_MSVC.
  12. #include <boost/detail/workaround.hpp>
  13. #include <boost/iostreams/categories.hpp>
  14. #include <boost/iostreams/categories.hpp>
  15. #include <boost/iostreams/detail/adapter/range_adapter.hpp>
  16. #include <boost/iostreams/detail/config/wide_streams.hpp>
  17. #include <boost/iostreams/detail/enable_if_stream.hpp>
  18. #include <boost/iostreams/pipeline.hpp>
  19. #include <boost/iostreams/detail/push_params.hpp>
  20. #include <boost/iostreams/detail/resolve.hpp>
  21. #include <boost/mpl/bool.hpp>
  22. #include <boost/preprocessor/cat.hpp>
  23. #include <boost/preprocessor/control/iif.hpp>
  24. #include <boost/static_assert.hpp>
  25. #include <boost/type_traits/is_convertible.hpp>
  26. //
  27. // Macro: BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(name, mode, ch, helper).
  28. // Description: Defines overloads with name 'name' which forward to a function
  29. // 'helper' which takes a filter or devide by const reference.
  30. //
  31. #define BOOST_IOSTREAMS_DEFINE_PUSH_CONSTRUCTOR(name, mode, ch, helper) \
  32. BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, 0, ?) \
  33. /**/
  34. //
  35. // Macro: BOOST_IOSTREAMS_DEFINE_PUSH(name, mode, ch, helper).
  36. // Description: Defines constructors which forward to a function
  37. // 'helper' which takes a filter or device by const reference.
  38. //
  39. #define BOOST_IOSTREAMS_DEFINE_PUSH(name, mode, ch, helper) \
  40. BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, 1, void) \
  41. /**/
  42. //--------------------Definition of BOOST_IOSTREAMS_DEFINE_PUSH_IMPL----------//
  43. #define BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, arg, helper, has_return) \
  44. this->helper( ::boost::iostreams::detail::resolve<mode, ch>(arg) \
  45. BOOST_IOSTREAMS_PUSH_ARGS() ); \
  46. /**/
  47. #if !BOOST_WORKAROUND(BOOST_MSVC, <= 1300) && \
  48. !BOOST_WORKAROUND(__BORLANDC__, < 0x600) \
  49. /**/
  50. # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
  51. # define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \
  52. template<typename CharType, typename TraitsType> \
  53. BOOST_PP_IIF(has_return, result, explicit) \
  54. name(::std::basic_streambuf<CharType, TraitsType>& sb BOOST_IOSTREAMS_PUSH_PARAMS()) \
  55. { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, sb, helper, has_return); } \
  56. template<typename CharType, typename TraitsType> \
  57. BOOST_PP_IIF(has_return, result, explicit) \
  58. name(::std::basic_istream<CharType, TraitsType>& is BOOST_IOSTREAMS_PUSH_PARAMS()) \
  59. { BOOST_STATIC_ASSERT((!is_convertible<mode, output>::value)); \
  60. BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, is, helper, has_return); } \
  61. template<typename CharType, typename TraitsType> \
  62. BOOST_PP_IIF(has_return, result, explicit) \
  63. name(::std::basic_ostream<CharType, TraitsType>& os BOOST_IOSTREAMS_PUSH_PARAMS()) \
  64. { BOOST_STATIC_ASSERT((!is_convertible<mode, input>::value)); \
  65. BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, os, helper, has_return); } \
  66. template<typename CharType, typename TraitsType> \
  67. BOOST_PP_IIF(has_return, result, explicit) \
  68. name(::std::basic_iostream<CharType, TraitsType>& io BOOST_IOSTREAMS_PUSH_PARAMS()) \
  69. { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, io, helper, has_return); } \
  70. template<typename Iter> \
  71. BOOST_PP_IIF(has_return, result, explicit) \
  72. name(const iterator_range<Iter>& rng BOOST_IOSTREAMS_PUSH_PARAMS()) \
  73. { BOOST_PP_EXPR_IF(has_return, return) \
  74. this->helper( ::boost::iostreams::detail::range_adapter< \
  75. mode, iterator_range<Iter> \
  76. >(rng) \
  77. BOOST_IOSTREAMS_PUSH_ARGS() ); } \
  78. template<typename Pipeline, typename Concept> \
  79. BOOST_PP_IIF(has_return, result, explicit) \
  80. name(const ::boost::iostreams::pipeline<Pipeline, Concept>& p) \
  81. { p.push(*this); } \
  82. template<typename T> \
  83. BOOST_PP_IIF(has_return, result, explicit) \
  84. name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS() BOOST_IOSTREAMS_DISABLE_IF_STREAM(T)) \
  85. { this->helper( ::boost::iostreams::detail::resolve<mode, ch>(t) \
  86. BOOST_IOSTREAMS_PUSH_ARGS() ); } \
  87. /**/
  88. # else // # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
  89. # define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \
  90. BOOST_PP_IF(has_return, result, explicit) \
  91. name(::std::streambuf& sb BOOST_IOSTREAMS_PUSH_PARAMS()) \
  92. { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, sb, helper, has_return); } \
  93. BOOST_PP_IF(has_return, result, explicit) \
  94. name(::std::istream& is BOOST_IOSTREAMS_PUSH_PARAMS()) \
  95. { BOOST_STATIC_ASSERT((!is_convertible<mode, output>::value)); \
  96. BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, is, helper, has_return); } \
  97. BOOST_PP_IF(has_return, result, explicit) \
  98. name(::std::ostream& os BOOST_IOSTREAMS_PUSH_PARAMS()) \
  99. { BOOST_STATIC_ASSERT((!is_convertible<mode, input>::value)); \
  100. BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, os, helper, has_return); } \
  101. BOOST_PP_IF(has_return, result, explicit) \
  102. name(::std::iostream& io BOOST_IOSTREAMS_PUSH_PARAMS()) \
  103. { BOOST_IOSTREAMS_ADAPT_STREAM(mode, ch, io, helper, has_return); } \
  104. template<typename Iter> \
  105. BOOST_PP_IF(has_return, result, explicit) \
  106. name(const iterator_range<Iter>& rng BOOST_IOSTREAMS_PUSH_PARAMS()) \
  107. { BOOST_PP_EXPR_IF(has_return, return) \
  108. this->helper( ::boost::iostreams::detail::range_adapter< \
  109. mode, iterator_range<Iter> \
  110. >(rng) \
  111. BOOST_IOSTREAMS_PUSH_ARGS() ); } \
  112. template<typename Pipeline, typename Concept> \
  113. BOOST_PP_IF(has_return, result, explicit) \
  114. name(const ::boost::iostreams::pipeline<Pipeline, Concept>& p) \
  115. { p.push(*this); } \
  116. template<typename T> \
  117. BOOST_PP_EXPR_IF(has_return, result) \
  118. name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS() BOOST_IOSTREAMS_DISABLE_IF_STREAM(T)) \
  119. { this->helper( ::boost::iostreams::detail::resolve<mode, ch>(t) \
  120. BOOST_IOSTREAMS_PUSH_ARGS() ); } \
  121. /**/
  122. # endif // # ifndef BOOST_IOSTREAMS_NO_STREAM_TEMPLATES
  123. #else // #if VC6, VC7.0, Borland 5.x
  124. # define BOOST_IOSTREAMS_DEFINE_PUSH_IMPL(name, mode, ch, helper, has_return, result) \
  125. template<typename T> \
  126. void BOOST_PP_CAT(name, _msvc_impl) \
  127. ( ::boost::mpl::true_, const T& t BOOST_IOSTREAMS_PUSH_PARAMS() ) \
  128. { t.push(*this); } \
  129. template<typename T> \
  130. void BOOST_PP_CAT(name, _msvc_impl) \
  131. ( ::boost::mpl::false_, const T& t BOOST_IOSTREAMS_PUSH_PARAMS() ) \
  132. { this->helper( ::boost::iostreams::detail::resolve<mode, ch>(t) \
  133. BOOST_IOSTREAMS_PUSH_ARGS() ); } \
  134. template<typename T> \
  135. BOOST_PP_IF(has_return, result, explicit) \
  136. name(const T& t BOOST_IOSTREAMS_PUSH_PARAMS()) \
  137. { \
  138. this->BOOST_PP_CAT(name, _msvc_impl) \
  139. ( ::boost::iostreams::detail::is_pipeline<T>(), \
  140. t BOOST_IOSTREAMS_PUSH_ARGS() ); \
  141. } \
  142. /**/
  143. #endif // #if VC6, VC7.0, Borland 5.x
  144. #endif // #ifndef BOOST_IOSTREAMS_DETAIL_PUSH_HPP_INCLUDED