CMS 3D CMS Logo

List of all members | Public Member Functions | Private Member Functions | Private Attributes
edm::SerialTaskQueueChain Class Reference

#include <SerialTaskQueueChain.h>

Public Member Functions

std::size_t numberOfQueues () const
 
SerialTaskQueueChainoperator= (const SerialTaskQueueChain &)=delete
 
SerialTaskQueueChainoperator= (SerialTaskQueueChain &&iOld)
 
unsigned long outstandingTasks () const
 
template<typename T >
void push (T &&iAction)
 asynchronously pushes functor iAction into queue More...
 
template<typename T >
void pushAndWait (T &&iAction)
 synchronously pushes functor iAction into queue More...
 
 SerialTaskQueueChain ()
 
 SerialTaskQueueChain (std::vector< std::shared_ptr< SerialTaskQueue >> iQueues)
 
 SerialTaskQueueChain (const SerialTaskQueueChain &)=delete
 
 SerialTaskQueueChain (SerialTaskQueueChain &&iOld)
 

Private Member Functions

template<typename T >
void actionToRun (T &&iAction)
 
template<typename T >
void passDownChain (unsigned int iIndex, T &&iAction)
 

Private Attributes

std::atomic< unsigned long > m_outstandingTasks {0}
 
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
 

Detailed Description

Definition at line 31 of file SerialTaskQueueChain.h.

Constructor & Destructor Documentation

edm::SerialTaskQueueChain::SerialTaskQueueChain ( )
inline

Definition at line 33 of file SerialTaskQueueChain.h.

Referenced by SerialTaskQueueChain().

33 {}
edm::SerialTaskQueueChain::SerialTaskQueueChain ( std::vector< std::shared_ptr< SerialTaskQueue >>  iQueues)
inlineexplicit

Definition at line 34 of file SerialTaskQueueChain.h.

References operator=(), and SerialTaskQueueChain().

35  : m_queues(std::move(iQueues)) {}
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
def move(src, dest)
Definition: eostools.py:511
edm::SerialTaskQueueChain::SerialTaskQueueChain ( const SerialTaskQueueChain )
delete
edm::SerialTaskQueueChain::SerialTaskQueueChain ( SerialTaskQueueChain &&  iOld)
inline

Definition at line 39 of file SerialTaskQueueChain.h.

40  : m_queues(std::move(iOld.m_queues)), m_outstandingTasks{iOld.m_outstandingTasks.load()} {}
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
std::atomic< unsigned long > m_outstandingTasks
def move(src, dest)
Definition: eostools.py:511

Member Function Documentation

template<typename T >
void SerialTaskQueueChain::actionToRun ( T &&  iAction)
private

Definition at line 138 of file SerialTaskQueueChain.h.

Referenced by passDownChain(), and push().

138  {
139  //even if an exception happens we will resume the queues.
140  using Queues = std::vector<std::shared_ptr<SerialTaskQueue>>;
141  auto sentryAction = [](SerialTaskQueueChain* iChain) {
142  auto& vec = iChain->m_queues;
143  for (auto it = vec.rbegin() + 1; it != vec.rend(); ++it) {
144  (*it)->resume();
145  }
146  --(iChain->m_outstandingTasks);
147  };
148 
149  std::unique_ptr<SerialTaskQueueChain, decltype(sentryAction)> sentry(this, sentryAction);
150  iAction();
151  }
std::size_t edm::SerialTaskQueueChain::numberOfQueues ( ) const
inline

Definition at line 70 of file SerialTaskQueueChain.h.

References m_queues.

Referenced by edm::SharedResourcesAcquirer::numberOfResources().

70 { return m_queues.size(); }
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
SerialTaskQueueChain& edm::SerialTaskQueueChain::operator= ( const SerialTaskQueueChain )
delete

Referenced by SerialTaskQueueChain().

SerialTaskQueueChain& edm::SerialTaskQueueChain::operator= ( SerialTaskQueueChain &&  iOld)
inline

Definition at line 42 of file SerialTaskQueueChain.h.

References m_outstandingTasks, m_queues, eostools::move(), push(), and pushAndWait().

42  {
43  m_queues = std::move(iOld.m_queues);
44  m_outstandingTasks.store(iOld.m_outstandingTasks.load());
45  return *this;
46  }
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
std::atomic< unsigned long > m_outstandingTasks
def move(src, dest)
Definition: eostools.py:511
unsigned long edm::SerialTaskQueueChain::outstandingTasks ( ) const
inline

Definition at line 69 of file SerialTaskQueueChain.h.

References m_outstandingTasks.

69 { return m_outstandingTasks; }
std::atomic< unsigned long > m_outstandingTasks
template<typename T >
void SerialTaskQueueChain::passDownChain ( unsigned int  iIndex,
T &&  iAction 
)
private

Definition at line 124 of file SerialTaskQueueChain.h.

References actionToRun(), and m_queues.

Referenced by push().

124  {
125  //Have to be sure the queue associated to this running task
126  // does not attempt to start another task
127  m_queues[iQueueIndex - 1]->pause();
128  //is this the last queue?
129  if (iQueueIndex + 1 == m_queues.size()) {
130  m_queues[iQueueIndex]->push([this, iAction]() mutable { this->actionToRun(iAction); });
131  } else {
132  auto nextQueue = iQueueIndex + 1;
133  m_queues[iQueueIndex]->push([this, nextQueue, iAction]() mutable { this->passDownChain(nextQueue, iAction); });
134  }
135  }
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
void passDownChain(unsigned int iIndex, T &&iAction)
template<typename T >
void SerialTaskQueueChain::push ( T &&  iAction)

asynchronously pushes functor iAction into queue

The function will return immediately and iAction will either process concurrently with the calling thread or wait until the protected resource becomes available or until a CPU becomes available.

Parameters
[in]iActionMust be a functor that takes no arguments and return no values.

Definition at line 85 of file SerialTaskQueueChain.h.

References actionToRun(), m_outstandingTasks, m_queues, and passDownChain().

Referenced by edm::EventProcessor::beginLumiAsync(), edm::EventProcessor::handleNextEventForStreamAsync(), operator=(), edm::InputProductResolver::prefetchAsync_(), edm::Worker::TaskQueueAdaptor::push(), pushAndWait(), and edm::ReducedProvenanceReader::ReducedProvenanceReader().

85  {
87  if (m_queues.size() == 1) {
88  m_queues[0]->push([this, iAction]() mutable { this->actionToRun(iAction); });
89  } else {
90  assert(!m_queues.empty());
91  m_queues[0]->push([this, iAction]() mutable { this->passDownChain(1, iAction); });
92  }
93  }
std::vector< std::shared_ptr< SerialTaskQueue > > m_queues
std::atomic< unsigned long > m_outstandingTasks
void passDownChain(unsigned int iIndex, T &&iAction)
template<typename T >
void SerialTaskQueueChain::pushAndWait ( T &&  iAction)

synchronously pushes functor iAction into queue

The function will wait until iAction has completed before returning. If another task is already running on the queue, the system is allowed to find another TBB task to execute while waiting for the iAction to finish. In that way the core is not idled while waiting.

Parameters
[in]iActionMust be a functor that takes no arguments and return no values.

Definition at line 96 of file SerialTaskQueueChain.h.

References TauDecayModes::dec, pyrootRender::destroy(), push(), and TrackValidation_cff::task.

Referenced by operator=(), and edm::Worker::TaskQueueAdaptor::pushAndWait().

96  {
97  auto destry = [](tbb::task* iTask) { tbb::task::destroy(*iTask); };
98 
99  std::unique_ptr<tbb::task, decltype(destry)> waitTask(new (tbb::task::allocate_root()) tbb::empty_task, destry);
100  waitTask->set_ref_count(3);
101 
102  std::exception_ptr ptr;
103  auto waitTaskPtr = waitTask.get();
104  push([waitTaskPtr, iAction, &ptr]() {
105  //must wait until exception ptr would be set
106  auto dec = [](tbb::task* iTask) { iTask->decrement_ref_count(); };
107  std::unique_ptr<tbb::task, decltype(dec)> sentry(waitTaskPtr, dec);
108  try {
109  iAction();
110  } catch (...) {
111  ptr = std::current_exception();
112  }
113  });
114 
115  waitTask->decrement_ref_count();
116  waitTask->wait_for_all();
117 
118  if (ptr) {
119  std::rethrow_exception(ptr);
120  }
121  }
def destroy(e)
Definition: pyrootRender.py:15
void push(T &&iAction)
asynchronously pushes functor iAction into queue

Member Data Documentation

std::atomic<unsigned long> edm::SerialTaskQueueChain::m_outstandingTasks {0}
private

Definition at line 75 of file SerialTaskQueueChain.h.

Referenced by operator=(), outstandingTasks(), and push().

std::vector<std::shared_ptr<SerialTaskQueue> > edm::SerialTaskQueueChain::m_queues
private

Definition at line 74 of file SerialTaskQueueChain.h.

Referenced by numberOfQueues(), operator=(), passDownChain(), and push().