dnl Copyright 2002, The libsigc++ Development Team dnl dnl This library is free software; you can redistribute it and/or dnl modify it under the terms of the GNU Lesser General Public dnl License as published by the Free Software Foundation; either dnl version 2.1 of the License, or (at your option) any later version. dnl dnl This library is distributed in the hope that it will be useful, dnl but WITHOUT ANY WARRANTY; without even the implied warranty of dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU dnl Lesser General Public License for more details. dnl dnl You should have received a copy of the GNU Lesser General Public dnl License along with this library; if not, write to the Free Software dnl Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA dnl divert(-1) include(template.macros.m4) define([EXCEPTION_CATCH_OPERATOR],[dnl template typename deduce_result_type::type operator()(LOOP(T_arg%1 _A_a%1, $1)) { try { return this->functor_.SIGC_WORKAROUND_OPERATOR_PARENTHESES (LOOP(_A_a%1, $1)); } catch (...) { return catcher_(); } } ]) divert(0)dnl _FIREWALL([ADAPTORS_EXCEPTION_CATCH]) #include namespace sigc { /* functor adaptor: exception_catch(functor, catcher) usage: Future directions: The catcher should be told what type of return it needs to return for multiple type functors, to do this the user will need to derive from catcher_base. */ /** @defgroup exception_catch exception_catch() * sigc::exception_catch() catches an exception thrown from within * the wrapped functor and directs it to a catcher functor. * This catcher can then rethrow the exception and catch it with the proper type. * * Note that the catcher is expected to return the same type * as the wrapped functor so that normal flow can continue. * * Catchers can be cascaded to catch multiple types, because uncaught * rethrown exceptions proceed to the next catcher adaptor. * * @par Examples: * @code * struct my_catch * { * int operator()() * { * try { throw; } * catch (std::range_error e) // catch what types we know * { std::cerr << "caught " << e.what() << std::endl; } * return 1; * } * } * int foo(); // throws std::range_error * sigc::exception_catch(&foo, my_catch())(); * @endcode * * The functor sigc::exception_catch() returns can be directly passed into * sigc::signal::connect(). * * @par Example: * @code * sigc::signal some_signal; * some_signal.connect(sigc::exception_catch(&foo, my_catch)); * @endcode * * @ingroup adaptors */ template ::result_type> struct exception_catch_functor : public adapts { typedef typename adapts::adaptor_type adaptor_type; #ifndef DOXYGEN_SHOULD_SKIP_THIS template struct deduce_result_type { typedef typename adaptor_type::template deduce_result_type::type type; }; #endif typedef T_return result_type; result_type operator()(); FOR(1,CALL_SIZE,[[EXCEPTION_CATCH_OPERATOR(%1)]])dnl exception_catch_functor(const T_functor& _A_func, const T_catcher& _A_catcher) : adapts(_A_func), catcher_(_A_catcher) {} T_catcher catcher_; }; template typename exception_catch_functor::result_type exception_catch_functor::operator()() { try { return this->functor_(); } catch (...) { return catcher_(); } } // void specialization template struct exception_catch_functor : public adapts { typedef void result_type; typedef typename adapts::adaptor_type adaptor_type; #ifndef DOXYGEN_SHOULD_SKIP_THIS template struct deduce_result_type { typedef typename adaptor_type::template deduce_result_type::type type; }; #endif void operator()(); FOR(1,CALL_SIZE,[[EXCEPTION_CATCH_OPERATOR(%1)]])dnl exception_catch_functor() {} exception_catch_functor(const T_functor& _A_func, const T_catcher& _A_catcher) : adapts(_A_func), catcher_(_A_catcher) {} ~exception_catch_functor() {} T_catcher catcher_; }; template void exception_catch_functor::operator()() { try { this->functor_(); } // I don't understand why void return doesn't work here (Martin) catch (...) { this->catcher_(); } } #ifndef DOXYGEN_SHOULD_SKIP_THIS //template specialization of visitor<>::do_visit_each<>(action, functor): template struct visitor > { template static void do_visit_each(const T_action& _A_action, const exception_catch_functor& _A_target) { sigc::visit_each(_A_action, _A_target.functor_); sigc::visit_each(_A_action, _A_target.catcher_); } }; #endif // DOXYGEN_SHOULD_SKIP_THIS template inline exception_catch_functor exception_catch(const T_functor& _A_func, const T_catcher& _A_catcher) { return exception_catch_functor(_A_func, _A_catcher); } } /* namespace sigc */