name.hpp 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  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_NAME_060806_HPP
  5. # define BOOST_PARAMETER_NAME_060806_HPP
  6. # include <boost/parameter/keyword.hpp>
  7. # include <boost/parameter/value_type.hpp>
  8. # include <boost/detail/workaround.hpp>
  9. # include <boost/preprocessor/cat.hpp>
  10. # include <boost/preprocessor/stringize.hpp>
  11. # include <boost/preprocessor/control/iif.hpp>
  12. # include <boost/preprocessor/tuple/eat.hpp>
  13. # include <boost/preprocessor/tuple/elem.hpp>
  14. # include <boost/mpl/placeholders.hpp>
  15. # if !defined(BOOST_NO_SFINAE) \
  16. && !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x592))
  17. # include <boost/utility/enable_if.hpp>
  18. # include <boost/mpl/lambda.hpp>
  19. namespace boost { namespace parameter { namespace aux {
  20. // Tag type passed to MPL lambda.
  21. struct lambda_tag;
  22. struct name_tag_base
  23. {};
  24. template <class Tag>
  25. struct name_tag
  26. {};
  27. template <class T>
  28. struct is_name_tag
  29. : mpl::false_
  30. {};
  31. }}} // namespace boost::parameter::aux
  32. namespace boost { namespace mpl {
  33. template <class T>
  34. struct lambda<
  35. T
  36. , typename boost::enable_if<
  37. parameter::aux::is_name_tag<T>, parameter::aux::lambda_tag
  38. >::type
  39. >
  40. {
  41. typedef true_ is_le;
  42. typedef bind3< quote3<parameter::value_type>, arg<2>, T, void> result_;
  43. typedef result_ type;
  44. };
  45. }} // namespace boost::mpl
  46. # endif
  47. # if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
  48. # include <boost/preprocessor/detail/split.hpp>
  49. // From Paul Mensonides
  50. # define BOOST_PARAMETER_IS_BINARY(x) \
  51. BOOST_PP_SPLIT(1, BOOST_PARAMETER_IS_BINARY_C x BOOST_PP_COMMA() 0) \
  52. /**/
  53. # define BOOST_PARAMETER_IS_BINARY_C(x,y) \
  54. ~, 1 BOOST_PP_RPAREN() \
  55. BOOST_PP_TUPLE_EAT(2) BOOST_PP_LPAREN() ~ \
  56. /**/
  57. # else
  58. # include <boost/preprocessor/detail/is_binary.hpp>
  59. # define BOOST_PARAMETER_IS_BINARY(x) BOOST_PP_IS_BINARY(x)
  60. # endif
  61. # define BOOST_PARAMETER_BASIC_NAME(tag_namespace, tag, name) \
  62. namespace tag_namespace \
  63. { \
  64. struct tag \
  65. { \
  66. static char const* keyword_name() \
  67. { \
  68. return BOOST_PP_STRINGIZE(tag); \
  69. } \
  70. \
  71. typedef boost::parameter::value_type< \
  72. boost::mpl::_2, tag, boost::parameter::void_ \
  73. > _; \
  74. \
  75. typedef boost::parameter::value_type< \
  76. boost::mpl::_2, tag, boost::parameter::void_ \
  77. > _1; \
  78. }; \
  79. } \
  80. namespace \
  81. { \
  82. ::boost::parameter::keyword<tag_namespace::tag> const& name \
  83. = ::boost::parameter::keyword<tag_namespace::tag>::instance; \
  84. }
  85. # define BOOST_PARAMETER_COMPLEX_NAME_TUPLE1(tag,namespace) \
  86. (tag, namespace), ~
  87. # define BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name) \
  88. BOOST_PP_TUPLE_ELEM(2, 0, (BOOST_PARAMETER_COMPLEX_NAME_TUPLE1 name))
  89. # define BOOST_PARAMETER_COMPLEX_NAME_TAG(name) \
  90. BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name))
  91. # define BOOST_PARAMETER_COMPLEX_NAME_NAMESPACE(name) \
  92. BOOST_PP_TUPLE_ELEM(2, 1, BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name))
  93. # define BOOST_PARAMETER_COMPLEX_NAME(name) \
  94. BOOST_PARAMETER_BASIC_NAME( \
  95. BOOST_PARAMETER_COMPLEX_NAME_NAMESPACE(name) \
  96. , BOOST_PP_TUPLE_EAT(2) name \
  97. , BOOST_PARAMETER_COMPLEX_NAME_TAG(name) \
  98. ) \
  99. /**/
  100. # define BOOST_PARAMETER_SIMPLE_NAME(name) \
  101. BOOST_PARAMETER_BASIC_NAME(tag, name, BOOST_PP_CAT(_, name))
  102. # define BOOST_PARAMETER_NAME(name) \
  103. BOOST_PP_IIF( \
  104. BOOST_PARAMETER_IS_BINARY(name) \
  105. , BOOST_PARAMETER_COMPLEX_NAME \
  106. , BOOST_PARAMETER_SIMPLE_NAME \
  107. )(name) \
  108. /**/
  109. # define BOOST_PARAMETER_TEMPLATE_KEYWORD(name) \
  110. namespace tag \
  111. { \
  112. struct name; \
  113. } \
  114. template <class T> \
  115. struct name \
  116. : boost::parameter::template_keyword<tag::name, T> \
  117. {}; \
  118. /**/
  119. #endif // BOOST_PARAMETER_NAME_060806_HPP