/
usr
/
include
/
boost
/
python
/
detail
/
/usr/include/boost/python/detail
mkdir
upload
Name
Size
Mode
Actions
aix_init_module.hpp
740
0644
edit
dl
rm
api_placeholder.hpp
504
0644
edit
dl
rm
borrowed_ptr.hpp
1697
0644
edit
dl
rm
caller.hpp
8590
0644
edit
dl
rm
config.hpp
4457
0644
edit
dl
rm
construct.hpp
975
0644
edit
dl
rm
convertible.hpp
1230
0644
edit
dl
rm
copy_ctor_mutates_rhs.hpp
580
0644
edit
dl
rm
cv_category.hpp
1038
0644
edit
dl
rm
dealloc.hpp
543
0644
edit
dl
rm
decorated_type_id.hpp
2451
0644
edit
dl
rm
decref_guard.hpp
572
0644
edit
dl
rm
defaults_def.hpp
9166
0644
edit
dl
rm
defaults_gen.hpp
20065
0644
edit
dl
rm
def_helper.hpp
6531
0644
edit
dl
rm
def_helper_fwd.hpp
575
0644
edit
dl
rm
dependent.hpp
949
0644
edit
dl
rm
destroy.hpp
1491
0644
edit
dl
rm
enable_if.hpp
927
0644
edit
dl
rm
exception_handler.hpp
1264
0644
edit
dl
rm
force_instantiate.hpp
576
0644
edit
dl
rm
if_else.hpp
1393
0644
edit
dl
rm
indirect_traits.hpp
490
0644
edit
dl
rm
invoke.hpp
3672
0644
edit
dl
rm
is_auto_ptr.hpp
663
0644
edit
dl
rm
is_shared_ptr.hpp
683
0644
edit
dl
rm
is_wrapper.hpp
839
0644
edit
dl
rm
is_xxx.hpp
444
0644
edit
dl
rm
make_keyword_range_fn.hpp
2541
0644
edit
dl
rm
make_tuple.hpp
1039
0644
edit
dl
rm
map_entry.hpp
1025
0644
edit
dl
rm
mpl_lambda.hpp
448
0644
edit
dl
rm
msvc_typeinfo.hpp
2217
0644
edit
dl
rm
none.hpp
597
0644
edit
dl
rm
not_specified.hpp
431
0644
edit
dl
rm
nullary_function_adaptor.hpp
1768
0644
edit
dl
rm
operator_id.hpp
1064
0644
edit
dl
rm
overloads_fwd.hpp
609
0644
edit
dl
rm
pointee.hpp
791
0644
edit
dl
rm
prefix.hpp
623
0644
edit
dl
rm
preprocessor.hpp
2359
0644
edit
dl
rm
python_type.hpp
936
0644
edit
dl
rm
raw_pyobject.hpp
1100
0644
edit
dl
rm
referent_storage.hpp
1980
0644
edit
dl
rm
result.hpp
4207
0644
edit
dl
rm
scope.hpp
519
0644
edit
dl
rm
sfinae.hpp
421
0644
edit
dl
rm
signature.hpp
3136
0644
edit
dl
rm
string_literal.hpp
1268
0644
edit
dl
rm
target.hpp
2972
0644
edit
dl
rm
translate_exception.hpp
2195
0644
edit
dl
rm
type_list.hpp
1262
0644
edit
dl
rm
type_list_impl.hpp
1826
0644
edit
dl
rm
type_traits.hpp
3330
0644
edit
dl
rm
unwind_type.hpp
4885
0644
edit
dl
rm
unwrap_type_id.hpp
706
0644
edit
dl
rm
unwrap_wrapper.hpp
884
0644
edit
dl
rm
value_arg.hpp
727
0644
edit
dl
rm
value_is_shared_ptr.hpp
810
0644
edit
dl
rm
value_is_xxx.hpp
1554
0644
edit
dl
rm
void_ptr.hpp
982
0644
edit
dl
rm
void_return.hpp
980
0644
edit
dl
rm
wrapper_base.hpp
2072
0644
edit
dl
rm
wrap_python.hpp
6540
0644
edit
dl
rm
Edit:
/usr/include/boost/python/detail/defaults_def.hpp
(9166B)
/////////////////////////////////////////////////////////////////////////////// // // Copyright David Abrahams 2002. // Copyright Joel de Guzman, 2002. // 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) // /////////////////////////////////////////////////////////////////////////////// #if !defined(BOOST_PP_IS_ITERATING) #ifndef DEFAULTS_DEF_JDG20020811_HPP #define DEFAULTS_DEF_JDG20020811_HPP #include <boost/python/detail/defaults_gen.hpp> #include <boost/python/detail/type_traits.hpp> #include <boost/mpl/front.hpp> #include <boost/mpl/size.hpp> #include <boost/static_assert.hpp> #include <boost/preprocessor/iterate.hpp> #include <boost/python/class_fwd.hpp> #include <boost/python/scope.hpp> #include <boost/preprocessor/debug/line.hpp> #include <boost/python/detail/scope.hpp> #include <boost/python/detail/make_keyword_range_fn.hpp> #include <boost/python/object/add_to_namespace.hpp> /////////////////////////////////////////////////////////////////////////////// namespace boost { namespace python { struct module; namespace objects { struct class_base; } namespace detail { // Called as:: // // name_space_def(ns, "func", func, kw, policies, docstring, &ns) // // Dispatch to properly add f to namespace ns. // // @group define_stub_function helpers { template <class Func, class CallPolicies, class NameSpaceT> static void name_space_def( NameSpaceT& name_space , char const* name , Func f , keyword_range const& kw , CallPolicies const& policies , char const* doc , objects::class_base* ) { typedef typename NameSpaceT::wrapped_type wrapped_type; objects::add_to_namespace( name_space, name, detail::make_keyword_range_function( f, policies, kw, get_signature(f, (wrapped_type*)0)) , doc ); } template <class Func, class CallPolicies> static void name_space_def( object& name_space , char const* name , Func f , keyword_range const& kw , CallPolicies const& policies , char const* doc , ... ) { scope within(name_space); detail::scope_setattr_doc( name , detail::make_keyword_range_function(f, policies, kw) , doc); } // For backward compatibility -- is this obsolete? template <class Func, class CallPolicies, class NameSpaceT> static void name_space_def( NameSpaceT& name_space , char const* name , Func f , keyword_range const& kw // ignored , CallPolicies const& policies , char const* doc , module* ) { name_space.def(name, f, policies, doc); } // } // Expansions of :: // // template <typename OverloadsT, typename NameSpaceT> // inline void // define_stub_function( // char const* name, OverloadsT s, NameSpaceT& name_space, mpl::int_<N>) // { // name_space.def(name, &OverloadsT::func_N); // } // // where N runs from 0 to BOOST_PYTHON_MAX_ARITY. // // The set of overloaded functions (define_stub_function) expects: // // 1. char const* name: function name that will be visible to python // 2. OverloadsT: a function overloads struct (see defaults_gen.hpp) // 3. NameSpaceT& name_space: a python::class_ or python::module instance // 4. int_t<N>: the Nth overloaded function (OverloadsT::func_N) // (see defaults_gen.hpp) // 5. char const* name: doc string // // @group define_stub_function<N> { template <int N> struct define_stub_function {}; #define BOOST_PP_ITERATION_PARAMS_1 \ (3, (0, BOOST_PYTHON_MAX_ARITY, <boost/python/detail/defaults_def.hpp>)) #include BOOST_PP_ITERATE() // } // This helper template struct does the actual recursive // definition. There's a generic version // define_with_defaults_helper<N> and a terminal case // define_with_defaults_helper<0>. The struct and its // specialization has a sole static member function def that // expects: // // 1. char const* name: function name that will be // visible to python // // 2. OverloadsT: a function overloads struct // (see defaults_gen.hpp) // // 3. NameSpaceT& name_space: a python::class_ or // python::module instance // // 4. char const* name: doc string // // The def static member function calls a corresponding // define_stub_function<N>. The general case recursively calls // define_with_defaults_helper<N-1>::def until it reaches the // terminal case case define_with_defaults_helper<0>. template <int N> struct define_with_defaults_helper { template <class StubsT, class CallPolicies, class NameSpaceT> static void def( char const* name, StubsT stubs, keyword_range kw, CallPolicies const& policies, NameSpaceT& name_space, char const* doc) { // define the NTH stub function of stubs define_stub_function<N>::define(name, stubs, kw, policies, name_space, doc); if (kw.second > kw.first) --kw.second; // call the next define_with_defaults_helper define_with_defaults_helper<N-1>::def(name, stubs, kw, policies, name_space, doc); } }; template <> struct define_with_defaults_helper<0> { template <class StubsT, class CallPolicies, class NameSpaceT> static void def( char const* name, StubsT stubs, keyword_range const& kw, CallPolicies const& policies, NameSpaceT& name_space, char const* doc) { // define the Oth stub function of stubs define_stub_function<0>::define(name, stubs, kw, policies, name_space, doc); // return } }; // define_with_defaults // // 1. char const* name: function name that will be // visible to python // // 2. OverloadsT: a function overloads struct // (see defaults_gen.hpp) // // 3. CallPolicies& policies: Call policies // 4. NameSpaceT& name_space: a python::class_ or // python::module instance // // 5. SigT sig: Function signature typelist // (see defaults_gen.hpp) // // 6. char const* name: doc string // // This is the main entry point. This function recursively // defines all stub functions of StubT (see defaults_gen.hpp) in // NameSpaceT name_space which can be either a python::class_ or // a python::module. The sig argument is a typelist that // specifies the return type, the class (for member functions, // and the arguments. Here are some SigT examples: // // int foo(int) mpl::vector<int, int> // void bar(int, int) mpl::vector<void, int, int> // void C::foo(int) mpl::vector<void, C, int> // template <class OverloadsT, class NameSpaceT, class SigT> inline void define_with_defaults( char const* name, OverloadsT const& overloads, NameSpaceT& name_space, SigT const&) { typedef typename mpl::front<SigT>::type return_type; typedef typename OverloadsT::void_return_type void_return_type; typedef typename OverloadsT::non_void_return_type non_void_return_type; typedef typename mpl::if_c< is_same<void, return_type>::value , void_return_type , non_void_return_type >::type stubs_type; BOOST_STATIC_ASSERT( (stubs_type::max_args) <= mpl::size<SigT>::value); typedef typename stubs_type::template gen<SigT> gen_type; define_with_defaults_helper<stubs_type::n_funcs-1>::def( name , gen_type() , overloads.keywords() , overloads.call_policies() , name_space , overloads.doc_string()); } } // namespace detail }} // namespace boost::python #endif // DEFAULTS_DEF_JDG20020811_HPP #else // defined(BOOST_PP_IS_ITERATING) // PP vertical iteration code template <> struct define_stub_function<BOOST_PP_ITERATION()> { template <class StubsT, class CallPolicies, class NameSpaceT> static void define( char const* name , StubsT const& , keyword_range const& kw , CallPolicies const& policies , NameSpaceT& name_space , char const* doc) { detail::name_space_def( name_space , name , &StubsT::BOOST_PP_CAT(func_, BOOST_PP_ITERATION()) , kw , policies , doc , &name_space); } }; #endif // !defined(BOOST_PP_IS_ITERATING)
Save
cmd:
run