#include <WaitingTaskList.h>
Classes | |
struct | WaitNode |
Public Member Functions | |
void | add (WaitingTask *) |
Adds task to the waiting list. More... | |
void | doneWaiting (std::exception_ptr iPtr) |
Signals that the resource is now available and tasks should be spawned. More... | |
void | presetTaskAsFailed (std::exception_ptr iExcept) |
void | reset () |
Resets access to the resource so that added tasks will wait. More... | |
WaitingTaskList (unsigned int iInitialSize=2) | |
Constructor. More... | |
~WaitingTaskList ()=default | |
Private Member Functions | |
void | announce () |
WaitNode * | createNode (WaitingTask *iTask) |
const WaitingTaskList & | operator= (const WaitingTaskList &)=delete |
WaitingTaskList (const WaitingTaskList &)=delete | |
Private Attributes | |
std::exception_ptr | m_exceptionPtr |
std::atomic< WaitNode * > | m_head |
std::atomic< unsigned int > | m_lastAssignedCacheIndex |
std::unique_ptr< WaitNode[]> | m_nodeCache |
unsigned int | m_nodeCacheSize |
std::atomic< bool > | m_waiting |
Definition at line 102 of file WaitingTaskList.h.
|
explicit |
Constructor.
The WaitingTaskList is initial set to waiting.
[in] | iInitialSize | specifies the initial size of the cache used to hold waiting tasks. The value is only useful for optimization as the object can resize itself. |
Definition at line 36 of file WaitingTaskList.cc.
References m_lastAssignedCacheIndex, m_nodeCache, m_nodeCacheSize, and m_waiting.
|
default |
|
privatedelete |
void WaitingTaskList::add | ( | WaitingTask * | iTask | ) |
Adds task to the waiting list.
If doneWaiting() has already been called then the added task will immediately be spawned. If that is not the case then the task will be held until doneWaiting() is called and will then be spawned. Calls to add() and doneWaiting() can safely be done concurrently.
Definition at line 96 of file WaitingTaskList.cc.
References announce(), createNode(), edm::WaitingTask::dependentTaskFailed(), m_exceptionPtr, m_head, m_waiting, edm::WaitingTaskList::WaitNode::setNextNode(), and UNLIKELY.
Referenced by edm::NoProcessProductResolver::prefetchAsync_(), edm::Path::processOneOccurrenceAsync(), counter.Counter::register(), SequenceTypes.Task::remove(), and SequenceTypes.Task::replace().
|
private |
Handles spawning the tasks, safe to call from multiple threads
Definition at line 147 of file WaitingTaskList.cc.
References m_exceptionPtr, edm::WaitingTaskList::WaitNode::m_fromCache, m_head, edm::WaitingTaskList::WaitNode::m_task, gen::n, GetRecoTauVFromDQM_MC_cff::next, edm::WaitingTaskList::WaitNode::nextNode(), lumiQTWidget::t, and UNLIKELY.
Referenced by add(), and doneWaiting().
|
private |
Definition at line 74 of file WaitingTaskList.cc.
References edm::WaitingTaskList::WaitNode::m_fromCache, m_lastAssignedCacheIndex, edm::WaitingTaskList::WaitNode::m_next, m_nodeCache, m_nodeCacheSize, and edm::WaitingTaskList::WaitNode::m_task.
Referenced by add().
void WaitingTaskList::doneWaiting | ( | std::exception_ptr | iPtr | ) |
Signals that the resource is now available and tasks should be spawned.
The owner of the resource calls this function to allow the waiting tasks to start accessing it. If the task fails, a non 'null' std::exception_ptr should be used. To have tasks wait again one must call reset(). Calls to add() and doneWaiting() can safely be done concurrently.
Definition at line 177 of file WaitingTaskList.cc.
References announce(), m_exceptionPtr, and m_waiting.
Referenced by edm::Path::finished(), edm::Worker::prePrefetchSelectionAsync(), edm::NoProcessProductResolver::setCache(), and edm::Worker::skipOnPath().
|
privatedelete |
void WaitingTaskList::presetTaskAsFailed | ( | std::exception_ptr | iExcept | ) |
Use in the case where you need to inform the parent task of a failure before some other child task which may be run later reports a different, but related failure. You must later call doneWaiting with same exception later in the same thread.
Definition at line 132 of file WaitingTaskList.cc.
References edm::WaitingTask::dependentTaskFailed(), m_head, edm::WaitingTaskList::WaitNode::m_task, m_waiting, GetRecoTauVFromDQM_MC_cff::next, and edm::WaitingTaskList::WaitNode::nextNode().
Referenced by edm::Path::workerFinished().
void WaitingTaskList::reset | ( | void | ) |
Resets access to the resource so that added tasks will wait.
The owner of the resouce calls reset() to make tasks wait. Calling reset() is NOT thread safe. The system must guarantee that no tasks are using the resource when reset() is called and neither add() nor doneWaiting() can be called concurrently with reset().
Definition at line 53 of file WaitingTaskList.cc.
References m_exceptionPtr, m_head, m_lastAssignedCacheIndex, m_nodeCache, m_nodeCacheSize, and m_waiting.
Referenced by edm::Path::processOneOccurrenceAsync(), and edm::NoProcessProductResolver::resetProductData_().
|
private |
Definition at line 177 of file WaitingTaskList.h.
Referenced by add(), announce(), doneWaiting(), and reset().
|
private |
Definition at line 175 of file WaitingTaskList.h.
Referenced by add(), announce(), presetTaskAsFailed(), and reset().
|
private |
Definition at line 179 of file WaitingTaskList.h.
Referenced by createNode(), reset(), and WaitingTaskList().
|
private |
Definition at line 176 of file WaitingTaskList.h.
Referenced by createNode(), reset(), and WaitingTaskList().
|
private |
Definition at line 178 of file WaitingTaskList.h.
Referenced by createNode(), reset(), and WaitingTaskList().
|
private |
Definition at line 180 of file WaitingTaskList.h.
Referenced by add(), doneWaiting(), presetTaskAsFailed(), reset(), and WaitingTaskList().