member.hpp 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. #if !BOOST_PHOENIX_IS_ITERATING
  2. #ifndef BOOST_PHOENIX_OPERATOR_MEMBER_HPP
  3. #define BOOST_PHOENIX_OPERATOR_MEMBER_HPP
  4. #include <boost/phoenix/core/limits.hpp>
  5. #include <boost/get_pointer.hpp>
  6. #include <boost/phoenix/core/domain.hpp>
  7. #include <boost/phoenix/core/meta_grammar.hpp>
  8. #include <boost/phoenix/core/call.hpp>
  9. #include <boost/phoenix/operator/detail/mem_fun_ptr_gen.hpp>
  10. #include <boost/phoenix/support/iterate.hpp>
  11. #include <boost/type_traits/remove_reference.hpp>
  12. #include <boost/type_traits/is_member_function_pointer.hpp>
  13. #include <boost/proto/operators.hpp>
  14. #if !defined(BOOST_PHOENIX_DONT_USE_PREPROCESSED_FILES)
  15. #include <boost/phoenix/operator/preprocessed/member.hpp>
  16. #else
  17. #if defined(__WAVE__) && defined(BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
  18. #pragma wave option(preserve: 2, line: 0, output: "preprocessed/member_" BOOST_PHOENIX_LIMIT_STR ".hpp")
  19. #endif
  20. /*==============================================================================
  21. Copyright (c) 2005-2010 Joel de Guzman
  22. Copyright (c) 2010 Thomas Heller
  23. Distributed under the Boost Software License, Version 1.0. (See accompanying
  24. file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  25. ==============================================================================*/
  26. #if defined(__WAVE__) && defined(BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
  27. #pragma wave option(preserve: 1)
  28. #endif
  29. #include <boost/phoenix/operator/detail/define_operator.hpp>
  30. namespace boost { namespace phoenix
  31. {
  32. BOOST_PHOENIX_BINARY_OPERATORS((mem_ptr))
  33. template<>
  34. struct phoenix_generator::case_<proto::tag::mem_ptr>
  35. : proto::or_<
  36. proto::when<
  37. proto::and_<
  38. proto::mem_ptr<meta_grammar, proto::terminal<proto::_> >
  39. , proto::if_<is_member_function_pointer<boost::remove_reference<proto::call<proto::_value(proto::_right)> > >()>
  40. >
  41. , proto::call<detail::make_mem_fun_ptr_gen(proto::_left, proto::call<proto::_value(proto::_right)>)>
  42. >
  43. , proto::otherwise<
  44. proto::call<proto::pod_generator<actor>(proto::_)>
  45. >
  46. >
  47. {};
  48. namespace result_of
  49. {
  50. template <
  51. typename Context
  52. , BOOST_PHOENIX_typename_A_void(BOOST_PHOENIX_LIMIT)
  53. , typename Dummy = void
  54. >
  55. struct mem_fun_ptr_eval;
  56. #include <boost/phoenix/operator/detail/mem_fun_ptr_eval_result_of.hpp>
  57. }
  58. struct mem_fun_ptr_eval
  59. {
  60. template<typename Sig>
  61. struct result;
  62. #define BOOST_PHOENIX_MEMBER_EVAL(Z, N, D) \
  63. BOOST_PP_COMMA_IF(BOOST_PP_NOT(BOOST_PP_EQUAL(N, 2))) \
  64. boost::phoenix::eval(BOOST_PP_CAT(a, N), ctx) \
  65. /**/
  66. #define BOOST_PHOENIX_ITERATION_PARAMS \
  67. (3, (2, BOOST_PHOENIX_LIMIT, \
  68. <boost/phoenix/operator/member.hpp>)) \
  69. /**/
  70. #include BOOST_PHOENIX_ITERATE()
  71. #undef BOOST_PHOENIX_MEMBER_EVAL
  72. };
  73. template <typename Dummy>
  74. struct default_actions::when<rule::mem_fun_ptr, Dummy>
  75. : call<mem_fun_ptr_eval>
  76. {};
  77. }}
  78. #include <boost/phoenix/operator/detail/undef_operator.hpp>
  79. #if defined(__WAVE__) && defined(BOOST_PHOENIX_CREATE_PREPROCESSED_FILES)
  80. #pragma wave option(output: null)
  81. #endif
  82. #endif // BOOST_PHOENIX_DONT_USE_PREPROCESSED_FILES
  83. #endif
  84. #else // BOOST_PHOENIX_IS_ITERATING
  85. template <typename This, BOOST_PHOENIX_typename_A, typename Context>
  86. struct result<This(BOOST_PHOENIX_A, Context)>
  87. : result<This(BOOST_PHOENIX_A_const_ref, Context)>
  88. {};
  89. template <typename This, BOOST_PHOENIX_typename_A, typename Context>
  90. struct result<This(BOOST_PHOENIX_A_ref, Context)>
  91. : result_of::mem_fun_ptr_eval<Context, BOOST_PHOENIX_A>
  92. {};
  93. template <BOOST_PHOENIX_typename_A, typename Context>
  94. typename result_of::mem_fun_ptr_eval<Context, BOOST_PHOENIX_A>::type
  95. operator()(
  96. BOOST_PHOENIX_A_const_ref_a
  97. , Context const & ctx
  98. ) const
  99. {
  100. return
  101. (
  102. get_pointer(boost::phoenix::eval(a0, ctx))
  103. ->*boost::phoenix::eval(a1, ctx)
  104. )(
  105. BOOST_PP_REPEAT_FROM_TO(
  106. 2
  107. , BOOST_PHOENIX_ITERATION
  108. , BOOST_PHOENIX_MEMBER_EVAL
  109. , BOOST_PHOENIX_ITERATION
  110. )
  111. );
  112. }
  113. #endif