CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes | Friends
edm::Worker Class Referenceabstract

#include <Worker.h>

Inheritance diagram for edm::Worker:
edm::WorkerT< T >

Public Types

enum  State { Ready, Pass, Fail, Exception }
 
enum  Types { kAnalyzer, kFilter, kProducer, kOutputModule }
 

Public Member Functions

void beginJob ()
 
void beginStream (StreamID id, StreamContext &streamContext)
 
void clearCounters ()
 
ModuleDescription const * descPtr () const
 
ModuleDescription const & description () const
 
template<typename T >
bool doWork (typename T::MyPrincipal &, EventSetup const &c, CPUTimer *const timer, StreamID stream, ParentContext const &parentContext, typename T::Context const *context)
 
void endJob ()
 
void endStream (StreamID id, StreamContext &streamContext)
 
virtual void modulesDependentUpon (std::vector< const char * > &oModuleLabels) const =0
 
virtual Types moduleType () const =0
 
Workeroperator= (Worker const &)=delete
 
void pathFinished (EventPrincipal &)
 
void postDoEvent (EventPrincipal &)
 
void postForkReacquireResources (unsigned int iChildIndex, unsigned int iNumberOfChildren)
 
void preForkReleaseResources ()
 
void reset ()
 
void respondToCloseInputFile (FileBlock const &fb)
 
void respondToOpenInputFile (FileBlock const &fb)
 
void setActivityRegistry (boost::shared_ptr< ActivityRegistry > areg)
 
void setEarlyDeleteHelper (EarlyDeleteHelper *iHelper)
 
State state () const
 
std::pair< double, double > timeCpuReal () const
 
int timesExcept () const
 
int timesFailed () const
 
int timesPass () const
 
int timesPassed () const
 
int timesRun () const
 
int timesVisited () const
 
virtual void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)=0
 
void useStopwatch ()
 
 Worker (ModuleDescription const &iMD, ExceptionToActionTable const *iActions)
 
 Worker (Worker const &)=delete
 
virtual ~Worker ()
 

Protected Member Functions

ActivityRegistryactivityRegistry ()
 
virtual void implBeginJob ()=0
 
virtual void implBeginStream (StreamID)=0
 
virtual bool implDo (EventPrincipal &, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoBegin (RunPrincipal &rp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoBegin (LuminosityBlockPrincipal &lbp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoEnd (RunPrincipal &rp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoEnd (LuminosityBlockPrincipal &lbp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoStreamBegin (StreamID id, RunPrincipal &rp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoStreamBegin (StreamID id, LuminosityBlockPrincipal &lbp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoStreamEnd (StreamID id, RunPrincipal &rp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual bool implDoStreamEnd (StreamID id, LuminosityBlockPrincipal &lbp, EventSetup const &c, ModuleCallingContext const *mcc)=0
 
virtual void implEndJob ()=0
 
virtual void implEndStream (StreamID)=0
 
void resetModuleDescription (ModuleDescription const *)
 
virtual std::string workerType () const =0
 

Private Member Functions

virtual void implPostForkReacquireResources (unsigned int iChildIndex, unsigned int iNumberOfChildren)=0
 
virtual void implPreForkReleaseResources ()=0
 
virtual void implRespondToCloseInputFile (FileBlock const &fb)=0
 
virtual void implRespondToOpenInputFile (FileBlock const &fb)=0
 
virtual void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const =0
 
virtual void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const =0
 
virtual std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const =0
 

Private Attributes

ExceptionToActionTable const * actions_
 
boost::shared_ptr
< ActivityRegistry
actReg_
 
boost::shared_ptr< cms::Exceptioncached_exception_
 
EarlyDeleteHelperearlyDeleteHelper_
 
ModuleCallingContext moduleCallingContext_
 
State state_
 
RunStopwatch::StopwatchPointer stopwatch_
 
int timesExcept_
 
int timesFailed_
 
int timesPassed_
 
int timesRun_
 
int timesVisited_
 

Friends

template<typename O >
class workerhelper::CallImpl
 

Detailed Description

Definition at line 65 of file Worker.h.

Member Enumeration Documentation

Enumerator
Ready 
Pass 
Fail 
Exception 

Definition at line 67 of file Worker.h.

Enumerator
kAnalyzer 
kFilter 
kProducer 
kOutputModule 

Definition at line 68 of file Worker.h.

Constructor & Destructor Documentation

edm::Worker::Worker ( ModuleDescription const &  iMD,
ExceptionToActionTable const *  iActions 
)

Definition at line 71 of file Worker.cc.

72  :
73  stopwatch_(),
74  timesRun_(),
75  timesVisited_(),
76  timesPassed_(),
77  timesFailed_(),
78  timesExcept_(),
79  state_(Ready),
81  actions_(iActions),
83  actReg_(),
84  earlyDeleteHelper_(nullptr)
85  {
86  }
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
ExceptionToActionTable const * actions_
Definition: Worker.h:186
EarlyDeleteHelper * earlyDeleteHelper_
Definition: Worker.h:191
ModuleCallingContext moduleCallingContext_
Definition: Worker.h:184
int timesExcept_
Definition: Worker.h:181
int timesPassed_
Definition: Worker.h:179
boost::shared_ptr< cms::Exception > cached_exception_
Definition: Worker.h:187
int timesRun_
Definition: Worker.h:177
RunStopwatch::StopwatchPointer stopwatch_
Definition: Worker.h:175
int timesFailed_
Definition: Worker.h:180
State state_
Definition: Worker.h:182
int timesVisited_
Definition: Worker.h:178
edm::Worker::~Worker ( )
virtual

Definition at line 88 of file Worker.cc.

88  {
89  }
edm::Worker::Worker ( Worker const &  )
delete

Member Function Documentation

ActivityRegistry* edm::Worker::activityRegistry ( )
inlineprotected

Definition at line 160 of file Worker.h.

References actReg_.

160 { return actReg_.get(); }
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
void edm::Worker::beginJob ( void  )

Definition at line 105 of file Worker.cc.

References actReg_, cms::Exception::addContext(), description(), Exception, implBeginJob(), edm::ModuleDescription::moduleLabel(), edm::ModuleDescription::moduleName(), state_, and edm::convertException::wrap().

Referenced by edm::WorkerManager::beginJob(), and edm::GlobalSchedule::replaceModule().

105  {
106  try {
107  convertException::wrap([&]() {
108  ModuleBeginJobSignalSentry cpp(actReg_.get(), description());
109  implBeginJob();
110  });
111  }
112  catch(cms::Exception& ex) {
113  state_ = Exception;
114  std::ostringstream ost;
115  ost << "Calling beginJob for module " << description().moduleName() << "/'" << description().moduleLabel() << "'";
116  ex.addContext(ost.str());
117  throw;
118  }
119  }
ModuleDescription const & description() const
Definition: Worker.h:97
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
std::string const & moduleName() const
std::string const & moduleLabel() const
virtual void implBeginJob()=0
void addContext(std::string const &context)
Definition: Exception.cc:227
auto wrap(F iFunc) -> decltype(iFunc())
State state_
Definition: Worker.h:182
void edm::Worker::beginStream ( StreamID  id,
StreamContext streamContext 
)

Definition at line 137 of file Worker.cc.

References actReg_, cms::Exception::addContext(), description(), Exception, implBeginStream(), edm::LuminosityBlockIndex::invalidLuminosityBlockIndex(), edm::RunIndex::invalidRunIndex(), edm::StreamContext::kBeginStream, edm::ModuleCallingContext::kRunning, moduleCallingContext_, edm::ModuleDescription::moduleLabel(), edm::ModuleDescription::moduleName(), edm::StreamContext::setEventID(), edm::StreamContext::setLuminosityBlockIndex(), edm::StreamContext::setRunIndex(), edm::ModuleCallingContext::setState(), edm::StreamContext::setTimestamp(), edm::StreamContext::setTransition(), state_, and edm::convertException::wrap().

Referenced by edm::StreamSchedule::replaceModule().

137  {
138  try {
139  convertException::wrap([&]() {
140  streamContext.setTransition(StreamContext::Transition::kBeginStream);
141  streamContext.setEventID(EventID(0, 0, 0));
142  streamContext.setRunIndex(RunIndex::invalidRunIndex());
143  streamContext.setLuminosityBlockIndex(LuminosityBlockIndex::invalidLuminosityBlockIndex());
144  streamContext.setTimestamp(Timestamp());
145  ParentContext parentContext(&streamContext);
146  ModuleContextSentry moduleContextSentry(&moduleCallingContext_, parentContext);
148  ModuleBeginStreamSignalSentry beginSentry(actReg_.get(), streamContext, moduleCallingContext_);
149  implBeginStream(id);
150  });
151  }
152  catch(cms::Exception& ex) {
153  state_ = Exception;
154  std::ostringstream ost;
155  ost << "Calling beginStream for module " << description().moduleName() << "/'" << description().moduleLabel() << "'";
156  ex.addContext(ost.str());
157  throw;
158  }
159  }
ModuleDescription const & description() const
Definition: Worker.h:97
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
std::string const & moduleName() const
std::string const & moduleLabel() const
ModuleCallingContext moduleCallingContext_
Definition: Worker.h:184
static RunIndex invalidRunIndex()
Definition: RunIndex.cc:9
static LuminosityBlockIndex invalidLuminosityBlockIndex()
void addContext(std::string const &context)
Definition: Exception.cc:227
virtual void implBeginStream(StreamID)=0
auto wrap(F iFunc) -> decltype(iFunc())
State state_
Definition: Worker.h:182
void edm::Worker::clearCounters ( )
inline

Definition at line 117 of file Worker.h.

References timesExcept_, timesFailed_, timesPassed_, timesRun_, and timesVisited_.

Referenced by edm::StreamSchedule::clearCounters().

117  {
119  }
int timesExcept_
Definition: Worker.h:181
int timesPassed_
Definition: Worker.h:179
int timesRun_
Definition: Worker.h:177
int timesFailed_
Definition: Worker.h:180
int timesVisited_
Definition: Worker.h:178
ModuleDescription const* edm::Worker::descPtr ( ) const
inline

Definition at line 98 of file Worker.h.

References moduleCallingContext_, and edm::ModuleCallingContext::moduleDescription().

ModuleCallingContext moduleCallingContext_
Definition: Worker.h:184
ModuleDescription const * moduleDescription() const
ModuleDescription const& edm::Worker::description ( ) const
inline
template<typename T >
bool edm::Worker::doWork ( typename T::MyPrincipal &  ep,
EventSetup const &  c,
CPUTimer *const  timer,
StreamID  stream,
ParentContext const &  parentContext,
typename T::Context const *  context 
)

Definition at line 397 of file Worker.h.

References alignCSCRings::action, actions_, actReg_, cached_exception_, cms::Exception::category(), Exception, Fail, edm::exception_actions::FailPath, edm::ExceptionToActionTable::find(), edm::ModuleCallingContext::getTopModuleCallingContext(), edm::exception_actions::IgnoreCompletely, edm::PathContext::isEndPath(), itemsToGetFromEvent(), edm::ParentContext::kPlaceInPath, edm::ModuleCallingContext::kRunning, moduleCallingContext_, Pass, edm::PlaceInPathContext::pathContext(), edm::ModuleCallingContext::placeInPathContext(), edm::printCmsExceptionWarning(), edm::ProductHolderIndexAmbiguous, Ready, edm::exception_actions::Rethrow, edm::ModuleCallingContext::setState(), edm::exception_actions::SkipEvent, state_, stopwatch_, timesExcept_, timesFailed_, timesPassed_, timesRun_, timesVisited_, edm::ModuleCallingContext::type(), and edm::convertException::wrap().

Referenced by edm::WorkerInPath::runWorker().

402  {
403 
404  // A RunStopwatch, but only if we are processing an event.
405  RunDualStopwatches stopwatch(T::isEvent_ ? stopwatch_ : RunStopwatch::StopwatchPointer(),
406  iTimer);
407 
408  if (T::isEvent_) {
409  ++timesVisited_;
410  }
411  bool rc = false;
412 
413  switch(state_) {
414  case Ready: break;
415  case Pass: return true;
416  case Fail: return false;
417  case Exception: {
418  cached_exception_->raise();
419  }
420  }
421 
422  ModuleContextSentry moduleContextSentry(&moduleCallingContext_, parentContext);
423 
424  try {
425  convertException::wrap([&]() {
426 
427  if (T::isEvent_) {
428  ++timesRun_;
429 
430  // Prefetch products the module declares it consumes (not including the products it maybe consumes)
431  std::vector<ProductHolderIndexAndSkipBit> const& items = itemsToGetFromEvent();
432  for(auto const& item : items) {
433  ProductHolderIndex productHolderIndex = item.productHolderIndex();
434  bool skipCurrentProcess = item.skipCurrentProcess();
435  if(productHolderIndex != ProductHolderIndexAmbiguous) {
436  ep.prefetch(productHolderIndex, skipCurrentProcess, &moduleCallingContext_);
437  }
438  }
439  }
440 
442  rc = workerhelper::CallImpl<T>::call(this,streamID,ep,es, actReg_.get(), &moduleCallingContext_, context);
443 
444  if (rc) {
445  state_ = Pass;
446  if (T::isEvent_) ++timesPassed_;
447  } else {
448  state_ = Fail;
449  if (T::isEvent_) ++timesFailed_;
450  }
451  });
452  }
453  catch(cms::Exception& ex) {
454 
455  // NOTE: the warning printed as a result of ignoring or failing
456  // a module will only be printed during the full true processing
457  // pass of this module
458 
459  // Get the action corresponding to this exception. However, if processing
460  // something other than an event (e.g. run, lumi) always rethrow.
462 
463  // If we are processing an endpath and the module was scheduled, treat SkipEvent or FailPath
464  // as IgnoreCompletely, so any subsequent OutputModules are still run.
465  // For unscheduled modules only treat FailPath as IgnoreCompletely but still allow SkipEvent to throw
466  ModuleCallingContext const* top_mcc = moduleCallingContext_.getTopModuleCallingContext();
467  if(top_mcc->type() == ParentContext::Type::kPlaceInPath &&
468  top_mcc->placeInPathContext()->pathContext()->isEndPath()) {
469 
472  }
473  switch(action) {
475  rc = true;
476  ++timesPassed_;
477  state_ = Pass;
478  exceptionContext<T>(ep, ex, &moduleCallingContext_);
479  edm::printCmsExceptionWarning("IgnoreCompletely", ex);
480  break;
481  default:
482  if (T::isEvent_) ++timesExcept_;
483  state_ = Exception;
484  cached_exception_.reset(ex.clone());
485  cached_exception_->raise();
486  }
487  }
488  return rc;
489  }
ModuleCallingContext const * getTopModuleCallingContext() const
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
std::string const & category() const
Definition: Exception.cc:183
exception_actions::ActionCodes find(const std::string &category) const
unsigned int ProductHolderIndex
ExceptionToActionTable const * actions_
Definition: Worker.h:186
ModuleCallingContext moduleCallingContext_
Definition: Worker.h:184
int timesExcept_
Definition: Worker.h:181
boost::shared_ptr< CPUTimer > StopwatchPointer
Definition: RunStopwatch.h:22
int timesPassed_
Definition: Worker.h:179
void printCmsExceptionWarning(char const *behavior, cms::Exception const &e, edm::JobReport *jobRep=0, int rc=-1)
virtual std::vector< ProductHolderIndexAndSkipBit > const & itemsToGetFromEvent() const =0
boost::shared_ptr< cms::Exception > cached_exception_
Definition: Worker.h:187
int timesRun_
Definition: Worker.h:177
RunStopwatch::StopwatchPointer stopwatch_
Definition: Worker.h:175
int timesFailed_
Definition: Worker.h:180
auto wrap(F iFunc) -> decltype(iFunc())
State state_
Definition: Worker.h:182
int timesVisited_
Definition: Worker.h:178
void edm::Worker::endJob ( void  )

Definition at line 121 of file Worker.cc.

References actReg_, cms::Exception::addContext(), description(), Exception, implEndJob(), edm::ModuleDescription::moduleLabel(), edm::ModuleDescription::moduleName(), state_, and edm::convertException::wrap().

121  {
122  try {
123  convertException::wrap([&]() {
124  ModuleEndJobSignalSentry cpp(actReg_.get(), description());
125  implEndJob();
126  });
127  }
128  catch(cms::Exception& ex) {
129  state_ = Exception;
130  std::ostringstream ost;
131  ost << "Calling endJob for module " << description().moduleName() << "/'" << description().moduleLabel() << "'";
132  ex.addContext(ost.str());
133  throw;
134  }
135  }
ModuleDescription const & description() const
Definition: Worker.h:97
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
std::string const & moduleName() const
std::string const & moduleLabel() const
virtual void implEndJob()=0
void addContext(std::string const &context)
Definition: Exception.cc:227
auto wrap(F iFunc) -> decltype(iFunc())
State state_
Definition: Worker.h:182
void edm::Worker::endStream ( StreamID  id,
StreamContext streamContext 
)

Definition at line 161 of file Worker.cc.

References actReg_, cms::Exception::addContext(), description(), Exception, implEndStream(), edm::LuminosityBlockIndex::invalidLuminosityBlockIndex(), edm::RunIndex::invalidRunIndex(), edm::StreamContext::kEndStream, edm::ModuleCallingContext::kRunning, moduleCallingContext_, edm::ModuleDescription::moduleLabel(), edm::ModuleDescription::moduleName(), edm::StreamContext::setEventID(), edm::StreamContext::setLuminosityBlockIndex(), edm::StreamContext::setRunIndex(), edm::ModuleCallingContext::setState(), edm::StreamContext::setTimestamp(), edm::StreamContext::setTransition(), state_, and edm::convertException::wrap().

161  {
162  try {
163  convertException::wrap([&]() {
164  streamContext.setTransition(StreamContext::Transition::kEndStream);
165  streamContext.setEventID(EventID(0, 0, 0));
166  streamContext.setRunIndex(RunIndex::invalidRunIndex());
167  streamContext.setLuminosityBlockIndex(LuminosityBlockIndex::invalidLuminosityBlockIndex());
168  streamContext.setTimestamp(Timestamp());
169  ParentContext parentContext(&streamContext);
170  ModuleContextSentry moduleContextSentry(&moduleCallingContext_, parentContext);
172  ModuleEndStreamSignalSentry endSentry(actReg_.get(), streamContext, moduleCallingContext_);
173  implEndStream(id);
174  });
175  }
176  catch(cms::Exception& ex) {
177  state_ = Exception;
178  std::ostringstream ost;
179  ost << "Calling endStream for module " << description().moduleName() << "/'" << description().moduleLabel() << "'";
180  ex.addContext(ost.str());
181  throw;
182  }
183  }
ModuleDescription const & description() const
Definition: Worker.h:97
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
std::string const & moduleName() const
std::string const & moduleLabel() const
ModuleCallingContext moduleCallingContext_
Definition: Worker.h:184
static RunIndex invalidRunIndex()
Definition: RunIndex.cc:9
static LuminosityBlockIndex invalidLuminosityBlockIndex()
void addContext(std::string const &context)
Definition: Exception.cc:227
virtual void implEndStream(StreamID)=0
auto wrap(F iFunc) -> decltype(iFunc())
State state_
Definition: Worker.h:182
virtual void edm::Worker::implBeginJob ( )
protectedpure virtual

Implemented in edm::WorkerT< T >.

Referenced by beginJob().

virtual void edm::Worker::implBeginStream ( StreamID  )
protectedpure virtual

Implemented in edm::WorkerT< T >.

Referenced by beginStream().

virtual bool edm::Worker::implDo ( EventPrincipal ,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual
virtual bool edm::Worker::implDoBegin ( RunPrincipal rp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual
virtual bool edm::Worker::implDoBegin ( LuminosityBlockPrincipal lbp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual

Implemented in edm::WorkerT< T >.

virtual bool edm::Worker::implDoEnd ( RunPrincipal rp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual
virtual bool edm::Worker::implDoEnd ( LuminosityBlockPrincipal lbp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual

Implemented in edm::WorkerT< T >.

virtual bool edm::Worker::implDoStreamBegin ( StreamID  id,
RunPrincipal rp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual
virtual bool edm::Worker::implDoStreamBegin ( StreamID  id,
LuminosityBlockPrincipal lbp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual

Implemented in edm::WorkerT< T >.

virtual bool edm::Worker::implDoStreamEnd ( StreamID  id,
RunPrincipal rp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual
virtual bool edm::Worker::implDoStreamEnd ( StreamID  id,
LuminosityBlockPrincipal lbp,
EventSetup const &  c,
ModuleCallingContext const *  mcc 
)
protectedpure virtual

Implemented in edm::WorkerT< T >.

virtual void edm::Worker::implEndJob ( )
protectedpure virtual

Implemented in edm::WorkerT< T >.

Referenced by endJob().

virtual void edm::Worker::implEndStream ( StreamID  )
protectedpure virtual

Implemented in edm::WorkerT< T >.

Referenced by endStream().

virtual void edm::Worker::implPostForkReacquireResources ( unsigned int  iChildIndex,
unsigned int  iNumberOfChildren 
)
privatepure virtual

Implemented in edm::WorkerT< T >.

Referenced by postForkReacquireResources().

virtual void edm::Worker::implPreForkReleaseResources ( )
privatepure virtual

Implemented in edm::WorkerT< T >.

Referenced by preForkReleaseResources().

virtual void edm::Worker::implRespondToCloseInputFile ( FileBlock const &  fb)
privatepure virtual

Implemented in edm::WorkerT< T >.

Referenced by respondToCloseInputFile().

virtual void edm::Worker::implRespondToOpenInputFile ( FileBlock const &  fb)
privatepure virtual

Implemented in edm::WorkerT< T >.

Referenced by respondToOpenInputFile().

virtual void edm::Worker::itemsMayGet ( BranchType  ,
std::vector< ProductHolderIndexAndSkipBit > &   
) const
privatepure virtual

Implemented in edm::WorkerT< T >.

virtual void edm::Worker::itemsToGet ( BranchType  ,
std::vector< ProductHolderIndexAndSkipBit > &   
) const
privatepure virtual

Implemented in edm::WorkerT< T >.

virtual std::vector<ProductHolderIndexAndSkipBit> const& edm::Worker::itemsToGetFromEvent ( ) const
privatepure virtual

Implemented in edm::WorkerT< T >.

Referenced by doWork().

virtual void edm::Worker::modulesDependentUpon ( std::vector< const char * > &  oModuleLabels) const
pure virtual

Implemented in edm::WorkerT< T >.

virtual Types edm::Worker::moduleType ( ) const
pure virtual
Worker& edm::Worker::operator= ( Worker const &  )
delete
void edm::Worker::pathFinished ( EventPrincipal iEvent)

Definition at line 189 of file Worker.cc.

References earlyDeleteHelper_, and edm::EarlyDeleteHelper::pathFinished().

189  {
190  if(earlyDeleteHelper_) {
192  }
193  }
EarlyDeleteHelper * earlyDeleteHelper_
Definition: Worker.h:191
int iEvent
Definition: GenABIO.cc:230
void pathFinished(EventPrincipal &)
void edm::Worker::postDoEvent ( EventPrincipal iEvent)

Definition at line 194 of file Worker.cc.

References earlyDeleteHelper_, and edm::EarlyDeleteHelper::moduleRan().

Referenced by edm::WorkerT< T >::implDo().

194  {
195  if(earlyDeleteHelper_) {
197  }
198  }
EarlyDeleteHelper * earlyDeleteHelper_
Definition: Worker.h:191
int iEvent
Definition: GenABIO.cc:230
void moduleRan(EventPrincipal &)
void edm::Worker::postForkReacquireResources ( unsigned int  iChildIndex,
unsigned int  iNumberOfChildren 
)
inline

Definition at line 90 of file Worker.h.

References implPostForkReacquireResources().

Referenced by edm::Schedule::postForkReacquireResources().

90 {implPostForkReacquireResources(iChildIndex, iNumberOfChildren);}
virtual void implPostForkReacquireResources(unsigned int iChildIndex, unsigned int iNumberOfChildren)=0
void edm::Worker::preForkReleaseResources ( )
inline

Definition at line 89 of file Worker.h.

References implPreForkReleaseResources().

Referenced by edm::Schedule::preForkReleaseResources().

virtual void implPreForkReleaseResources()=0
void edm::Worker::reset ( void  )
inline

Definition at line 92 of file Worker.h.

References Ready, and state_.

Referenced by edm::WorkerManager::resetAll().

92 { state_ = Ready; }
State state_
Definition: Worker.h:182
void edm::Worker::resetModuleDescription ( ModuleDescription const *  iDesc)
protected
void edm::Worker::respondToCloseInputFile ( FileBlock const &  fb)
inline

Definition at line 87 of file Worker.h.

References implRespondToCloseInputFile().

Referenced by edm::Schedule::respondToCloseInputFile().

virtual void implRespondToCloseInputFile(FileBlock const &fb)=0
void edm::Worker::respondToOpenInputFile ( FileBlock const &  fb)
inline

Definition at line 86 of file Worker.h.

References implRespondToOpenInputFile().

Referenced by edm::Schedule::respondToOpenInputFile().

virtual void implRespondToOpenInputFile(FileBlock const &fb)=0
void edm::Worker::setActivityRegistry ( boost::shared_ptr< ActivityRegistry areg)

The signals are required to live longer than the last call to 'doWork' this was done to improve performance based on profiling

Definition at line 91 of file Worker.cc.

References actReg_, and edm::areg.

91  {
92  actReg_ = areg;
93  }
boost::shared_ptr< ActivityRegistry > actReg_
Definition: Worker.h:189
areg
Definition: Schedule.cc:369
void edm::Worker::setEarlyDeleteHelper ( EarlyDeleteHelper iHelper)

Definition at line 95 of file Worker.cc.

References earlyDeleteHelper_.

95  {
96  earlyDeleteHelper_=iHelper;
97  }
EarlyDeleteHelper * earlyDeleteHelper_
Definition: Worker.h:191
State edm::Worker::state ( ) const
inline

Definition at line 128 of file Worker.h.

References state_.

128 { return state_; }
State state_
Definition: Worker.h:182
std::pair<double, double> edm::Worker::timeCpuReal ( ) const
inline

Definition at line 113 of file Worker.h.

References stopwatch_.

Referenced by edm::fillWorkerTimingSummaryAux().

113  {
114  return std::pair<double, double>(stopwatch_->cpuTime(), stopwatch_->realTime());
115  }
RunStopwatch::StopwatchPointer stopwatch_
Definition: Worker.h:175
int edm::Worker::timesExcept ( ) const
inline

Definition at line 127 of file Worker.h.

References timesExcept_.

Referenced by edm::fillWorkerSummaryAux().

127 { return timesExcept_; }
int timesExcept_
Definition: Worker.h:181
int edm::Worker::timesFailed ( ) const
inline

Definition at line 126 of file Worker.h.

References timesFailed_.

Referenced by edm::fillWorkerSummaryAux().

126 { return timesFailed_; }
int timesFailed_
Definition: Worker.h:180
int edm::Worker::timesPass ( ) const
inline

Definition at line 130 of file Worker.h.

References timesPassed().

130 { return timesPassed(); } // for backward compatibility only - to be removed soon
int timesPassed() const
Definition: Worker.h:125
int edm::Worker::timesPassed ( ) const
inline

Definition at line 125 of file Worker.h.

References timesPassed_.

Referenced by edm::fillWorkerSummaryAux(), and timesPass().

125 { return timesPassed_; }
int timesPassed_
Definition: Worker.h:179
int edm::Worker::timesRun ( ) const
inline

Definition at line 123 of file Worker.h.

References timesRun_.

Referenced by edm::fillWorkerSummaryAux(), and edm::fillWorkerTimingSummaryAux().

123 { return timesRun_; }
int timesRun_
Definition: Worker.h:177
int edm::Worker::timesVisited ( ) const
inline

Definition at line 124 of file Worker.h.

References timesVisited_.

Referenced by edm::fillWorkerSummaryAux(), and edm::fillWorkerTimingSummaryAux().

124 { return timesVisited_; }
int timesVisited_
Definition: Worker.h:178
virtual void edm::Worker::updateLookup ( BranchType  iBranchType,
ProductHolderIndexHelper const &   
)
pure virtual

Implemented in edm::WorkerT< T >.

Referenced by edm::Schedule::changeModule().

void edm::Worker::useStopwatch ( )

Definition at line 185 of file Worker.cc.

References stopwatch_.

Referenced by edm::WorkerManager::addToAllWorkers().

185  {
186  stopwatch_.reset(new RunStopwatch::StopwatchPointer::element_type);
187  }
RunStopwatch::StopwatchPointer stopwatch_
Definition: Worker.h:175
virtual std::string edm::Worker::workerType ( ) const
protectedpure virtual

Implemented in edm::WorkerT< T >.

Friends And Related Function Documentation

template<typename O >
friend class workerhelper::CallImpl
friend

Definition at line 133 of file Worker.h.

Member Data Documentation

ExceptionToActionTable const* edm::Worker::actions_
private

Definition at line 186 of file Worker.h.

Referenced by doWork().

boost::shared_ptr<ActivityRegistry> edm::Worker::actReg_
private
boost::shared_ptr<cms::Exception> edm::Worker::cached_exception_
private

Definition at line 187 of file Worker.h.

Referenced by doWork().

EarlyDeleteHelper* edm::Worker::earlyDeleteHelper_
private

Definition at line 191 of file Worker.h.

Referenced by pathFinished(), postDoEvent(), and setEarlyDeleteHelper().

ModuleCallingContext edm::Worker::moduleCallingContext_
private

Definition at line 184 of file Worker.h.

Referenced by beginStream(), descPtr(), description(), doWork(), endStream(), and resetModuleDescription().

State edm::Worker::state_
private

Definition at line 182 of file Worker.h.

Referenced by beginJob(), beginStream(), doWork(), endJob(), endStream(), reset(), and state().

RunStopwatch::StopwatchPointer edm::Worker::stopwatch_
private

Definition at line 175 of file Worker.h.

Referenced by doWork(), timeCpuReal(), and useStopwatch().

int edm::Worker::timesExcept_
private

Definition at line 181 of file Worker.h.

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

int edm::Worker::timesFailed_
private

Definition at line 180 of file Worker.h.

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

int edm::Worker::timesPassed_
private

Definition at line 179 of file Worker.h.

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

int edm::Worker::timesRun_
private

Definition at line 177 of file Worker.h.

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

int edm::Worker::timesVisited_
private

Definition at line 178 of file Worker.h.

Referenced by clearCounters(), doWork(), and timesVisited().