os/ossrv/ossrv_pub/boost_apis/boost/parameter/name.hpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright Daniel Wallin 2006. Use, modification and distribution is
sl@0
     2
// subject to the Boost Software License, Version 1.0. (See accompanying
sl@0
     3
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
sl@0
     4
sl@0
     5
#ifndef BOOST_PARAMETER_NAME_060806_HPP
sl@0
     6
# define BOOST_PARAMETER_NAME_060806_HPP
sl@0
     7
sl@0
     8
# include <boost/parameter/keyword.hpp>
sl@0
     9
# include <boost/parameter/value_type.hpp>
sl@0
    10
# include <boost/detail/workaround.hpp>
sl@0
    11
# include <boost/preprocessor/cat.hpp>
sl@0
    12
# include <boost/preprocessor/stringize.hpp>
sl@0
    13
# include <boost/preprocessor/control/iif.hpp>
sl@0
    14
# include <boost/preprocessor/tuple/eat.hpp>
sl@0
    15
# include <boost/preprocessor/tuple/elem.hpp>
sl@0
    16
# include <boost/mpl/placeholders.hpp>
sl@0
    17
sl@0
    18
# if !defined(BOOST_NO_SFINAE) \
sl@0
    19
  && !defined(BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION)
sl@0
    20
sl@0
    21
#  include <boost/utility/enable_if.hpp>
sl@0
    22
#  include <boost/mpl/lambda.hpp>
sl@0
    23
sl@0
    24
namespace boost { namespace parameter { namespace aux {
sl@0
    25
sl@0
    26
// Tag type passed to MPL lambda.
sl@0
    27
struct lambda_tag;
sl@0
    28
sl@0
    29
struct name_tag_base 
sl@0
    30
{};
sl@0
    31
sl@0
    32
template <class Tag>
sl@0
    33
struct name_tag
sl@0
    34
{};
sl@0
    35
sl@0
    36
template <class T>
sl@0
    37
struct is_name_tag
sl@0
    38
  : mpl::false_
sl@0
    39
{};
sl@0
    40
sl@0
    41
}}} // namespace boost::parameter::aux
sl@0
    42
sl@0
    43
namespace boost { namespace mpl {
sl@0
    44
sl@0
    45
template <class T>
sl@0
    46
struct lambda<
sl@0
    47
    T
sl@0
    48
  , typename enable_if<
sl@0
    49
        parameter::aux::is_name_tag<T>, parameter::aux::lambda_tag
sl@0
    50
    >::type
sl@0
    51
>
sl@0
    52
{
sl@0
    53
    typedef true_ is_le;
sl@0
    54
    typedef bind3< quote3<parameter::value_type>, arg<2>, T, void> result_;
sl@0
    55
    typedef result_ type;
sl@0
    56
};
sl@0
    57
sl@0
    58
}} // namespace boost::mpl
sl@0
    59
sl@0
    60
# endif
sl@0
    61
sl@0
    62
# if BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564))
sl@0
    63
# include <boost/preprocessor/detail/split.hpp>
sl@0
    64
// From Paul Mensonides
sl@0
    65
#  define BOOST_PARAMETER_IS_BINARY(x) \
sl@0
    66
    BOOST_PP_SPLIT(1, BOOST_PARAMETER_IS_BINARY_C x BOOST_PP_COMMA() 0) \
sl@0
    67
    /**/
sl@0
    68
#  define BOOST_PARAMETER_IS_BINARY_C(x,y) \
sl@0
    69
    ~, 1 BOOST_PP_RPAREN() \
sl@0
    70
    BOOST_PP_TUPLE_EAT(2) BOOST_PP_LPAREN() ~ \
sl@0
    71
    /**/
sl@0
    72
# else
sl@0
    73
#  include <boost/preprocessor/detail/is_binary.hpp>
sl@0
    74
#  define BOOST_PARAMETER_IS_BINARY(x) BOOST_PP_IS_BINARY(x)
sl@0
    75
# endif
sl@0
    76
sl@0
    77
# if BOOST_WORKAROUND(BOOST_MSVC, < 1300)
sl@0
    78
#  define BOOST_PARAMETER_NAME_OBJECT(tag, name)                    \
sl@0
    79
    static ::boost::parameter::keyword<tag>& name                   \
sl@0
    80
       = ::boost::parameter::keyword<tag>::get();
sl@0
    81
# else
sl@0
    82
#  define BOOST_PARAMETER_NAME_OBJECT(tag, name)                    \
sl@0
    83
    namespace                                                       \
sl@0
    84
    {                                                               \
sl@0
    85
       ::boost::parameter::keyword<tag>& name                       \
sl@0
    86
       = ::boost::parameter::keyword<tag>::get();                   \
sl@0
    87
    }
sl@0
    88
# endif
sl@0
    89
sl@0
    90
# define BOOST_PARAMETER_BASIC_NAME(tag_namespace, tag, name)       \
sl@0
    91
    namespace tag_namespace                                         \
sl@0
    92
    {                                                               \
sl@0
    93
      struct tag                                                    \
sl@0
    94
      {                                                             \
sl@0
    95
          static char const* keyword_name()                         \
sl@0
    96
          {                                                         \
sl@0
    97
              return BOOST_PP_STRINGIZE(tag);                       \
sl@0
    98
          }                                                         \
sl@0
    99
                                                                    \
sl@0
   100
          typedef boost::parameter::value_type<                     \
sl@0
   101
              boost::mpl::_2, tag, boost::parameter::void_          \
sl@0
   102
          > _;                                                      \
sl@0
   103
                                                                    \
sl@0
   104
          typedef boost::parameter::value_type<                     \
sl@0
   105
              boost::mpl::_2, tag, boost::parameter::void_          \
sl@0
   106
          > _1;                                                     \
sl@0
   107
      };                                                            \
sl@0
   108
    }                                                               \
sl@0
   109
    BOOST_PARAMETER_NAME_OBJECT(tag_namespace::tag, name)
sl@0
   110
sl@0
   111
# define BOOST_PARAMETER_COMPLEX_NAME_TUPLE1(tag,namespace)         \
sl@0
   112
    (tag, namespace), ~
sl@0
   113
sl@0
   114
# define BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name)                   \
sl@0
   115
    BOOST_PP_TUPLE_ELEM(2, 0, (BOOST_PARAMETER_COMPLEX_NAME_TUPLE1 name))
sl@0
   116
sl@0
   117
# define BOOST_PARAMETER_COMPLEX_NAME_TAG(name)                     \
sl@0
   118
    BOOST_PP_TUPLE_ELEM(2, 0, BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name))
sl@0
   119
sl@0
   120
# define BOOST_PARAMETER_COMPLEX_NAME_NAMESPACE(name)               \
sl@0
   121
    BOOST_PP_TUPLE_ELEM(2, 1, BOOST_PARAMETER_COMPLEX_NAME_TUPLE(name))
sl@0
   122
sl@0
   123
# define BOOST_PARAMETER_COMPLEX_NAME(name)                         \
sl@0
   124
    BOOST_PARAMETER_BASIC_NAME(                                     \
sl@0
   125
        BOOST_PARAMETER_COMPLEX_NAME_NAMESPACE(name)                \
sl@0
   126
      , BOOST_PP_TUPLE_EAT(2) name                                  \
sl@0
   127
      , BOOST_PARAMETER_COMPLEX_NAME_TAG(name)                      \
sl@0
   128
    )                                                               \
sl@0
   129
/**/
sl@0
   130
sl@0
   131
# define BOOST_PARAMETER_SIMPLE_NAME(name)                          \
sl@0
   132
    BOOST_PARAMETER_BASIC_NAME(tag, name, BOOST_PP_CAT(_, name))
sl@0
   133
sl@0
   134
# define BOOST_PARAMETER_NAME(name)                                 \
sl@0
   135
    BOOST_PP_IIF(                                                   \
sl@0
   136
        BOOST_PARAMETER_IS_BINARY(name)                             \
sl@0
   137
      , BOOST_PARAMETER_COMPLEX_NAME                                \
sl@0
   138
      , BOOST_PARAMETER_SIMPLE_NAME                                 \
sl@0
   139
    )(name)                                                         \
sl@0
   140
/**/
sl@0
   141
sl@0
   142
sl@0
   143
# define BOOST_PARAMETER_TEMPLATE_KEYWORD(name)                     \
sl@0
   144
    namespace tag                                                   \
sl@0
   145
    {                                                               \
sl@0
   146
      struct name;                                                  \
sl@0
   147
    }                                                               \
sl@0
   148
    template <class T>                                              \
sl@0
   149
    struct name                                                     \
sl@0
   150
      : boost::parameter::template_keyword<tag::name, T>            \
sl@0
   151
    {};                                                             \
sl@0
   152
/**/
sl@0
   153
sl@0
   154
#endif // BOOST_PARAMETER_NAME_060806_HPP
sl@0
   155