last_value.hpp 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. // last_value function object (documented as part of Boost.Signals)
  2. // Copyright Frank Mori Hess 2007.
  3. // Copyright Douglas Gregor 2001-2003. Use, modification and
  4. // distribution is subject to the Boost Software License, Version
  5. // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. // For more information, see http://www.boost.org
  8. #ifndef BOOST_SIGNALS2_LAST_VALUE_HPP
  9. #define BOOST_SIGNALS2_LAST_VALUE_HPP
  10. #include <boost/optional.hpp>
  11. #include <boost/signals2/expired_slot.hpp>
  12. #include <stdexcept>
  13. namespace boost {
  14. namespace signals2 {
  15. // no_slots_error is thrown when we are unable to generate a return value
  16. // due to no slots being connected to the signal.
  17. class no_slots_error: public std::exception
  18. {
  19. public:
  20. virtual const char* what() const throw() {return "boost::signals2::no_slots_error";}
  21. };
  22. template<typename T>
  23. class last_value {
  24. public:
  25. typedef T result_type;
  26. template<typename InputIterator>
  27. T operator()(InputIterator first, InputIterator last) const
  28. {
  29. if(first == last)
  30. {
  31. throw no_slots_error();
  32. }
  33. optional<T> value;
  34. while (first != last)
  35. {
  36. try
  37. {
  38. value = *first;
  39. }
  40. catch(const expired_slot &) {}
  41. ++first;
  42. }
  43. if(value) return value.get();
  44. throw no_slots_error();
  45. }
  46. };
  47. template<>
  48. class last_value<void> {
  49. public:
  50. typedef void result_type;
  51. template<typename InputIterator>
  52. result_type operator()(InputIterator first, InputIterator last) const
  53. {
  54. while (first != last)
  55. {
  56. try
  57. {
  58. *first;
  59. }
  60. catch(const expired_slot &) {}
  61. ++first;
  62. }
  63. return;
  64. }
  65. };
  66. } // namespace signals2
  67. } // namespace boost
  68. #endif // BOOST_SIGNALS2_LAST_VALUE_HPP