os/ossrv/ossrv_pub/boost_apis/boost/statechart/fifo_scheduler.hpp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/ossrv_pub/boost_apis/boost/statechart/fifo_scheduler.hpp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,203 @@
     1.4 +#ifndef BOOST_STATECHART_FIFO_SCHEDULER_HPP_INCLUDED
     1.5 +#define BOOST_STATECHART_FIFO_SCHEDULER_HPP_INCLUDED
     1.6 +//////////////////////////////////////////////////////////////////////////////
     1.7 +// Copyright 2002-2006 Andreas Huber Doenni
     1.8 +// Distributed under the Boost Software License, Version 1.0. (See accompany-
     1.9 +// ing file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
    1.10 +//////////////////////////////////////////////////////////////////////////////
    1.11 +
    1.12 +
    1.13 +
    1.14 +#include <boost/statechart/event_base.hpp>
    1.15 +#include <boost/statechart/fifo_worker.hpp>
    1.16 +#include <boost/statechart/processor_container.hpp>
    1.17 +
    1.18 +#include <boost/intrusive_ptr.hpp>
    1.19 +#include <boost/noncopyable.hpp>
    1.20 +#include <boost/config.hpp> // BOOST_HAS_THREADS
    1.21 +
    1.22 +
    1.23 +
    1.24 +namespace boost
    1.25 +{
    1.26 +namespace statechart
    1.27 +{
    1.28 +
    1.29 +
    1.30 +
    1.31 +//////////////////////////////////////////////////////////////////////////////
    1.32 +template<
    1.33 +  class FifoWorker = fifo_worker<>,
    1.34 +  class Allocator = std::allocator< void > >
    1.35 +class fifo_scheduler : noncopyable
    1.36 +{
    1.37 +  typedef processor_container<
    1.38 +    fifo_scheduler, typename FifoWorker::work_item, Allocator > container;
    1.39 +  public:
    1.40 +    //////////////////////////////////////////////////////////////////////////
    1.41 +    #ifdef BOOST_HAS_THREADS
    1.42 +    fifo_scheduler( bool waitOnEmptyQueue = false ) :
    1.43 +      worker_( waitOnEmptyQueue )
    1.44 +    {
    1.45 +    }
    1.46 +    #endif
    1.47 +
    1.48 +    typedef typename container::processor_handle processor_handle;
    1.49 +    typedef typename container::processor_context processor_context;
    1.50 +
    1.51 +    template< class Processor >
    1.52 +    processor_handle create_processor()
    1.53 +    {
    1.54 +      processor_handle result;
    1.55 +      work_item item =
    1.56 +        container_.template create_processor< Processor >( result, *this );
    1.57 +      worker_.queue_work_item( item );
    1.58 +      return result;
    1.59 +    }
    1.60 +
    1.61 +    template< class Processor, typename Arg1 >
    1.62 +    processor_handle create_processor( Arg1 arg1 )
    1.63 +    {
    1.64 +      processor_handle result;
    1.65 +      work_item item = container_.template create_processor< Processor >(
    1.66 +        result, *this, arg1 );
    1.67 +      worker_.queue_work_item( item );
    1.68 +      return result;
    1.69 +    }
    1.70 +
    1.71 +    template< class Processor, typename Arg1, typename Arg2 >
    1.72 +    processor_handle create_processor( Arg1 arg1, Arg2 arg2 )
    1.73 +    {
    1.74 +      processor_handle result;
    1.75 +      work_item item = container_.template create_processor< Processor >(
    1.76 +        result, *this, arg1, arg2 );
    1.77 +      worker_.queue_work_item( item );
    1.78 +      return result;
    1.79 +    }
    1.80 +
    1.81 +    template< class Processor, typename Arg1, typename Arg2, typename Arg3 >
    1.82 +    processor_handle create_processor( Arg1 arg1, Arg2 arg2, Arg3 arg3 )
    1.83 +    {
    1.84 +      processor_handle result;
    1.85 +      work_item item = container_.template create_processor< Processor >(
    1.86 +        result, *this, arg1, arg2, arg3 );
    1.87 +      worker_.queue_work_item( item );
    1.88 +      return result;
    1.89 +    }
    1.90 +
    1.91 +    template<
    1.92 +      class Processor, typename Arg1, typename Arg2,
    1.93 +      typename Arg3, typename Arg4 >
    1.94 +    processor_handle create_processor(
    1.95 +      Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4 )
    1.96 +    {
    1.97 +      processor_handle result;
    1.98 +      work_item item = container_.template create_processor< Processor >(
    1.99 +        result, *this, arg1, arg2, arg3, arg4 );
   1.100 +      worker_.queue_work_item( item );
   1.101 +      return result;
   1.102 +    }
   1.103 +
   1.104 +    template<
   1.105 +      class Processor, typename Arg1, typename Arg2,
   1.106 +      typename Arg3, typename Arg4, typename Arg5 >
   1.107 +    processor_handle create_processor(
   1.108 +      Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5 )
   1.109 +    {
   1.110 +      processor_handle result;
   1.111 +      work_item item = container_.template create_processor< Processor >(
   1.112 +        result, *this, arg1, arg2, arg3, arg4, arg5 );
   1.113 +      worker_.queue_work_item( item );
   1.114 +      return result;
   1.115 +    }
   1.116 +
   1.117 +    template<
   1.118 +      class Processor, typename Arg1, typename Arg2,
   1.119 +      typename Arg3, typename Arg4, typename Arg5, typename Arg6 >
   1.120 +    processor_handle create_processor(
   1.121 +      Arg1 arg1, Arg2 arg2, Arg3 arg3, Arg4 arg4, Arg5 arg5, Arg6 arg6 )
   1.122 +    {
   1.123 +      processor_handle result;
   1.124 +      work_item item = container_.template create_processor< Processor >(
   1.125 +        result, *this, arg1, arg2, arg3, arg4, arg5, arg6 );
   1.126 +      worker_.queue_work_item( item );
   1.127 +      return result;
   1.128 +    }
   1.129 +
   1.130 +    void destroy_processor( const processor_handle & processor )
   1.131 +    {
   1.132 +      work_item item = container_.destroy_processor( processor );
   1.133 +      worker_.queue_work_item( item );
   1.134 +    }
   1.135 +
   1.136 +    void initiate_processor( const processor_handle & processor )
   1.137 +    {
   1.138 +      work_item item = container_.initiate_processor( processor );
   1.139 +      worker_.queue_work_item( item );
   1.140 +    }
   1.141 +
   1.142 +    void terminate_processor( const processor_handle & processor )
   1.143 +    {
   1.144 +      work_item item = container_.terminate_processor( processor );
   1.145 +      worker_.queue_work_item( item );
   1.146 +    }
   1.147 +
   1.148 +    typedef intrusive_ptr< const event_base > event_ptr_type;
   1.149 +
   1.150 +    void queue_event(
   1.151 +      const processor_handle & processor, const event_ptr_type & pEvent )
   1.152 +    {
   1.153 +      work_item item = container_.queue_event( processor, pEvent );
   1.154 +      worker_.queue_work_item( item );
   1.155 +    }
   1.156 +
   1.157 +    typedef typename FifoWorker::work_item work_item;
   1.158 +
   1.159 +    // We take a non-const reference so that we can move (i.e. swap) the item
   1.160 +    // into the queue, what avoids copying the (possibly heap-allocated)
   1.161 +    // implementation object inside work_item.
   1.162 +    void queue_work_item( work_item & item )
   1.163 +    {
   1.164 +      worker_.queue_work_item( item );
   1.165 +    }
   1.166 +
   1.167 +    // Convenience overload so that temporary objects can be passed directly
   1.168 +    // instead of having to create a work_item object first. Under most
   1.169 +    // circumstances, this will lead to one unnecessary copy of the
   1.170 +    // function implementation object.
   1.171 +    void queue_work_item( const work_item & item )
   1.172 +    {
   1.173 +      worker_.queue_work_item( item );
   1.174 +    }
   1.175 +
   1.176 +    void terminate()
   1.177 +    {
   1.178 +      worker_.terminate();
   1.179 +    }
   1.180 +
   1.181 +    // Is not mutex-protected! Must only be called from the thread that also
   1.182 +    // calls operator().
   1.183 +    bool terminated() const
   1.184 +    {
   1.185 +      return worker_.terminated();
   1.186 +    }
   1.187 +
   1.188 +    unsigned long operator()( unsigned long maxEventCount = 0 )
   1.189 +    {
   1.190 +      return worker_( maxEventCount );
   1.191 +    }
   1.192 +
   1.193 +  private:
   1.194 +    //////////////////////////////////////////////////////////////////////////
   1.195 +    container container_;
   1.196 +    FifoWorker worker_;
   1.197 +};
   1.198 +
   1.199 +
   1.200 +
   1.201 +} // namespace statechart
   1.202 +} // namespace boost
   1.203 +
   1.204 +
   1.205 +
   1.206 +#endif