Server IP : 104.21.38.3 / Your IP : 172.69.176.137 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/detail/ |
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 TRANSLATE_EXCEPTION_TDS20091020_HPP # define TRANSLATE_EXCEPTION_TDS20091020_HPP # include <boost/python/detail/exception_handler.hpp> # include <boost/call_traits.hpp> # include <boost/type_traits/add_const.hpp> # include <boost/type_traits/add_reference.hpp> # include <boost/type_traits/remove_reference.hpp> # include <boost/function/function0.hpp> namespace boost { namespace python { namespace detail { // A ternary function object used to translate C++ exceptions of type // ExceptionType into Python exceptions by invoking an object of type // Translate. Typically the translate function will be curried with // boost::bind(). template <class ExceptionType, class Translate> struct translate_exception { // workaround for broken gcc that ships with SuSE 9.0 and SuSE 9.1 # if defined(__linux__) && defined(__GNUC__) \ && BOOST_WORKAROUND(__GNUC__, == 3) \ && BOOST_WORKAROUND(__GNUC_MINOR__, == 3) \ && (BOOST_WORKAROUND(__GNUC_PATCHLEVEL__, == 1) \ || BOOST_WORKAROUND(__GNUC_PATCHLEVEL__, == 3)) typedef typename remove_reference< typename add_const<ExceptionType>::type >::type exception_non_ref; # else typedef typename add_reference< typename add_const<ExceptionType>::type >::type exception_cref; # endif inline bool operator()( exception_handler const& handler , function0<void> const& f , typename call_traits<Translate>::param_type translate) const { try { return handler(f); } // workaround for broken gcc that ships with SuSE 9.0 and SuSE 9.1 # if defined(__linux__) && defined(__GNUC__) \ && BOOST_WORKAROUND(__GNUC__, == 3) \ && BOOST_WORKAROUND(__GNUC_MINOR__, == 3) \ && (BOOST_WORKAROUND(__GNUC_PATCHLEVEL__, == 1) \ || BOOST_WORKAROUND(__GNUC_PATCHLEVEL__, == 3)) catch(exception_non_ref& e) # else catch(exception_cref e) # endif { translate(e); return true; } } }; }}} // namespace boost::python::detail #endif // TRANSLATE_EXCEPTION_DWA2002810_HPP