The Gaudi Framework  v30r3 (a5ef0a68)
ThreadInitTask.cpp
Go to the documentation of this file.
1 #include "ThreadInitTask.h"
6 #include "GaudiKernel/SmartIF.h"
8 #include <thread>
9 
11 
13 {
14 
16  MsgStream log( messageSvc, "ThreadInitTask" );
17 
18  const auto debug = log.level() <= MSG::DEBUG;
19 
20  if ( debug )
21  log << MSG::DEBUG << "execute in thread 0x" << std::hex << pthread_self() << " at " << this << std::dec << endmsg;
22 
23  if ( m_tools.retrieve().isFailure() ) {
24  log << MSG::ERROR << "unable to retrieve ToolHandleArray " << m_tools << endmsg;
25  m_execFailed = true;
26  } else {
27 
28  if ( m_tools.size() == 0 ) {
29  log << MSG::INFO << "no entries in Tool Array" << endmsg;
30  } else {
31  if ( debug ) log << MSG::DEBUG << "executing in thread 0x" << std::hex << pthread_self() << std::dec << endmsg;
32 
33  for ( auto& t : m_tools ) {
34 
35  try {
36 
37  if ( debug ) log << MSG::DEBUG << "calling IThreadInitTool " << t << endmsg;
38 
39  if ( !m_terminate ) {
40  t->initThread();
41  } else {
42  t->terminateThread();
43  }
44 
45  } catch ( const GaudiException& exc ) {
46  log << MSG::ERROR << "ThreadInitTool " << t << " in thread 0x" << std::hex << pthread_self() << std::dec
47  << " threw GaudiException: " << exc << endmsg;
48  m_execFailed = true;
49  } catch ( const std::exception& exc ) {
50  log << MSG::ERROR << "ThreadInitTool " << t << " in thread 0x" << std::hex << pthread_self() << std::dec
51  << " threw std::exception: " << exc.what() << endmsg;
52  m_execFailed = true;
53  } catch ( ... ) {
54  log << MSG::ERROR << "ThreadInitTool " << t << " in thread 0x" << std::hex << pthread_self() << std::dec
55  << " threw unknown exception" << endmsg;
56  m_execFailed = true;
57  }
58  }
59 
60  m_tools.release().ignore();
61  }
62  }
63 
64  if ( m_barrier != 0 ) {
65  log << MSG::INFO << "waiting at barrier in thread 0x" << std::hex << pthread_self() << std::dec << endmsg;
66  m_barrier->wait();
67  }
68 
69  return nullptr;
70 }
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:24
tbb::task * execute() override
Execute the task.
Define general base for Gaudi exception.
SmartIF< ISvcLocator > m_serviceLocator
static std::atomic< bool > m_execFailed
bool isFailure() const
Definition: StatusCode.h:139
StatusCode retrieve()
Retrieve all tools.
Definition: GaudiHandle.h:535
T what(T...args)
STL class.
ToolHandleArray< IThreadInitTool > m_tools
boost::barrier * m_barrier
T hex(T...args)
size_type size() const
Definition: GaudiHandle.h:501
MSG::Level level() const
Retrieve output level.
Definition: MsgStream.h:108
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:209