The Gaudi Framework  v29r0 (ff2e7097)
AlgoExecutionTask Class Reference

#include <src/AlgoExecutionTask.h>

Inheritance diagram for AlgoExecutionTask:
Collaboration diagram for AlgoExecutionTask:

Public Member Functions

 AlgoExecutionTask (IAlgorithm *algorithm, EventContext *ctx, ISvcLocator *svcLocator, IAlgExecStateSvc *aem)
 
tbb::task * execute () override
 

Private Attributes

SmartIF< IAlgorithmm_algorithm
 
EventContextm_evtCtx
 
IAlgExecStateSvcm_aess
 
SmartIF< ISvcLocatorm_serviceLocator
 

Detailed Description

Definition at line 14 of file AlgoExecutionTask.h.

Constructor & Destructor Documentation

AlgoExecutionTask::AlgoExecutionTask ( IAlgorithm algorithm,
EventContext ctx,
ISvcLocator svcLocator,
IAlgExecStateSvc aem 
)
inline

Definition at line 17 of file AlgoExecutionTask.h.

18  : m_algorithm( algorithm ), m_evtCtx( ctx ), m_aess( aem ), m_serviceLocator( svcLocator ){};
IAlgExecStateSvc * m_aess
SmartIF< ISvcLocator > m_serviceLocator
SmartIF< IAlgorithm > m_algorithm
EventContext * m_evtCtx

Member Function Documentation

tbb::task * AlgoExecutionTask::execute ( )
override

Definition at line 14 of file AlgoExecutionTask.cpp.

15 {
16 
17  IAlgorithm* ialg = m_algorithm.get();
18  Algorithm* this_algo = dynamic_cast<Algorithm*>( ialg );
19  if ( !this_algo ) {
20  throw GaudiException( "Cast to Algorithm failed!", "AlgoExecutionTask", StatusCode::FAILURE );
21  }
22 
23  bool eventfailed = false;
25 
26  // TODO reproduce the commented out functionality in a different service
27  // m_schedSvc->addAlg(this_algo, m_evtCtx, pthread_self());
28 
29  // Get the IProperty interface of the ApplicationMgr to pass it to RetCodeGuard
30  const SmartIF<IProperty> appmgr( m_serviceLocator );
31 
33  MsgStream log( messageSvc, "AlgoExecutionTask" );
34 
35  // select the appropriate store
36  this_algo->whiteboard()->selectStore( m_evtCtx->valid() ? m_evtCtx->slot() : 0 ).ignore();
37 
39  try {
41  m_aess->algExecState( ialg, *m_evtCtx ).setState( AlgExecState::State::Executing );
43  if ( UNLIKELY( !sc.isSuccess() ) ) {
44  log << MSG::WARNING << "Execution of algorithm " << m_algorithm->name() << " failed" << endmsg;
45  eventfailed = true;
46  }
47  rcg.ignore(); // disarm the guard
48  } catch ( const GaudiException& Exception ) {
49  log << MSG::FATAL << ".executeEvent(): Exception with tag=" << Exception.tag() << " thrown by "
50  << m_algorithm->name() << endmsg;
51  log << MSG::ERROR << Exception << endmsg;
52  eventfailed = true;
53  } catch ( const std::exception& Exception ) {
54  log << MSG::FATAL << ".executeEvent(): Standard std::exception thrown by " << m_algorithm->name() << endmsg;
55  log << MSG::ERROR << Exception.what() << endmsg;
56  eventfailed = true;
57  } catch ( ... ) {
58  log << MSG::FATAL << ".executeEvent(): UNKNOWN Exception thrown by " << m_algorithm->name() << endmsg;
59  eventfailed = true;
60  }
61 
62  // Commit all DataHandles
63  this_algo->commitHandles();
64 
65  // DP it is important to propagate the failure of an event.
66  // We need to stop execution when this happens so that execute run can
67  // then receive the FAILURE
68  m_aess->algExecState( ialg, *m_evtCtx ).setState( AlgExecState::State::Done, sc );
69  m_aess->updateEventStatus( eventfailed, *m_evtCtx );
70 
71  // TODO reproduce the commented out functionality in a different service
72  // m_schedSvc->delAlg(this_algo);
73 
75 
76  return nullptr;
77 }
#define UNLIKELY(x)
Definition: Kernel.h:128
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
Define general base for Gaudi exception.
Helper class to set the application return code in case of early exit (e.g.
Definition: RetCodeGuard.h:9
void commitHandles() override
Definition: Algorithm.cpp:959
ContextID_t slot() const
Definition: EventContext.h:40
IAlgExecStateSvc * m_aess
SmartIF< ISvcLocator > m_serviceLocator
SmartIF< IAlgorithm > m_algorithm
void setState(State s)
constexpr int UnhandledException
Definition: AppReturnCode.h:29
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:82
virtual StatusCode selectStore(size_t partitionIndex)=0
Activate an given &#39;slot&#39; for all subsequent calls within the same thread id.
T what(T...args)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:28
virtual const AlgExecState & algExecState(const Gaudi::StringKey &algName, const EventContext &ctx) const =0
virtual StatusCode sysExecute(const EventContext &)=0
System execution. This method invokes the execute() method of a concrete algorithm.
virtual const std::string & tag() const
name tag for the exception, or exception type
STL class.
The IAlgorithm is the interface implemented by the Algorithm base class.
Definition: IAlgorithm.h:28
GAUDI_API void setCurrentContext(const EventContext *ctx)
virtual void updateEventStatus(const bool &b, const EventContext &ctx)=0
SmartIF< IHiveWhiteBoard > & whiteboard() const
Definition: Algorithm.cpp:807
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:78
GAUDI_API void setCurrentContextEvt(long int evtN)
EventContext * m_evtCtx
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209
bool valid() const
Definition: EventContext.h:41

Member Data Documentation

IAlgExecStateSvc* AlgoExecutionTask::m_aess
private

Definition at line 24 of file AlgoExecutionTask.h.

SmartIF<IAlgorithm> AlgoExecutionTask::m_algorithm
private

Definition at line 22 of file AlgoExecutionTask.h.

EventContext* AlgoExecutionTask::m_evtCtx
private

Definition at line 23 of file AlgoExecutionTask.h.

SmartIF<ISvcLocator> AlgoExecutionTask::m_serviceLocator
private

Definition at line 25 of file AlgoExecutionTask.h.


The documentation for this class was generated from the following files: