pipeline.hpp 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  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_PIPABLE_HPP_INCLUDED
  7. #define BOOST_IOSTREAMS_PIPABLE_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/detail/template_params.hpp>
  14. #include <boost/iostreams/traits.hpp>
  15. #include <boost/mpl/bool.hpp>
  16. #include <boost/preprocessor/punctuation/comma_if.hpp>
  17. #include <boost/preprocessor/repetition/enum_params.hpp>
  18. #include <boost/static_assert.hpp>
  19. #if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
  20. # include <boost/type_traits/is_base_and_derived.hpp>
  21. #endif
  22. #define BOOST_IOSTREAMS_PIPABLE(filter, arity) \
  23. template< BOOST_PP_ENUM_PARAMS(arity, typename T) \
  24. BOOST_PP_COMMA_IF(arity) typename Component> \
  25. ::boost::iostreams::pipeline< \
  26. ::boost::iostreams::detail::pipeline_segment< \
  27. filter BOOST_IOSTREAMS_TEMPLATE_ARGS(arity, T) \
  28. >, \
  29. Component \
  30. > operator|( const filter BOOST_IOSTREAMS_TEMPLATE_ARGS(arity, T)& f, \
  31. const Component& c ) \
  32. { \
  33. typedef ::boost::iostreams::detail::pipeline_segment< \
  34. filter BOOST_IOSTREAMS_TEMPLATE_ARGS(arity, T) \
  35. > segment; \
  36. return ::boost::iostreams::pipeline<segment, Component> \
  37. (segment(f), c); \
  38. } \
  39. /**/
  40. namespace boost { namespace iostreams {
  41. template<typename Pipeline, typename Component>
  42. struct pipeline;
  43. namespace detail {
  44. #if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
  45. struct pipeline_base { };
  46. template<typename T>
  47. struct is_pipeline
  48. : is_base_and_derived<pipeline_base, T>
  49. { };
  50. #endif
  51. #if BOOST_WORKAROUND(__BORLANDC__, < 0x600)
  52. template<typename T>
  53. struct is_pipeline : mpl::false_ { };
  54. template<typename Pipeline, typename Component>
  55. struct is_pipeline< pipeline<Pipeline, Component> > : mpl::true_ { };
  56. #endif
  57. template<typename Component>
  58. class pipeline_segment
  59. #if BOOST_WORKAROUND(BOOST_MSVC, <= 1300)
  60. : pipeline_base
  61. #endif
  62. {
  63. public:
  64. pipeline_segment(const Component& component)
  65. : component_(component)
  66. { }
  67. template<typename Fn>
  68. void for_each(Fn fn) const { fn(component_); }
  69. template<typename Chain>
  70. void push(Chain& chn) const { chn.push(component_); }
  71. private:
  72. pipeline_segment operator=(const pipeline_segment&);
  73. const Component& component_;
  74. };
  75. } // End namespace detail.
  76. //------------------Definition of Pipeline------------------------------------//
  77. template<typename Pipeline, typename Component>
  78. struct pipeline : Pipeline {
  79. typedef Pipeline pipeline_type;
  80. typedef Component component_type;
  81. pipeline(const Pipeline& p, const Component& component)
  82. : Pipeline(p), component_(component)
  83. { }
  84. template<typename Fn>
  85. void for_each(Fn fn) const
  86. {
  87. Pipeline::for_each(fn);
  88. fn(component_);
  89. }
  90. template<typename Chain>
  91. void push(Chain& chn) const
  92. {
  93. Pipeline::push(chn);
  94. chn.push(component_);
  95. }
  96. const Pipeline& tail() const { return *this; }
  97. const Component& head() const { return component_; }
  98. private:
  99. pipeline operator=(const pipeline&);
  100. const Component& component_;
  101. };
  102. template<typename Pipeline, typename Filter, typename Component>
  103. pipeline<pipeline<Pipeline, Filter>, Component>
  104. operator|(const pipeline<Pipeline, Filter>& p, const Component& cmp)
  105. {
  106. BOOST_STATIC_ASSERT(is_filter<Filter>::value);
  107. return pipeline<pipeline<Pipeline, Filter>, Component>(p, cmp);
  108. }
  109. } } // End namespaces iostreams, boost.
  110. #endif // #ifndef BOOST_IOSTREAMS_PIPABLE_HPP_INCLUDED