CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Static Private Member Functions | Private Attributes
edm::Path Class Reference

#include <Path.h>

Public Types

typedef WorkersInPath::size_type size_type
 
typedef hlt::HLTState State
 
typedef std::shared_ptr< HLTGlobalStatusTrigResPtr
 
typedef std::vector< WorkerInPathWorkersInPath
 

Public Member Functions

int bitPosition () const
 
void clearCounters ()
 
Worker const * getWorker (size_type i) const
 
std::string const & name () const
 
 Path (int bitpos, std::string const &path_name, WorkersInPath const &workers, TrigResPtr trptr, ExceptionToActionTable const &actions, std::shared_ptr< ActivityRegistry > reg, StreamContext const *streamContext, std::atomic< bool > *stopProcessEvent, PathContext::PathType pathType)
 
 Path (Path const &)
 
void processOneOccurrenceAsync (WaitingTask *, EventPrincipal const &, EventSetup const &, ServiceToken const &, StreamID const &, StreamContext const *)
 
template<typename T >
void runAllModulesAsync (WaitingTask *, typename T::MyPrincipal const &, EventSetup const &, ServiceToken const &, StreamID const &, typename T::Context const *)
 
void setEarlyDeleteHelpers (std::map< const Worker *, EarlyDeleteHelper * > const &)
 
void setPathStatusInserter (PathStatusInserter *pathStatusInserter, Worker *pathStatusInserterWorker)
 
size_type size () const
 
State state () const
 
int timesExcept () const
 
int timesExcept (size_type i) const
 
int timesFailed () const
 
int timesFailed (size_type i) const
 
int timesPassed () const
 
int timesPassed (size_type i) const
 
int timesRun () const
 
int timesVisited (size_type i) const
 

Private Member Functions

void finished (int iModuleIndex, bool iSucceeded, std::exception_ptr, StreamContext const *, EventPrincipal const &iEP, EventSetup const &iES, StreamID const &streamID)
 
void handleEarlyFinish (EventPrincipal const &)
 
void handleEarlyFinish (RunPrincipal const &)
 
void handleEarlyFinish (LuminosityBlockPrincipal const &)
 
bool handleWorkerFailure (cms::Exception &e, int nwrwue, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id)
 
Path const & operator= (Path const &)=delete
 
void recordStatus (int nwrwue, bool isEvent)
 
void runNextWorkerAsync (unsigned int iNextModuleIndex, EventPrincipal const &, EventSetup const &, ServiceToken const &, StreamID const &, StreamContext const *)
 
void updateCounters (bool succeed, bool isEvent)
 
void workerFinished (std::exception_ptr const *iException, unsigned int iModuleIndex, EventPrincipal const &iEP, EventSetup const &iES, ServiceToken const &iToken, StreamID const &iID, StreamContext const *iContext)
 

Static Private Member Functions

static void exceptionContext (cms::Exception &ex, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id, PathContext const &)
 

Private Attributes

ExceptionToActionTable const * act_table_
 
std::shared_ptr< ActivityRegistryactReg_
 
int bitpos_
 
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
 
PathContext pathContext_
 
PathStatusInserterpathStatusInserter_
 
WorkerpathStatusInserterWorker_
 
State state_
 
std::atomic< bool > * stopProcessingEvent_
 
int timesExcept_
 
int timesFailed_
 
int timesPassed_
 
int timesRun_
 
TrigResPtr trptr_
 
WaitingTaskList waitingTasks_
 
WorkersInPath workers_
 

Detailed Description

Definition at line 44 of file Path.h.

Member Typedef Documentation

typedef WorkersInPath::size_type edm::Path::size_type

Definition at line 49 of file Path.h.

Definition at line 46 of file Path.h.

typedef std::shared_ptr<HLTGlobalStatus> edm::Path::TrigResPtr

Definition at line 50 of file Path.h.

typedef std::vector<WorkerInPath> edm::Path::WorkersInPath

Definition at line 48 of file Path.h.

Constructor & Destructor Documentation

edm::Path::Path ( int  bitpos,
std::string const &  path_name,
WorkersInPath const &  workers,
TrigResPtr  trptr,
ExceptionToActionTable const &  actions,
std::shared_ptr< ActivityRegistry reg,
StreamContext const *  streamContext,
std::atomic< bool > *  stopProcessEvent,
PathContext::PathType  pathType 
)

Definition at line 15 of file Path.cc.

References pathContext_, and workers_.

22  :
23  timesRun_(),
24  timesPassed_(),
25  timesFailed_(),
26  timesExcept_(),
28  bitpos_(bitpos),
29  trptr_(trptr),
30  actReg_(areg),
33  pathContext_(path_name, streamContext, bitpos, pathType),
34  stopProcessingEvent_(stopProcessingEvent),
35  pathStatusInserter_(nullptr),
36  pathStatusInserterWorker_(nullptr) {
37 
38  for (auto& workerInPath : workers_) {
39  workerInPath.setPathContext(&pathContext_);
40  }
41  }
not [yet] run
Definition: HLTenums.h:18
roAction_t actions[nactions]
Definition: GenABIO.cc:187
int timesFailed_
Definition: Path.h:106
int timesExcept_
Definition: Path.h:107
PathContext pathContext_
Definition: Path.h:119
std::shared_ptr< ActivityRegistry > actReg_
Definition: Path.h:113
TrigResPtr trptr_
Definition: Path.h:112
int bitpos_
Definition: Path.h:111
WorkersInPath workers_
Definition: Path.h:116
ExceptionToActionTable const * act_table_
Definition: Path.h:114
State state_
Definition: Path.h:109
int timesPassed_
Definition: Path.h:105
std::atomic< bool > * stopProcessingEvent_
Definition: Path.h:121
int timesRun_
Definition: Path.h:104
Worker * pathStatusInserterWorker_
Definition: Path.h:124
PathStatusInserter * pathStatusInserter_
Definition: Path.h:123
edm::Path::Path ( Path const &  r)

Definition at line 43 of file Path.cc.

References pathContext_, and workers_.

43  :
44  timesRun_(r.timesRun_),
45  timesPassed_(r.timesPassed_),
46  timesFailed_(r.timesFailed_),
47  timesExcept_(r.timesExcept_),
48  state_(r.state_),
49  bitpos_(r.bitpos_),
50  trptr_(r.trptr_),
51  actReg_(r.actReg_),
52  act_table_(r.act_table_),
53  workers_(r.workers_),
54  earlyDeleteHelpers_(r.earlyDeleteHelpers_),
55  pathContext_(r.pathContext_),
56  stopProcessingEvent_(r.stopProcessingEvent_),
57  pathStatusInserter_(r.pathStatusInserter_),
58  pathStatusInserterWorker_(r.pathStatusInserterWorker_) {
59 
60  for (auto& workerInPath : workers_) {
61  workerInPath.setPathContext(&pathContext_);
62  }
63  }
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
Definition: Path.h:117
int timesFailed_
Definition: Path.h:106
int timesExcept_
Definition: Path.h:107
PathContext pathContext_
Definition: Path.h:119
std::shared_ptr< ActivityRegistry > actReg_
Definition: Path.h:113
TrigResPtr trptr_
Definition: Path.h:112
int bitpos_
Definition: Path.h:111
WorkersInPath workers_
Definition: Path.h:116
ExceptionToActionTable const * act_table_
Definition: Path.h:114
State state_
Definition: Path.h:109
int timesPassed_
Definition: Path.h:105
std::atomic< bool > * stopProcessingEvent_
Definition: Path.h:121
int timesRun_
Definition: Path.h:104
Worker * pathStatusInserterWorker_
Definition: Path.h:124
PathStatusInserter * pathStatusInserter_
Definition: Path.h:123

Member Function Documentation

int edm::Path::bitPosition ( ) const
inline

Definition at line 74 of file Path.h.

References bitpos_.

Referenced by edm::fillPathSummary().

74 { return bitpos_; }
int bitpos_
Definition: Path.h:111
void edm::Path::clearCounters ( )

Definition at line 171 of file Path.cc.

References edm::WorkerInPath::clearCounters(), edm::for_all(), timesExcept_, timesFailed_, timesPassed_, timesRun_, and workers_.

Referenced by edm::StreamSchedule::clearCounters(), and name().

171  {
172  using std::placeholders::_1;
174  for_all(workers_, std::bind(&WorkerInPath::clearCounters, _1));
175  }
int timesFailed_
Definition: Path.h:106
int timesExcept_
Definition: Path.h:107
Func for_all(ForwardSequence &s, Func f)
wrapper for std::for_each
Definition: Algorithms.h:16
WorkersInPath workers_
Definition: Path.h:116
int timesPassed_
Definition: Path.h:105
int timesRun_
Definition: Path.h:104
void edm::Path::exceptionContext ( cms::Exception ex,
bool  isEvent,
bool  begin,
BranchType  branchType,
ModuleDescription const &  desc,
std::string const &  id,
PathContext const &  pathContext 
)
staticprivate

Definition at line 118 of file Path.cc.

References cms::Exception::addContext(), triggerObjects_cff::id, edm::InLumi, edm::InRun, and edm::PathContext::pathName().

Referenced by handleWorkerFailure().

124  {
125  std::ostringstream ost;
126  ost << "Running path '" << pathContext.pathName() << "'";
127  ex.addContext(ost.str());
128  ost.str("");
129  ost << "Processing ";
130  //For the event case, the Worker has already
131  // added the necessary module context to the exception
132  if (begin && branchType == InRun) {
133  ost << "stream begin Run";
134  }
135  else if (begin && branchType == InLumi) {
136  ost << "stream begin LuminosityBlock ";
137  }
138  else if (!begin && branchType == InLumi) {
139  ost << "stream end LuminosityBlock ";
140  }
141  else if (!begin && branchType == InRun) {
142  ost << "stream end Run ";
143  }
144  else if (isEvent) {
145  // It should be impossible to get here ...
146  ost << "Event ";
147  }
148  ost << id;
149  ex.addContext(ost.str());
150  }
void addContext(std::string const &context)
Definition: Exception.cc:227
#define begin
Definition: vmac.h:32
def branchType(schema, name)
Definition: revisionDML.py:112
void edm::Path::finished ( int  iModuleIndex,
bool  iSucceeded,
std::exception_ptr  iException,
StreamContext const *  iContext,
EventPrincipal const &  iEP,
EventSetup const &  iES,
StreamID const &  streamID 
)
private

Definition at line 292 of file Path.cc.

References actReg_, edm::BranchActionStreamBegin, edm::WaitingTaskList::doneWaiting(), pathContext_, pathStatusInserter_, pathStatusInserterWorker_, recordStatus(), edm::Worker::runModuleDirectly(), edm::PathStatusInserter::setPathStatus(), state_, mps_update::status, updateCounters(), and waitingTasks_.

Referenced by processOneOccurrenceAsync(), and workerFinished().

295  {
296 
297  if(not iException) {
298  updateCounters(iSucceeded, true);
299  recordStatus(iModuleIndex, true);
300  }
301  try {
302  HLTPathStatus status(state_, iModuleIndex);
303 
304  if (pathStatusInserter_) { // pathStatusInserter is null for EndPaths
306  }
307  std::exception_ptr jException =
308  pathStatusInserterWorker_->runModuleDirectly<OccurrenceTraits<EventPrincipal,
310  iEP, iES, streamID, ParentContext(iContext), iContext
311  );
312  if(jException && not iException) {
313  iException = jException;
314  }
315  actReg_->postPathEventSignal_(*iContext, pathContext_, status);
316  } catch(...) {
317  if(not iException) {
318  iException = std::current_exception();
319  }
320  }
321  waitingTasks_.doneWaiting(iException);
322  }
void recordStatus(int nwrwue, bool isEvent)
Definition: Path.cc:153
void setPathStatus(StreamID const &, HLTPathStatus const &)
PathContext pathContext_
Definition: Path.h:119
WaitingTaskList waitingTasks_
Definition: Path.h:120
std::exception_ptr runModuleDirectly(typename T::MyPrincipal const &ep, EventSetup const &es, StreamID streamID, ParentContext const &parentContext, typename T::Context const *context)
Definition: Worker.h:1159
std::shared_ptr< ActivityRegistry > actReg_
Definition: Path.h:113
void doneWaiting(std::exception_ptr iPtr)
Signals that the resource is now available and tasks should be spawned.
void updateCounters(bool succeed, bool isEvent)
Definition: Path.cc:160
State state_
Definition: Path.h:109
Worker * pathStatusInserterWorker_
Definition: Path.h:124
PathStatusInserter * pathStatusInserter_
Definition: Path.h:123
Worker const* edm::Path::getWorker ( size_type  i) const
inline

Definition at line 91 of file Path.h.

References operator=(), setEarlyDeleteHelpers(), setPathStatusInserter(), and workers_.

Referenced by edm::fillModuleInPathSummary(), and setEarlyDeleteHelpers().

91 { return workers_.at(i).getWorker(); }
WorkersInPath workers_
Definition: Path.h:116
void edm::Path::handleEarlyFinish ( EventPrincipal const &  iEvent)
private

Definition at line 202 of file Path.cc.

References earlyDeleteHelpers_.

Referenced by workerFinished().

202  {
203  for(auto helper: earlyDeleteHelpers_) {
204  helper->pathFinished(iEvent);
205  }
206  }
Definition: helper.py:1
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
Definition: Path.h:117
int iEvent
Definition: GenABIO.cc:230
void edm::Path::handleEarlyFinish ( RunPrincipal const &  )
inlineprivate

Definition at line 152 of file Path.h.

152 {}
void edm::Path::handleEarlyFinish ( LuminosityBlockPrincipal const &  )
inlineprivate

Definition at line 153 of file Path.h.

References a, pathContext_, runNextWorkerAsync(), state(), state_, mps_update::status, and workerFinished().

153 {}
bool edm::Path::handleWorkerFailure ( cms::Exception e,
int  nwrwue,
bool  isEvent,
bool  begin,
BranchType  branchType,
ModuleDescription const &  desc,
std::string const &  id 
)
private

Definition at line 67 of file Path.cc.

References act_table_, mps_fire::action, cms::Exception::addAdditionalInfo(), cms::Exception::category(), edm::Exception::codeToString(), cms::Exception::context(), edm::hlt::Exception, exceptionContext(), edm::exception_actions::FailPath, edm::ExceptionToActionTable::find(), pathContext_, edm::printCmsExceptionWarning(), edm::errors::ProductNotFound, cms::Exception::raise(), recordStatus(), edm::exception_actions::Rethrow, edm::exception_actions::SkipEvent, state_, stopProcessingEvent_, AlCaHLTBitMon_QueryRunRegistry::string, and timesExcept_.

Referenced by workerFinished().

73  {
74  if(e.context().empty()) {
75  exceptionContext(e, isEvent, begin, branchType, desc, id, pathContext_);
76  }
77  bool should_continue = true;
78 
79  // there is no support as of yet for specific paths having
80  // different exception behavior
81 
82  // If not processing an event, always rethrow.
84  switch(action) {
86  should_continue = false;
87  edm::printCmsExceptionWarning("FailPath", e);
88  break;
89  }
91  //Need the other Paths to stop as soon as possible
93  *stopProcessingEvent_ = true;
94  }
95  }
96  default: {
97  if (isEvent) ++timesExcept_;
99  recordStatus(nwrwue, isEvent);
100  if (action == exception_actions::Rethrow) {
102  if (e.category() == pNF) {
103  std::ostringstream ost;
104  ost << "If you wish to continue processing events after a " << pNF << " exception,\n" <<
105  "add \"SkipEvent = cms.untracked.vstring('ProductNotFound')\" to the \"options\" PSet in the configuration.\n";
106  e.addAdditionalInfo(ost.str());
107  }
108  }
109  //throw will copy which will slice the object
110  e.raise();
111  }
112  }
113 
114  return should_continue;
115  }
void recordStatus(int nwrwue, bool isEvent)
Definition: Path.cc:153
static const std::string & codeToString(Code)
-----------— implementation details ---------------—
Definition: EDMException.cc:52
void raise()
Definition: Exception.h:104
std::string const & category() const
Definition: Exception.cc:183
exception_actions::ActionCodes find(const std::string &category) const
int timesExcept_
Definition: Path.h:107
PathContext pathContext_
Definition: Path.h:119
std::list< std::string > const & context() const
Definition: Exception.cc:191
void addAdditionalInfo(std::string const &info)
Definition: Exception.cc:235
static void exceptionContext(cms::Exception &ex, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id, PathContext const &)
Definition: Path.cc:118
ExceptionToActionTable const * act_table_
Definition: Path.h:114
State state_
Definition: Path.h:109
#define begin
Definition: vmac.h:32
std::atomic< bool > * stopProcessingEvent_
Definition: Path.h:121
def branchType(schema, name)
Definition: revisionDML.py:112
void printCmsExceptionWarning(char const *behavior, cms::Exception const &e)
std::string const& edm::Path::name ( void  ) const
inline
Path const& edm::Path::operator= ( Path const &  )
privatedelete

Referenced by getWorker().

void edm::Path::processOneOccurrenceAsync ( WaitingTask iTask,
EventPrincipal const &  iEP,
EventSetup const &  iES,
ServiceToken const &  iToken,
StreamID const &  iStreamID,
StreamContext const *  iStreamContext 
)

Definition at line 209 of file Path.cc.

References actReg_, edm::WaitingTaskList::add(), finished(), pathContext_, edm::hlt::Ready, edm::WaitingTaskList::reset(), runNextWorkerAsync(), state_, timesRun_, waitingTasks_, and workers_.

214  {
216  ++timesRun_;
217  waitingTasks_.add(iTask);
218  if(actReg_) {
219  ServiceRegistry::Operate guard(iToken);
220  actReg_->prePathEventSignal_(*iStreamContext, pathContext_);
221  }
222  state_ = hlt::Ready;
223 
224  if(workers_.empty()) {
225  ServiceRegistry::Operate guard(iToken);
226  finished(-1, true, std::exception_ptr(), iStreamContext, iEP, iES, iStreamID);
227  return;
228  }
229 
230  runNextWorkerAsync(0,iEP,iES, iToken, iStreamID, iStreamContext);
231  }
not [yet] run
Definition: HLTenums.h:18
void add(WaitingTask *)
Adds task to the waiting list.
PathContext pathContext_
Definition: Path.h:119
WaitingTaskList waitingTasks_
Definition: Path.h:120
void reset()
Resets access to the resource so that added tasks will wait.
std::shared_ptr< ActivityRegistry > actReg_
Definition: Path.h:113
void runNextWorkerAsync(unsigned int iNextModuleIndex, EventPrincipal const &, EventSetup const &, ServiceToken const &, StreamID const &, StreamContext const *)
Definition: Path.cc:325
WorkersInPath workers_
Definition: Path.h:116
void finished(int iModuleIndex, bool iSucceeded, std::exception_ptr, StreamContext const *, EventPrincipal const &iEP, EventSetup const &iES, StreamID const &streamID)
Definition: Path.cc:292
State state_
Definition: Path.h:109
int timesRun_
Definition: Path.h:104
void edm::Path::recordStatus ( int  nwrwue,
bool  isEvent 
)
private

Definition at line 153 of file Path.cc.

References bitpos_, state_, and trptr_.

Referenced by finished(), and handleWorkerFailure().

153  {
154  if(isEvent && trptr_) {
155  (*trptr_)[bitpos_]=HLTPathStatus(state_, nwrwue);
156  }
157  }
TrigResPtr trptr_
Definition: Path.h:112
int bitpos_
Definition: Path.h:111
State state_
Definition: Path.h:109
template<typename T >
void edm::Path::runAllModulesAsync ( WaitingTask task,
typename T::MyPrincipal const &  p,
EventSetup const &  es,
ServiceToken const &  token,
StreamID const &  streamID,
typename T::Context const *  context 
)

Definition at line 192 of file Path.h.

References AlCaHLTBitMon_ParallelJobs::p, and workers_.

197  {
198  for(auto& worker: workers_) {
199  worker.runWorkerAsync<T>(task,p,es,token,streamID,context);
200  }
201  }
WorkersInPath workers_
Definition: Path.h:116
long double T
void edm::Path::runNextWorkerAsync ( unsigned int  iNextModuleIndex,
EventPrincipal const &  iEP,
EventSetup const &  iES,
ServiceToken const &  iToken,
StreamID const &  iID,
StreamContext const *  iContext 
)
private

Definition at line 325 of file Path.cc.

References edm::make_waiting_task(), workerFinished(), and workers_.

Referenced by handleEarlyFinish(), processOneOccurrenceAsync(), and workerFinished().

328  {
329 
330  auto nextTask = make_waiting_task( tbb::task::allocate_root(),
331  [this, iNextModuleIndex, &iEP,&iES, iID, iContext, token=iToken](std::exception_ptr const* iException)
332  {
333  this->workerFinished(iException, iNextModuleIndex, iEP,iES,token,iID,iContext);
334  });
335 
336  workers_[iNextModuleIndex].runWorkerAsync<
337  OccurrenceTraits<EventPrincipal, BranchActionStreamBegin>>(nextTask,
338  iEP,
339  iES,
340  iToken,
341  iID,
342  iContext);
343  }
WorkersInPath workers_
Definition: Path.h:116
FunctorWaitingTask< F > * make_waiting_task(ALLOC &&iAlloc, F f)
Definition: WaitingTask.h:92
void workerFinished(std::exception_ptr const *iException, unsigned int iModuleIndex, EventPrincipal const &iEP, EventSetup const &iES, ServiceToken const &iToken, StreamID const &iID, StreamContext const *iContext)
Definition: Path.cc:234
void edm::Path::setEarlyDeleteHelpers ( std::map< const Worker *, EarlyDeleteHelper * > const &  iWorkerToDeleter)

Definition at line 178 of file Path.cc.

References earlyDeleteHelpers_, runEdmFileComparison::found, getWorker(), size(), and groupFilesInBlocks::temp.

Referenced by getWorker().

178  {
179  //we use a temp so we can overset the size but then when moving to earlyDeleteHelpers we only
180  // have to use the space necessary
181  std::vector<EarlyDeleteHelper*> temp;
182  temp.reserve(iWorkerToDeleter.size());
183  for(unsigned int index=0; index !=size();++index) {
184  auto found = iWorkerToDeleter.find(getWorker(index));
185  if(found != iWorkerToDeleter.end()) {
186  temp.push_back(found->second);
187  found->second->addedToPath();
188  }
189  }
190  std::vector<EarlyDeleteHelper*> tempCorrectSize(temp.begin(),temp.end());
191  earlyDeleteHelpers_.swap(tempCorrectSize);
192  }
std::vector< EarlyDeleteHelper * > earlyDeleteHelpers_
Definition: Path.h:117
size_type size() const
Definition: Path.h:86
Worker const * getWorker(size_type i) const
Definition: Path.h:91
void edm::Path::setPathStatusInserter ( PathStatusInserter pathStatusInserter,
Worker pathStatusInserterWorker 
)

Definition at line 195 of file Path.cc.

References pathStatusInserter_, and pathStatusInserterWorker_.

Referenced by getWorker().

196  {
197  pathStatusInserter_ = pathStatusInserter;
198  pathStatusInserterWorker_ = pathStatusInserterWorker;
199  }
Worker * pathStatusInserterWorker_
Definition: Path.h:124
PathStatusInserter * pathStatusInserter_
Definition: Path.h:123
size_type edm::Path::size ( void  ) const
inline

Definition at line 86 of file Path.h.

References workers_.

Referenced by ntupleDataFormat._Collection::__iter__(), ntupleDataFormat._Collection::__len__(), edm::fillPathSummary(), and setEarlyDeleteHelpers().

86 { return workers_.size(); }
WorkersInPath workers_
Definition: Path.h:116
State edm::Path::state ( ) const
inline

Definition at line 84 of file Path.h.

References state_.

Referenced by handleEarlyFinish().

84 { return state_; }
State state_
Definition: Path.h:109
int edm::Path::timesExcept ( ) const
inline

Definition at line 82 of file Path.h.

References timesExcept_.

Referenced by edm::fillModuleInPathSummary(), and edm::fillPathSummary().

82 { return timesExcept_; }
int timesExcept_
Definition: Path.h:107
int edm::Path::timesExcept ( size_type  i) const
inline

Definition at line 90 of file Path.h.

References workers_.

90 { return workers_.at(i).timesExcept() ; }
WorkersInPath workers_
Definition: Path.h:116
int edm::Path::timesFailed ( ) const
inline

Definition at line 81 of file Path.h.

References timesFailed_.

Referenced by edm::fillModuleInPathSummary(), and edm::fillPathSummary().

81 { return timesFailed_; }
int timesFailed_
Definition: Path.h:106
int edm::Path::timesFailed ( size_type  i) const
inline

Definition at line 89 of file Path.h.

References workers_.

89 { return workers_.at(i).timesFailed() ; }
WorkersInPath workers_
Definition: Path.h:116
int edm::Path::timesPassed ( ) const
inline

Definition at line 80 of file Path.h.

References timesPassed_.

Referenced by edm::fillModuleInPathSummary(), and edm::fillPathSummary().

80 { return timesPassed_; }
int timesPassed_
Definition: Path.h:105
int edm::Path::timesPassed ( size_type  i) const
inline

Definition at line 88 of file Path.h.

References workers_.

88 { return workers_.at(i).timesPassed() ; }
WorkersInPath workers_
Definition: Path.h:116
int edm::Path::timesRun ( ) const
inline

Definition at line 79 of file Path.h.

References timesRun_.

Referenced by edm::fillPathSummary().

79 { return timesRun_; }
int timesRun_
Definition: Path.h:104
int edm::Path::timesVisited ( size_type  i) const
inline

Definition at line 87 of file Path.h.

References workers_.

Referenced by edm::fillModuleInPathSummary().

87 { return workers_.at(i).timesVisited(); }
WorkersInPath workers_
Definition: Path.h:116
void edm::Path::updateCounters ( bool  succeed,
bool  isEvent 
)
private

Definition at line 160 of file Path.cc.

References edm::hlt::Fail, edm::hlt::Pass, state_, timesFailed_, and timesPassed_.

Referenced by finished().

160  {
161  if (success) {
162  if (isEvent) ++timesPassed_;
163  state_ = hlt::Pass;
164  } else {
165  if(isEvent) ++timesFailed_;
166  state_ = hlt::Fail;
167  }
168  }
int timesFailed_
Definition: Path.h:106
reject
Definition: HLTenums.h:20
accept
Definition: HLTenums.h:19
State state_
Definition: Path.h:109
int timesPassed_
Definition: Path.h:105
void edm::Path::workerFinished ( std::exception_ptr const *  iException,
unsigned int  iModuleIndex,
EventPrincipal const &  iEP,
EventSetup const &  iES,
ServiceToken const &  iToken,
StreamID const &  iID,
StreamContext const *  iContext 
)
private

Definition at line 234 of file Path.cc.

References cms::Exception::clone(), finished(), handleEarlyFinish(), handleWorkerFailure(), edm::EventPrincipal::id(), edm::InEvent, edm::WaitingTaskList::presetTaskAsFailed(), runNextWorkerAsync(), stopProcessingEvent_, waitingTasks_, and workers_.

Referenced by handleEarlyFinish(), and runNextWorkerAsync().

238  {
239  ServiceRegistry::Operate guard(iToken);
240 
241  //This call also allows the WorkerInPath to update statistics
242  // so should be done even if an exception happened
243  auto& worker = workers_[iModuleIndex];
244  bool shouldContinue = worker.checkResultsOfRunWorker(true);
245  std::exception_ptr finalException;
246  if(iException) {
247  std::unique_ptr<cms::Exception> pEx;
248  try {
249  std::rethrow_exception(*iException);
250  } catch(cms::Exception& oldEx) {
251  pEx = std::unique_ptr<cms::Exception>(oldEx.clone());
252  }
253  try {
254  std::ostringstream ost;
255  ost << iEP.id();
256  shouldContinue = handleWorkerFailure(*pEx, iModuleIndex, /*isEvent*/ true, /*isBegin*/ true, InEvent,
257  worker.getWorker()->description(), ost.str());
258  //If we didn't rethrow, then we effectively skipped
259  worker.skipWorker(iEP);
260  finalException = std::exception_ptr();
261  } catch(...) {
262  shouldContinue = false;
263  finalException = std::current_exception();
264  //set the exception early to avoid case where another Path is waiting
265  // on a module in this Path and not running the module will lead to a
266  // different but related exception in the other Path. We want this
267  // Paths exception to be the one that gets reported.
268  waitingTasks_.presetTaskAsFailed(finalException);
269  }
270  }
272  shouldContinue = false;
273  }
274  auto const nextIndex = iModuleIndex +1;
275  if (shouldContinue and nextIndex < workers_.size()) {
276  runNextWorkerAsync(nextIndex, iEP, iES, iToken, iID, iContext);
277  return;
278  }
279 
280  if (not shouldContinue) {
281  //we are leaving the path early
282  for(auto it = workers_.begin()+nextIndex, itEnd=workers_.end();
283  it != itEnd; ++it) {
284  it->skipWorker(iEP);
285  }
286  handleEarlyFinish(iEP);
287  }
288  finished(iModuleIndex, shouldContinue, finalException, iContext, iEP, iES,iID);
289  }
void handleEarlyFinish(EventPrincipal const &)
Definition: Path.cc:202
WaitingTaskList waitingTasks_
Definition: Path.h:120
void runNextWorkerAsync(unsigned int iNextModuleIndex, EventPrincipal const &, EventSetup const &, ServiceToken const &, StreamID const &, StreamContext const *)
Definition: Path.cc:325
WorkersInPath workers_
Definition: Path.h:116
void finished(int iModuleIndex, bool iSucceeded, std::exception_ptr, StreamContext const *, EventPrincipal const &iEP, EventSetup const &iES, StreamID const &streamID)
Definition: Path.cc:292
void presetTaskAsFailed(std::exception_ptr iExcept)
bool handleWorkerFailure(cms::Exception &e, int nwrwue, bool isEvent, bool begin, BranchType branchType, ModuleDescription const &, std::string const &id)
Definition: Path.cc:67
std::atomic< bool > * stopProcessingEvent_
Definition: Path.h:121
virtual Exception * clone() const
Definition: Exception.cc:259

Member Data Documentation

ExceptionToActionTable const* edm::Path::act_table_
private

Definition at line 114 of file Path.h.

Referenced by handleWorkerFailure().

std::shared_ptr<ActivityRegistry> edm::Path::actReg_
private

Definition at line 113 of file Path.h.

Referenced by finished(), and processOneOccurrenceAsync().

int edm::Path::bitpos_
private

Definition at line 111 of file Path.h.

Referenced by bitPosition(), and recordStatus().

std::vector<EarlyDeleteHelper*> edm::Path::earlyDeleteHelpers_
private

Definition at line 117 of file Path.h.

Referenced by handleEarlyFinish(), and setEarlyDeleteHelpers().

PathContext edm::Path::pathContext_
private
PathStatusInserter* edm::Path::pathStatusInserter_
private

Definition at line 123 of file Path.h.

Referenced by finished(), and setPathStatusInserter().

Worker* edm::Path::pathStatusInserterWorker_
private

Definition at line 124 of file Path.h.

Referenced by finished(), and setPathStatusInserter().

State edm::Path::state_
private
std::atomic<bool>* edm::Path::stopProcessingEvent_
private

Definition at line 121 of file Path.h.

Referenced by handleWorkerFailure(), and workerFinished().

int edm::Path::timesExcept_
private

Definition at line 107 of file Path.h.

Referenced by clearCounters(), handleWorkerFailure(), and timesExcept().

int edm::Path::timesFailed_
private

Definition at line 106 of file Path.h.

Referenced by clearCounters(), timesFailed(), and updateCounters().

int edm::Path::timesPassed_
private

Definition at line 105 of file Path.h.

Referenced by clearCounters(), timesPassed(), and updateCounters().

int edm::Path::timesRun_
private

Definition at line 104 of file Path.h.

Referenced by clearCounters(), processOneOccurrenceAsync(), and timesRun().

TrigResPtr edm::Path::trptr_
private

Definition at line 112 of file Path.h.

Referenced by recordStatus().

WaitingTaskList edm::Path::waitingTasks_
private

Definition at line 120 of file Path.h.

Referenced by finished(), processOneOccurrenceAsync(), and workerFinished().

WorkersInPath edm::Path::workers_
private