The Gaudi Framework  v29r0 (ff2e7097)
SerialTaskQueue.cpp
Go to the documentation of this file.
1 /*
2  * SerialTaskQueue.cpp
3  *
4  * @date 2012-10-21
5  * @author Marco Clemencic
6  */
7 
9 
10 namespace Gaudi
11 {
12 
14 
16 
18 
20  {
21  m_queue.push( new SerialWorkItem( item, this ) );
22  if ( ++m_count == 1 ) i_startNextItem();
23  }
24 
26  {
27  if ( --m_count != 0 ) i_startNextItem();
28  }
29 
30  void SerialTaskQueue::wait() const
31  {
32  // wait until the queue is empty and all the tasks are completed
33  while ( ( !m_queue.empty() ) || m_count ) {
34  }
35  }
36 
38  {
39  SerialWorkItem* item = 0;
40  m_queue.try_pop( item );
41  tbb::task::enqueue( *new ( tbb::task::allocate_root() ) SerialWorkItemRunner( item ) );
42  }
43 
44 } /* namespace Gaudi */
Base class for the task to be executed by the serial queue.
tbb::concurrent_queue< SerialWorkItem * > m_queue
Queue of the tasks to be executed.
Wrapper for the WorkItem class for internal concurrency bookkeeping.
void wait() const
Block until all the currently enqueued tasks are completed.
SerialTaskQueue()
Default constructor.
virtual ~SerialTaskQueue()
Block until all the enqueued tasks are completed.
void add(WorkItem *item)
Enqueue a WorkItem for execution.
Helper class to wrap a SerialWorkItem in a tbb::task.
void noteCompletion()
Method used by the tasks to trigger the execution of the next task in the queue.
Helper functions to set/get the application return code.
Definition: __init__.py:1
std::atomic< int > m_count
Counter of the currently running tasks.