[857] | 1 | #if !defined(BOOST_PP_IS_ITERATING)
|
---|
| 2 |
|
---|
| 3 | // Copyright David Abrahams 2002.
|
---|
| 4 | // Distributed under the Boost Software License, Version 1.0. (See
|
---|
| 5 | // accompanying file LICENSE_1_0.txt or copy at
|
---|
| 6 | // http://www.boost.org/LICENSE_1_0.txt)
|
---|
| 7 | # ifndef CALL_METHOD_DWA2002411_HPP
|
---|
| 8 | # define CALL_METHOD_DWA2002411_HPP
|
---|
| 9 |
|
---|
| 10 | # include <boost/python/detail/prefix.hpp>
|
---|
| 11 |
|
---|
| 12 | # include <boost/type.hpp>
|
---|
| 13 |
|
---|
| 14 | # include <boost/python/converter/arg_to_python.hpp>
|
---|
| 15 | # include <boost/python/converter/return_from_python.hpp>
|
---|
| 16 | # include <boost/python/detail/preprocessor.hpp>
|
---|
| 17 | # include <boost/python/detail/void_return.hpp>
|
---|
| 18 |
|
---|
| 19 | # include <boost/preprocessor/comma_if.hpp>
|
---|
| 20 | # include <boost/preprocessor/iterate.hpp>
|
---|
| 21 | # include <boost/preprocessor/repeat.hpp>
|
---|
| 22 | # include <boost/preprocessor/debug/line.hpp>
|
---|
| 23 | # include <boost/preprocessor/repetition/enum_trailing_params.hpp>
|
---|
| 24 | # include <boost/preprocessor/repetition/enum_binary_params.hpp>
|
---|
| 25 |
|
---|
| 26 | namespace boost { namespace python {
|
---|
| 27 |
|
---|
| 28 | # define BOOST_PYTHON_FAST_ARG_TO_PYTHON_GET(z, n, _) \
|
---|
| 29 | , converter::arg_to_python<A##n>(a##n).get()
|
---|
| 30 |
|
---|
| 31 | # define BOOST_PP_ITERATION_PARAMS_1 (3, (0, BOOST_PYTHON_MAX_ARITY, <boost/python/call_method.hpp>))
|
---|
| 32 | # include BOOST_PP_ITERATE()
|
---|
| 33 |
|
---|
| 34 | # undef BOOST_PYTHON_FAST_ARG_TO_PYTHON_GET
|
---|
| 35 |
|
---|
| 36 | }} // namespace boost::python
|
---|
| 37 |
|
---|
| 38 | # endif // CALL_METHOD_DWA2002411_HPP
|
---|
| 39 |
|
---|
| 40 | #elif BOOST_PP_ITERATION_DEPTH() == 1
|
---|
| 41 | # if !(BOOST_WORKAROUND(__MWERKS__, > 0x3100) \
|
---|
| 42 | && BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3201)))
|
---|
| 43 | # line BOOST_PP_LINE(__LINE__, call_method.hpp)
|
---|
| 44 | # endif
|
---|
| 45 |
|
---|
| 46 | # define N BOOST_PP_ITERATION()
|
---|
| 47 |
|
---|
| 48 | template <
|
---|
| 49 | class R
|
---|
| 50 | BOOST_PP_ENUM_TRAILING_PARAMS_Z(1, N, class A)
|
---|
| 51 | >
|
---|
| 52 | typename detail::returnable<R>::type
|
---|
| 53 | call_method(PyObject* self, char const* name
|
---|
| 54 | BOOST_PP_COMMA_IF(N) BOOST_PP_ENUM_BINARY_PARAMS_Z(1, N, A, const& a)
|
---|
| 55 | , boost::type<R>* = 0
|
---|
| 56 | )
|
---|
| 57 | {
|
---|
| 58 | PyObject* const result =
|
---|
| 59 | PyEval_CallMethod(
|
---|
| 60 | self
|
---|
| 61 | , const_cast<char*>(name)
|
---|
| 62 | , const_cast<char*>("(" BOOST_PP_REPEAT_1ST(N, BOOST_PYTHON_FIXED, "O") ")")
|
---|
| 63 | BOOST_PP_REPEAT_1ST(N, BOOST_PYTHON_FAST_ARG_TO_PYTHON_GET, nil)
|
---|
| 64 | );
|
---|
| 65 |
|
---|
| 66 | // This conversion *must not* be done in the same expression as
|
---|
| 67 | // the call, because, in the special case where the result is a
|
---|
| 68 | // reference a Python object which was created by converting a C++
|
---|
| 69 | // argument for passing to PyEval_CallFunction, its reference
|
---|
| 70 | // count will be 2 until the end of the full expression containing
|
---|
| 71 | // the conversion, and that interferes with dangling
|
---|
| 72 | // pointer/reference detection.
|
---|
| 73 | converter::return_from_python<R> converter;
|
---|
| 74 | return converter(result);
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | # undef N
|
---|
| 78 |
|
---|
| 79 | #endif // BOOST_PP_IS_ITERATING
|
---|