// Copyright David Abrahams 2001. // Distributed under the Boost Software License, Version 1.0. (See // accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef MAKE_FUNCTION_DWA20011221_HPP # define MAKE_FUNCTION_DWA20011221_HPP # include # include # include # include # include # include # include namespace boost { namespace python { namespace detail { // make_function_aux -- // // These helper functions for make_function (below) do the raw work // of constructing a Python object from some invokable entity. See // for more information about how // the Sig arguments is used. template object make_function_aux( F f // An object that can be invoked by detail::invoke() , CallPolicies const& p // CallPolicies to use in the invocation , Sig const& // An MPL sequence of argument types expected by F ) { return objects::function_object( detail::caller(f, p) ); } // As above, except that it accepts argument keywords. NumKeywords // is used only for a compile-time assertion to make sure the user // doesn't pass more keywords than the function can accept. To // disable all checking, pass mpl::int_<0> for NumKeywords. template object make_function_aux( F f , CallPolicies const& p , Sig const& , detail::keyword_range const& kw // a [begin,end) pair of iterators over keyword names , NumKeywords // An MPL integral type wrapper: the size of kw ) { enum { arity = mpl::size::value - 1 }; typedef typename detail::error::more_keywords_than_function_arguments< NumKeywords::value, arity >::too_many_keywords assertion; return objects::function_object( detail::caller(f, p) , kw); } // Helpers for make_function when called with 3 arguments. These // dispatch functions are used to discriminate between the cases // when the 3rd argument is keywords or when it is a signature. // // @group { template object make_function_dispatch(F f, CallPolicies const& policies, Keywords const& kw, mpl::true_) { return detail::make_function_aux( f , policies , detail::get_signature(f) , kw.range() , mpl::int_() ); } template object make_function_dispatch(F f, CallPolicies const& policies, Signature const& sig, mpl::false_) { return detail::make_function_aux( f , policies , sig ); } // } } // These overloaded functions wrap a function or member function // pointer as a Python object, using optional CallPolicies, // Keywords, and/or Signature. // // @group { template object make_function(F f) { return detail::make_function_aux( f,default_call_policies(), detail::get_signature(f)); } template object make_function(F f, CallPolicies const& policies) { return detail::make_function_aux( f, policies, detail::get_signature(f)); } template object make_function( F f , CallPolicies const& policies , KeywordsOrSignature const& keywords_or_signature) { typedef typename detail::is_reference_to_keywords::type is_kw; return detail::make_function_dispatch( f , policies , keywords_or_signature , is_kw() ); } template object make_function( F f , CallPolicies const& policies , Keywords const& kw , Signature const& sig ) { return detail::make_function_aux( f , policies , sig , kw.range() , mpl::int_() ); } // } }} #endif // MAKE_FUNCTION_DWA20011221_HPP