os/ossrv/ossrv_pub/boost_apis/boost/parameter/macros.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright David Abrahams, Daniel Wallin 2003. Use, modification and 
sl@0
     2
// distribution is subject to the Boost Software License, Version 1.0. 
sl@0
     3
// (See accompanying file LICENSE_1_0.txt or copy at 
sl@0
     4
// http://www.boost.org/LICENSE_1_0.txt)
sl@0
     5
sl@0
     6
#ifndef BOOST_PARAMETER_MACROS_050412_HPP
sl@0
     7
#define BOOST_PARAMETER_MACROS_050412_HPP
sl@0
     8
sl@0
     9
#include <boost/preprocessor/tuple/elem.hpp>
sl@0
    10
#include <boost/preprocessor/repetition/repeat_from_to.hpp>
sl@0
    11
#include <boost/preprocessor/arithmetic/inc.hpp>
sl@0
    12
#include <boost/preprocessor/logical/bool.hpp>
sl@0
    13
#include <boost/preprocessor/punctuation/comma_if.hpp>
sl@0
    14
#include <boost/preprocessor/control/expr_if.hpp>
sl@0
    15
#include <boost/preprocessor/repetition/enum_params.hpp>
sl@0
    16
#include <boost/preprocessor/repetition/enum_binary_params.hpp>
sl@0
    17
#include <boost/preprocessor/cat.hpp>
sl@0
    18
sl@0
    19
#define BOOST_PARAMETER_FUN_TEMPLATE_HEAD1(n) \
sl@0
    20
    template<BOOST_PP_ENUM_PARAMS(n, class T)>
sl@0
    21
sl@0
    22
#define BOOST_PARAMETER_FUN_TEMPLATE_HEAD0(n)
sl@0
    23
sl@0
    24
#ifndef BOOST_NO_SFINAE
sl@0
    25
sl@0
    26
# define BOOST_PARAMETER_MATCH_TYPE(n, param)           \
sl@0
    27
            BOOST_PP_EXPR_IF(n, typename) param::match  \
sl@0
    28
            <                                           \
sl@0
    29
                BOOST_PP_ENUM_PARAMS(n, T)              \
sl@0
    30
            >::type 
sl@0
    31
sl@0
    32
#else
sl@0
    33
sl@0
    34
# define BOOST_PARAMETER_MATCH_TYPE(n, param) param
sl@0
    35
sl@0
    36
#endif
sl@0
    37
sl@0
    38
#define BOOST_PARAMETER_FUN_DECL(z, n, params)                                      \
sl@0
    39
                                                                                    \
sl@0
    40
    BOOST_PP_CAT(BOOST_PARAMETER_FUN_TEMPLATE_HEAD, BOOST_PP_BOOL(n))(n)            \
sl@0
    41
                                                                                    \
sl@0
    42
    BOOST_PP_TUPLE_ELEM(3, 0, params)                                               \
sl@0
    43
        BOOST_PP_TUPLE_ELEM(3, 1, params)(                                          \
sl@0
    44
            BOOST_PP_ENUM_BINARY_PARAMS(n, T, const& p)                             \
sl@0
    45
            BOOST_PP_COMMA_IF(n)                                                    \
sl@0
    46
            BOOST_PARAMETER_MATCH_TYPE(n,BOOST_PP_TUPLE_ELEM(3, 2, params))         \
sl@0
    47
            kw = BOOST_PP_TUPLE_ELEM(3, 2, params)()                                \
sl@0
    48
        )                                                                           \
sl@0
    49
    {                                                                               \
sl@0
    50
        return BOOST_PP_CAT(BOOST_PP_TUPLE_ELEM(3, 1, params), _with_named_params)( \
sl@0
    51
            kw(BOOST_PP_ENUM_PARAMS(n, p))                                          \
sl@0
    52
        );                                                                          \
sl@0
    53
    }
sl@0
    54
sl@0
    55
// Generates:
sl@0
    56
//
sl@0
    57
// template<class Params>
sl@0
    58
// ret name ## _with_named_params(Params const&);
sl@0
    59
//
sl@0
    60
// template<class T0>
sl@0
    61
// ret name(T0 const& p0, typename parameters::match<T0>::type kw = parameters())
sl@0
    62
// {
sl@0
    63
//     return name ## _with_named_params(kw(p0));
sl@0
    64
// }
sl@0
    65
//
sl@0
    66
// template<class T0, ..., class TN>
sl@0
    67
// ret name(T0 const& p0, ..., TN const& PN
sl@0
    68
//    , typename parameters::match<T0, ..., TN>::type kw = parameters())
sl@0
    69
// {
sl@0
    70
//     return name ## _with_named_params(kw(p0, ..., pN));
sl@0
    71
// }
sl@0
    72
//
sl@0
    73
// template<class Params>
sl@0
    74
// ret name ## _with_named_params(Params const&)
sl@0
    75
//
sl@0
    76
// lo and hi determines the min and max arity of the generated functions.
sl@0
    77
sl@0
    78
#define BOOST_PARAMETER_FUN(ret, name, lo, hi, parameters)                          \
sl@0
    79
                                                                                    \
sl@0
    80
    template<class Params>                                                          \
sl@0
    81
    ret BOOST_PP_CAT(name, _with_named_params)(Params const& p);                    \
sl@0
    82
                                                                                    \
sl@0
    83
    BOOST_PP_REPEAT_FROM_TO(                                                        \
sl@0
    84
        lo, BOOST_PP_INC(hi), BOOST_PARAMETER_FUN_DECL, (ret, name, parameters))    \
sl@0
    85
                                                                                    \
sl@0
    86
    template<class Params>                                                          \
sl@0
    87
    ret BOOST_PP_CAT(name, _with_named_params)(Params const& p)
sl@0
    88
sl@0
    89
#define BOOST_PARAMETER_MEMFUN(ret, name, lo, hi, parameters)                       \
sl@0
    90
                                                                                    \
sl@0
    91
    BOOST_PP_REPEAT_FROM_TO(                                                        \
sl@0
    92
        lo, BOOST_PP_INC(hi), BOOST_PARAMETER_FUN_DECL, (ret, name, parameters))    \
sl@0
    93
                                                                                    \
sl@0
    94
    template<class Params>                                                          \
sl@0
    95
    ret BOOST_PP_CAT(name, _with_named_params)(Params const& p)
sl@0
    96
sl@0
    97
#endif // BOOST_PARAMETER_MACROS_050412_HPP
sl@0
    98