Version: 8.3.0
LocalTraceCollector Class Reference

See also other derived Classes in SALOMELocalTrace for usage without CORBA, see also derived Classes in SALOMETraceCollector for usage with CORBA. More...

#include <LocalTraceCollector.hxx>

Inheritance diagram for LocalTraceCollector:

Public Member Functions

 ~LocalTraceCollector ()
 Destructor: wait until printing thread ends (LocalTraceCollector::run) More...
 

Static Public Member Functions

static BaseTraceCollectorinstance ()
 This class is for use without CORBA, inside or outside SALOME. More...
 
static void * run (void *bid)
 In a separate thread, loop to print traces. More...
 

Protected Member Functions

 LocalTraceCollector ()
 Constructor: no need of LocalTraceBufferPool object initialization here, thread safe singleton used in LocalTraceBufferPool::instance() More...
 

Static Protected Attributes

static int _threadToClose = 0
 
static BaseTraceCollector_singleton = 0
 
static pthread_mutex_t _singletonMutex
 
static pthread_t * _threadId = 0
 
static sem_t _sem
 

Detailed Description

See also other derived Classes in SALOMELocalTrace for usage without CORBA, see also derived Classes in SALOMETraceCollector for usage with CORBA.

Constructor & Destructor Documentation

LocalTraceCollector::LocalTraceCollector ( )
protected

Constructor: no need of LocalTraceBufferPool object initialization here, thread safe singleton used in LocalTraceBufferPool::instance()

References BaseTraceCollector::_threadId, and BaseTraceCollector::_threadToClose.

Referenced by instance().

Member Function Documentation

BaseTraceCollector * LocalTraceCollector::instance ( )
static

This class is for use without CORBA, inside or outside SALOME.

SALOME uses SALOMETraceCollector, to allow trace collection via CORBA. Type of trace (and corresponding class) is choosen in LocalTraceBufferPool.

Guarantees a unique object instance of the class (singleton thread safe) a separate thread for loop to print traces is launched.

References BaseTraceCollector::_sem, BaseTraceCollector::_singleton, BaseTraceCollector::_singletonMutex, LocalTraceCollector(), and run().

Referenced by LocalTraceBufferPool::instance().

void * LocalTraceCollector::run ( void *  bid)
static

In a separate thread, loop to print traces.

Mutex garantees intialisation on instance method is done and only one run allowed (double check ...) Loop until there is no more buffer to print, and no ask for end from destructor. Get a buffer. If type = ABORT then exit application with message.

References BaseTraceCollector::_sem, BaseTraceCollector::_threadId, BaseTraceCollector::_threadToClose, ABORT_MESS, DEVTRACE, LocalTraceBufferPool::instance(), LocalTraceBufferPool::retrieve(), LocalTrace_TraceInfo::threadId, LocalTraceBufferPool::toCollect(), LocalTrace_TraceInfo::trace, and LocalTrace_TraceInfo::traceType.

Referenced by instance().

Field Documentation

sem_t BaseTraceCollector::_sem
staticprotectedinherited