signal.hpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366
  1. // Boost.Signals library
  2. // Copyright Douglas Gregor 2001-2006. 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/libs/signals
  7. #ifndef BOOST_SIGNAL_HPP
  8. #define BOOST_SIGNAL_HPP
  9. #ifndef BOOST_SIGNALS_NO_DEPRECATION_WARNING
  10. # if defined(_MSC_VER) || defined(__BORLANDC__) || defined(__DMC__)
  11. # pragma message ("Warning: Boost.Signals is no longer being maintained and is now deprecated. Please switch to Boost.Signals2. To disable this warning message, define BOOST_SIGNALS_NO_DEPRECATION_WARNING.")
  12. # elif defined(__GNUC__) || defined(__HP_aCC) || defined(__SUNPRO_CC) || defined(__IBMCPP__)
  13. # warning "Boost.Signals is no longer being maintained and is now deprecated. Please switch to Boost.Signals2. To disable this warning message, define BOOST_SIGNALS_NO_DEPRECATION_WARNING."
  14. # endif
  15. #endif
  16. #ifndef BOOST_SIGNALS_MAX_ARGS
  17. # define BOOST_SIGNALS_MAX_ARGS 10
  18. #endif
  19. #include <boost/config.hpp>
  20. #include <boost/type_traits/function_traits.hpp>
  21. #include <boost/signals/signal0.hpp>
  22. #include <boost/signals/signal1.hpp>
  23. #include <boost/signals/signal2.hpp>
  24. #include <boost/signals/signal3.hpp>
  25. #include <boost/signals/signal4.hpp>
  26. #include <boost/signals/signal5.hpp>
  27. #include <boost/signals/signal6.hpp>
  28. #include <boost/signals/signal7.hpp>
  29. #include <boost/signals/signal8.hpp>
  30. #include <boost/signals/signal9.hpp>
  31. #include <boost/signals/signal10.hpp>
  32. #include <boost/function.hpp>
  33. #ifdef BOOST_HAS_ABI_HEADERS
  34. # include BOOST_ABI_PREFIX
  35. #endif
  36. namespace boost {
  37. #ifndef BOOST_FUNCTION_NO_FUNCTION_TYPE_SYNTAX
  38. namespace BOOST_SIGNALS_NAMESPACE {
  39. namespace detail {
  40. template<int Arity,
  41. typename Signature,
  42. typename Combiner,
  43. typename Group,
  44. typename GroupCompare,
  45. typename SlotFunction>
  46. class real_get_signal_impl;
  47. template<typename Signature,
  48. typename Combiner,
  49. typename Group,
  50. typename GroupCompare,
  51. typename SlotFunction>
  52. class real_get_signal_impl<0, Signature, Combiner, Group, GroupCompare,
  53. SlotFunction>
  54. {
  55. typedef function_traits<Signature> traits;
  56. public:
  57. typedef signal0<typename traits::result_type,
  58. Combiner,
  59. Group,
  60. GroupCompare,
  61. SlotFunction> type;
  62. };
  63. template<typename Signature,
  64. typename Combiner,
  65. typename Group,
  66. typename GroupCompare,
  67. typename SlotFunction>
  68. class real_get_signal_impl<1, Signature, Combiner, Group, GroupCompare,
  69. SlotFunction>
  70. {
  71. typedef function_traits<Signature> traits;
  72. public:
  73. typedef signal1<typename traits::result_type,
  74. typename traits::arg1_type,
  75. Combiner,
  76. Group,
  77. GroupCompare,
  78. SlotFunction> type;
  79. };
  80. template<typename Signature,
  81. typename Combiner,
  82. typename Group,
  83. typename GroupCompare,
  84. typename SlotFunction>
  85. class real_get_signal_impl<2, Signature, Combiner, Group, GroupCompare,
  86. SlotFunction>
  87. {
  88. typedef function_traits<Signature> traits;
  89. public:
  90. typedef signal2<typename traits::result_type,
  91. typename traits::arg1_type,
  92. typename traits::arg2_type,
  93. Combiner,
  94. Group,
  95. GroupCompare,
  96. SlotFunction> type;
  97. };
  98. template<typename Signature,
  99. typename Combiner,
  100. typename Group,
  101. typename GroupCompare,
  102. typename SlotFunction>
  103. class real_get_signal_impl<3, Signature, Combiner, Group, GroupCompare,
  104. SlotFunction>
  105. {
  106. typedef function_traits<Signature> traits;
  107. public:
  108. typedef signal3<typename traits::result_type,
  109. typename traits::arg1_type,
  110. typename traits::arg2_type,
  111. typename traits::arg3_type,
  112. Combiner,
  113. Group,
  114. GroupCompare,
  115. SlotFunction> type;
  116. };
  117. template<typename Signature,
  118. typename Combiner,
  119. typename Group,
  120. typename GroupCompare,
  121. typename SlotFunction>
  122. class real_get_signal_impl<4, Signature, Combiner, Group, GroupCompare,
  123. SlotFunction>
  124. {
  125. typedef function_traits<Signature> traits;
  126. public:
  127. typedef signal4<typename traits::result_type,
  128. typename traits::arg1_type,
  129. typename traits::arg2_type,
  130. typename traits::arg3_type,
  131. typename traits::arg4_type,
  132. Combiner,
  133. Group,
  134. GroupCompare,
  135. SlotFunction> type;
  136. };
  137. template<typename Signature,
  138. typename Combiner,
  139. typename Group,
  140. typename GroupCompare,
  141. typename SlotFunction>
  142. class real_get_signal_impl<5, Signature, Combiner, Group, GroupCompare,
  143. SlotFunction>
  144. {
  145. typedef function_traits<Signature> traits;
  146. public:
  147. typedef signal5<typename traits::result_type,
  148. typename traits::arg1_type,
  149. typename traits::arg2_type,
  150. typename traits::arg3_type,
  151. typename traits::arg4_type,
  152. typename traits::arg5_type,
  153. Combiner,
  154. Group,
  155. GroupCompare,
  156. SlotFunction> type;
  157. };
  158. template<typename Signature,
  159. typename Combiner,
  160. typename Group,
  161. typename GroupCompare,
  162. typename SlotFunction>
  163. class real_get_signal_impl<6, Signature, Combiner, Group, GroupCompare,
  164. SlotFunction>
  165. {
  166. typedef function_traits<Signature> traits;
  167. public:
  168. typedef signal6<typename traits::result_type,
  169. typename traits::arg1_type,
  170. typename traits::arg2_type,
  171. typename traits::arg3_type,
  172. typename traits::arg4_type,
  173. typename traits::arg5_type,
  174. typename traits::arg6_type,
  175. Combiner,
  176. Group,
  177. GroupCompare,
  178. SlotFunction> type;
  179. };
  180. template<typename Signature,
  181. typename Combiner,
  182. typename Group,
  183. typename GroupCompare,
  184. typename SlotFunction>
  185. class real_get_signal_impl<7, Signature, Combiner, Group, GroupCompare,
  186. SlotFunction>
  187. {
  188. typedef function_traits<Signature> traits;
  189. public:
  190. typedef signal7<typename traits::result_type,
  191. typename traits::arg1_type,
  192. typename traits::arg2_type,
  193. typename traits::arg3_type,
  194. typename traits::arg4_type,
  195. typename traits::arg5_type,
  196. typename traits::arg6_type,
  197. typename traits::arg7_type,
  198. Combiner,
  199. Group,
  200. GroupCompare,
  201. SlotFunction> type;
  202. };
  203. template<typename Signature,
  204. typename Combiner,
  205. typename Group,
  206. typename GroupCompare,
  207. typename SlotFunction>
  208. class real_get_signal_impl<8, Signature, Combiner, Group, GroupCompare,
  209. SlotFunction>
  210. {
  211. typedef function_traits<Signature> traits;
  212. public:
  213. typedef signal8<typename traits::result_type,
  214. typename traits::arg1_type,
  215. typename traits::arg2_type,
  216. typename traits::arg3_type,
  217. typename traits::arg4_type,
  218. typename traits::arg5_type,
  219. typename traits::arg6_type,
  220. typename traits::arg7_type,
  221. typename traits::arg8_type,
  222. Combiner,
  223. Group,
  224. GroupCompare,
  225. SlotFunction> type;
  226. };
  227. template<typename Signature,
  228. typename Combiner,
  229. typename Group,
  230. typename GroupCompare,
  231. typename SlotFunction>
  232. class real_get_signal_impl<9, Signature, Combiner, Group, GroupCompare,
  233. SlotFunction>
  234. {
  235. typedef function_traits<Signature> traits;
  236. public:
  237. typedef signal9<typename traits::result_type,
  238. typename traits::arg1_type,
  239. typename traits::arg2_type,
  240. typename traits::arg3_type,
  241. typename traits::arg4_type,
  242. typename traits::arg5_type,
  243. typename traits::arg6_type,
  244. typename traits::arg7_type,
  245. typename traits::arg8_type,
  246. typename traits::arg9_type,
  247. Combiner,
  248. Group,
  249. GroupCompare,
  250. SlotFunction> type;
  251. };
  252. template<typename Signature,
  253. typename Combiner,
  254. typename Group,
  255. typename GroupCompare,
  256. typename SlotFunction>
  257. class real_get_signal_impl<10, Signature, Combiner, Group, GroupCompare,
  258. SlotFunction>
  259. {
  260. typedef function_traits<Signature> traits;
  261. public:
  262. typedef signal10<typename traits::result_type,
  263. typename traits::arg1_type,
  264. typename traits::arg2_type,
  265. typename traits::arg3_type,
  266. typename traits::arg4_type,
  267. typename traits::arg5_type,
  268. typename traits::arg6_type,
  269. typename traits::arg7_type,
  270. typename traits::arg8_type,
  271. typename traits::arg9_type,
  272. typename traits::arg10_type,
  273. Combiner,
  274. Group,
  275. GroupCompare,
  276. SlotFunction> type;
  277. };
  278. template<typename Signature,
  279. typename Combiner,
  280. typename Group,
  281. typename GroupCompare,
  282. typename SlotFunction>
  283. struct get_signal_impl :
  284. public real_get_signal_impl<(function_traits<Signature>::arity),
  285. Signature,
  286. Combiner,
  287. Group,
  288. GroupCompare,
  289. SlotFunction>
  290. {
  291. };
  292. } // end namespace detail
  293. } // end namespace BOOST_SIGNALS_NAMESPACE
  294. // Very lightweight wrapper around the signalN classes that allows signals to
  295. // be created where the number of arguments does not need to be part of the
  296. // class name.
  297. template<
  298. typename Signature, // function type R (T1, T2, ..., TN)
  299. typename Combiner = last_value<typename function_traits<Signature>::result_type>,
  300. typename Group = int,
  301. typename GroupCompare = std::less<Group>,
  302. typename SlotFunction = function<Signature>
  303. >
  304. class signal :
  305. public BOOST_SIGNALS_NAMESPACE::detail::get_signal_impl<Signature,
  306. Combiner,
  307. Group,
  308. GroupCompare,
  309. SlotFunction>::type
  310. {
  311. typedef typename BOOST_SIGNALS_NAMESPACE::detail::get_signal_impl<
  312. Signature,
  313. Combiner,
  314. Group,
  315. GroupCompare,
  316. SlotFunction>::type base_type;
  317. public:
  318. explicit signal(const Combiner& combiner = Combiner(),
  319. const GroupCompare& group_compare = GroupCompare()) :
  320. base_type(combiner, group_compare)
  321. {
  322. }
  323. };
  324. #endif // ndef BOOST_FUNCTION_NO_FUNCTION_TYPE_SYNTAX
  325. } // end namespace boost
  326. #ifdef BOOST_HAS_ABI_HEADERS
  327. # include BOOST_ABI_SUFFIX
  328. #endif
  329. #endif // BOOST_SIGNAL_HPP