cast.hpp 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. // Copyright Daniel Wallin 2006. Use, modification and distribution is
  2. // subject to the Boost Software License, Version 1.0. (See accompanying
  3. // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  4. #ifndef BOOST_PARAMETER_CAST_060902_HPP
  5. # define BOOST_PARAMETER_CAST_060902_HPP
  6. # include <boost/detail/workaround.hpp>
  7. # if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  8. # include <boost/type_traits/add_reference.hpp>
  9. # include <boost/type_traits/remove_const.hpp>
  10. # endif
  11. namespace boost { namespace parameter { namespace aux {
  12. struct use_default_tag {};
  13. # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  14. # define BOOST_PARAMETER_FUNCTION_CAST(value, predicate) value
  15. # else
  16. // Handles possible implicit casts. Used by preprocessor.hpp to
  17. // normalize user input.
  18. //
  19. // cast<void*>::execute() is identity
  20. // cast<void*(X)>::execute() is identity
  21. // cast<void(X)>::execute() casts to X
  22. //
  23. // preprocessor.hpp uses this like this:
  24. //
  25. // #define X(value, predicate)
  26. // cast<void predicate>::execute(value)
  27. //
  28. // X(something, *)
  29. // X(something, *(predicate))
  30. // X(something, (int))
  31. template <class T, class Args>
  32. struct cast;
  33. template <class Args>
  34. struct cast<void*, Args>
  35. {
  36. static use_default_tag execute(use_default_tag)
  37. {
  38. return use_default_tag();
  39. }
  40. static use_default_tag remove_const(use_default_tag)
  41. {
  42. return use_default_tag();
  43. }
  44. template <class U>
  45. static U& execute(U& value)
  46. {
  47. return value;
  48. }
  49. template <class U>
  50. static U& remove_const(U& x)
  51. {
  52. return x;
  53. }
  54. };
  55. #if BOOST_WORKAROUND(__SUNPRO_CC, BOOST_TESTED_AT(0x580))
  56. typedef void* voidstar;
  57. template <class T, class Args>
  58. struct cast<voidstar(T), Args>
  59. : cast<void*, Args>
  60. {
  61. };
  62. #else
  63. template <class T, class Args>
  64. struct cast<void*(T), Args>
  65. : cast<void*, Args>
  66. {
  67. };
  68. #endif
  69. // This is a hack used in cast<> to turn the user supplied type,
  70. // which may or may not be a placeholder expression into one, so
  71. // that it will be properly evaluated by mpl::apply.
  72. template <class T, class Dummy = mpl::_1>
  73. struct as_placeholder_expr
  74. {
  75. typedef T type;
  76. };
  77. template <class T, class Args>
  78. struct cast<void(T), Args>
  79. {
  80. typedef typename mpl::apply2<
  81. as_placeholder_expr<T>, Args, Args>::type type0;
  82. typedef typename boost::add_reference<
  83. typename boost::remove_const<type0>::type
  84. >::type reference;
  85. static use_default_tag execute(use_default_tag)
  86. {
  87. return use_default_tag();
  88. }
  89. static use_default_tag remove_const(use_default_tag)
  90. {
  91. return use_default_tag();
  92. }
  93. static type0 execute(type0 value)
  94. {
  95. return value;
  96. }
  97. template <class U>
  98. static reference remove_const(U const& x)
  99. {
  100. return const_cast<reference>(x);
  101. }
  102. };
  103. # define BOOST_PARAMETER_FUNCTION_CAST(value, predicate, args) \
  104. boost::parameter::aux::cast<void predicate, args>::remove_const( \
  105. boost::parameter::aux::cast<void predicate, args>::execute(value) \
  106. )
  107. # endif
  108. }}} // namespace boost::parameter::aux
  109. #endif // BOOST_PARAMETER_CAST_060902_HPP