signal_template.hpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401
  1. // Boost.Signals library
  2. // Copyright Douglas Gregor 2001-2004. Use, modification and
  3. // distribution is subject to the Boost Software License, Version
  4. // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  5. // http://www.boost.org/LICENSE_1_0.txt)
  6. // For more information, see http://www.boost.org
  7. // This file intentionally does not have include guards, because it is meant
  8. // to be included multiple times (one for each signalN class). The
  9. // BOOST_SIGNALS_SIGNAL_TEMPLATE_HEADER_INCLUDED macro merely serves to
  10. // suppress reinclusion of the files that this header depends on.
  11. #ifndef BOOST_SIGNALS_SIGNAL_TEMPLATE_HEADER_INCLUDED
  12. #define BOOST_SIGNALS_SIGNAL_TEMPLATE_HEADER_INCLUDED
  13. # include <boost/config.hpp>
  14. # include <boost/signals/connection.hpp>
  15. # include <boost/ref.hpp>
  16. # include <boost/signals/slot.hpp>
  17. # include <boost/last_value.hpp>
  18. # include <boost/signals/detail/signal_base.hpp>
  19. # include <boost/signals/detail/slot_call_iterator.hpp>
  20. # include <boost/mpl/bool.hpp>
  21. # include <boost/type_traits/is_convertible.hpp>
  22. # include <cassert>
  23. # include <functional>
  24. # include <memory>
  25. #endif // !BOOST_SIGNALS_SIGNAL_TEMPLATE_HEADER_INCLUDED
  26. #ifdef BOOST_HAS_ABI_HEADERS
  27. # include BOOST_ABI_PREFIX
  28. #endif
  29. // Include the appropriate functionN header
  30. #define BOOST_SIGNAL_FUNCTION_N_HEADER BOOST_JOIN(<boost/function/function,BOOST_SIGNALS_NUM_ARGS.hpp>)
  31. #include BOOST_SIGNAL_FUNCTION_N_HEADER
  32. // Determine if a comma should follow a listing of the arguments/parameters
  33. #if BOOST_SIGNALS_NUM_ARGS == 0
  34. # define BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  35. #else
  36. # define BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS ,
  37. #endif // BOOST_SIGNALS_NUM_ARGS > 0
  38. // Define class names used
  39. #define BOOST_SIGNALS_SIGNAL BOOST_JOIN(signal,BOOST_SIGNALS_NUM_ARGS)
  40. #define BOOST_SIGNALS_FUNCTION BOOST_JOIN(function,BOOST_SIGNALS_NUM_ARGS)
  41. #define BOOST_SIGNALS_ARGS_STRUCT BOOST_JOIN(args,BOOST_SIGNALS_NUM_ARGS)
  42. #define BOOST_SIGNALS_CALL_BOUND BOOST_JOIN(call_bound,BOOST_SIGNALS_NUM_ARGS)
  43. // Define commonly-used instantiations
  44. #define BOOST_SIGNALS_ARGS_STRUCT_INST \
  45. BOOST_SIGNALS_NAMESPACE::detail::BOOST_SIGNALS_ARGS_STRUCT<BOOST_SIGNALS_TEMPLATE_ARGS>
  46. namespace boost {
  47. namespace BOOST_SIGNALS_NAMESPACE {
  48. namespace detail {
  49. // Holds the arguments for a bound slot call in a single place
  50. template<BOOST_SIGNALS_TEMPLATE_PARMS
  51. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  52. typename Dummy = int>
  53. struct BOOST_SIGNALS_ARGS_STRUCT {
  54. BOOST_SIGNALS_ARGS_STRUCT(BOOST_SIGNALS_COPY_PARMS)
  55. BOOST_SIGNALS_INIT_ARGS
  56. {
  57. }
  58. BOOST_SIGNALS_ARGS_AS_MEMBERS
  59. };
  60. // Function object that calls the function object given to it, passing
  61. // the bound arguments along to that underlying function object
  62. template<typename R>
  63. struct BOOST_SIGNALS_CALL_BOUND {
  64. template<BOOST_SIGNALS_TEMPLATE_PARMS
  65. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  66. typename F>
  67. struct caller {
  68. typedef BOOST_SIGNALS_ARGS_STRUCT<BOOST_SIGNALS_TEMPLATE_ARGS>*
  69. args_type;
  70. args_type args;
  71. typedef R result_type;
  72. caller() {}
  73. caller(args_type a) : args(a) {}
  74. template<typename Pair>
  75. R operator()(const Pair& slot) const
  76. {
  77. F* target = const_cast<F*>(unsafe_any_cast<F>(&slot.second));
  78. return (*target)(BOOST_SIGNALS_BOUND_ARGS);
  79. }
  80. };
  81. };
  82. template<>
  83. struct BOOST_SIGNALS_CALL_BOUND<void> {
  84. template<BOOST_SIGNALS_TEMPLATE_PARMS
  85. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  86. typename F>
  87. struct caller {
  88. typedef BOOST_SIGNALS_ARGS_STRUCT<BOOST_SIGNALS_TEMPLATE_ARGS>*
  89. args_type;
  90. args_type args;
  91. typedef unusable result_type;
  92. caller(args_type a) : args(a) {}
  93. template<typename Pair>
  94. unusable operator()(const Pair& slot) const
  95. {
  96. F* target = const_cast<F*>(unsafe_any_cast<F>(&slot.second));
  97. (*target)(BOOST_SIGNALS_BOUND_ARGS);
  98. return unusable();
  99. }
  100. };
  101. };
  102. } // namespace detail
  103. } // namespace BOOST_SIGNALS_NAMESPACE
  104. // The actual signalN class
  105. template<
  106. typename R,
  107. BOOST_SIGNALS_TEMPLATE_PARMS
  108. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  109. typename Combiner = last_value<R>,
  110. typename Group = int,
  111. typename GroupCompare = std::less<Group>,
  112. typename SlotFunction = BOOST_SIGNALS_FUNCTION<
  113. R BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  114. BOOST_SIGNALS_TEMPLATE_ARGS>
  115. >
  116. class BOOST_SIGNALS_SIGNAL :
  117. public BOOST_SIGNALS_NAMESPACE::detail::signal_base, // management of slot list
  118. public BOOST_SIGNALS_NAMESPACE::trackable // signals are trackable
  119. {
  120. public:
  121. // The slot function type
  122. typedef SlotFunction slot_function_type;
  123. // Result type of a slot
  124. typedef typename BOOST_SIGNALS_NAMESPACE::detail::slot_result_type<R>::type
  125. slot_result_type;
  126. // Argument types
  127. BOOST_SIGNALS_ARG_TYPES
  128. #if BOOST_SIGNALS_NUM_ARGS == 1
  129. typedef T1 argument_type;
  130. #elif BOOST_SIGNALS_NUM_ARGS == 2
  131. typedef T1 first_argument_type;
  132. typedef T2 second_argument_type;
  133. #endif
  134. private:
  135. // The real slot name comparison object type
  136. typedef BOOST_SIGNALS_NAMESPACE::detail::group_bridge_compare<GroupCompare, Group>
  137. real_group_compare_type;
  138. // The function object passed to the slot call iterator that will call
  139. // the underlying slot function with its arguments bound
  140. typedef BOOST_SIGNALS_NAMESPACE::detail::BOOST_SIGNALS_CALL_BOUND<R>
  141. outer_bound_slot_caller;
  142. typedef typename outer_bound_slot_caller::template
  143. caller<BOOST_SIGNALS_TEMPLATE_ARGS
  144. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  145. slot_function_type>
  146. call_bound_slot;
  147. public:
  148. // Combiner's result type
  149. typedef typename Combiner::result_type result_type;
  150. // Combiner type
  151. typedef Combiner combiner_type;
  152. // Slot type
  153. typedef slot<slot_function_type> slot_type;
  154. // Slot name type and comparison
  155. typedef Group group_type;
  156. typedef GroupCompare group_compare_type;
  157. typedef BOOST_SIGNALS_NAMESPACE::detail::slot_call_iterator<
  158. call_bound_slot, iterator> slot_call_iterator;
  159. explicit
  160. BOOST_SIGNALS_SIGNAL(const Combiner& c = Combiner(),
  161. const GroupCompare& comp = GroupCompare()) :
  162. BOOST_SIGNALS_NAMESPACE::detail::signal_base(real_group_compare_type(comp),
  163. c)
  164. {
  165. }
  166. // Connect a slot to this signal
  167. BOOST_SIGNALS_NAMESPACE::connection
  168. connect(const slot_type&,
  169. BOOST_SIGNALS_NAMESPACE::connect_position at
  170. = BOOST_SIGNALS_NAMESPACE::at_back);
  171. BOOST_SIGNALS_NAMESPACE::connection
  172. connect(const group_type&, const slot_type&,
  173. BOOST_SIGNALS_NAMESPACE::connect_position at
  174. = BOOST_SIGNALS_NAMESPACE::at_back);
  175. template<typename T>
  176. void disconnect(const T& t)
  177. {
  178. typedef mpl::bool_<(is_convertible<T, group_type>::value)> is_group;
  179. this->do_disconnect(t, is_group());
  180. }
  181. private:
  182. // Disconnect a named slot
  183. void do_disconnect(const group_type& group, mpl::bool_<true>)
  184. {
  185. impl->disconnect(group);
  186. }
  187. template<typename Function>
  188. void do_disconnect(const Function& f, mpl::bool_<false>)
  189. {
  190. // Notify the slot handling code that we are iterating through the slots
  191. BOOST_SIGNALS_NAMESPACE::detail::call_notification notification(this->impl);
  192. for (iterator i = impl->slots_.begin(); i != impl->slots_.end(); ++i) {
  193. slot_function_type& s = *unsafe_any_cast<slot_function_type>(&i->second);
  194. if (s == f) i->first.disconnect();
  195. }
  196. }
  197. public:
  198. // Emit the signal
  199. result_type operator()(BOOST_SIGNALS_PARMS);
  200. result_type operator()(BOOST_SIGNALS_PARMS) const;
  201. Combiner& combiner()
  202. { return *unsafe_any_cast<Combiner>(&impl->combiner_); }
  203. const Combiner& combiner() const
  204. { return *unsafe_any_cast<const Combiner>(&impl->combiner_); }
  205. };
  206. template<
  207. typename R,
  208. BOOST_SIGNALS_TEMPLATE_PARMS
  209. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  210. typename Combiner,
  211. typename Group,
  212. typename GroupCompare,
  213. typename SlotFunction
  214. >
  215. BOOST_SIGNALS_NAMESPACE::connection
  216. BOOST_SIGNALS_SIGNAL<
  217. R, BOOST_SIGNALS_TEMPLATE_ARGS
  218. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  219. Combiner, Group, GroupCompare, SlotFunction
  220. >::connect(const slot_type& in_slot,
  221. BOOST_SIGNALS_NAMESPACE::connect_position at)
  222. {
  223. using boost::BOOST_SIGNALS_NAMESPACE::detail::stored_group;
  224. // If the slot has been disconnected, just return a disconnected
  225. // connection
  226. if (!in_slot.is_active()) {
  227. return BOOST_SIGNALS_NAMESPACE::connection();
  228. }
  229. return impl->connect_slot(in_slot.get_slot_function(), stored_group(),
  230. in_slot.get_data(), at);
  231. }
  232. template<
  233. typename R,
  234. BOOST_SIGNALS_TEMPLATE_PARMS
  235. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  236. typename Combiner,
  237. typename Group,
  238. typename GroupCompare,
  239. typename SlotFunction
  240. >
  241. BOOST_SIGNALS_NAMESPACE::connection
  242. BOOST_SIGNALS_SIGNAL<
  243. R, BOOST_SIGNALS_TEMPLATE_ARGS
  244. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  245. Combiner, Group, GroupCompare, SlotFunction
  246. >::connect(const group_type& group,
  247. const slot_type& in_slot,
  248. BOOST_SIGNALS_NAMESPACE::connect_position at)
  249. {
  250. // If the slot has been disconnected, just return a disconnected
  251. // connection
  252. if (!in_slot.is_active()) {
  253. return BOOST_SIGNALS_NAMESPACE::connection();
  254. }
  255. return impl->connect_slot(in_slot.get_slot_function(), group,
  256. in_slot.get_data(), at);
  257. }
  258. template<
  259. typename R,
  260. BOOST_SIGNALS_TEMPLATE_PARMS
  261. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  262. typename Combiner,
  263. typename Group,
  264. typename GroupCompare,
  265. typename SlotFunction
  266. >
  267. typename BOOST_SIGNALS_SIGNAL<
  268. R, BOOST_SIGNALS_TEMPLATE_ARGS
  269. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  270. Combiner, Group, GroupCompare, SlotFunction>::result_type
  271. BOOST_SIGNALS_SIGNAL<
  272. R, BOOST_SIGNALS_TEMPLATE_ARGS
  273. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  274. Combiner, Group, GroupCompare, SlotFunction
  275. >::operator()(BOOST_SIGNALS_PARMS)
  276. {
  277. // Notify the slot handling code that we are making a call
  278. BOOST_SIGNALS_NAMESPACE::detail::call_notification notification(this->impl);
  279. // Construct a function object that will call the underlying slots
  280. // with the given arguments.
  281. #if BOOST_SIGNALS_NUM_ARGS == 0
  282. BOOST_SIGNALS_ARGS_STRUCT_INST args;
  283. #else
  284. BOOST_SIGNALS_ARGS_STRUCT_INST args(BOOST_SIGNALS_ARGS);
  285. #endif // BOOST_SIGNALS_NUM_ARGS > 0
  286. call_bound_slot f(&args);
  287. typedef typename call_bound_slot::result_type call_result_type;
  288. optional<call_result_type> cache;
  289. // Let the combiner call the slots via a pair of input iterators
  290. return combiner()(slot_call_iterator(notification.impl->slots_.begin(),
  291. impl->slots_.end(), f, cache),
  292. slot_call_iterator(notification.impl->slots_.end(),
  293. impl->slots_.end(), f, cache));
  294. }
  295. template<
  296. typename R,
  297. BOOST_SIGNALS_TEMPLATE_PARMS
  298. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  299. typename Combiner,
  300. typename Group,
  301. typename GroupCompare,
  302. typename SlotFunction
  303. >
  304. typename BOOST_SIGNALS_SIGNAL<
  305. R, BOOST_SIGNALS_TEMPLATE_ARGS
  306. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  307. Combiner, Group, GroupCompare, SlotFunction>::result_type
  308. BOOST_SIGNALS_SIGNAL<
  309. R, BOOST_SIGNALS_TEMPLATE_ARGS
  310. BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  311. Combiner, Group, GroupCompare, SlotFunction
  312. >::operator()(BOOST_SIGNALS_PARMS) const
  313. {
  314. // Notify the slot handling code that we are making a call
  315. BOOST_SIGNALS_NAMESPACE::detail::call_notification notification(this->impl);
  316. // Construct a function object that will call the underlying slots
  317. // with the given arguments.
  318. #if BOOST_SIGNALS_NUM_ARGS == 0
  319. BOOST_SIGNALS_ARGS_STRUCT_INST args;
  320. #else
  321. BOOST_SIGNALS_ARGS_STRUCT_INST args(BOOST_SIGNALS_ARGS);
  322. #endif // BOOST_SIGNALS_NUM_ARGS > 0
  323. call_bound_slot f(&args);
  324. typedef typename call_bound_slot::result_type call_result_type;
  325. optional<call_result_type> cache;
  326. // Let the combiner call the slots via a pair of input iterators
  327. return combiner()(slot_call_iterator(notification.impl->slots_.begin(),
  328. impl->slots_.end(), f, cache),
  329. slot_call_iterator(notification.impl->slots_.end(),
  330. impl->slots_.end(), f, cache));
  331. }
  332. } // namespace boost
  333. #undef BOOST_SIGNAL_FUNCTION_N_HEADER
  334. #undef BOOST_SIGNALS_ARGS_STRUCT_INST
  335. #undef BOOST_SIGNALS_CALL_BOUND
  336. #undef BOOST_SIGNALS_ARGS_STRUCT
  337. #undef BOOST_SIGNALS_FUNCTION
  338. #undef BOOST_SIGNALS_SIGNAL
  339. #undef BOOST_SIGNALS_COMMA_IF_NONZERO_ARGS
  340. #ifdef BOOST_HAS_ABI_HEADERS
  341. # include BOOST_ABI_SUFFIX
  342. #endif