123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228 |
- #ifndef __TBB_task_arena_H
- #define __TBB_task_arena_H
- #include "task.h"
- #include "tbb_exception.h"
- #if __TBB_TASK_ARENA
- namespace tbb {
- namespace internal {
-
-
- class arena;
- class task_scheduler_observer_v3;
- }
- namespace interface6 {
- namespace internal {
- using namespace tbb::internal;
- template<typename F>
- class enqueued_function_task : public task {
- F my_func;
- task* execute() {
- my_func();
- return NULL;
- }
- public:
- enqueued_function_task ( const F& f ) : my_func(f) {}
- };
- class delegate_base : no_assign {
- public:
- virtual void operator()() const = 0;
- virtual ~delegate_base() {}
- };
- template<typename F>
- class delegated_function : public delegate_base {
- F &my_func;
- void operator()() const {
- my_func();
- }
- public:
- delegated_function ( F& f ) : my_func(f) {}
- };
- }
- class task_arena {
- friend class internal::task_scheduler_observer_v3;
-
- int my_max_concurrency;
-
- unsigned my_master_slots;
-
- internal::arena* my_arena;
-
- bool my_initialized;
-
- void __TBB_EXPORTED_METHOD internal_initialize( );
- void __TBB_EXPORTED_METHOD internal_terminate( );
- void __TBB_EXPORTED_METHOD internal_enqueue( task&, intptr_t ) const;
- void __TBB_EXPORTED_METHOD internal_execute( internal::delegate_base& ) const;
- void __TBB_EXPORTED_METHOD internal_wait() const;
- public:
-
- static const int automatic = -1;
-
-
- task_arena(int max_concurrency = automatic, unsigned reserved_for_masters = 1)
- : my_max_concurrency(max_concurrency)
- , my_master_slots(reserved_for_masters)
- , my_arena(0)
- , my_initialized(false)
- {}
-
- task_arena(const task_arena &s)
- : my_max_concurrency(s.my_max_concurrency)
- , my_master_slots(s.my_master_slots)
- , my_arena(0)
- , my_initialized(false)
- {}
- inline void initialize() {
- if( !my_initialized ) {
- internal_initialize();
- my_initialized = true;
- }
- }
-
- inline void initialize(int max_concurrency, unsigned reserved_for_masters = 1) {
- __TBB_ASSERT( !my_arena, "task_arena was initialized already");
- if( !my_initialized ) {
- my_max_concurrency = max_concurrency;
- my_master_slots = reserved_for_masters;
- initialize();
- }
- }
-
-
- inline void terminate() {
- if( my_initialized ) {
- internal_terminate();
- my_initialized = false;
- }
- }
-
-
- ~task_arena() {
- terminate();
- }
-
-
- bool is_active() const { return my_initialized; }
-
-
- template<typename F>
- void enqueue( const F& f ) {
- initialize();
- internal_enqueue( *new( task::allocate_root() ) internal::enqueued_function_task<F>(f), 0 );
- }
- #if __TBB_TASK_PRIORITY
-
-
- template<typename F>
- void enqueue( const F& f, priority_t p ) {
- __TBB_ASSERT( p == priority_low || p == priority_normal || p == priority_high, "Invalid priority level value" );
- initialize();
- internal_enqueue( *new( task::allocate_root() ) internal::enqueued_function_task<F>(f), (intptr_t)p );
- }
- #endif
-
-
-
- template<typename F>
- void execute(F& f) {
- initialize();
- internal::delegated_function<F> d(f);
- internal_execute( d );
- }
-
-
-
- template<typename F>
- void execute(const F& f) {
- initialize();
- internal::delegated_function<const F> d(f);
- internal_execute( d );
- }
-
-
-
- void wait_until_empty() {
- initialize();
- internal_wait();
- }
-
- static int __TBB_EXPORTED_FUNC current_slot();
- };
- }
- using interface6::task_arena;
- }
- #endif
- #endif
|