All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
IOBoundAlgTask.cpp
Go to the documentation of this file.
1 // local includes
2 #include "IOBoundAlgTask.h"
3 #include "RetCodeGuard.h"
4 
5 // Framework
10 
11 #include <functional>
12 
14 
15  IAlgorithm *ialg = m_algorithm.get();
16  Algorithm* this_algo = dynamic_cast<Algorithm*>(ialg);
17  if (!this_algo){
18  throw GaudiException ("Cast to Algorithm failed!","AlgoExecutionTask",
20  }
21 
22  bool eventfailed=false;
24 
25  // TODO reproduce the commented out functionality in a different service
26  //m_schedSvc->addAlg(this_algo, m_evtCtx, pthread_self());
27 
28  // Get the IProperty interface of the ApplicationMgr to pass it to RetCodeGuard
30 
32  MsgStream log(messageSvc, "AccelAlgoExecutionTask");
33 
34  // select the appropriate store
35  this_algo->whiteboard()->selectStore(m_evtCtx->valid() ?
36  m_evtCtx->slot() : 0).ignore();
37 
39  try {
41  log << MSG::DEBUG << "Starting execution of algorithm " << m_algorithm->name()
42  << endmsg;
44  if (UNLIKELY(!sc.isSuccess())) {
45  log << MSG::WARNING << "Execution of algorithm "
46  << m_algorithm->name() << " failed" << endmsg;
47  eventfailed = true;
48  }
49  log << MSG::DEBUG << "Stopped execution of algorithm " << m_algorithm->name()
50  << endmsg;
51  rcg.ignore(); // disarm the guard
52  } catch ( const GaudiException& Exception ) {
53  log << MSG::FATAL << ".executeEvent(): Exception with tag=" << Exception.tag()
54  << " thrown by " << m_algorithm->name() << endmsg;
55  log << MSG::ERROR << Exception << endmsg;
56  eventfailed = true;
57  } catch ( const std::exception& Exception ) {
58  log << MSG::FATAL << ".executeEvent(): Standard std::exception thrown by "
59  << m_algorithm->name() << endmsg;
60  log << MSG::ERROR << Exception.what() << endmsg;
61  eventfailed = true;
62  } catch(...) {
63  log << MSG::FATAL << ".executeEvent(): UNKNOWN Exception thrown by "
64  << m_algorithm->name() << endmsg;
65  eventfailed = true;
66  }
67 
68  // Commit all DataHandles
69  this_algo->commitHandles();
70 
71  // DP it is important to propagate the failure of an event.
72  // We need to stop execution when this happens so that execute run can
73  // then receive the FAILURE
76  m_aess->updateEventStatus(eventfailed,*m_evtCtx);
77 
78  // TODO reproduce the commented out functionality in a different service
79  //m_schedSvc->delAlg(this_algo);
80 
82 
83  return sc;
84 }
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
Define general base for Gaudi exception.
SmartIF< IAlgorithm > m_algorithm
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:937
ContextID_t slot() const
Definition: EventContext.h:41
bool isSuccess() const
Test for a status code of SUCCESS.
Definition: StatusCode.h:74
EventContext * m_evtCtx
void setExecStatus(const StatusCode &sc=StatusCode::SUCCESS)
#define UNLIKELY(x)
Definition: Kernel.h:126
constexpr int UnhandledException
Definition: AppReturnCode.h:29
TYPE * get() const
Get interface pointer.
Definition: SmartIF.h:76
virtual StatusCode execute() override
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:26
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.
SmartIF< ISvcLocator > m_serviceLocator
virtual const std::string & tag() const
name tag for the exception, or exception type
void setExecuted(bool e=true)
STL class.
The IAlgorithm is the interface implemented by the Algorithm base class.
Definition: IAlgorithm.h:27
GAUDI_API void setCurrentContext(const EventContext *ctx)
virtual void updateEventStatus(const bool &b, const EventContext &ctx)=0
SmartIF< IHiveWhiteBoard > & whiteboard() const
Definition: Algorithm.cpp:785
IAlgExecStateSvc * m_aess
Base class from which all concrete algorithm classes should be derived.
Definition: Algorithm.h:78
GAUDI_API void setCurrentContextEvt(long int evtN)
void ignore()
Definition: RetCodeGuard.h:13
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:244
bool valid() const
Definition: EventContext.h:42