// Copyright David Abrahams 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) #ifndef TO_PYTHON_INDIRECT_DWA200221_HPP # define TO_PYTHON_INDIRECT_DWA200221_HPP # include # include # include # include #ifndef BOOST_PYTHON_NO_PY_SIGNATURES # include #endif # include # include # include # include # if defined(__ICL) && __ICL < 600 # include # else # include # endif namespace boost { namespace python { template struct to_python_indirect { template inline PyObject* operator()(U const& ref) const { return this->execute(const_cast(ref), is_pointer()); } #ifndef BOOST_PYTHON_NO_PY_SIGNATURES inline PyTypeObject const* get_pytype()const { return converter::registered_pytype::get_pytype(); } #endif private: template inline PyObject* execute(U* ptr, mpl::true_) const { // No special NULL treatment for references if (ptr == 0) return python::detail::none(); else return this->execute(*ptr, mpl::false_()); } template inline PyObject* execute(U const& x, mpl::false_) const { U* const p = &const_cast(x); if (is_polymorphic::value) { if (PyObject* o = detail::wrapper_base_::owner(p)) return incref(o); } return MakeHolder::execute(p); } }; // // implementations // namespace detail { struct make_owning_holder { template static PyObject* execute(T* p) { // can't use auto_ptr with Intel 5 and VC6 Dinkum library // for some reason. We get link errors against the auto_ptr // copy constructor. # if defined(__ICL) && __ICL < 600 typedef boost::shared_ptr smart_pointer; # else typedef std::auto_ptr smart_pointer; # endif typedef objects::pointer_holder holder_t; smart_pointer ptr(const_cast(p)); return objects::make_ptr_instance::execute(ptr); } }; struct make_reference_holder { template static PyObject* execute(T* p) { typedef objects::pointer_holder holder_t; T* q = const_cast(p); return objects::make_ptr_instance::execute(q); } }; } }} // namespace boost::python #endif // TO_PYTHON_INDIRECT_DWA200221_HPP