/usr/include/boost/python
NameSizeModeActions
converter/-0755rm
detail/-0755rm
numpy/-0755rm
object/-0755rm
suite/-0755rm
args.hpp41940644editdlrm
args_fwd.hpp11860644editdlrm
arg_from_python.hpp20000644editdlrm
back_reference.hpp14630644editdlrm
bases.hpp14810644editdlrm
base_type_traits.hpp8780644editdlrm
borrowed.hpp5680644editdlrm
call.hpp27490644editdlrm
call_method.hpp28590644editdlrm
cast.hpp29540644editdlrm
class.hpp178660644editdlrm
class_fwd.hpp7720644editdlrm
copy_const_reference.hpp11010644editdlrm
copy_non_const_reference.hpp11410644editdlrm
data_members.hpp95930644editdlrm
def.hpp31870644editdlrm
default_call_policies.hpp22790644editdlrm
def_visitor.hpp24830644editdlrm
dict.hpp38660644editdlrm
docstring_options.hpp35050644editdlrm
enum.hpp29990644editdlrm
errors.hpp13970644editdlrm
exception_translator.hpp9390644editdlrm
exec.hpp17560644editdlrm
extract.hpp59880644editdlrm
handle.hpp45030644editdlrm
handle_fwd.hpp4550644editdlrm
has_back_reference.hpp6540644editdlrm
implicit.hpp11110644editdlrm
import.hpp4760644editdlrm
init.hpp114900644editdlrm
instance_holder.hpp20630644editdlrm
iterator.hpp43080644editdlrm
list.hpp36110644editdlrm
long.hpp16370644editdlrm
lvalue_from_pytype.hpp36140644editdlrm
make_constructor.hpp85790644editdlrm
make_function.hpp44820644editdlrm
manage_new_object.hpp10870644editdlrm
module.hpp4250644editdlrm
module_init.hpp21730644editdlrm
numpy.hpp11200644editdlrm
object.hpp8510644editdlrm
object_attributes.hpp30190644editdlrm
object_call.hpp8100644editdlrm
object_core.hpp133290644editdlrm
object_fwd.hpp4620644editdlrm
object_items.hpp19740644editdlrm
object_operators.hpp44940644editdlrm
object_protocol.hpp27300644editdlrm
object_protocol_core.hpp20800644editdlrm
object_slices.hpp40900644editdlrm
opaque_pointer_converter.hpp59290644editdlrm
operators.hpp142780644editdlrm
other.hpp9010644editdlrm
overloads.hpp4370644editdlrm
override.hpp35380644editdlrm
pointee.hpp8920644editdlrm
proxy.hpp26530644editdlrm
ptr.hpp12390644editdlrm
pure_virtual.hpp36550644editdlrm
raw_function.hpp14830644editdlrm
refcount.hpp9600644editdlrm
reference_existing_object.hpp13100644editdlrm
register_ptr_to_python.hpp7690644editdlrm
return_arg.hpp27990644editdlrm
return_by_value.hpp7240644editdlrm
return_internal_reference.hpp12850644editdlrm
return_opaque_pointer.hpp12900644editdlrm
return_value_policy.hpp6750644editdlrm
scope.hpp18780644editdlrm
self.hpp8890644editdlrm
signature.hpp75790644editdlrm
slice.hpp106430644editdlrm
slice_nil.hpp9120644editdlrm
ssize_t.hpp7350644editdlrm
stl_iterator.hpp13250644editdlrm
str.hpp107650644editdlrm
tag.hpp5380644editdlrm
to_python_converter.hpp24310644editdlrm
to_python_indirect.hpp29730644editdlrm
to_python_value.hpp55740644editdlrm
tuple.hpp17580644editdlrm
type_id.hpp52620644editdlrm
with_custodian_and_ward.hpp35460644editdlrm
wrapper.hpp10230644editdlrm
Edit: /usr/include/boost/python/make_constructor.hpp (8579B)
// 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_CONSTRUCTOR_DWA20011221_HPP # define MAKE_CONSTRUCTOR_DWA20011221_HPP # include # include # include # include # include # include # include # include # include # include # include # include # include # include # include namespace boost { namespace python { namespace detail { template struct install_holder : converter::context_result_converter { install_holder(PyObject* args_) : m_self(PyTuple_GetItem(args_, 0)) {} PyObject* operator()(T x) const { dispatch(x, is_pointer()); return none(); } private: template void dispatch(U* x, detail::true_) const { #if defined(BOOST_NO_CXX11_SMART_PTR) std::auto_ptr owner(x); dispatch(owner, detail::false_()); #else std::unique_ptr owner(x); dispatch(std::move(owner), detail::false_()); #endif } template void dispatch(Ptr x, detail::false_) const { typedef typename pointee::type value_type; typedef objects::pointer_holder holder; typedef objects::instance instance_t; void* memory = holder::allocate(this->m_self, offsetof(instance_t, storage), sizeof(holder)); try { #if defined(BOOST_NO_CXX11_SMART_PTR) (new (memory) holder(x))->install(this->m_self); #else (new (memory) holder(std::move(x)))->install(this->m_self); #endif } catch(...) { holder::deallocate(this->m_self, memory); throw; } } PyObject* m_self; }; struct constructor_result_converter { template struct apply { typedef install_holder type; }; }; template struct offset_args { offset_args(BaseArgs base_) : base(base_) {} BaseArgs base; }; template inline PyObject* get(mpl::int_, offset_args const& args_) { return get(mpl::int_<(N+Offset::value)>(), args_.base); } template inline unsigned arity(offset_args const& args_) { return arity(args_.base) - Offset::value; } template struct constructor_policy : BasePolicy_ { constructor_policy(BasePolicy_ base) : BasePolicy_(base) {} // If the BasePolicy_ supplied a result converter it would be // ignored; issue an error if it's not the default. BOOST_MPL_ASSERT_MSG( (is_same< typename BasePolicy_::result_converter , default_result_converter >::value) , MAKE_CONSTRUCTOR_SUPPLIES_ITS_OWN_RESULT_CONVERTER_THAT_WOULD_OVERRIDE_YOURS , (typename BasePolicy_::result_converter) ); typedef constructor_result_converter result_converter; typedef offset_args > argument_package; }; template struct outer_constructor_signature { typedef typename mpl::pop_front::type inner_args; typedef typename mpl::push_front::type outer_args; typedef typename mpl::push_front::type type; }; // ETI workaround template <> struct outer_constructor_signature { typedef int type; }; // // These helper functions for make_constructor (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. // // @group make_constructor_aux { template object make_constructor_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 ) { typedef typename outer_constructor_signature::type outer_signature; typedef constructor_policy inner_policy; return objects::function_object( objects::py_function( detail::caller(f, inner_policy(p)) , outer_signature() ) ); } // 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_constructor_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 BOOST_ATTRIBUTE_UNUSED; typedef typename outer_constructor_signature::type outer_signature; typedef constructor_policy inner_policy; return objects::function_object( objects::py_function( detail::caller(f, inner_policy(p)) , outer_signature() ) , kw ); } // } // // These dispatch functions are used to discriminate between the // cases when the 3rd argument is keywords or when it is a // signature. // // @group Helpers for make_constructor when called with 3 arguments. { // template object make_constructor_dispatch(F f, CallPolicies const& policies, Keywords const& kw, mpl::true_) { return detail::make_constructor_aux( f , policies , detail::get_signature(f) , kw.range() , mpl::int_() ); } template object make_constructor_dispatch(F f, CallPolicies const& policies, Signature const& sig, mpl::false_) { return detail::make_constructor_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_constructor(F f) { return detail::make_constructor_aux( f,default_call_policies(), detail::get_signature(f)); } template object make_constructor(F f, CallPolicies const& policies) { return detail::make_constructor_aux( f, policies, detail::get_signature(f)); } template object make_constructor( F f , CallPolicies const& policies , KeywordsOrSignature const& keywords_or_signature) { typedef typename detail::is_reference_to_keywords::type is_kw; return detail::make_constructor_dispatch( f , policies , keywords_or_signature , is_kw() ); } template object make_constructor( F f , CallPolicies const& policies , Keywords const& kw , Signature const& sig ) { return detail::make_constructor_aux( f , policies , sig , kw.range() , mpl::int_() ); } // } }} #endif // MAKE_CONSTRUCTOR_DWA20011221_HPP