The Gaudi Framework  v33r1 (b1225454)
ThreadInitTask Class Reference

Special TBB task used by ThreadPoolSvc to wrap execution of IThreadInitTools. More...

#include <src/ThreadInitTask.h>

Inheritance diagram for ThreadInitTask:
Collaboration diagram for ThreadInitTask:

Public Member Functions

 ThreadInitTask (ToolHandleArray< IThreadInitTool > &tools, boost::barrier *b, ISvcLocator *svcLocator, bool terminate=false)
 
tbb::task * execute () override
 Execute the task. More...
 

Static Public Member Functions

static bool execFailed ()
 

Private Attributes

ToolHandleArray< IThreadInitToolm_tools
 
boost::barrier * m_barrier = nullptr
 
SmartIF< ISvcLocatorm_serviceLocator
 
bool m_terminate = false
 

Static Private Attributes

static std::atomic< bool > m_execFailed
 

Detailed Description

Special TBB task used by ThreadPoolSvc to wrap execution of IThreadInitTools.

Author
Charles Leggett

Definition at line 31 of file ThreadInitTask.h.

Constructor & Destructor Documentation

◆ ThreadInitTask()

ThreadInitTask::ThreadInitTask ( ToolHandleArray< IThreadInitTool > &  tools,
boost::barrier *  b,
ISvcLocator svcLocator,
bool  terminate = false 
)
inline

Definition at line 36 of file ThreadInitTask.h.

38  : m_tools( tools ), m_barrier( b ), m_serviceLocator( svcLocator ), m_terminate( terminate ){};
SmartIF< ISvcLocator > m_serviceLocator
GAUDI_API ISvcLocator * svcLocator()
ToolHandleArray< IThreadInitTool > m_tools
boost::barrier * m_barrier

Member Function Documentation

◆ execFailed()

static bool ThreadInitTask::execFailed ( )
inlinestatic

Definition at line 46 of file ThreadInitTask.h.

46 { return m_execFailed; }
static std::atomic< bool > m_execFailed

◆ execute()

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

Execute the task.

Will loop over IThreadInitTools and execute each one.

Definition at line 28 of file ThreadInitTask.cpp.

28  {
29 
31  MsgStream log( messageSvc, "ThreadInitTask" );
32 
33  const auto debug = log.level() <= MSG::DEBUG;
34 
35  if ( debug )
36  log << MSG::DEBUG << "execute() in thread 0x" << std::hex << pthread_self() << " at " << this << std::dec
37  << " state: " << ( m_terminate ? "terminate" : "initialize" ) << endmsg;
38 
40  log << MSG::WARNING << "thread initialization has already been done on thread " << std::hex << pthread_self()
41  << endmsg;
42  }
43 
44  if ( m_tools.retrieve().isFailure() ) {
45  log << MSG::ERROR << "unable to retrieve ToolHandleArray " << m_tools << endmsg;
46  m_execFailed = true;
47  } else {
48 
49  if ( m_tools.empty() ) {
50  log << MSG::DEBUG << "no entries in Tool Array" << endmsg;
52  } else {
53  if ( debug ) log << MSG::DEBUG << "executing in thread 0x" << std::hex << pthread_self() << std::dec << endmsg;
54 
55  // only call terminate for threads that have been initialized
57  log << MSG::INFO << "Not calling terminateThread for thread 0x" << std::hex << pthread_self()
58  << " as it has not been initialized" << endmsg;
59  } else {
60 
61  for ( auto& t : m_tools ) {
62  try {
63 
64  if ( debug ) log << MSG::DEBUG << "calling IThreadInitTool " << t << endmsg;
65 
66  if ( !m_terminate ) {
67  t->initThread();
69  } else {
70  t->terminateThread();
71  }
72 
73  } catch ( const GaudiException& exc ) {
74  log << MSG::ERROR << "ThreadInitTool " << t << " in thread 0x" << std::hex << pthread_self() << std::dec
75  << " threw GaudiException: " << exc << endmsg;
76  m_execFailed = true;
77  } catch ( const std::exception& exc ) {
78  log << MSG::ERROR << "ThreadInitTool " << t << " in thread 0x" << std::hex << pthread_self() << std::dec
79  << " threw std::exception: " << exc.what() << endmsg;
80  m_execFailed = true;
81  } catch ( ... ) {
82  log << MSG::ERROR << "ThreadInitTool " << t << " in thread 0x" << std::hex << pthread_self() << std::dec
83  << " threw unknown exception" << endmsg;
84  m_execFailed = true;
85  }
86  }
87  }
88 
90  }
91  }
92 
93  if ( m_barrier ) {
94  log << MSG::DEBUG << "waiting at barrier in thread 0x" << std::hex << pthread_self() << std::dec << endmsg;
95  m_barrier->wait();
96  }
97 
98  return nullptr;
99 }
Definition of the MsgStream class used to transmit messages.
Definition: MsgStream.h:34
Define general base for Gaudi exception.
SmartIF< ISvcLocator > m_serviceLocator
static std::atomic< bool > m_execFailed
bool empty() const override
Return whether the list of tools is empty.
Definition: GaudiHandle.h:477
StatusCode retrieve()
Retrieve all tools.
Definition: GaudiHandle.h:504
T what(T... args)
STL class.
ToolHandleArray< IThreadInitTool > m_tools
const StatusCode & ignore() const
Ignore/check StatusCode.
Definition: StatusCode.h:168
thread_local bool ThreadInitDone
boost::barrier * m_barrier
T hex(T... args)
bool isFailure() const
Definition: StatusCode.h:145
MsgStream & endmsg(MsgStream &s)
MsgStream Modifier: endmsg. Calls the output method of the MsgStream.
Definition: MsgStream.h:202
StatusCode release()
Release all tools.
Definition: GaudiHandle.h:518

Member Data Documentation

◆ m_barrier

boost::barrier* ThreadInitTask::m_barrier = nullptr
private

Definition at line 51 of file ThreadInitTask.h.

◆ m_execFailed

std::atomic< bool > ThreadInitTask::m_execFailed
staticprivate

Definition at line 55 of file ThreadInitTask.h.

◆ m_serviceLocator

SmartIF<ISvcLocator> ThreadInitTask::m_serviceLocator
private

Definition at line 52 of file ThreadInitTask.h.

◆ m_terminate

bool ThreadInitTask::m_terminate = false
private

Definition at line 53 of file ThreadInitTask.h.

◆ m_tools

ToolHandleArray<IThreadInitTool> ThreadInitTask::m_tools
private

Definition at line 49 of file ThreadInitTask.h.


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