processor_container.hpp 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445
  1. #ifndef BOOST_STATECHART_PROCESSOR_CONTAINER_HPP_INCLUDED
  2. #define BOOST_STATECHART_PROCESSOR_CONTAINER_HPP_INCLUDED
  3. //////////////////////////////////////////////////////////////////////////////
  4. // Copyright 2002-2008 Andreas Huber Doenni
  5. // Distributed under the Boost Software License, Version 1.0. (See accompany-
  6. // ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  7. //////////////////////////////////////////////////////////////////////////////
  8. #include <boost/statechart/event_base.hpp>
  9. #include <boost/statechart/event_processor.hpp>
  10. #include <boost/assert.hpp>
  11. #include <boost/ref.hpp>
  12. #include <boost/noncopyable.hpp>
  13. #include <boost/intrusive_ptr.hpp>
  14. #include <boost/shared_ptr.hpp>
  15. #include <boost/weak_ptr.hpp>
  16. #include <boost/bind.hpp>
  17. #include <boost/config.hpp> // BOOST_INTEL
  18. #include <boost/detail/workaround.hpp>
  19. #include <boost/detail/allocator_utilities.hpp>
  20. #include <set>
  21. #include <memory> // std::allocator, std::auto_ptr
  22. namespace boost
  23. {
  24. namespace statechart
  25. {
  26. namespace detail
  27. {
  28. template<bool IsReferenceWrapper>
  29. struct unwrap_impl
  30. {
  31. template< typename T >
  32. struct apply { typedef T type; };
  33. };
  34. template<>
  35. struct unwrap_impl<true>
  36. {
  37. template< typename T >
  38. struct apply { typedef typename T::type & type; };
  39. };
  40. template<typename T>
  41. struct unwrap
  42. {
  43. typedef typename unwrap_impl<
  44. is_reference_wrapper< T >::value >::template apply< T >::type type;
  45. };
  46. }
  47. template<
  48. class Scheduler,
  49. class WorkItem,
  50. class Allocator = std::allocator< void > >
  51. class processor_container : noncopyable
  52. {
  53. typedef event_processor< Scheduler > processor_base_type;
  54. typedef std::auto_ptr< processor_base_type > processor_holder_type;
  55. typedef shared_ptr< processor_holder_type > processor_holder_ptr_type;
  56. public:
  57. //////////////////////////////////////////////////////////////////////////
  58. typedef weak_ptr< processor_holder_type > processor_handle;
  59. class processor_context
  60. {
  61. processor_context(
  62. Scheduler & scheduler, const processor_handle & handle
  63. ) :
  64. scheduler_( scheduler ),
  65. handle_( handle )
  66. {
  67. }
  68. #if BOOST_WORKAROUND( BOOST_INTEL, BOOST_TESTED_AT( 800 ) )
  69. public:
  70. // for some reason Intel 8.0 seems to think that the following functions
  71. // are inaccessible from event_processor<>::event_processor
  72. #endif
  73. Scheduler & my_scheduler() const { return scheduler_; }
  74. const processor_handle & my_handle() const { return handle_; }
  75. #if BOOST_WORKAROUND( BOOST_INTEL, BOOST_TESTED_AT( 800 ) )
  76. private:
  77. #endif
  78. // avoids C4512 (assignment operator could not be generated)
  79. processor_context & operator=( const processor_context & );
  80. Scheduler & scheduler_;
  81. const processor_handle handle_;
  82. friend class processor_container;
  83. friend class event_processor< Scheduler >;
  84. };
  85. template< class Processor >
  86. WorkItem create_processor( processor_handle & handle, Scheduler & scheduler )
  87. {
  88. processor_holder_ptr_type pProcessor = make_processor_holder();
  89. handle = pProcessor;
  90. typedef void ( processor_container::*impl_fun_ptr )(
  91. const processor_holder_ptr_type &, const processor_context & );
  92. impl_fun_ptr pImpl =
  93. &processor_container::template create_processor_impl0< Processor >;
  94. return WorkItem(
  95. boost::bind( pImpl, this, pProcessor,
  96. processor_context( scheduler, handle ) ),
  97. Allocator() );
  98. }
  99. template< class Processor, typename Arg1 >
  100. WorkItem create_processor(
  101. processor_handle & handle, Scheduler & scheduler, Arg1 arg1 )
  102. {
  103. processor_holder_ptr_type pProcessor = make_processor_holder();
  104. handle = pProcessor;
  105. typedef typename detail::unwrap< Arg1 >::type arg1_type;
  106. typedef void ( processor_container::*impl_fun_ptr )(
  107. const processor_holder_ptr_type &, const processor_context &,
  108. arg1_type );
  109. impl_fun_ptr pImpl =
  110. &processor_container::template create_processor_impl1<
  111. Processor, arg1_type >;
  112. return WorkItem(
  113. boost::bind( pImpl, this, pProcessor, processor_context( scheduler, handle ),
  114. arg1 ),
  115. Allocator() );
  116. }
  117. template< class Processor, typename Arg1, typename Arg2 >
  118. WorkItem create_processor(
  119. processor_handle & handle, Scheduler & scheduler, Arg1 arg1, Arg2 arg2 )
  120. {
  121. processor_holder_ptr_type pProcessor = make_processor_holder();
  122. handle = pProcessor;
  123. typedef typename detail::unwrap< Arg1 >::type arg1_type;
  124. typedef typename detail::unwrap< Arg2 >::type arg2_type;
  125. typedef void ( processor_container::*impl_fun_ptr )(
  126. const processor_holder_ptr_type &, const processor_context &,
  127. arg1_type, arg2_type );
  128. impl_fun_ptr pImpl =
  129. &processor_container::template create_processor_impl2<
  130. Processor, arg1_type, arg2_type >;
  131. return WorkItem(
  132. boost::bind( pImpl, this, pProcessor, processor_context( scheduler, handle ),
  133. arg1, arg2 ),
  134. Allocator() );
  135. }
  136. template< class Processor, typename Arg1, typename Arg2, typename Arg3 >
  137. WorkItem create_processor(
  138. processor_handle & handle, Scheduler & scheduler,
  139. Arg1 arg1, Arg2 arg2, Arg3 arg3 )
  140. {
  141. processor_holder_ptr_type pProcessor = make_processor_holder();
  142. handle = pProcessor;
  143. typedef typename detail::unwrap< Arg1 >::type arg1_type;
  144. typedef typename detail::unwrap< Arg2 >::type arg2_type;
  145. typedef typename detail::unwrap< Arg3 >::type arg3_type;
  146. typedef void ( processor_container::*impl_fun_ptr )(
  147. const processor_holder_ptr_type &, const processor_context &,
  148. arg1_type, arg2_type, arg3_type );
  149. impl_fun_ptr pImpl =
  150. &processor_container::template create_processor_impl3<
  151. Processor, arg1_type, arg2_type, arg3_type >;
  152. return WorkItem(
  153. boost::bind( pImpl, this, pProcessor, processor_context( scheduler, handle ),
  154. arg1, arg2, arg3 ),
  155. Allocator() );
  156. }
  157. template<
  158. class Processor, typename Arg1, typename Arg2,
  159. typename Arg3, typename Arg4 >
  160. WorkItem create_processor(
  161. processor_handle & handle, Scheduler & scheduler,
  162. Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4 )
  163. {
  164. processor_holder_ptr_type pProcessor = make_processor_holder();
  165. handle = pProcessor;
  166. typedef typename detail::unwrap< Arg1 >::type arg1_type;
  167. typedef typename detail::unwrap< Arg2 >::type arg2_type;
  168. typedef typename detail::unwrap< Arg3 >::type arg3_type;
  169. typedef typename detail::unwrap< Arg4 >::type arg4_type;
  170. typedef void ( processor_container::*impl_fun_ptr )(
  171. const processor_holder_ptr_type &, const processor_context &,
  172. arg1_type, arg2_type, arg3_type, arg4_type );
  173. impl_fun_ptr pImpl =
  174. &processor_container::template create_processor_impl4<
  175. Processor, arg1_type, arg2_type, arg3_type, arg4_type >;
  176. return WorkItem(
  177. boost::bind( pImpl, this, pProcessor, processor_context( scheduler, handle ),
  178. arg1, arg2, arg3, arg4 ),
  179. Allocator() );
  180. }
  181. template<
  182. class Processor, typename Arg1, typename Arg2,
  183. typename Arg3, typename Arg4, typename Arg5 >
  184. WorkItem create_processor(
  185. processor_handle & handle, Scheduler & scheduler,
  186. Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5 )
  187. {
  188. processor_holder_ptr_type pProcessor = make_processor_holder();
  189. handle = pProcessor;
  190. typedef typename detail::unwrap< Arg1 >::type arg1_type;
  191. typedef typename detail::unwrap< Arg2 >::type arg2_type;
  192. typedef typename detail::unwrap< Arg3 >::type arg3_type;
  193. typedef typename detail::unwrap< Arg4 >::type arg4_type;
  194. typedef typename detail::unwrap< Arg5 >::type arg5_type;
  195. typedef void ( processor_container::*impl_fun_ptr )(
  196. const processor_holder_ptr_type &, const processor_context &,
  197. arg1_type, arg2_type, arg3_type, arg4_type, arg5_type );
  198. impl_fun_ptr pImpl =
  199. &processor_container::template create_processor_impl5<
  200. Processor, arg1_type, arg2_type, arg3_type, arg4_type, arg5_type >;
  201. return WorkItem(
  202. boost::bind( pImpl, this, pProcessor, processor_context( scheduler, handle ),
  203. arg1, arg2, arg3, arg4, arg5 ),
  204. Allocator() );
  205. }
  206. template<
  207. class Processor, typename Arg1, typename Arg2,
  208. typename Arg3, typename Arg4, typename Arg5, typename Arg6 >
  209. WorkItem create_processor(
  210. processor_handle & handle, Scheduler & scheduler,
  211. Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5, Arg6 arg6 )
  212. {
  213. processor_holder_ptr_type pProcessor = make_processor_holder();
  214. handle = pProcessor;
  215. typedef typename detail::unwrap< Arg1 >::type arg1_type;
  216. typedef typename detail::unwrap< Arg2 >::type arg2_type;
  217. typedef typename detail::unwrap< Arg3 >::type arg3_type;
  218. typedef typename detail::unwrap< Arg4 >::type arg4_type;
  219. typedef typename detail::unwrap< Arg5 >::type arg5_type;
  220. typedef typename detail::unwrap< Arg6 >::type arg6_type;
  221. typedef void ( processor_container::*impl_fun_ptr )(
  222. const processor_holder_ptr_type &, const processor_context &,
  223. arg1_type, arg2_type, arg3_type, arg4_type, arg5_type, arg6_type );
  224. impl_fun_ptr pImpl =
  225. &processor_container::template create_processor_impl6<
  226. Processor,
  227. arg1_type, arg2_type, arg3_type, arg4_type, arg5_type, arg6_type >;
  228. return WorkItem(
  229. boost::bind( pImpl, this, pProcessor, processor_context( scheduler, handle ),
  230. arg1, arg2, arg3, arg4, arg5, arg6 ),
  231. Allocator() );
  232. }
  233. WorkItem destroy_processor( const processor_handle & processor )
  234. {
  235. return WorkItem(
  236. boost::bind( &processor_container::destroy_processor_impl, this, processor ),
  237. Allocator() );
  238. }
  239. WorkItem initiate_processor( const processor_handle & processor )
  240. {
  241. return WorkItem(
  242. boost::bind( &processor_container::initiate_processor_impl, this,
  243. processor ),
  244. Allocator() );
  245. }
  246. WorkItem terminate_processor( const processor_handle & processor )
  247. {
  248. return WorkItem(
  249. boost::bind( &processor_container::terminate_processor_impl, this,
  250. processor ),
  251. Allocator() );
  252. }
  253. typedef intrusive_ptr< const event_base > event_ptr_type;
  254. WorkItem queue_event(
  255. const processor_handle & processor, const event_ptr_type & pEvent )
  256. {
  257. BOOST_ASSERT( pEvent.get() != 0 );
  258. return WorkItem(
  259. boost::bind( &processor_container::queue_event_impl, this, processor,
  260. pEvent ),
  261. Allocator() );
  262. }
  263. private:
  264. //////////////////////////////////////////////////////////////////////////
  265. processor_holder_ptr_type make_processor_holder()
  266. {
  267. return processor_holder_ptr_type( new processor_holder_type() );
  268. }
  269. template< class Processor >
  270. void create_processor_impl0(
  271. const processor_holder_ptr_type & pProcessor,
  272. const processor_context & context )
  273. {
  274. processorSet_.insert( pProcessor );
  275. processor_holder_type holder( new Processor( context ) );
  276. *pProcessor = holder;
  277. }
  278. template< class Processor, typename Arg1 >
  279. void create_processor_impl1(
  280. const processor_holder_ptr_type & pProcessor,
  281. const processor_context & context, Arg1 arg1 )
  282. {
  283. processorSet_.insert( pProcessor );
  284. processor_holder_type holder( new Processor( context, arg1 ) );
  285. *pProcessor = holder;
  286. }
  287. template< class Processor, typename Arg1, typename Arg2 >
  288. void create_processor_impl2(
  289. const processor_holder_ptr_type & pProcessor,
  290. const processor_context & context, Arg1 arg1, Arg2 arg2 )
  291. {
  292. processorSet_.insert( pProcessor );
  293. processor_holder_type holder( new Processor( context, arg1, arg2 ) );
  294. *pProcessor = holder;
  295. }
  296. template< class Processor, typename Arg1, typename Arg2, typename Arg3 >
  297. void create_processor_impl3(
  298. const processor_holder_ptr_type & pProcessor,
  299. const processor_context & context, Arg1 arg1, Arg2 arg2, Arg3 arg3 )
  300. {
  301. processorSet_.insert( pProcessor );
  302. processor_holder_type holder(
  303. new Processor( context, arg1, arg2, arg3 ) );
  304. *pProcessor = holder;
  305. }
  306. template<
  307. class Processor, typename Arg1, typename Arg2,
  308. typename Arg3, typename Arg4 >
  309. void create_processor_impl4(
  310. const processor_holder_ptr_type & pProcessor,
  311. const processor_context & context,
  312. Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4 )
  313. {
  314. processorSet_.insert( pProcessor );
  315. processor_holder_type holder(
  316. new Processor( context, arg1, arg2, arg3, arg4 ) );
  317. *pProcessor = holder;
  318. }
  319. template<
  320. class Processor, typename Arg1, typename Arg2,
  321. typename Arg3, typename Arg4, typename Arg5 >
  322. void create_processor_impl5(
  323. const processor_holder_ptr_type & pProcessor,
  324. const processor_context & context,
  325. Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5 )
  326. {
  327. processorSet_.insert( pProcessor );
  328. processor_holder_type holder(
  329. new Processor( context, arg1, arg2, arg3, arg4, arg5 ) );
  330. *pProcessor = holder;
  331. }
  332. template<
  333. class Processor, typename Arg1, typename Arg2,
  334. typename Arg3, typename Arg4, typename Arg5, typename Arg6 >
  335. void create_processor_impl6(
  336. const processor_holder_ptr_type & pProcessor,
  337. const processor_context & context,
  338. Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5, Arg6 arg6 )
  339. {
  340. processorSet_.insert( pProcessor );
  341. processor_holder_type holder(
  342. new Processor( context, arg1, arg2, arg3, arg4, arg5, arg6 ) );
  343. *pProcessor = holder;
  344. }
  345. void destroy_processor_impl( const processor_handle & processor )
  346. {
  347. const processor_holder_ptr_type pProcessor = processor.lock();
  348. if ( pProcessor != 0 )
  349. {
  350. processorSet_.erase( pProcessor );
  351. }
  352. }
  353. void initiate_processor_impl( const processor_handle & processor )
  354. {
  355. const processor_holder_ptr_type pProcessor = processor.lock();
  356. if ( pProcessor != 0 )
  357. {
  358. ( *pProcessor )->initiate();
  359. }
  360. }
  361. void terminate_processor_impl( const processor_handle & processor )
  362. {
  363. const processor_holder_ptr_type pProcessor = processor.lock();
  364. if ( pProcessor != 0 )
  365. {
  366. ( *pProcessor )->terminate();
  367. }
  368. }
  369. void queue_event_impl(
  370. const processor_handle & processor, const event_ptr_type & pEvent )
  371. {
  372. const processor_holder_ptr_type pProcessor = processor.lock();
  373. if ( pProcessor != 0 )
  374. {
  375. ( *pProcessor )->process_event( *pEvent );
  376. }
  377. }
  378. typedef std::set<
  379. processor_holder_ptr_type,
  380. std::less< processor_holder_ptr_type >,
  381. typename boost::detail::allocator::rebind_to<
  382. Allocator, processor_holder_ptr_type >::type
  383. > event_processor_set_type;
  384. event_processor_set_type processorSet_;
  385. };
  386. } // namespace statechart
  387. } // namespace boost
  388. #endif