ThreadGaudi Class Reference

singleton mapping the pthread ID to the Gaudi thread ID More...

#include <GaudiKernel/ThreadGaudi.h>

Collaboration diagram for ThreadGaudi:

Public Types

typedef std::map< System::ThreadHandle, std::stringThreadMap
 

Public Member Functions

void setThreadID (const std::string &threadID)
 associate Gaudi ID to pthread More...
 
ThreadMapgetThreadMap ()
 access the whole map More...
 
const std::stringgetThreadID ()
 get Gaudi ID of current pthread More...
 

Static Public Member Functions

static ThreadGaudiinstance ()
 singleton access More...
 

Protected Member Functions

 ThreadGaudi ()
 
virtual ~ThreadGaudi ()=default
 

Protected Attributes

std::unique_ptr< ThreadMapm_threadMap
 

Detailed Description

singleton mapping the pthread ID to the Gaudi thread ID

Author
Werner Wiedenmann

Definition at line 15 of file ThreadGaudi.h.

Member Typedef Documentation

Constructor & Destructor Documentation

ThreadGaudi::ThreadGaudi ( )
protected

Definition at line 83 of file ThreadGaudi.cpp.

83  :
84  m_threadMap{ new ThreadMap() }
85 {
86  (*m_threadMap)[0] = "" ;
87 }
std::unique_ptr< ThreadMap > m_threadMap
Definition: ThreadGaudi.h:30
std::map< System::ThreadHandle, std::string > ThreadMap
Definition: ThreadGaudi.h:17
virtual ThreadGaudi::~ThreadGaudi ( )
protectedvirtualdefault

Member Function Documentation

const std::string & ThreadGaudi::getThreadID ( )

get Gaudi ID of current pthread

Definition at line 111 of file ThreadGaudi.cpp.

111  {
112  ThreadMap* p_threadMap = getThreadMap() ;
114  if ( p_threadMap->find(s_pid) != p_threadMap->end() ) {
115  return (*p_threadMap->find(s_pid)).second ;
116  } else {
117  return (*p_threadMap->find(0)).second ; ;
118  }
119 }
void * ThreadHandle
A Thread handle.
Definition: System.h:110
std::map< System::ThreadHandle, std::string > ThreadMap
Definition: ThreadGaudi.h:17
constexpr double second
ThreadMap * getThreadMap()
access the whole map
ThreadHandle threadSelf()
thread handle "accessor"
Definition: System.h:112
ThreadGaudi::ThreadMap * ThreadGaudi::getThreadMap ( )

access the whole map

Definition at line 107 of file ThreadGaudi.cpp.

107  {
108  return ThreadGaudi::instance()->m_threadMap.get();
109 }
std::unique_ptr< ThreadMap > m_threadMap
Definition: ThreadGaudi.h:30
static ThreadGaudi * instance()
singleton access
Definition: ThreadGaudi.cpp:90
ThreadGaudi * ThreadGaudi::instance ( )
static

singleton access

Definition at line 90 of file ThreadGaudi.cpp.

90  {
92  return ThreadGaudiInstance ;
93 }
ThreadGaudi * ThreadGaudiInstance
Definition: ThreadGaudi.cpp:81
void ThreadGaudi::setThreadID ( const std::string threadID)

associate Gaudi ID to pthread

Definition at line 95 of file ThreadGaudi.cpp.

95  {
96  ThreadMap* p_threadMap = getThreadMap() ;
97  // get from name thread ID
99  if (p_threadMap->count(s_pid) == 0 ) {
100  (*p_threadMap)[s_pid] = threadID ;
101 #ifdef THREAD_GAUDI__DEBUG
102  std::cout << " *** ThreadGaudi setThreadID *** value set for *** " << threadID << " thread ID : " << s_pid << std::endl ;
103 #endif
104  }
105 }
void * ThreadHandle
A Thread handle.
Definition: System.h:110
T endl(T...args)
std::map< System::ThreadHandle, std::string > ThreadMap
Definition: ThreadGaudi.h:17
ThreadMap * getThreadMap()
access the whole map
ThreadHandle threadSelf()
thread handle "accessor"
Definition: System.h:112

Member Data Documentation

std::unique_ptr<ThreadMap> ThreadGaudi::m_threadMap
protected

Definition at line 30 of file ThreadGaudi.h.


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