Server IP : 104.21.38.3 / Your IP : 172.69.176.77 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/server/mysql/src/boost/boost_1_59_0/boost/python/ |
Upload File : |
// 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 <boost/python/detail/prefix.hpp> # include <boost/python/object/pointer_holder.hpp> # include <boost/python/object/make_ptr_instance.hpp> # include <boost/python/detail/none.hpp> #ifndef BOOST_PYTHON_NO_PY_SIGNATURES # include <boost/python/converter/pytype_function.hpp> #endif # include <boost/python/refcount.hpp> # include <boost/type_traits/is_pointer.hpp> # include <boost/type_traits/is_polymorphic.hpp> # include <boost/mpl/bool.hpp> # if defined(__ICL) && __ICL < 600 # include <boost/shared_ptr.hpp> # else # include <memory> # endif namespace boost { namespace python { template <class T, class MakeHolder> struct to_python_indirect { template <class U> inline PyObject* operator()(U const& ref) const { return this->execute(const_cast<U&>(ref), is_pointer<U>()); } #ifndef BOOST_PYTHON_NO_PY_SIGNATURES inline PyTypeObject const* get_pytype()const { return converter::registered_pytype<T>::get_pytype(); } #endif private: template <class U> 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 <class U> inline PyObject* execute(U const& x, mpl::false_) const { U* const p = &const_cast<U&>(x); if (is_polymorphic<U>::value) { if (PyObject* o = detail::wrapper_base_::owner(p)) return incref(o); } return MakeHolder::execute(p); } }; // // implementations // namespace detail { struct make_owning_holder { template <class T> 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<T> smart_pointer; # else typedef std::auto_ptr<T> smart_pointer; # endif typedef objects::pointer_holder<smart_pointer, T> holder_t; smart_pointer ptr(const_cast<T*>(p)); return objects::make_ptr_instance<T, holder_t>::execute(ptr); } }; struct make_reference_holder { template <class T> static PyObject* execute(T* p) { typedef objects::pointer_holder<T*, T> holder_t; T* q = const_cast<T*>(p); return objects::make_ptr_instance<T, holder_t>::execute(q); } }; } }} // namespace boost::python #endif // TO_PYTHON_INDIRECT_DWA200221_HPP